/* ============================================
   BASE / RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #080e1a;
  color: #e2e8f0;
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--wb-h, 36px);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg1: #080e1a;
  --bg2: #0d1525;
  --bg3: #111e35;
  --card: #0f1a2e;
  --card-hover: #152138;
  --border: #1e3050;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #34d399;
  --accent2: #6366f1;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --red: #ef4444;
  --text1: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --warn-bg: #fef08a;
  --warn-text: #713f12;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --glow: 0 0 24px rgba(16,185,129,0.3);
}

/* ============================================
   WARNING BAR — VERY PROMINENT
   ============================================ */
.warning-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #b45309, #d97706, #f59e0b, #d97706, #b45309);
  background-size: 200% 100%;
  animation: slide-warn 3s linear infinite;
  color: #1c0a00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@keyframes slide-warn {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.warn-icon { font-size: 15px; flex-shrink: 0; }

/* ============================================
   AGE POPUP
   ============================================ */
.age-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(4,8,20,0.92);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.age-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.age-box h2 { font-size: 22px; color: var(--text1); margin-bottom: 10px; }
.age-box p { font-size: 14px; color: var(--text2); margin-bottom: 12px; }
.age-free-notice {
  background: rgba(16,185,129,0.12);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent-light);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  margin: 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.age-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   COOKIE NOTICE
   ============================================ */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text2);
}
.cookie-notice a { color: var(--accent); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 0 16px rgba(16,185,129,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 0 24px rgba(16,185,129,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text1);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b45309);
  color: #1c0a00;
  font-weight: 800;
}
.btn-gold:hover { box-shadow: 0 0 20px rgba(245,158,11,0.5); transform: translateY(-1px); }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-deny {
  background: var(--bg3);
  color: var(--text2);
  border: 1px solid var(--border);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: var(--wb-h, 36px);
  z-index: 900;
  background: rgba(8,14,26,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { width: 36px; height: 36px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.site-nav a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--accent);
  background: rgba(16,185,129,0.08);
}
.header-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text1); border-radius: 2px; transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 24px 64px;
  background:
    radial-gradient(ellipse 800px 400px at 60% 40%, rgba(16,185,129,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 300px at 20% 60%, rgba(99,102,241,0.06) 0%, transparent 70%),
    var(--bg1);
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text1);
  margin-bottom: 16px;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto 24px;
}
.hero-free-notice {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin: 0 auto 28px;
  max-width: 680px;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  box-shadow: var(--glow);
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FREE NOTICE SECTIONS
   ============================================ */
.free-notice-big {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(5,150,105,0.06));
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  box-shadow: 0 0 40px rgba(16,185,129,0.15);
}
.free-notice-big .fnb-icon { font-size: 48px; margin-bottom: 12px; }
.free-notice-big h3 {
  font-size: 22px;
  color: var(--accent-light);
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.free-notice-big p { color: var(--text2); font-size: 15px; margin-bottom: 16px; }
.fnb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.fnb-tag {
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(16,185,129,0.4);
  color: var(--accent-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-value {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text2); font-weight: 500; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 64px 24px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text1);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-sub { font-size: 16px; color: var(--text2); max-width: 560px; margin: 0 auto; }
.bg-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ============================================
   GAMES GRID
   ============================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.2);
}
.game-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.game-card:hover .game-thumb img { transform: scale(1.05); }
.game-thumb-gradient {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-badge-gold { background: var(--gold); color: #1c0a00; }
.game-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.game-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.game-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text1);
  margin-bottom: 8px;
}
.game-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.game-meta { font-size: 12px; color: var(--text3); }

