:root {
  --bg:        #F0F3FA;
  --surface:   #FFFFFF;
  --card:      #FFFFFF;
  --card-hover:#F8FAFB;
  --primary:   #1B3E7A;
  --primary-lt:#2E57A8;
  --accent:    #C8962A;
  --accent-lt: #DBA93D;
  --text:      #111827;
  --muted:     #6B7280;
  --border:    #D9DEE9;
  --success:   #15803D;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
  --font:      'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --font-display: 'Sora', -apple-system, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-lt); }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { margin-bottom: 44px; max-width: 660px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 12px; }
.section-title em { font-style: italic; color: var(--accent); }
.section-lead { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(27,62,122,0.2); }
.btn-primary:hover { background: var(--primary-lt); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,62,122,0.3); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(200,150,42,0.2); }
.btn-accent:hover { background: var(--accent-lt); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,150,42,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: rgba(27,62,122,0.05); }
.btn-ghost { background: rgba(27,62,122,0.06); color: var(--primary); border: none; }
.btn-ghost:hover { background: rgba(27,62,122,0.12); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* Modals & cookie */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-backdrop.hidden { display: none; }
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 440px;
  width: 92%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.modal-icon { font-size: 2.6rem; margin-bottom: 12px; }
.modal-box h2 { font-family: var(--font-display); font-size: 1.45rem; color: var(--primary); margin-bottom: 12px; }
.modal-box p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }
.modal-box .btn-group { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--card); border-top: 1px solid var(--border); padding: 14px 22px; z-index: 8000; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; box-shadow: 0 -2px 12px rgba(0,0,0,0.06); }
#cookie-banner.hidden { display: none; }
#cookie-banner p { font-size: 0.84rem; color: var(--muted); flex: 1; min-width: 220px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Header */
#site-header { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-bar { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 18px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.logo-word { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.logo-word span { color: var(--accent); display: block; font-size: 0.6rem; font-family: var(--font); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; gap: 2px; flex-wrap: wrap; }
.main-nav a { padding: 7px 12px; border-radius: 6px; font-size: 0.87rem; font-weight: 500; color: var(--muted); transition: all var(--transition); }
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: rgba(27,62,122,0.08); }

