:root {
  --bg: #03071f;
  --panel: rgba(15, 18, 62, 0.78);
  --panel-strong: rgba(21, 23, 78, 0.94);
  --line: rgba(246, 184, 55, 0.28);
  --line-soft: rgba(255, 255, 255, 0.1);
  --gold: #f7bd36;
  --gold-2: #ffdf73;
  --cream: #fff5dc;
  --text: #f9f7ef;
  --muted: #c8c4dc;
  --cyan: #53d8ff;
  --emerald: #73e2a7;
  --rose: #ff78c9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(111, 47, 164, 0.22), transparent 30rem),
    radial-gradient(circle at 18% 45%, rgba(24, 157, 213, 0.12), transparent 34rem),
    radial-gradient(circle at 54% 8%, rgba(247, 189, 54, 0.08), transparent 24rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px),
    linear-gradient(180deg, #020519 0%, #060735 44%, #02051a 100%);
  background-attachment: fixed;
  background-size: auto, auto, auto, 180px 180px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 199, 62, 0.13), transparent 18rem),
    radial-gradient(circle at 80% 70%, rgba(108, 73, 222, 0.15), transparent 24rem),
    radial-gradient(circle at 12% 82%, rgba(83, 216, 255, 0.08), transparent 20rem);
  opacity: 0.75;
  animation: ambience 18s ease-in-out infinite alternate;
}

@keyframes ambience {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 6, 27, 0.86);
  backdrop-filter: blur(18px);
}

.app-banner {
  position: sticky;
  top: 84px;
  z-index: 45;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 9px 20px;
  border-bottom: 1px solid rgba(247, 189, 54, 0.22);
  background: rgba(12, 9, 42, 0.92);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.header-inner {
  width: 90%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 62px;
  height: auto;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  min-height: 84px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.88);
}

.nav a.active,
.nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 7px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 189, 54, 0.76);
}

.btn.primary {
  color: #170e00;
  border-color: transparent;
  background: linear-gradient(180deg, #ffda67, #e99d20);
  box-shadow: 0 12px 34px rgba(232, 151, 28, 0.22);
}

.btn.small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn.icon-only {
  width: 46px;
  padding: 0;
}

.section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 0;
  min-height: 690px;
  position: relative;
}

.section.compact {
  min-height: auto;
  padding: 64px 0;
}

.hero {
  min-height: calc(92vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 52px;
  padding-top: 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 52px -5vw auto;
  height: min(72%, 720px);
  z-index: -1;
  border-radius: 0 0 44px 44px;
  background:
    radial-gradient(circle at 77% 36%, rgba(247, 189, 54, 0.13), transparent 26rem),
    radial-gradient(circle at 25% 20%, rgba(91, 64, 190, 0.18), transparent 25rem);
  pointer-events: none;
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 6vw, 76px);
}

