:root {
  --bg: #06070b;
  --panel: #121421;
  --panel-2: #191d2d;
  --text: #f7f2e8;
  --muted: #a6a8b4;
  --gold: #f0b946;
  --gold-soft: rgba(240, 185, 70, 0.18);
  --red: #d7223d;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
input { font: inherit; }

.page-glow {
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 6%, rgba(215, 34, 61, 0.24), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(240, 185, 70, 0.16), transparent 28%);
}

.page-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(6, 7, 11, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #3a1116);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 24px;
  color: #d7d7df;
  font-size: 0.95rem;
}

nav a:hover,
.text-link:hover,
.search-pill:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-pill,
.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  padding: 56px 5vw 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 660px;
  margin: 0;
  color: #d7d7df;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions,
.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.primary {
  background: var(--gold);
  color: #111;
}

.ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-highlights div {
  min-width: 120px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.hero-highlights strong {
  display: block;
  font-size: 1.05rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-stage {
  position: relative;
  min-height: 470px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(240,185,70,0.16), transparent),
    linear-gradient(140deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 16%, rgba(215,34,61,0.24), transparent 30%);
}

.live-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.38);
  font-size: 0.84rem;
  font-weight: 800;
}

.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.feature-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(7, 8, 13, 0.38), rgba(7, 8, 13, 0.9));
}

.card-tag {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.05em;
}

.feature-card p {
  margin: 0;
  color: #d8d8e2;
  line-height: 1.6;
}

.section {
  padding: 40px 5vw 18px;
}

.search-section {
  padding-top: 0;
}

.search-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  border: 1px solid var(--line);
}

.search-shell input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.poster-row,
.card-grid,
.radio-grid,
.coming-grid {
  display: grid;
  gap: 16px;
}

.poster-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.poster-card,
.content-card,
.radio-card,
.coming-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.poster-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,6,9,0.95), rgba(5,6,9,0.2));
}

.poster-card > * {
  position: relative;
  z-index: 1;
}

.poster-card small {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.poster-card h3 {
  margin: 8px 0 6px;
  font-size: 1.3rem;
}

.poster-card p {
  margin: 0;
  color: #d9d9e2;
}

.poster-a { background: linear-gradient(135deg, #5f1423, #0d1019); }
.poster-b { background: linear-gradient(135deg, #2f1f56, #0d1019); }
.poster-c { background: linear-gradient(135deg, #6b3b09, #0d1019); }

.live-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.feature-panel,
.guide-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.feature-panel h3,
.guide-panel h3,
.radio-card h3,
.coming-grid h3,
.content-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.feature-panel p,
.guide-panel p,
.content-card p,
.radio-card p,
.coming-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #dce0e8;
  line-height: 1.8;
}

.guide-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.guide-item:last-child { border-bottom: 0; }

.guide-item span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.radio-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.radio-card.main {
  background: linear-gradient(135deg, rgba(240,185,70,0.16), rgba(255,255,255,0.03));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gold-card {
  background: linear-gradient(135deg, rgba(240,185,70,0.18), rgba(255,255,255,0.03));
}

.creator-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.creator-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}

.coming-soon {
  padding-bottom: 40px;
}

.coming-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coming-grid article {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}

.advertise-card,
.investor-grid {
  display: grid;
  gap: 16px;
}

.advertise-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(240,185,70,0.16), rgba(255,255,255,0.03));
}

.advertise-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.advertise-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.investor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.submit {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.submit p {
  max-width: 620px;
  margin: 0 auto 20px;
}

footer {
  padding: 24px 5vw 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer strong { color: var(--text); }

@media (max-width: 980px) {
  nav { display: none; }
  .hero,
  .live-grid,
  .radio-grid,
  .card-grid,
  .coming-grid,
  .creator-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero { min-height: auto; }
  .poster-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .feature-actions {
    flex-direction: column;
  }

  .hero,
  .live-grid,
  .radio-grid,
  .card-grid,
  .coming-grid,
  .creator-list,
  .poster-row,
  .investor-grid {
    grid-template-columns: 1fr;
  }

  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: 430px;
  }
}
