@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Pixelify+Sans:wght@400;700&display=swap');

:root {
  --yellow: #ffd400;
  --yellow-warm: #ffae00;
  --yellow-light: #fff097;
  --cream: #fff7d4;
  --ink: #070707;
  --black: #050505;
  --black-2: #111;
  --black-3: #1a180b;
  --card-bg-1: rgb(16, 16, 12);
  --warm-grey: #d6d0aa;
  --warm-grey-2: #c9c09d;
  --warm-grey-3: #a6a189;
  --border-yellow: rgba(255, 212, 0, 0.22);
  --border-yellow-soft: rgba(255, 212, 0, 0.14);
  --border-yellow-strong: rgba(255, 212, 0, 0.35);
  --shadow-card: 0 34px 90px rgba(0, 0, 0, 0.48);
  --shadow-glow: 0 18px 22px rgba(255, 212, 0, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at 18% 8%, rgba(255, 212, 0, 0.2) 0%, rgba(255, 212, 0, 0) 36%),
              radial-gradient(circle at 82% 14%, rgba(255, 174, 0, 0.12) 0%, rgba(255, 174, 0, 0) 38%),
              linear-gradient(134deg, rgb(5, 5, 5) 0%, rgb(18, 17, 11) 46%, rgb(7, 7, 7) 100%);
  background-attachment: fixed;
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 64px 0;
}

.font-pixel {
  font-family: 'Pixelify Sans', monospace;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  background: rgba(12, 12, 9, 0.78);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 212, 0, 0.24);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 64px;
}

@media (max-width: 565px) {
  .header {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 6px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
}

.logo-mark-inner {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-warm) 100%);
  border-radius: 11px;
  filter: drop-shadow(0 0 14px rgba(255, 212, 0, 0.36));
}

.logo-mark-inner span {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.32px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: -0.32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--warm-grey-3);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-link.is-active {
  background: var(--yellow);
  color: var(--black-2);
  filter: drop-shadow(0 10px 14px rgba(255, 212, 0, 0.25));
}

/* ===========================
   HERO
   =========================== */
.section {
  margin-bottom: 120px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-bottom: 70px;
}

.hero-visual {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 650px;
}

.hero-visual-bg {
  position: absolute;
  inset: 4px -27px -23px -26px;
  transform: rotate(-4.3deg) skewX(1.5deg);
  border: 1px solid rgba(255, 212, 0, 0.22);
  background: radial-gradient(ellipse at 60% 30%, rgba(255, 212, 0, 0.19) 0%, rgba(255, 212, 0, 0) 38%),
              linear-gradient(162deg, rgba(255, 212, 0, 0.08) 0%, rgba(255, 255, 255, 0.024) 100%);
  border-radius: 127px 149px 464px 436px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), inset 0 0 110px rgba(255, 212, 0, 0.08);
}

.hero-visual-bg::after {
  content: '';
  position: absolute;
  inset: 30px 30px 30px 30px;
  border: 1px dashed var(--border-yellow-strong);
  border-radius: 100px 117px 373px 351px;
  pointer-events: none;
}

.live-pick-card {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  width: 385px;
  padding: 24px;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.58), 0 0 44px rgba(255, 212, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}

.live-pick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.5) 0%, rgba(255, 212, 0, 0) 38%);
  pointer-events: none;
}

.live-pick-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.live-pick-title {
  font-weight: 900;
  font-size: 16px;
  color: var(--black-2);
  text-transform: uppercase;
}

.live-pick-badge {
  width: 44px;
  height: 44px;
  background: #0a0a0a;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pixelify Sans', monospace;
  color: var(--yellow);
  font-size: 14px;
}

.live-pick-image {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.06) 0%, rgba(255, 212, 0, 0.15) 100%),
              rgb(21, 21, 21);
  border: 8px solid var(--black-2);
  border-radius: 26px;
  padding: 8px;
  overflow: hidden;
}

.live-pick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.live-pick-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

.live-pick-name {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--black-2);
  line-height: 24px;
}