h2 {
  font-size: clamp(36px, 4vw, 48px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.gold {
  color: var(--gold);
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.metric {
  min-height: 78px;
  padding: 16px;
  border-left: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: center;
}

.metric b {
  display: block;
  color: var(--gold-2);
  font-size: 20px;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.hero-art {
  min-height: 620px;
  aspect-ratio: 1.04;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(247, 189, 54, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 44%, rgba(247, 189, 54, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(8, 11, 47, 0.95), rgba(4, 5, 28, 0.72));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 43%, rgba(247, 189, 54, 0.22), transparent 14rem),
    radial-gradient(circle at 74% 38%, rgba(105, 61, 186, 0.35), transparent 18rem),
    linear-gradient(135deg, rgba(11, 18, 60, 0.72), rgba(5, 7, 29, 0.02));
  filter: blur(2px);
  -webkit-mask-image: radial-gradient(ellipse at 52% 48%, #000 58%, rgba(0, 0, 0, 0.74) 72%, transparent 94%);
  mask-image: radial-gradient(ellipse at 52% 48%, #000 58%, rgba(0, 0, 0, 0.74) 72%, transparent 94%);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 31, 0.72), transparent 16%, transparent 84%, rgba(3, 7, 31, 0.7)),
    linear-gradient(180deg, rgba(3, 7, 31, 0.5), transparent 26%, transparent 74%, rgba(3, 7, 31, 0.8));
  mix-blend-mode: multiply;
  opacity: 0.3;
  border-radius: 24px;
}

.orbital {
  position: absolute;
  width: min(88%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(247, 189, 54, 0.2);
  background:
    radial-gradient(circle, rgba(247, 189, 54, 0.16), transparent 16%),
    repeating-radial-gradient(circle, transparent 0 28px, rgba(247, 189, 54, 0.09) 29px 30px);
  filter: drop-shadow(0 0 44px rgba(247, 189, 54, 0.12)) blur(0.2px);
  opacity: 0.88;
  z-index: 2;
  mix-blend-mode: screen;
}

.visual-host .host-img,
#host .host-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04) drop-shadow(0 30px 44px rgba(0, 0, 0, 0.62));
  -webkit-mask-image: radial-gradient(ellipse at 52% 44%, #000 62%, rgba(0, 0, 0, 0.86) 76%, transparent 98%);
  mask-image: radial-gradient(ellipse at 52% 44%, #000 62%, rgba(0, 0, 0, 0.86) 76%, transparent 98%);
}

.play-host-photo {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04) brightness(0.92);
  -webkit-mask-image: radial-gradient(ellipse at 52% 46%, #000 68%, rgba(0, 0, 0, 0.8) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse at 52% 46%, #000 68%, rgba(0, 0, 0, 0.8) 84%, transparent 100%);
}

.about-host-photo {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.9);
  -webkit-mask-image: radial-gradient(ellipse at 52% 46%, #000 66%, rgba(0, 0, 0, 0.82) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse at 52% 46%, #000 66%, rgba(0, 0, 0, 0.82) 82%, transparent 100%);
}

.journey-art-image {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  filter: drop-shadow(0 32px 78px rgba(0, 0, 0, 0.42));
  transform: scale(1.04);
}

.episodes-landing-image {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 24px;
  filter: drop-shadow(0 32px 78px rgba(0, 0, 0, 0.42));
  transform: scale(1.14);
}

.stage-glow {
  position: absolute;
  z-index: 1;
  bottom: 68px;
  width: min(78%, 520px);
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 199, 62, 0.72), rgba(140, 65, 216, 0.2) 40%, transparent 72%);
  filter: blur(14px);
}

.host-name {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 6;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.72);
}

.host-name span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 245, 220, 0.82);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-art,
.studio-art,
.video-art,


.phone-art {
  width: min(66%, 330px);
  min-height: 500px;
  border: 2px solid rgba(83, 216, 255, 0.42);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(7, 20, 54, 0.95), rgba(5, 8, 32, 0.98));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.035), 0 30px 70px rgba(0, 0, 0, 0.45);
  padding: 70px 24px 28px;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 96px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.13);
}

.notif-card {
  padding: 18px;
  border: 1px solid rgba(83, 216, 255, 0.34);
  border-radius: 18px;
  background: rgba(83, 216, 255, 0.12);
}

.notif-card strong,
.notif-card span,
.video-meta strong,
.video-meta span {
  display: block;
}

.notif-card strong,
.video-meta strong {
  color: var(--cream);
}

.notif-card span,
.video-meta span {
  color: var(--gold-2);
  font-weight: 800;
}

.timer-ring {
  width: 160px;
  height: 160px;
  margin: 42px auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 12px solid rgba(83, 216, 255, 0.22);
  border-top-color: var(--gold);
  color: var(--gold-2);
  font-size: 32px;
  font-weight: 900;
}

.answer-bars {
  display: grid;
  gap: 14px;
}

.answer-bars span {
  height: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(247, 189, 54, 0.75), rgba(83, 216, 255, 0.26));
}

.studio-art {
  display: grid;
  place-items: center;
}

.spotlight {
  position: absolute;
  inset: 0;
  clip-path: polygon(35% 0, 65% 0, 88% 100%, 12% 100%);
  background: linear-gradient(180deg, rgba(247, 189, 54, 0.28), transparent 78%);
}

.stage-seat {
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(247, 189, 54, 0.5);
  background: radial-gradient(circle, rgba(255, 120, 201, 0.22), rgba(35, 6, 45, 0.92));
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 900;
}

.selection-ticket {
  position: absolute;
  left: 0;
  bottom: 30px;
  padding: 18px 22px;
  max-width: min(520px, calc(100% - 48px));
  border-radius: 8px;
  border: 1px solid rgba(247, 189, 54, 0.34);
  background: rgba(5, 7, 31, 0.86);
}

.host-photo-ticket {
  z-index: 6;
  left: 24px;
  bottom: 24px;
  backdrop-filter: blur(12px);
}

.selection-ticket strong,
.selection-ticket span {
  display: block;
}

.selection-ticket strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
}

.selection-ticket span {
  max-width: 40ch;
  color: var(--cream);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.35;
}

.mic-stand {
  position: absolute;
  right: 60px;
  bottom: 55px;
  width: 18px;
  height: 150px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--gold), rgba(247, 189, 54, 0.1));
}

.video-art {
  display: grid;
  gap: 18px;
  align-content: center;
}