/* Thumb specific gradients */
.thumb-slashimi { background: linear-gradient(135deg, #064e3b 0%, #059669 100%); }
.thumb-bull { background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%); }
.thumb-champions { background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%); }
.thumb-mount { background: linear-gradient(135deg, #1c1917 0%, #78350f 50%, #a16207 100%); }
.thumb-boat { background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%); }
.thumb-piggy { background: linear-gradient(135deg, #500724 0%, #db2777 100%); }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.feature-card:hover { border-color: rgba(16,185,129,0.4); }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text1); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text2); line-height: 1.55; }

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px rgba(16,185,129,0.4);
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--text1); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text2); line-height: 1.55; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.av-2 { background: linear-gradient(135deg, #0891b2, #0c4a6e); }
.av-3 { background: linear-gradient(135deg, #dc2626, #7f1d1d); }
.av-4 { background: linear-gradient(135deg, #d97706, #92400e); }
.av-5 { background: linear-gradient(135deg, #059669, #064e3b); }
.testi-name { font-size: 14px; font-weight: 700; color: var(--text1); }
.testi-date { font-size: 12px; color: var(--text3); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(16,185,129,0.4); }
.faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ============================================
   NOTICE BOX
   ============================================ */
.notice-box {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.notice-box h3 { font-size: 18px; font-weight: 800; color: var(--accent-light); margin-bottom: 12px; }
.notice-box p { font-size: 14px; color: var(--text2); margin-bottom: 12px; }
.notice-box ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.notice-box li { font-size: 14px; color: var(--text2); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 64px 24px;
  background:
    radial-gradient(ellipse 800px 300px at 50% 50%, rgba(16,185,129,0.1) 0%, transparent 70%),
    var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--text1); margin-bottom: 12px; }
.cta-inner p { font-size: 16px; color: var(--text2); margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   PARTNERS / ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text1); margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 12px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feat-icon {
  width: 36px; height: 36px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.about-feat-text h4 { font-size: 14px; font-weight: 700; color: var(--text1); margin-bottom: 2px; }
.about-feat-text p { font-size: 13px; color: var(--text2); margin: 0; }

/* Blog posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.blog-card:hover { border-color: rgba(16,185,129,0.35); transform: translateY(-2px); }
.blog-img {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 16px; }
.blog-date { font-size: 11px; color: var(--text3); margin-bottom: 6px; }
.blog-title { font-size: 15px; font-weight: 700; color: var(--text1); margin-bottom: 8px; line-height: 1.3; }
.blog-excerpt { font-size: 13px; color: var(--text2); line-height: 1.55; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo img { width: 36px; height: 36px; }
.footer-tagline { font-size: 13px; color: var(--text3); line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text1);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: var(--text3); transition: color 0.2s; }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.resp-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.resp-logos a {
  display: flex; align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.resp-logos a:hover { opacity: 1; }
.resp-logos img { height: 38px; width: auto; }
.footer-disclaimer {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-disclaimer strong { color: var(--gold-light); }
.footer-copy { font-size: 11px; color: var(--text3); opacity: 0.5; }

/* ============================================
   GAME PAGE (iframe)
   ============================================ */
.game-page-hero {
  background:
    radial-gradient(ellipse 600px 250px at 50% 30%, rgba(16,185,129,0.08) 0%, transparent 70%),
    var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px 24px;
  text-align: center;
}
.game-page-hero h1 { font-size: 28px; font-weight: 900; color: var(--text1); margin-bottom: 8px; }
.game-page-hero p { font-size: 14px; color: var(--text2); }

.iframe-warning {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 24px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 900px;
  margin: 20px auto;
  box-shadow: 0 0 24px rgba(245,158,11,0.15);
}

.iframe-wrap {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.iframe-wrap iframe {
  width: 100%;
  height: 680px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
  background: #000;
}

/* ============================================
   STATIC PAGES
   ============================================ */
.static-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.static-page h1 { font-size: 32px; font-weight: 900; color: var(--text1); margin-bottom: 8px; }
.static-page .page-date { font-size: 13px; color: var(--text3); margin-bottom: 32px; }
.static-page h2 { font-size: 20px; font-weight: 700; color: var(--text1); margin: 28px 0 10px; }
.static-page p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }
.static-page ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.static-page li { font-size: 14px; color: var(--text2); }
.static-page a { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: fixed; top: 100px; left: 0; right: 0; background: var(--bg2); padding: 16px; border-bottom: 1px solid var(--border); z-index: 800; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .iframe-wrap iframe { height: 480px; }
  .hero h1 { font-size: 28px; }
  .warning-bar { font-size: 11px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .iframe-wrap iframe { height: 360px; }
}