.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; cursor: pointer; flex-direction: column; gap: 4px; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* Hero */
#hero { position: relative; padding: 80px 0 64px; overflow: hidden; background: linear-gradient(135deg, rgba(27,62,122,0.05) 0%, rgba(240,243,250,0) 60%); border-bottom: 1px solid var(--border); }
.hero-inner { position: relative; z-index: 1; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { max-width: 500px; }
.hero-tag { display: inline-block; background: rgba(27,62,122,0.08); border: 1px solid rgba(27,62,122,0.15); color: var(--primary); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px; color: var(--text); }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

.hero-stats { display: flex; flex-direction: column; gap: 14px; }
.hero-stat { padding: 12px 0; border-bottom: 1px solid var(--border); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-value { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-top: 4px; }

.hero-trust { margin-top: 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 0.78rem; color: var(--muted); }
.hero-trust a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.hero-trust a:hover { color: var(--accent); }

/* Warning strip */
.warn-strip { background: rgba(200,150,42,0.08); border-top: 1px solid rgba(200,150,42,0.15); border-bottom: 1px solid rgba(200,150,42,0.1); padding: 12px 0; text-align: center; }
.warn-strip p { font-size: 0.8rem; color: var(--muted); }
.warn-strip strong { color: var(--accent); }

/* Disclosure */
.disclosure-bar { font-size: 0.8rem; color: var(--muted); padding: 14px 18px; background: rgba(27,62,122,0.05); border-radius: var(--radius); border-left: 3px solid var(--primary); margin-bottom: 32px; line-height: 1.6; }
.disclosure-bar strong { color: var(--text); }

/* Featured row */
.featured-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; position: relative; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.feature-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.feature-badge { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 800; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; }
.feature-card .offer-logo { width: 76px; height: 48px; background: #f3f4f6; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 5px; margin-bottom: 14px; }
.feature-card .offer-logo img { width: 100%; height: 100%; object-fit: contain; }
.feature-card .offer-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.feature-card .offer-copy { font-size: 0.84rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.feature-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.feature-meta span { font-size: 0.75rem; color: var(--muted); background: var(--bg); padding: 3px 8px; border-radius: 4px; border: 1px solid var(--border); }
.feature-meta span b { color: var(--text); font-weight: 600; }

/* Offers list */
.offers-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.operator-row { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: stretch; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); position: relative; }
.operator-row:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.operator-rank { position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; z-index: 2; }
.operator-head { display: flex; align-items: center; gap: 14px; padding: 18px 18px 18px 60px; border-right: 1px solid var(--border); min-width: 320px; }
.offer-logo { width: 76px; height: 48px; background: #f3f4f6; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 5px; flex-shrink: 0; }
.offer-logo img { width: 100%; height: 100%; object-fit: contain; }
.offer-logo-fb { font-size: 0.72rem; font-weight: 800; color: #374151; text-align: center; display: none; align-items: center; justify-content: center; width: 100%; height: 100%; }
.operator-title-block { flex: 1; min-width: 0; }
.offer-name { font-size: 1rem; font-weight: 700; display: block; margin-bottom: 5px; }
.offer-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 999px; display: inline-block; }
.lbl-pick { background: rgba(200,150,42,0.12); color: var(--accent); border: 1px solid rgba(200,150,42,0.2); }
.lbl-fresh { background: rgba(21,128,61,0.1); color: var(--success); border: 1px solid rgba(21,128,61,0.2); }
.lbl-hot { background: rgba(27,62,122,0.12); color: var(--primary); border: 1px solid rgba(27,62,122,0.2); }
.lbl-safe { background: rgba(107,119,128,0.1); color: var(--muted); border: 1px solid rgba(107,119,128,0.2); }

.operator-body { display: flex; align-items: center; gap: 12px; flex: 1; padding: 18px; }
.offer-copy { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.offer-tag { font-size: 0.75rem; color: var(--muted); background: var(--bg); padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border); }
.offer-tag b { color: var(--text); font-weight: 600; }

.operator-score { display: flex; align-items: center; gap: 12px; padding: 18px 18px 18px 0; border-left: 1px solid var(--border); min-width: 160px; }
.score-block { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.score-num { font-size: 1.3rem; font-weight: 800; color: var(--accent); }
.score-bar-wrap { width: 100%; }
.score-bar-bg { height: 5px; background: var(--border); border-radius: 999px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px; width: var(--pct, 0%); transition: width 0.6s ease; }
.stars { display: flex; gap: 1px; font-size: 0.78rem; }
.star { color: var(--border); }
.star.on { color: var(--accent); }

.operator-cta { padding: 18px; border-left: 1px solid var(--border); }

/* Games mosaic */
.games-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.game-tile { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.game-tile:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow); }
.game-thumb { height: 130px; overflow: hidden; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.game-tile:hover .game-thumb img { transform: scale(1.06); }
.game-info { padding: 14px 16px 16px; }
.game-info h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.game-info p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* Methods grid */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.method-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.method-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; display: flex; justify-content: space-between; }
.method-card .pct { color: var(--primary); font-size: 0.85rem; }
.method-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(27,62,122,0.1); border: 1px solid rgba(27,62,122,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* Responsible panel */
.resp-panel { display: grid; grid-template-columns: 1fr 1.05fr; gap: 36px; align-items: start; }
.resp-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.resp-visual img { width: 100%; height: 100%; object-fit: cover; }
.resp-alert { background: rgba(27,62,122,0.08); border: 1px solid rgba(27,62,122,0.15); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 18px; font-size: 0.85rem; line-height: 1.6; }
.resp-alert strong { color: var(--primary); }
.resp-panel h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.resp-panel p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.resp-links { display: grid; gap: 8px; margin-bottom: 20px; }
.resp-link { display: block; padding: 10px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; font-size: 0.83rem; font-weight: 600; color: var(--primary); transition: border-color var(--transition), background var(--transition); }
.resp-link:hover { border-color: var(--primary); background: rgba(27,62,122,0.05); }
.resp-tips { list-style: none; display: grid; gap: 8px; }
.resp-tips li { font-size: 0.83rem; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.5; }
.resp-tips li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start; }
.faq-block { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 15px 17px; color: var(--text); font-size: 0.88rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; transition: background var(--transition); }
.faq-q:hover { background: rgba(27,62,122,0.03); }
.faq-q.active { color: var(--primary); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(27,62,122,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; transition: transform var(--transition); }
.faq-q.active .faq-icon { transform: rotate(180deg); background: rgba(27,62,122,0.15); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a.open { max-height: 380px; }
.faq-a-inner { padding: 0 17px 16px; font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.faq-a-inner a { color: var(--primary); }

.disclaimer-box { background: var(--card); border: 1px dashed var(--border); border-radius: var(--radius); padding: 22px 24px; font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.disclaimer-box strong { color: var(--text); }

/* Footer */
#site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-about p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin: 12px 0 14px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.85rem; color: var(--muted); }
.footer-col a:hover { color: var(--primary); }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; }
.badge-18 { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.footer-contact { margin-top: 12px; font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.footer-contact strong { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* Inner pages */
.page-hero { padding: 52px 0 44px; background: linear-gradient(135deg, rgba(27,62,122,0.05) 0%, rgba(240,243,250,0) 100%); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.8vw, 2.4rem); margin-bottom: 10px; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { color: var(--muted); font-size: 1rem; }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-copy h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 26px 0 10px; }
.about-copy h2:first-child { margin-top: 0; }
.about-copy p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.pillar { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.pillar-icon { font-size: 1.4rem; margin-bottom: 8px; }
.pillar h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.criteria-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.criteria-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; display: flex; justify-content: space-between; }
.criteria-card .pct { color: var(--primary); font-size: 0.85rem; }
.criteria-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

.policy-wrap { display: grid; grid-template-columns: 1fr 260px; gap: 44px; align-items: start; }
.policy-content h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 30px 0 10px; color: var(--text); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.policy-content ul, .policy-content ol { padding-left: 20px; margin-bottom: 14px; }
.policy-content strong { color: var(--text); }
.policy-nav { position: sticky; top: 86px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.policy-nav h3 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.policy-nav ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.policy-nav a { font-size: 0.84rem; color: var(--muted); }

/* Breakpoints */
@media (max-width: 1024px) {
  .offers-list { grid-template-columns: 1fr; }
  .games-mosaic { grid-template-columns: repeat(2, 1fr); }
  .featured-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .resp-panel { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .policy-wrap { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .hero-split { grid-template-columns: 1fr; }
  .operator-row { flex-direction: column; }
  .operator-head { border-right: none; border-bottom: 1px solid var(--border); min-width: auto; }
  .operator-body { flex-direction: column; align-items: flex-start; }
  .operator-score { border-left: none; border-top: 1px solid var(--border); min-width: auto; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; padding: 12px 20px; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .header-cta-hide { display: none; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .featured-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .games-mosaic { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .featured-row { gap: 12px; }
  .operator-head { padding: 14px 14px 14px 50px; }
  .operator-row { flex-direction: column; }
}