.video-screen {
  min-height: 250px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(247, 189, 54, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(3, 7, 31, 0.88);
}

.video-screen span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #150c00;
  font-size: 36px;
}

.video-meta {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.film-strip {
  height: 46px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, rgba(247, 189, 54, 0.8) 0 24px, rgba(255, 255, 255, 0.08) 24px 38px);
  opacity: 0.75;
}

.winner-art {
  display: grid;
  place-items: center;
}

.cup-shape {
  width: 230px;
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 34px 34px 70px 70px;
  background: linear-gradient(160deg, #ffdc76, #b86a17);
  color: #150c00;
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 26px 60px rgba(247, 189, 54, 0.24);
}

.medal-row {
  position: absolute;
  top: 32px;
  display: flex;
  gap: 18px;
}

.medal-row span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 189, 54, 0.18);
  border: 1px solid rgba(247, 189, 54, 0.4);
  color: var(--gold-2);
  font-weight: 900;
}

.speed-card {
  position: absolute;
  bottom: 34px;
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(5, 7, 31, 0.88);
  color: var(--gold-2);
  font-size: 24px;
  font-weight: 900;
}

.guide-art {
  display: grid;
  place-items: center;
}

.route-line {
  position: absolute;
  width: 80%;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.guide-art span {
  position: absolute;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(115, 226, 167, 0.18);
  border: 1px solid rgba(115, 226, 167, 0.42);
  color: var(--cream);
  font-weight: 900;
}

.guide-art span:nth-of-type(1) { left: 4%; top: 48%; }
.guide-art span:nth-of-type(2) { left: 31%; top: 28%; }
.guide-art span:nth-of-type(3) { left: 58%; top: 48%; }
.guide-art span:nth-of-type(4) { right: 4%; top: 28%; }

.guide-art strong {
  position: absolute;
  bottom: 70px;
  color: var(--gold-2);
  font-size: 32px;
}

.support-art {
  display: grid;
  align-content: center;
  gap: 22px;
}

.support-window {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(115, 226, 167, 0.28);
  background: rgba(4, 39, 46, 0.82);
}

.support-window strong,
.support-window span {
  display: block;
}

.support-window strong {
  margin-bottom: 16px;
  color: var(--emerald);
  font-size: 28px;
}

.support-window span {
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.chat-bubble {
  justify-self: end;
  padding: 16px 20px;
  border-radius: 18px 18px 4px 18px;
  background: var(--gold);
  color: #150c00;
  font-weight: 900;
}

.mission-art {
  display: grid;
  place-items: center;
  text-align: center;
}

.mission-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(247, 189, 54, 0.28);
  box-shadow: inset 0 0 0 40px rgba(255, 255, 255, 0.02);
}

.mission-art strong {
  color: var(--gold-2);
  font-size: 130px;
  line-height: 1;
}

.mission-art span {
  color: var(--cream);
  font-size: 28px;
  font-family: Georgia, "Times New Roman", serif;
}

.mission-art p {
  color: var(--muted);
}

body[data-page="daily"] .hero::before {
  background:
    radial-gradient(circle at 72% 34%, rgba(83, 216, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 23% 28%, rgba(247, 189, 54, 0.13), transparent 24rem),
    linear-gradient(90deg, rgba(6, 15, 48, 0.55), transparent 62%);
}

body[data-page="about"] .hero::before {
  background:
    radial-gradient(circle at 74% 36%, rgba(247, 189, 54, 0.15), transparent 24rem),
    radial-gradient(circle at 28% 24%, rgba(70, 109, 255, 0.2), transparent 26rem);
}

body[data-page="about"] .hero-art {
  border-color: rgba(247, 189, 54, 0.25);
  background:
    radial-gradient(circle at 44% 30%, rgba(247, 189, 54, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(5, 12, 46, 0.95), rgba(18, 8, 52, 0.78));
}

body[data-page="about"] .hero-art::after {
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(3, 7, 31, 0.62), transparent 20%, transparent 78%, rgba(3, 7, 31, 0.68)),
    linear-gradient(180deg, rgba(3, 7, 31, 0.22), transparent 42%, rgba(3, 7, 31, 0.82));
}

body[data-page="daily"] .hero {
  min-height: calc(100vh - 126px);
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 7vw, 110px);
  padding-top: 72px;
  padding-bottom: 68px;
}

body[data-page="daily"] h1 {
  font-size: clamp(64px, 7vw, 92px);
  max-width: 760px;
}

body[data-page="daily"] .lead {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.55;
}

body[data-page="daily"] .metrics {
  max-width: 720px;
  margin-top: 38px;
}

body[data-page="daily"] .metric {
  min-height: 96px;
  padding: 18px 18px;
}

body[data-page="daily"] .hero-art {
  min-height: 560px;
  aspect-ratio: 1.16;
  border-color: rgba(83, 216, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 63% 45%, rgba(45, 95, 177, 0.28), transparent 17rem),
    linear-gradient(160deg, rgba(3, 34, 64, 0.95), rgba(3, 7, 31, 0.8)),
    repeating-linear-gradient(90deg, rgba(83, 216, 255, 0.05) 0 1px, transparent 1px 42px);
}

body[data-page="daily"] .hero-art::before {
  inset: 12%;
  border: 1px solid rgba(83, 216, 255, 0.12);
  border-radius: 22px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 34px),
    radial-gradient(circle at 52% 48%, rgba(111, 47, 164, 0.2), transparent 15rem);
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

body[data-page="daily"] .hero-art::after {
  opacity: 0.2;
  background:
    linear-gradient(90deg, rgba(3, 7, 31, 0.6), transparent 20%, transparent 80%, rgba(3, 7, 31, 0.6)),
    linear-gradient(180deg, rgba(3, 7, 31, 0.42), transparent 30%, rgba(3, 7, 31, 0.78));
}

body[data-page="daily"] .orbital {
  border-radius: 24px;
  width: min(78%, 520px);
  opacity: 0;
}

.daily-phone-panel {
  position: relative;
  z-index: 5;
  width: min(104%, 850px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.42));
  border-radius: 24px;
}