.live-pick-cta {
  background: var(--black-2);
  color: var(--yellow);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

.floating-logo {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 212, 0, 0.72);
  border-radius: 26px;
  padding: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.48), 0 0 30px rgba(255, 212, 0, 0.26);
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.floating-logo--duck {
  width: 104px;
  height: 104px;
  top: 34px;
  left: 16px;
  transform: rotate(-12deg);
}

.floating-logo--supercar {
  width: 128px;
  height: 128px;
  top: 99px;
  right: 15px;
  transform: rotate(11deg);
}

.floating-logo--planet {
  width: 122px;
  height: 122px;
  bottom: 111px;
  left: -14px;
  transform: rotate(9deg);
}

.floating-logo--neon {
  width: 104px;
  height: 104px;
  bottom: 49px;
  right: 41px;
  transform: rotate(-14deg);
}

.hero-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid var(--border-yellow);
  border-radius: 999px;
  font-family: 'Pixelify Sans', monospace;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 1.12px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 132px;
  line-height: 113.52px;
  letter-spacing: -7.26px;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(255, 212, 0, 0.2);
}

.hero-title .accent {
  display: block;
  color: var(--yellow);
  filter: drop-shadow(0 12px 18px rgba(255, 212, 0, 0.28));
}

.hero-text {
  max-width: 560px;
  font-size: 17px;
  line-height: 29.24px;
  color: var(--warm-grey);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.32px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 50%, var(--yellow-warm) 100%);
  color: var(--ink);
  filter: drop-shadow(0 18px 22px rgba(255, 212, 0, 0.3));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-yellow);
  color: var(--cream);
}

/* ===========================
   TICKER
   =========================== */
.ticker {
  border-top: 1px solid rgba(255, 212, 0, 0.2);
  border-bottom: 1px solid rgba(255, 212, 0, 0.2);
  background: linear-gradient(90deg, rgba(255, 212, 0, 0.12) 0%, rgba(255, 212, 0, 0) 45%, rgba(255, 212, 0, 0.1) 100%);
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 120px;
}

.ticker-track {
  display: flex;
  gap: 22px;
  animation: tickerScroll 38s linear infinite;
  width: max-content;
}

.ticker-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--yellow);
  border-radius: 999px;
  white-space: nowrap;
  filter: drop-shadow(0 10px 15px rgba(255, 212, 0, 0.18));
}

.ticker-pill-title {
  font-weight: 900;
  font-size: 16px;
  color: var(--black-2);
  text-transform: uppercase;
}

.ticker-pill-meta {
  font-weight: 900;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   ABOUT + COLLAGE ROW
   =========================== */
.about-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.about-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  padding: 39px;
  background: radial-gradient(ellipse at 15% 15%, rgba(255, 212, 0, 0.2) 0%, rgba(255, 212, 0, 0) 38%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 212, 0, 0.04) 100%);
  border: 1px solid var(--border-yellow);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.eyebrow {
  font-family: 'Pixelify Sans', monospace;
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.about-card-heading {
  margin-top: 10px;
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 84px;
  line-height: 73.92px;
  letter-spacing: -3.36px;
  text-transform: uppercase;
  color: var(--cream);
}

.about-card-heading .accent {
  color: var(--yellow);
}

.about-card-text {
  margin-top: 28px;
  max-width: 560px;
  font-size: 16px;
  line-height: 27.2px;
  color: #d8d0a7;
}

.about-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 9px;
}

.about-tag {
  padding: 11px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 212, 0, 0.25);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: #ddd3a4;
}

.collage-card {
  flex: 1;
  min-width: 0;
  min-height: 450px;
  padding: 27px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 14px;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 212, 0, 0.22) 0%, rgba(255, 212, 0, 0) 36%),
              rgb(17, 16, 11);
  border: 1px solid var(--border-yellow);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.collage-poster {
  flex: 0 0 auto;
  width: 252px;
  background: #050505;
  border: 1px solid rgba(255, 212, 0, 0.28);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.collage-poster img {
  width: 100%;
  height: 308px;
  object-fit: cover;
}

.collage-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.68) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.collage-poster-name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  z-index: 1;
}

