:root {
  --bg: #120a08;
  --panel: rgba(32, 15, 13, 0.94);
  --panel-soft: rgba(22, 10, 9, 0.94);
  --line: rgba(255, 214, 129, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #fff8ef;
  --muted: #d4c2b3;
  --gold: #ffd771;
  --gold-strong: #ff9a37;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 120, 74, 0.18), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(255, 215, 113, 0.18), transparent 22%),
    linear-gradient(180deg, #24110e 0%, #140a08 34%, #090403 72%, #130907 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 44px);
}

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

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

.glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(92px);
  pointer-events: none;
  opacity: 0.3;
}

.glow-a {
  top: 90px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(255, 120, 74, 0.22);
}

.glow-b {
  right: -100px;
  bottom: 90px;
  width: 300px;
  height: 300px;
  background: rgba(255, 215, 113, 0.2);
}

.container {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-bottom: 16px;
  backdrop-filter: blur(16px);
  background: rgba(16, 6, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bulb-line {
  height: 16px;
  background:
    radial-gradient(circle at 10px 8px, rgba(255, 223, 145, 1) 0 4px, rgba(255, 223, 145, 0.12) 5px, transparent 10px)
      0 0 / 36px 16px repeat-x,
    linear-gradient(180deg, rgba(255, 215, 113, 0.95), rgba(255, 154, 55, 0.95));
  box-shadow: 0 0 28px rgba(255, 154, 55, 0.3);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding-top: 14px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 20px rgba(255, 215, 113, 0.26));
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong,
.section-title,
.section-chip,
.ad-name,
.ad-chip,
.footer-brand {
  font-family: "Oswald", sans-serif;
}

.brand strong {
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.brand em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
}

.main-nav a,
.header-cta,
.ticker-chip,
.section-link,
.ad-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  color: #260e09;
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffdf7f, #ff9c39);
  box-shadow: 0 16px 34px rgba(255, 156, 57, 0.24);
}

.header-cta:hover,
.section-link:hover,
.ad-card:hover {
  transform: translateY(-3px);
}

.ticker-wrap {
  margin-top: 4px;
}

.ticker-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 228, 145, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(24, 10, 9, 0.92);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  animation: ticker 25s linear infinite;
}

.ticker-shell:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 18px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.ticker-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 215, 113, 0.12);
}

.ticker-chip span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticker-chip em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-main {
  padding-top: 28px;
}

.section {
  padding-top: 26px;
}

.section-bottom {
  padding-bottom: 28px;
}

.showcase-panel {
  padding: 20px;
  border-radius: 34px;
  border: 1px solid rgba(255, 215, 113, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.section-chip,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.billboard-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
}

.poster-column,
.lane-grid,
.board-grid {
  display: grid;
  gap: 16px;
}

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

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

.ad-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.ad-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -52px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.18;
  filter: blur(24px);
}

.ad-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.ad-card__top,
.ad-logo,
.ad-card__bottom {
  position: relative;
  z-index: 1;
}

.ad-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ad-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ad-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

.ad-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  color: #240e08;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 14px 28px rgba(255, 156, 57, 0.24);
}

.ad-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(5, 4, 4, 0.34);
}

.ad-logo img {
  width: 100%;
  max-width: 280px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.ad-card__bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.ad-name {
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.ad-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff0ca;
}

.ad-link::after {
  content: ">";
  color: var(--accent);
}

.ad-card--stage {
  min-height: 468px;
}

.ad-card--stage .ad-logo {
  min-height: 236px;
}

.ad-card--stage .ad-logo img {
  height: 126px;
  max-width: 420px;
}

.ad-card--stage .ad-name {
  font-size: 5rem;
}

.ad-card--poster {
  min-height: 226px;
}

.ad-card--poster .ad-name {
  font-size: 2.55rem;
}

.ad-card--poster .ad-logo img {
  height: 62px;
}

.ad-card--lane {
  min-height: 198px;
}

.ad-card--lane .ad-logo {
  min-height: 90px;
}

.ad-card--lane .ad-name {
  font-size: 2.65rem;
}

.ad-card--board {
  min-height: 210px;
}

.ad-card--board .ad-name {
  font-size: 2.55rem;
}

.site-footer {
  padding: 0 0 30px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-brand,
.footer-copy {
  margin: 0;
}

.footer-brand {
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .billboard-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

  .lane-grid,
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header {
    position: static;
  }

  .header-row {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 1.85rem;
  }

  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .header-cta {
    width: 100%;
  }

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

  .showcase-panel {
    padding: 16px;
    border-radius: 26px;
  }

  .poster-column,
  .lane-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .ad-card,
  .ad-card--stage,
  .ad-card--poster,
  .ad-card--lane,
  .ad-card--board {
    min-height: 220px;
    border-radius: 24px;
  }

  .ad-logo {
    min-height: 92px;
  }

  .ad-logo img {
    height: 60px;
  }

  .ad-card--stage .ad-logo {
    min-height: 160px;
  }

  .ad-card--stage .ad-logo img {
    height: 88px;
  }

  .ad-name,
  .ad-card--poster .ad-name,
  .ad-card--lane .ad-name,
  .ad-card--board .ad-name {
    font-size: 2.55rem;
  }

  .ad-card--stage .ad-name {
    font-size: 4.2rem;
  }

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