body[data-page="host"] .hero::before {
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 120, 201, 0.14), transparent 24rem),
    radial-gradient(circle at 35% 24%, rgba(247, 189, 54, 0.14), transparent 22rem);
}

body[data-page="host"] .hero-art {
  border-color: rgba(255, 120, 201, 0.26);
  background:
    radial-gradient(circle at 35% 20%, rgba(247, 189, 54, 0.18), transparent 15rem),
    linear-gradient(145deg, rgba(35, 6, 45, 0.92), rgba(5, 7, 31, 0.76));
}

body[data-page="host"] .hero-art::after {
  opacity: 0.24;
  background:
    linear-gradient(90deg, rgba(3, 7, 31, 0.62), transparent 20%, transparent 78%, rgba(3, 7, 31, 0.68)),
    linear-gradient(180deg, rgba(3, 7, 31, 0.28), transparent 44%, rgba(3, 7, 31, 0.78));
}

body[data-page="episodes"] .hero::before {
  background:
    radial-gradient(circle at 76% 36%, rgba(111, 47, 164, 0.3), transparent 25rem),
    radial-gradient(circle at 20% 20%, rgba(247, 189, 54, 0.1), transparent 22rem);
}

body[data-page="episodes"] .hero-art {
  width: min(100%, 560px);
  min-height: 560px;
  aspect-ratio: 1;
  justify-self: center;
  border-color: rgba(247, 189, 54, 0.22);
  background:
    linear-gradient(135deg, rgba(3, 7, 31, 0.92), rgba(39, 15, 79, 0.88)),
    radial-gradient(circle at 50% 18%, rgba(255, 245, 220, 0.16), transparent 10rem);
}

body[data-page="episodes"] .hero-art::after {
  background:
    linear-gradient(90deg, rgba(3, 7, 31, 0.82), transparent 22%, transparent 78%, rgba(3, 7, 31, 0.82)),
    linear-gradient(180deg, rgba(247, 189, 54, 0.08), transparent 34%, rgba(3, 7, 31, 0.88));
}

body[data-page="winners"] .hero-art {
  border-color: rgba(247, 189, 54, 0.42);
  background:
    radial-gradient(circle at 52% 40%, rgba(247, 189, 54, 0.26), transparent 15rem),
    linear-gradient(145deg, rgba(43, 20, 44, 0.82), rgba(3, 7, 31, 0.86));
}

body[data-page="how"] .hero-art {
  width: min(100%, 560px);
  min-height: 560px;
  aspect-ratio: 1;
  justify-self: center;
  border-color: rgba(115, 226, 167, 0.24);
  background:
    radial-gradient(circle at 48% 40%, rgba(247, 189, 54, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(3, 33, 43, 0.86), rgba(3, 7, 31, 0.84));
}

body[data-page="how"] .hero-art::after {
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(3, 7, 31, 0.55), transparent 20%, transparent 80%, rgba(3, 7, 31, 0.55)),
    linear-gradient(180deg, rgba(3, 7, 31, 0.2), transparent 45%, rgba(3, 7, 31, 0.72));
}