.collage-poster--r1 { transform: rotate(-7deg); }
.collage-poster--r2 { transform: rotate(6deg); }
.collage-poster--r3 { transform: rotate(8deg); }
.collage-poster--r4 { transform: rotate(-5deg); }

/* ===========================
   GAMES GRID
   =========================== */
.section-head {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head-text {
  flex: 1;
  min-width: 0;
}

.section-head-eyebrow {
  display: block;
  font-family: 'Pixelify Sans', monospace;
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.section-head-title {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 96px;
  line-height: 84.48px;
  letter-spacing: -4.8px;
  text-transform: uppercase;
  color: var(--cream);
}

.section-head-aside {
  width: 404px;
  font-size: 16px;
  line-height: 27.2px;
  color: #cac39e;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.games-grid-small {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.game-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 19px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%),
              var(--card-bg-1);
  border: 1px solid rgba(255, 212, 0, 0.2);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 212, 0, 0.2);
}

.game-card-media {
  position: relative;
  background: var(--black-3);
  border: 1px solid rgba(255, 212, 0, 0.18);
  border-radius: 22px;
  overflow: hidden;
}

.game-card--large .game-card-media {
  height: 303px;
}

.game-card--small .game-card-media {
  height: 165px;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.74) 100%);
  pointer-events: none;
}

.game-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  color: var(--black-2);
  text-transform: uppercase;
  z-index: 1;
}

.game-card-title {
  margin-top: 10px;
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 37.4px;
  line-height: 33.7px;
  letter-spacing: -1.498px;
  text-transform: uppercase;
  color: var(--cream);
}

.game-card-desc {
  font-size: 14px;
  line-height: 22.12px;
  color: var(--warm-grey-2);
}

.game-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  margin-top: auto;
  border-top: 1px solid var(--border-yellow-soft);
}

.game-card-rating {
  font-weight: 900;
  font-size: 16px;
  color: var(--yellow);
}

.game-card-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: var(--black-2);
  transition: transform 0.2s;
}

.game-card-cta:hover {
  transform: scale(1.05);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 38px;
  background: radial-gradient(ellipse at 85% 30%, rgba(255, 212, 0, 0.24) 0%, rgba(255, 212, 0, 0) 28%),
              linear-gradient(138deg, rgba(255, 212, 0, 0.11) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 212, 0, 0.25);
  border-radius: 36px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.testimonials-text {
  flex: 1;
  min-width: 0;
}

.testimonials-text .eyebrow {
  margin-bottom: 9px;
  display: block;
}

.testimonials-text h2 {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 96px;
  line-height: 84.48px;
  letter-spacing: -4.8px;
  text-transform: uppercase;
  color: var(--cream);
}

.testimonials-text p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 27.2px;
  color: #d4cba4;
}

