@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&display=swap');


:root {
  --bg: #070508;
  --bg2: #0e0b12;
  --surface: #130f18;
  --surface2: #1c1624;
  --gold: #c9a84c;
  --gold2: #f0d080;
  --gold3: #8a6a20;
  --text: #b0a8be;
  --text-light: #f2eeff;
  --border: rgba(201, 168, 76, 0.18);
  --border-glow: rgba(201, 168, 76, 0.5);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-light);
  line-height: 1.15;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--gold2);
}

p {
  line-height: 1.8;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

.site-header.stuck {
  background: rgba(7, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light) !important;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(130deg, #f2eeff 0%, #c9a84c 55%, #8a6a20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  width: 100%;
  text-align: center;
  transition: color .3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .nav-cta {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  padding: 18px 48px;
  border-radius: 8px;
  border: none;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}

.nav a:hover {
  color: var(--text-light);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  color: #000 !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: .85rem !important;
  letter-spacing: .8px;
  transition: transform .3s, box-shadow .3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, .35);
  color: #000 !important;
}

.nav-cta::after {
  display: none !important;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(7, 5, 8, .3) 0%, rgba(7, 5, 8, .88) 70%),
    linear-gradient(to top, rgba(7, 5, 8, 1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(201, 168, 76, .08);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 5.2rem);
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 30%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
}

.hero p {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: #ebebeb;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
  white-space: nowrap;
  max-width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 50%, var(--gold3) 100%);
  color: #000;
}

.btn-gold:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, .4);
}

.btn-ghost {
  border: 1px solid var(--border-glow);
  color: var(--gold);
  background: rgba(201, 168, 76, .05);
}

.btn-ghost:hover {
  color: var(--gold2);
  background: rgba(201, 168, 76, .1);
  transform: translateY(-3px);
}

/* ─── STATS ─────────────────────────────────────── */
.stats {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}

/* ─── GAMES SECTION ─────────────────────────────────────── */
.section {
  padding: 110px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.section-head p {
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1.05rem;
}

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

.game-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-12px);
  border-color: var(--border-glow);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .7), 0 0 0 1px rgba(201, 168, 76, .15);
}

.game-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}

.game-card:hover .game-card-img {
  transform: scale(1.07);
}

.game-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.game-card-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 4px;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.game-card-body {
  padding: 24px;
}

.game-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  word-break: break-word;
}

.game-card p {
  font-size: .92rem;
  margin-bottom: 24px;
  line-height: 1.7;
  min-height: 72px;
}

.game-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.game-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-meta-label {
  font-size: .68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
}

.game-meta-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ─── FEATURED GAME ─────────────────────────────────────── */
.featured {
  background: var(--bg2);
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.featured-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 5, 8, .9) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.featured-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.featured-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(201, 168, 76, .15);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-img-badge strong {
  color: var(--gold2);
  font-size: 1rem;
}

.featured-img-badge span {
  font-size: .78rem;
  color: var(--text);
}

.featured-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.featured-text>p {
  margin-bottom: 32px;
}

.feat-bullets {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
}

.feat-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── WHY US ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .4s var(--ease), border-color .4s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 168, 76, .08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: .9rem;
}

/* ─── HOW TO PLAY ─────────────────────────────────────── */
.how-bg {
  background: var(--bg2);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.how-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  transition: border-color .4s, transform .4s var(--ease);
  position: relative;
}

.how-step:hover {
  border-color: var(--border);
  transform: translateY(-5px);
}

.how-num {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.how-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.how-step p {
  font-size: .88rem;
}

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 32px;
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card blockquote {
  font-size: .92rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.75;
}

.testi-author {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text-light);
}

.testi-loc {
  font-size: .78rem;
  color: var(--text);
}

/* ─── RESPONSIBLE ─────────────────────────────────────── */
.resp-bg {
  background: var(--bg2);
}

.resp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.resp-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}

.resp-visual h3 {
  font-size: 1.4rem;
  margin: 24px 0 10px;
}

.resp-visual p {
  font-size: .9rem;
  margin-bottom: 24px;
}

.resp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.resp-logos a img {
  height: 44px;
  filter: invert(1);
  transition: filter .3s;
  width: 100%;
}