body[data-page="contact"] .hero-art {
  border-color: rgba(115, 226, 167, 0.3);
  background:
    radial-gradient(circle at 48% 36%, rgba(115, 226, 167, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(4, 39, 46, 0.86), rgba(3, 7, 31, 0.84));
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.wide-panel,
.form-panel {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
  min-height: 220px;
}

.card .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(116, 50, 177, 0.34);
  border: 1px solid rgba(247, 189, 54, 0.4);
  font-size: 34px;
  margin-bottom: 20px;
}

.card p,
.wide-panel p,
.timeline p,
.leader-row span,
.footer p {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  margin-top: 18px;
}

.wide-panel {
  padding: 34px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.info-cell {
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  border-left: 1px solid var(--line-soft);
}

.info-cell:first-child {
  border-left: 0;
}

.info-cell strong {
  color: var(--gold);
  display: block;
  font-size: 15px;
}

.info-cell b {
  display: block;
  font-size: 24px;
  margin-top: 5px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}

.timeline article {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.timeline article::before {
  counter-increment: step;
  content: counter(step);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #150c00;
  font-weight: 900;
  margin-bottom: 16px;
}

.winner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.winner {
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background:
    radial-gradient(circle at 50% 30%, #f7d0b3 0 20%, transparent 21%),
    linear-gradient(145deg, #2b2d68, #0c102f);
}

.winner b,
.leader-row b {
  color: var(--cream);
}

.prize {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.sponsors {
  min-height: auto;
  padding: 72px 0;
}

.sponsor-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 22px;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 189, 54, 0.12), transparent 20rem),
    radial-gradient(circle at 90% 80%, rgba(114, 57, 194, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.sponsor-card {
  min-height: 150px;
  padding: 24px 24px 24px 118px;
  border: 1px solid rgba(247, 189, 54, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(7, 11, 40, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.sponsor-card span {
  color: var(--cream);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: 0;
}

.sponsor-card p {
  margin: 10px 0 0;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
}

.sponsor-mark {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translateY(-50%);
  border-radius: 18px;
  border: 1px solid rgba(247, 189, 54, 0.34);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 0.75rem),
    linear-gradient(145deg, rgba(247, 189, 54, 0.26), rgba(111, 47, 164, 0.24));
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.06), 0 16px 34px rgba(0, 0, 0, 0.28);
}

.sponsor-mark::before,
.sponsor-mark::after {
  content: "";
  position: absolute;
}

.sponsor-mark.snacks::before {
  width: 42px;
  height: 22px;
  left: 14px;
  top: 25px;
  border-radius: 50%;
  background: #d98b2b;
  box-shadow: 8px -10px 0 #f1bd4c, 18px 2px 0 #b96024;
}

.sponsor-mark.sweets::before {
  width: 44px;
  height: 32px;
  left: 13px;
  top: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4c75a, #d56d3a);
  box-shadow: inset 12px 0 0 rgba(255, 255, 255, 0.18);
}

.sponsor-mark.rods::before {
  width: 50px;
  height: 8px;
  left: 10px;
  top: 20px;
  border-radius: 8px;
  background: #bcc6d7;
  box-shadow: 0 14px 0 #8d98aa, 0 28px 0 #d5dbe6;
  transform: rotate(-18deg);
}

.sponsor-mark.garments::before {
  width: 40px;
  height: 44px;
  left: 15px;
  top: 14px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(145deg, #8354d7, #d36bc0);
}

.sponsor-mark.garments::after {
  width: 22px;
  height: 12px;
  left: 24px;
  top: 14px;
  border-radius: 0 0 14px 14px;
  background: rgba(8, 10, 36, 0.72);
}

.sponsor-mark.mobile::before {
  width: 28px;
  height: 46px;
  left: 21px;
  top: 12px;
  border-radius: 8px;
  border: 3px solid #d8e2ff;
  background: rgba(6, 10, 38, 0.5);
}

.sponsor-mark.books::before {
  width: 48px;
  height: 36px;
  left: 11px;
  top: 18px;
  border-radius: 4px 12px 12px 4px;
  background: linear-gradient(90deg, #f1bd4c 0 48%, #fff0b8 50% 54%, #51b9d7 56%);
}

.episode-thumb {
  min-height: 170px;
  margin: -6px -6px 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 189, 54, 0.25);
  background:
    linear-gradient(135deg, rgba(247, 189, 54, 0.18), rgba(98, 62, 194, 0.26)),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18), transparent 5rem),
    rgba(8, 11, 42, 0.9);
}

.episode-thumb span {
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(0, 2, 16, 0.54);
  padding: 44px 0 26px;
}

.footer-inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.82fr) 1.2fr;
  gap: 34px;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 58px;
}

.newsletter {
  display: flex;
  margin-top: 18px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 44px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 6px 0 0 6px;
  padding: 0 14px;
}

.newsletter button {
  width: 48px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--gold);
  color: #170e00;
  font-weight: 900;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.quiz-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
}

.date-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.date-tile b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.95;
}

.agreement {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 28px 0 0;
  color: var(--muted);
}

.agreement input {
  width: 24px;
  height: 24px;
  accent-color: var(--gold);
}

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

.faq details {
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
}

.faq summary {
  cursor: pointer;
  color: var(--cream);
  font-weight: 800;
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}

.leaderboard {
  display: grid;
  gap: 10px;
}

.selection-weeks {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.selection-week-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(247, 189, 54, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 189, 54, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.selection-week-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.selection-week-card h3 {
  margin: 4px 0 2px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

.selection-week-card p {
  margin: 0;
  color: var(--muted);
}

.selection-counts {
  display: flex;
  gap: 10px;
}

.selection-counts b {
  min-width: 82px;
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  color: var(--gold);
  background: rgba(3, 7, 31, 0.42);
  font-size: 24px;
  line-height: 1;
}

.selection-counts small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.leader-row {
  display: grid;
  grid-template-columns: 126px 1fr 120px 170px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.countdown div {
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.countdown b {
  display: block;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

.form-panel {
  padding: 34px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 14px 16px;
  min-height: 52px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.auth-shell {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 90px 0;
}

.auth-card {
  width: min(90%, 520px);
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 190px auto auto;
  }

  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 5%;
    background: rgba(3, 6, 27, 0.98);
    border-bottom: 1px solid var(--line-soft);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 52px;
    border-bottom-width: 1px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions .btn:not(.primary) {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 460px;
  }

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

  .timeline,
  .info-strip,
  .grid.three,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    height: 78px;
  }

  .app-banner {
    top: 78px;
    font-size: 13px;
  }

  .header-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 54px;
  }

  .brand span {
    font-size: 17px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .primary {
    display: none;
  }

  .nav {
    inset: 78px 0 auto 0;
  }

  .section {
    width: calc(100% - 40px);
    min-height: auto;
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .lead {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .metrics,
  .grid.four,
  .grid.three,
  .grid.two,
  .timeline,
  .info-strip,
  .winner-grid,
  .sponsor-row,
  .footer-grid,
  .quiz-box,
  .countdown,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .leader-row {
    grid-template-columns: 48px 1fr;
  }

  .selection-week-card,
  .selection-counts {
    grid-template-columns: 1fr;
  }

  .selection-week-card {
    align-items: stretch;
  }

  .selection-counts {
    display: grid;
  }

  .leader-row span:nth-child(3),
  .leader-row span:nth-child(4) {
    grid-column: 2;
  }

  .hero-art {
    min-height: 390px;
  }

  .host-name {
    left: 18px;
    bottom: 18px;
    font-size: 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }
}


/* ========== NEW WINNERS HERO CARD STYLES ========== */

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

/* Featured Winner Hero Card */
.winner-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 197, 63, 0.25);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(12, 17, 52, 0.95), rgba(6, 8, 35, 0.98));
  overflow: hidden;
  margin: 32px 0 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 197, 63, 0.08);
  position: relative;
}

.winner-hero-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(180deg, #ffdc68, #eba221);
  color: #170d00;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255, 197, 63, 0.3);
}

.winner-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 197, 63, 0.1), transparent 70%);
}

.winner-hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 197, 63, 0.4);
  box-shadow: 0 0 40px rgba(255, 197, 63, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.winner-hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 197, 63, 0.15), transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.winner-hero-info {
  padding: 60px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.winner-hero-name {
  font-size: 42px;
  font-weight: 900;
  color: #fff7df;
  margin: 0 0 12px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.winner-hero-city {
  font-size: 18px;
  color: #ffc53f;
  margin: 0 0 8px;
  font-weight: 700;
}

.winner-hero-profession {
  font-size: 16px;
  color: #c8c4dd;
  margin: 0 0 28px;
  font-weight: 600;
}

.winner-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.winner-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 197, 63, 0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #ffc53f;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #aaa5c6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.winner-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(115, 226, 167, 0.15);
  color: #73e2a7;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(115, 226, 167, 0.3);
  width: fit-content;
}

/* Compact Winner Cards */
.winner-grid-compact {
  margin-top: 40px;
}

.winner-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff7df;
  margin: 0 0 24px;
  padding-left: 8px;
  border-left: 4px solid #ffc53f;
}

.winner-card-compact {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(12, 17, 52, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

.winner-card-compact:hover {
  border-color: rgba(255, 197, 63, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.winner-compact-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 197, 63, 0.3);
}

.winner-compact-info b {
  font-size: 18px;
  color: #fff7df;
  display: block;
  margin-bottom: 4px;
}

.winner-compact-info p {
  font-size: 14px;
  color: #c8c4dd;
  margin: 2px 0;
}

.winner-compact-time {
  color: #ffc53f !important;
  font-weight: 700;
}

/* ========== SELECTED PLAYERS HERO STYLES ========== */

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

.selected-hero-section {
  margin: 32px 0 48px;
}

.selected-hero-badge {
  text-align: center;
  background: linear-gradient(180deg, #ff6b35, #e85a28);
  color: #fff;
  padding: 10px 32px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.selected-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(12, 17, 52, 0.95), rgba(6, 8, 35, 0.98));
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 107, 53, 0.08);
}

.selected-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent 70%);
}

