:root {
  --ink: #fff8ec;
  --muted: rgba(255, 248, 236, 0.7);
  --soft: rgba(255, 248, 236, 0.1);
  --line: rgba(255, 248, 236, 0.16);
  --black: #050307;
  --midnight: #100718;
  --gold: #f8c75e;
  --amber: #ff7a1a;
  --red: #ff2d45;
  --magenta: #ff2ec4;
  --purple: #8f45ff;
  --cyan: #3ff2ff;
  --panel: rgba(18, 9, 24, 0.76);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 45, 196, 0.24), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(255, 122, 26, 0.2), transparent 30rem),
    linear-gradient(180deg, #050307 0%, #100718 48%, #050307 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

button,
input,
select,
textarea { font: inherit; }

.site-shell { overflow: hidden; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 3, 7, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff4c6, var(--gold) 34%, var(--amber) 62%, var(--magenta));
  box-shadow: 0 0 28px rgba(255, 46, 196, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.91rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  color: #140607;
  background: linear-gradient(135deg, var(--gold), var(--amber) 55%, var(--magenta));
  box-shadow: 0 18px 44px rgba(255, 46, 196, 0.28);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 128px 0 54px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 3, 7, 0.86), rgba(5, 3, 7, 0.2), rgba(5, 3, 7, 0.82)),
    linear-gradient(180deg, rgba(5, 3, 7, 0.08), rgba(5, 3, 7, 0.92)),
    url("../images/hottest-music-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, #050307);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(248, 199, 94, 0.34);
  border-radius: 999px;
  color: #ffe09a;
  background: rgba(248, 199, 94, 0.1);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(4rem, 8.25rem, 9.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #fff4bc, var(--gold), var(--amber), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(255, 46, 196, 0.18);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: clamp(1.2rem, 1.42rem, 1.58rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.stats-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin-top: 44px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  background: rgba(5, 3, 7, 0.54);
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

main section { padding: 88px 0; }

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 4.2rem, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.song-card,
.chart-row,
.info-card,
.form-card,
.category-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.song-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px 1fr;
}

.song-card.featured { grid-column: span 1; }

.artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 244, 188, 0.86), transparent 24%),
    radial-gradient(circle at 72% 20%, rgba(255, 46, 196, 0.72), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(63, 242, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #2b0715, #13091f 58%, #321274);
}

.artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(5, 3, 7, 0.78));
}

.record-badge {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-size: 0.72rem;
  font-weight: 950;
}

.song-body { padding: 18px; }

.song-body h3 {
  margin: 0;
  font-size: 1.12rem;
}

.song-meta {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.song-mood {
  margin: 7px 0 0;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.song-desc {
  min-height: 4.8em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.player {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.player-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn,
.vote-btn,
.share-btn,
.mini-play {
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 950;
}

.play-btn,
.mini-play {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--magenta));
  box-shadow: 0 10px 28px rgba(255, 46, 196, 0.2);
}

.play-btn[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.progress {
  position: relative;
  height: 8px;
  flex: 1;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
}

.time-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 248, 236, 0.58);
  font-size: 0.78rem;
}

.volume {
  width: 82px;
  accent-color: var(--magenta);
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.vote-btn,
.share-btn,
.lyrics-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.86rem;
  text-align: center;
}

.vote-btn.voted {
  color: #140607;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.audio-pending {
  color: rgba(255, 248, 236, 0.54);
  font-size: 0.8rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.tab {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 900;
}

.tab.active {
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.chart {
  display: grid;
  gap: 12px;
}

.chart-row {
  display: grid;
  grid-template-columns: 64px 74px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
  text-align: center;
}

.chart-art {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, var(--gold), transparent 28%),
    radial-gradient(circle at 78% 78%, var(--magenta), transparent 30%),
    linear-gradient(135deg, #190817, #321274);
  overflow: hidden;
}

.chart-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chart-title strong { display: block; }

.chart-title span,
.chart-votes {
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 30px;
  align-items: start;
}

.info-card,
.form-card,
.category-panel { padding: 30px; }

.info-card h3,
.form-card h3,
.category-panel h3 { margin: 0 0 12px; }

.info-card p,
.category-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.feature-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-list strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.feature-list span {
  color: var(--muted);
  line-height: 1.55;
}

.credibility-anthem {
  padding: 72px 0 36px;
}

.bio-card {
  border-color: rgba(248, 199, 94, 0.28);
  background:
    radial-gradient(circle at 16% 0%, rgba(248, 199, 94, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.78);
}

.bio-card .section-heading,
.lyric-card .section-heading {
  font-size: clamp(2.1rem, 3.3rem, 4rem);
}

.lyric-card {
  padding: 30px;
  border: 1px solid rgba(255, 122, 26, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 46, 196, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.72);
}

.anthem-lines {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.anthem-lines strong {
  display: block;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  font-size: clamp(1.35rem, 2rem, 2.35rem);
  line-height: 1.12;
}

.lyric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.download-offer {
  padding-top: 0;
}

.offer-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 122, 26, 0.2), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.offer-art {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.offer-art img {
  width: 100%;
  height: auto;
}

.offer-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5rem, 4.25rem);
  line-height: 0.98;
}

.offer-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.offer-price span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-weight: 950;
}

.offer-price span:nth-child(2),
.offer-price span:nth-child(3) {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.timeline strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.timeline span {
  color: var(--muted);
  line-height: 1.55;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

textarea { min-height: 128px; resize: vertical; }

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(248, 199, 94, 0.12);
}

.page-hero {
  padding: 142px 0 70px;
  background:
    linear-gradient(90deg, rgba(5, 3, 7, 0.92), rgba(5, 3, 7, 0.66)),
    url("../images/hottest-music-hero.png") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 6.4rem, 7.2rem);
}

.notice {
  margin-top: 18px;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 236, 0.58);
  background: #030204;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a:hover { color: white; }

@media (max-width: 1080px) {
  .song-grid,
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .song-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero { min-height: 92vh; }
  .stats-strip,
  .offer-panel,
  .split,
  .feature-list { grid-template-columns: 1fr; }
  .section-top { display: block; }
  .chart-row { grid-template-columns: 46px 60px 1fr; }
  .chart-votes,
  .chart-row .mini-play { grid-column: 3; }
}

@media (max-width: 620px) {
  .nav-inner { min-height: 66px; }
  .nav .button { display: none; }
  h1 { font-size: 3.65rem; }
  main section { padding: 68px 0; }
  .song-grid,
  .catalog-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}
