:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: #161616;
  --text: #f3f3f3;
  --muted: #b7b7b7;
  --line: rgba(255,255,255,.08);
  --accent: #d4af37;
  --accent-2: #ffffff;
  --danger: #f87171;
  --success: #4ade80;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow-container {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(8,8,8,.88);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand img {
  height: 46px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
}
.site-nav a.active,
.site-nav a:hover {
  color: var(--accent-2);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}
.hero-section {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-content {
  padding: 110px 0;
  max-width: 760px;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
  font-size: .83rem;
}
.hero-content h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
.hero-content p,
.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
}
.hero-actions,
.section-head.center,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #0e0e0e;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-full { width: 100%; }
.page-section {
  padding: 84px 0;
}
.alt-section {
  background: var(--bg-soft);
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-grid,
.about-preview-grid,
.two-col-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
}
.feature-media img,
.rounded-image,
.content-card img,
.gallery-card img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.feature-copy,
.content-card,
.form-card,
.auth-card,
.empty-box,
.admin-panel,
.stat-card,
.content-card.no-image {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-copy {
  padding: 28px;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212,175,55,.12);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.card-grid {
  display: grid;
  gap: 22px;
}
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.content-card img {
  aspect-ratio: 1 / 1;
}
.content-card.no-image { padding: 8px; }
.card-body {
  padding: 18px;
}
.card-body h3 {
  margin: 0 0 10px;
}
.card-body p {
  margin: 0 0 10px;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card img {
  aspect-ratio: 1 / 1;
}
.newsletter-section {
  background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(212,175,55,.03));
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.page-hero.small-hero {
  padding: 90px 0 30px;
}
.form-card,
.auth-card {
  padding: 28px;
}
.form-grid {
  display: grid;
  gap: 18px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.newsletter-form input {
  width: 100%;
  background: #0f0f0f;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}
.alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.alert-success {
  background: rgba(74,222,128,.08);
  border-color: rgba(74,222,128,.2);
}
.alert-error {
  background: rgba(248,113,113,.08);
  border-color: rgba(248,113,113,.2);
}
.empty-box {
  padding: 22px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #060606;
  padding-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer-bottom {
  padding: 20px 0 34px;
  color: var(--muted);
}
.auth-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}
.auth-card {
  max-width: 500px;
  margin: 0 auto;
}
.admin-body {
  background: #0a0a0a;
}
.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #0f0f0f;
  border-right: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.admin-nav {
  display: grid;
  gap: 10px;
}
.admin-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}
.admin-nav a.active,
.admin-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
}
.admin-user-box {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}
.admin-topbar {
  padding: 26px 28px 0;
}
.admin-main {
  padding: 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.stat-card {
  padding: 22px;
}
.stat-card h3 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .95rem;
}
.stat-card strong {
  font-size: 2rem;
}
.admin-panels {
  display: grid;
  gap: 22px;
}
.admin-panel {
  padding: 20px;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) {
  .three-col,
  .gallery-grid,
  .stats-grid,
  .footer-grid,
  .feature-grid,
  .about-preview-grid,
  .two-col-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px 22px;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .newsletter-form,
  .two-col {
    grid-template-columns: 1fr;
  }
}
.admin-form-card {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.admin-panel .form-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0;
}
.settings-image-preview {
  width: 100%;
  max-width: 260px;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0b0b0b;
}

.settings-image-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.field-note {
  display: block;
  margin: 10px 0 8px;
  color: var(--muted);
  font-size: .9rem;
}
.admin-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.table-thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 9px 14px;
  font-size: .92rem;
}

.form-check-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}

.form-check-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

select {
  width: 100%;
  background: #0f0f0f;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}
.upload-progress-box {
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}

.upload-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.upload-progress-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid var(--line);
}

.upload-progress-bar {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .2s ease;
}

.upload-progress-status {
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
}
.card-link-wrap {
  display: block;
  color: inherit;
}