.selected-hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.selected-hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
  animation: pulse-glow-selected 3s ease-in-out infinite;
}

@keyframes pulse-glow-selected {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.selected-hero-info {
  padding: 60px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selected-hero-name {
  font-size: 42px;
  font-weight: 900;
  color: #fff7df;
  margin: 0 0 12px;
  line-height: 1.1;
}

.selected-hero-city {
  font-size: 18px;
  color: #ff6b35;
  margin: 0 0 8px;
  font-weight: 700;
}

.selected-hero-profession {
  font-size: 16px;
  color: #c8c4dd;
  margin: 0 0 28px;
  font-weight: 600;
}

.selected-hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.selected-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
}

.detail-icon {
  font-size: 20px;
}

.detail-text {
  font-size: 15px;
  color: #fff7df;
  font-weight: 600;
}

.selected-hero-footer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.selected-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.selected-hero-footer p {
  font-size: 14px;
  color: #c8c4dd;
  margin: 4px 0;
  line-height: 1.5;
}

.selected-hero-footer strong {
  color: #ffc53f;
}

.selected-stay-tuned {
  color: #73e2a7 !important;
  font-weight: 800;
  font-size: 16px !important;
  margin-top: 12px !important;
}

/* Selected compact cards */
.selected-compact {
  position: relative;
}

.selected-badge-small {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(180deg, #ff6b35, #e85a28);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .winner-hero-card,
  .selected-hero-card {
    grid-template-columns: 1fr;
  }
  .winner-hero-visual,
  .selected-hero-visual {
    padding: 80px 20px 30px;
  }
  .winner-hero-info,
  .selected-hero-info {
    padding: 20px 24px 30px;
  }
  .winner-hero-name,
  .selected-hero-name {
    font-size: 32px;
  }
  .winner-hero-stats {
    grid-template-columns: 1fr;
  }
}


/* ========== WINNERS PAGE - HERO LAYOUT ========== */

.winners-hero-section {
  padding-top: 0;
}

.winners-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 32px 0 48px;
}

/* LEFT SIDE */
.winners-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.winners-eyebrow {
  color: #ffc53f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.winners-title {
  margin: 0;
  line-height: 1.1;
}

.winners-title-white {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: #fff7df;
}

.winners-title-gold {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: #ffc53f;
}

.winners-desc {
  font-size: 18px;
  color: #c8c4dd;
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
}

.winners-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.winners-actions .btn {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.winners-actions .btn.primary {
  background: linear-gradient(180deg, #ffdc68, #eba221);
  color: #170d00;
}

.winners-actions .btn.ghost {
  background: rgba(255,255,255,0.04);
  color: #fff7df;
  border: 1px solid rgba(255, 210, 100, 0.28);
}

.winners-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 197, 63, 0.1);
  border: 1px solid rgba(255, 197, 63, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-text b {
  display: block;
  font-size: 14px;
  color: #fff7df;
  margin-bottom: 2px;
}

.info-text span {
  font-size: 12px;
  color: #aaa5c6;
}

/* RIGHT SIDE - Big Winner Card */
.winners-right {
  display: flex;
  justify-content: center;
}

.winner-big-card {
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(255, 197, 63, 0.2);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(12, 17, 52, 0.9), rgba(6, 8, 35, 0.98));
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 197, 63, 0.06);
  padding: 24px;
}

.winner-big-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #ffc53f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-icon {
  font-size: 18px;
}