.testimonials-cards {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card {
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  filter: drop-shadow(0 22px 25px rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.testimonial-card--tilt-l { transform: rotate(-2deg); }
.testimonial-card--tilt-r { transform: rotate(2deg); }

.testimonial-quote {
  font-size: 16px;
  line-height: 26.4px;
  color: #1c1c1c;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--black-2);
}

.testimonial-name {
  font-weight: 900;
  font-size: 16px;
  color: var(--black-2);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-block {
  padding: 57px;
  background: radial-gradient(ellipse at 50% 45%, rgba(255, 212, 0, 0.18) 0%, rgba(255, 212, 0, 0) 28%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%),
              rgb(16, 15, 11);
  border: 1px solid rgba(255, 212, 0, 0.25);
  border-radius: 42px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.cta-block .eyebrow {
  display: block;
  text-align: center;
}

.cta-block h2 {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 126px;
  line-height: 110.88px;
  letter-spacing: -6.3px;
  text-transform: uppercase;
  color: var(--cream);
}

.cta-block p {
  font-size: 16px;
  line-height: 27.2px;
  color: #d2caa1;
}

.cta-block .btn {
  margin-top: 8px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #fffbe2;
  padding: 140px 64px 80px;
  margin-top: 80px;
  border-radius: 0;
  position: relative;
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
}

.footer-inner {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-top: 0;
}

.footer-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 115.2px;
  line-height: 92.16px;
  letter-spacing: -6.912px;
  text-transform: uppercase;
  color: var(--black-2);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 23.8px;
  color: #292929;
}

.footer-copyright {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}

.footer-col h3 {
  font-weight: 900;
  font-size: 16px;
  color: #0e0e0e;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  font-size: 14px;
  line-height: 23.8px;
  color: #292929;
}

.footer-list a {
  color: inherit;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: var(--yellow-warm);
}

/* ===========================
   COOKIE POPUP
   =========================== */
.cookies {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100% - 32px);
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: cookies-pop 0.5s ease-out;
}

.cookies.is-hidden {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

@keyframes cookies-pop {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookies-card {
  position: relative;
  padding: 22px 22px 20px;
  background:
    linear-gradient(160deg, rgba(255, 212, 0, 0.06) 0%, rgba(255, 212, 0, 0) 55%),
    rgba(12, 12, 9, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-yellow);
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 240, 151, 0.06);
  overflow: hidden;
}

.cookies-glow {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.28) 0%, rgba(255, 212, 0, 0) 70%);
  pointer-events: none;
  filter: blur(2px);
}

.cookies-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
}

.cookies-chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  border: 1px solid var(--border-yellow-strong);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.05);
}

.cookies-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(255, 212, 0, 0.7);
}

.cookies-title {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--cream);
  position: relative;
}

.cookies-text {
  position: relative;
  font-size: 13px;
  line-height: 1.55;
  color: var(--warm-grey);
  margin-bottom: 18px;
}

.cookies-text a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 0, 0.45);
  text-underline-offset: 2px;
}

.cookies-text a:hover { text-decoration-color: var(--yellow); }

.cookies-actions {
  position: relative;
  display: flex;
  gap: 10px;
}

.cookies-btn {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.cookies-btn--accept {
  background: var(--yellow);
  color: var(--black-2);
  box-shadow: 0 10px 22px rgba(255, 212, 0, 0.28);
}

.cookies-btn--accept:hover {
  background: var(--yellow-light);
  box-shadow: 0 14px 28px rgba(255, 212, 0, 0.38);
}

.cookies-btn--decline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-yellow);
}

.cookies-btn--decline:hover {
  background: rgba(255, 212, 0, 0.06);
  border-color: var(--border-yellow-strong);
}

/* ===========================
   GAME DETAIL PAGE
   =========================== */
.game-hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 60px;
}

.game-hero-cover {
  flex: 0 0 420px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--border-yellow);
  box-shadow: var(--shadow-card);
}

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

.game-hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.game-hero-title {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 88px;
  line-height: 80px;
  letter-spacing: -3.5px;
  text-transform: uppercase;
  color: var(--cream);
}

.game-hero-text {
  font-size: 17px;
  line-height: 29px;
  color: var(--warm-grey);
  max-width: 640px;
}

.game-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-iframe-wrap {
  margin-top: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-yellow);
  background: var(--black-3);
  box-shadow: var(--shadow-card);
  margin-bottom: 80px;
}

.game-iframe-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}

.game-iframe-placeholder {
  width: 100%;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--warm-grey-3);
  font-family: 'Pixelify Sans', monospace;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 40px;
}

.game-iframe-placeholder span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--warm-grey-3);
  text-transform: none;
  max-width: 480px;
  line-height: 1.5;
}

/* ===========================
   POLICY PAGES
   =========================== */
.policy {
  max-width: 880px;
  margin: 0 auto 80px;
  padding: 48px 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
              rgb(16, 16, 12);
  border: 1px solid var(--border-yellow);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
}