.release-audio-box {
  margin: 18px 0;
}
.pro-player {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.secondary-player {
  margin-top: 16px;
}

.pro-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pro-player-track-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pro-player-label {
  font-size: .82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.pro-player-play {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(212,175,55,.22);
}

.pro-player-progress-wrap {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.pro-player-time {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}

.pro-player-progress,
.pro-player-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  outline: none;
}

.pro-player-progress::-webkit-slider-thumb,
.pro-player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.pro-player-progress::-moz-range-thumb,
.pro-player-volume::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
  border: none;
}

.pro-player-bottom {
  display: flex;
  justify-content: flex-end;
}

.pro-player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(220px, 100%);
}

.pro-player-volume-icon {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .pro-player-progress-wrap {
    grid-template-columns: 46px 1fr 46px;
    gap: 8px;
  }

  .pro-player-play {
    width: 52px;
    height: 52px;
  }
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.detail-card h3 {
  margin: 0 0 14px;
}

.detail-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.detail-card p strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== PREMIUM GLOBAL POLISH PACK ===== */

body {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 22%),
    radial-gradient(circle at top left, rgba(255,255,255,.03), transparent 18%),
    var(--bg);
}

.site-header {
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  background: rgba(8,8,8,.95);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  border-bottom-color: rgba(255,255,255,.10);
}

.nav-wrap {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand span {
  font-size: 1.35rem;
  letter-spacing: .01em;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease, opacity .2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width .22s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.hero-section {
  min-height: 86vh;
  background-position: center center;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  padding: 130px 0 110px;
}

.hero-content h1 {
  max-width: 760px;
}

.hero-content p {
  font-size: 1.12rem;
  line-height: 1.75;
}

.page-hero.small-hero {
  padding: 110px 0 42px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-head h2 {
  letter-spacing: -.02em;
}

.feature-copy,
.content-card,
.form-card,
.auth-card,
.empty-box,
.admin-panel,
.stat-card,
.content-card.no-image,
.detail-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
}

.feature-copy,
.detail-card,
.admin-panel,
.stat-card {
  border-color: rgba(255,255,255,.09);
}

.feature-copy h2,
.feature-copy h3,
.card-body h3,
.detail-card h3,
.admin-topbar h1,
.auth-card h1 {
  letter-spacing: -.02em;
}

.content-card {
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.22);
  box-shadow: 0 24px 52px rgba(0,0,0,.34);
}

.content-card img {
  transition: transform .28s ease;
}

.content-card:hover img {
  transform: scale(1.03);
}

.card-link-wrap {
  display: block;
  color: inherit;
}

.card-link-wrap .btn {
  pointer-events: none;
}

.card-body {
  padding: 22px;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.badge {
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.12);
}

.btn {
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.btn-primary {
  box-shadow: 0 12px 28px rgba(212,175,55,.22);
}

.btn-secondary:hover {
  border-color: rgba(212,175,55,.25);
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-card img {
  transition: transform .28s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.form-group input,
.form-group textarea,
.newsletter-form input,
select {
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.newsletter-form input:focus,
select:focus {
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 4px rgba(212,175,55,.08);
  background: #111111;
}

.newsletter-form {
  background: rgba(255,255,255,.02);
  padding: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.06);
}

.site-footer {
  background:
    radial-gradient(circle at bottom right, rgba(212,175,55,.06), transparent 20%),
    #060606;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  letter-spacing: -.01em;
}

.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.22);
  color: var(--accent-2);
}

.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.table-wrap table {
  min-width: 760px;
}

th {
  color: var(--accent-2);
  font-size: .95rem;
}

td {
  color: var(--muted);
}

.table-actions .btn {
  box-shadow: none;
}

.pro-player {
  border-color: rgba(255,255,255,.09);
}

.empty-box {
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .site-nav {
    top: 82px;
    left: 12px;
    right: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.32);
    padding: 18px;
    gap: 14px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 110px 0 88px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .content-card:hover,
  .gallery-card:hover img {
    transform: none;
  }

  .newsletter-form {
    padding: 10px;
  }
}