.winner-big-badge::before,
.winner-big-badge::after {
  content: "◆";
  color: rgba(255, 197, 63, 0.4);
  font-size: 10px;
}

.winner-big-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.winner-big-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid rgba(255, 197, 63, 0.3);
  box-shadow: 0 0 40px rgba(255, 197, 63, 0.15);
  position: relative;
  z-index: 2;
}

.winner-big-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 197, 63, 0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: winner-pulse 3s ease-in-out infinite;
}

@keyframes winner-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}

.winner-big-info {
  text-align: center;
  margin-bottom: 20px;
}

.winner-big-name {
  font-size: 28px;
  font-weight: 900;
  color: #ffc53f;
  margin: 0 0 8px;
}

.winner-big-city {
  font-size: 16px;
  color: #c8c4dd;
  margin: 0 0 4px;
}

.winner-big-detail {
  font-size: 14px;
  color: #aaa5c6;
  margin: 0 0 4px;
}

.winner-big-date {
  font-size: 14px;
  color: #73e2a7;
  font-weight: 700;
  margin: 0;
}

.winner-big-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
}

.winner-big-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.winner-big-footer-text p {
  font-size: 13px;
  color: #c8c4dd;
  margin: 0 0 4px;
  line-height: 1.4;
}

.winner-big-footer-text strong {
  color: #ffc53f;
}