.policy-eyebrow {
  font-family: 'Pixelify Sans', monospace;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.policy h1 {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 64px;
  line-height: 58px;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}

.policy h2 {
  font-family: 'Pixelify Sans', monospace;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 32px 0 12px;
}

.policy p, .policy li {
  font-size: 16px;
  line-height: 27px;
  color: var(--warm-grey);
  margin-bottom: 14px;
}

.policy ul {
  padding-left: 22px;
}

.policy ul li {
  margin-bottom: 8px;
}

.policy a {
  color: var(--yellow);
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .container { padding: 24px 32px 0; }
  .hero { flex-direction: column; padding-bottom: 0; }
  .hero-visual { width: 100%; height: 540px; }
  .hero-title { font-size: 96px; line-height: 84px; letter-spacing: -4px; }
  .about-row { flex-direction: column; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head-aside { width: 100%; }
  .section-head-title { font-size: 72px; line-height: 64px; letter-spacing: -3px; }
  .games-grid { grid-template-columns: 1fr; }
  .games-grid-small { grid-template-columns: repeat(2, 1fr); }
  .testimonials { flex-direction: column; padding: 32px; }
  .testimonials-text h2 { font-size: 64px; line-height: 56px; letter-spacing: -2.5px; }
  .cta-block { padding: 40px 28px; }
  .cta-block h2 { font-size: 72px; line-height: 64px; letter-spacing: -3px; }
  .footer { padding: 90px 24px 56px; clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%); margin-top: 56px; }
  .footer-inner { flex-direction: column; gap: 36px; padding-top: 0; }
  .footer-brand { font-size: 80px; line-height: 64px; letter-spacing: -4px; }
  .game-hero { flex-direction: column; }
  .game-hero-cover { flex: 0 0 auto; max-height: 360px; }
  .game-hero-title { font-size: 56px; line-height: 52px; letter-spacing: -2px; }
  .game-iframe-wrap iframe, .game-iframe-placeholder { height: 520px; }
  .policy { padding: 32px 24px; }
  .policy h1 { font-size: 44px; line-height: 40px; letter-spacing: -1.5px; }
}

@media (max-width: 720px) {
  .container { padding: 16px 16px 0; }
  .header { padding: 8px; margin-bottom: 36px; }
  .nav { gap: 4px; }
  .nav-link { padding: 8px 12px; font-size: 12px; }
  .logo-text { font-size: 14px; }
  .hero-visual { height: 440px; }
  .hero-title { font-size: 64px; line-height: 56px; letter-spacing: -2.5px; }
  .hero-text { font-size: 15px; line-height: 1.6; }
  .live-pick-card { width: 280px; padding: 16px; }
  .live-pick-name { font-size: 22px; }
  .floating-logo--duck { width: 76px; height: 76px; top: 16px; left: 8px; }
  .floating-logo--supercar { width: 88px; height: 88px; top: 56px; right: 8px; }
  .floating-logo--planet { width: 84px; height: 84px; bottom: 80px; left: -10px; }
  .floating-logo--neon { width: 76px; height: 76px; bottom: 28px; right: 24px; }
  .about-card { padding: 24px; }
  .about-card-heading { font-size: 50px; line-height: 44px; letter-spacing: -2px; }
  .collage-card { padding: 18px; gap: 10px; }
  .collage-poster { width: calc(50% - 6px); }
  .collage-poster img { height: 200px; }
  .games-grid-small { grid-template-columns: 1fr; }
  .game-card-title { font-size: 28px; line-height: 26px; letter-spacing: -1px; }
  .cookies { right: 16px; left: 16px; bottom: 16px; width: auto; }
  .cookies-card { padding: 18px 18px 16px; border-radius: 18px; }
  .cookies-title { font-size: 22px; }
  .cookies-text { font-size: 12.5px; margin-bottom: 14px; }
  .cta-block h2 { font-size: 48px; line-height: 44px; letter-spacing: -2px; }
  .game-iframe-wrap iframe, .game-iframe-placeholder { height: 380px; }
  .section { margin-bottom: 72px; }
  .ticker { margin-bottom: 72px; }
  .footer { padding: 70px 20px 48px; clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%); }
}