.resp-logos a:hover img {
  filter: grayscale(0) brightness(1);
}

.eighteen-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 60, 60, .5);
  background: rgba(255, 60, 60, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5555;
  font-weight: 700;
  font-size: 1rem;
}

.resp-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.resp-text>p {
  margin-bottom: 24px;
}

.resp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resp-list li {
  display: flex;
  gap: 10px;
  font-size: .9rem;
}

.resp-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #040305;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.footer-brand .logo-link {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-brand p {
  font-size: .88rem;
  max-width: 320px;
  line-height: 1.8;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text);
  font-size: .88rem;
  transition: color .3s, padding-left .3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.disclaimer {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-left: 3px solid var(--gold3);
  border-radius: 8px;
  padding: 24px 28px;
  font-size: .8rem;
  line-height: 1.8;
  color: #666;
  margin: 40px 0 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: #555;
}

.footer-bottom a {
  color: #666;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ─── GAME PAGE ─────────────────────────────────────── */
.game-page {
  padding: 140px 0 100px;
}

.game-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.game-launch-box {
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin: 40px 0 60px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .7);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 28px;
  text-align: center;
  gap: 24px;
}

.game-launch-box img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--border-glow);
  margin-bottom: 8px;
}

.game-launch-box h3 {
  font-size: 1.8rem;
}

.game-launch-box p {
  max-width: 480px;
  font-size: .95rem;
}

.game-frame-box {
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  margin: 40px 0 60px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .7);
}

.game-frame-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.review-block {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 16px;
  padding: 52px;
}

.review-block h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin: 36px 0 16px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.review-block h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.review-block p {
  margin-bottom: 18px;
  font-size: .95rem;
}

.review-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-block li {
  padding-left: 22px;
  position: relative;
  font-size: .93rem;
}

.review-block li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem;
  top: 6px;
}

.review-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.rmeta {
  background: var(--surface2);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
}

.rmeta-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
}

.rmeta-key {
  font-size: .72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ─── POLICY ─────────────────────────────────────── */
.policy-page {
  padding: 140px 0 100px;
}

.policy-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 16px;
  padding: 60px 56px;
}

.policy-wrap h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.policy-date {
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 40px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-bottom: 24px;
}

.policy-wrap h2 {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 36px 0 12px;
}

.policy-wrap p {
  font-size: .93rem;
  margin-bottom: 14px;
}

.policy-wrap ul {
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-wrap li {
  font-size: .93rem;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

.reveal-d4 {
  transition-delay: .4s;
}

/* ─── COOKIE POPUP ─────────────────────────────────────── */
.cookie-popup {
  position: fixed;
  bottom: -120px;
  left: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  transition: bottom 0.5s var(--ease), opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}

.cookie-popup.show {
  bottom: 24px;
  opacity: 1;
  pointer-events: all;
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-popup p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.cookie-popup .btn {
  width: 100%;
}

/* ─── CLOSE MENU BUTTON ─────────────────────────────────────── */
.close-menu {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 3.5rem;
  line-height: 0.5;
  cursor: pointer;
  z-index: 200;
  transition: color 0.3s;
}

.close-menu:hover {
  color: var(--gold);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .featured-inner,
  .resp-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .site-header {
    padding: 14px 0;
  }

  .section {
    padding: 80px 0;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .why-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-block {
    padding: 28px 20px;
  }

  .policy-wrap {
    padding: 36px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .game-frame-box {
    aspect-ratio: 4/3;
  }

  .featured-text>p,
  .resp-text>p {
    font-size: .9rem;
  }

  .stat-num {
    font-size: 2rem;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-badge {
    font-size: .7rem;
    padding: 6px 14px;
  }

  .section {
    padding: 60px 0;
  }

  .btn {
    padding: 13px 24px;
    font-size: .88rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .logo-wordmark {
    font-size: 1.3rem;
  }

  .game-page {
    padding: 100px 0 60px;
  }

  .review-meta {
    grid-template-columns: 1fr 1fr;
  }

  .review-block li {
    padding-left: 18px;
  }

  .section-head h2 {
    font-size: 1.7rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-popup {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: -150px;
  }

  .cookie-popup.show {
    bottom: 16px;
  }
}