.winner-big-stay {
  color: #73e2a7 !important;
  font-weight: 700;
  margin-top: 4px !important;
}

/* Compact cards for other winners */
.winner-grid-compact {
  margin-top: 48px;
}

.winner-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff7df;
  margin: 0 0 24px;
  padding-left: 12px;
  border-left: 4px solid #ffc53f;
}

.winner-card-compact {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(12, 17, 52, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

.winner-card-compact:hover {
  border-color: rgba(255, 197, 63, 0.3);
  transform: translateY(-2px);
}

.winner-compact-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 197, 63, 0.3);
}

.winner-compact-info b {
  font-size: 18px;
  color: #fff7df;
  display: block;
  margin-bottom: 4px;
}

.winner-compact-info p {
  font-size: 14px;
  color: #c8c4dd;
  margin: 2px 0;
}

.winner-compact-time {
  color: #ffc53f !important;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .winners-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .winners-title-white,
  .winners-title-gold {
    font-size: 36px;
  }
  .winners-info-cards {
    grid-template-columns: 1fr;
  }
  .winner-big-card {
    max-width: 100%;
  }
}


/* ========== DAILY QUIZ WINNERS TABLE ========== */
.daily-winners-table { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.daily-winner-row { display: grid; grid-template-columns: 56px 1fr 90px 110px 70px; gap: 14px; align-items: center; background: rgba(12,17,52,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 18px; transition: all 0.25s; }
.daily-winner-row:hover { border-color: rgba(255,197,63,0.25); background: rgba(12,17,52,0.8); }
.dw-photo { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid rgba(255,197,63,0.25); }
.dw-info b { color: #fff7df; font-size: 15px; display: block; margin-bottom: 2px; }
.dw-info span { color: #aaa5c6; font-size: 12px; }
.dw-date { color: #ffc53f; font-weight: 800; font-size: 13px; }
.dw-time { color: #73e2a7; font-weight: 700; font-size: 13px; font-family: monospace; }
.dw-prize { color: #ffc53f; font-weight: 900; font-size: 15px; text-align: right; }

/* ========== WEEKLY SELECTION TABLE ========== */
.weekly-table { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.weekly-row { display: grid; grid-template-columns: 44px 80px 1fr 90px 100px 110px 1fr 90px; gap: 10px; align-items: center; background: rgba(12,17,52,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 14px; font-size: 13px; transition: all 0.25s; }
.weekly-row:hover { border-color: rgba(255,255,255,0.12); background: rgba(12,17,52,0.8); }
.weekly-row.selected { border-left: 3px solid #73e2a7; }
.weekly-row.rejected { border-left: 3px solid #ff6b7a; }
.weekly-row.waiting { border-left: 3px solid #ffc53f; }
.w-photo { width: 36px; height: 36px; border-radius: 50%; background-size: cover; background-position: center; }
.w-date { color: #ffc53f; font-weight: 800; font-size: 12px; }
.w-name { color: #fff7df; font-weight: 700; font-size: 14px; }
.w-city { color: #aaa5c6; font-size: 12px; }
.w-prof { color: #aaa5c6; font-size: 12px; }
.w-status { font-weight: 800; font-size: 12px; }
.w-result { color: #c8c4dd; font-size: 12px; }
.w-time { color: #73e2a7; font-weight: 700; font-size: 12px; font-family: monospace; }

/* Responsive */
@media (max-width: 900px) {
  .daily-winner-row { grid-template-columns: 48px 1fr 80px; gap: 10px; padding: 12px; }
  .dw-time, .dw-prize { display: none; }
  .weekly-row { grid-template-columns: 36px 60px 1fr 80px; gap: 8px; padding: 10px; }
  .w-city, .w-prof, .w-result { display: none; }
}
