/* ============================================================
   RAJA GAME – Main Stylesheet
   Nav: #E8001D (Bright Red) | Footer: #FFD700 (Yellow)
   ============================================================ */

:root {
  --gold:   #FFD700;
  --gold2:  #FFA500;
  --red:    #E8001D;
  --dark:   #0a0a0f;
  --dark2:  #13131f;
  --dark3:  #1c1c2e;
  --card:   #16162a;
  --text:   #f0e6d3;
  --muted:  #9a8fa0;
  --green:  #00e676;
  --glow:   0 0 30px rgba(255,215,0,0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Rajdhani', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── LOADER ── */
#rg-loader { position: fixed; inset: 0; background: var(--dark); z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; transition: opacity .6s .4s; }
#rg-loader .logo-anim { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem,10vw,6rem); color: var(--gold); text-shadow: 0 0 40px var(--gold); animation: rgPulse 1s infinite alternate; }
#rg-loader .bar { width: 200px; height: 4px; background: #222; border-radius: 2px; overflow: hidden; }
#rg-loader .bar-fill { height: 100%; background: linear-gradient(90deg,var(--red),var(--gold)); animation: rgLoad 1.2s ease forwards; }
@keyframes rgLoad { from{width:0} to{width:100%} }
@keyframes rgPulse { from{opacity:.7;transform:scale(.97)} to{opacity:1;transform:scale(1)} }
#rg-loader.hide { opacity: 0; pointer-events: none; }

/* ── NAV ── */
.rg-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 72px; background: #E8001D; backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .3s; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: #fff; font-size: .88rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: .2s; opacity: .9; }
.nav-links a:hover, .nav-links a.current-menu-item > a, .nav-links .current_page_item > a { color: #fff; opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.nav-cta { background: #fff; color: var(--red) !important; padding: 8px 20px; border-radius: 4px; font-weight: 700; font-size: .88rem; letter-spacing: 1px; transition: .2s; white-space: nowrap; opacity: 1 !important; }
.nav-cta:hover { background: var(--gold); color: #000 !important; transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: #fff; display: block; transition: .3s; }
.rg-mobile-nav { display: none; position: fixed; inset: 0; top: 72px; background: #b50016; z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.rg-mobile-nav.open { display: flex; }
.rg-mobile-nav a { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: #fff; letter-spacing: 3px; }
.rg-mobile-nav a:hover { color: var(--gold); }

/* ── FLOAT CTA ── */
.float-cta { position: fixed; bottom: 24px; right: 24px; z-index: 500; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; padding: 14px 24px; border-radius: 100px; font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 2px; box-shadow: 0 8px 30px rgba(232,0,29,.5); animation: rgBounce 2s ease-in-out infinite; transition: .2s; }
.float-cta:hover { transform: scale(1.05); }
@keyframes rgBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── TOAST ── */
.rg-toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--green); color: #000; padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 1rem; z-index: 2000; transition: .4s; opacity: 0; white-space: nowrap; }
.rg-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── SECTIONS ── */
section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label, .label, .lbl { font-size: .8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
h2.section-title, h2.st { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem,5vw,4rem); line-height: 1; margin-bottom: 20px; }
.section-sub, .ss { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-primary { background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 1rem; letter-spacing: 1px; transition: .3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,0,29,.4); color: #000; }
.btn-secondary { border: 2px solid var(--gold); color: var(--gold); padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 1rem; letter-spacing: 1px; transition: .3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { background: var(--gold); color: #000; }

/* ── HERO (Homepage) ── */
#rg-home { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 40%,rgba(232,0,29,.18) 0%,transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%,rgba(255,165,0,.12) 0%,transparent 60%), var(--dark); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles::before,.hero-particles::after { content: ''; position: absolute; border-radius: 50%; animation: rgFloat 6s ease-in-out infinite alternate; }
.hero-particles::before { width: 400px; height: 400px; background: radial-gradient(circle,rgba(255,215,0,.08),transparent); top: -100px; right: -100px; }
.hero-particles::after { width: 300px; height: 300px; background: radial-gradient(circle,rgba(232,0,29,.1),transparent); bottom: -50px; left: -50px; animation-delay: -3s; }
@keyframes rgFloat { from{transform:translate(0,0) scale(1)} to{transform:translate(20px,20px) scale(1.05)} }
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-badge { display: inline-block; background: rgba(255,215,0,.12); border: 1px solid rgba(255,215,0,.3); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
h1.hero-title { font-family: 'Bebas Neue', cursive; font-size: clamp(3.5rem,7vw,6rem); line-height: .95; margin-bottom: 24px; }
.hero-title .line1 { color: var(--text); display: block; }
.hero-title .line2 { color: var(--gold); display: block; text-shadow: 0 0 40px rgba(255,215,0,.5); }
.hero-title .line3 { color: var(--red); display: block; }
.hero-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-sub strong { color: var(--text); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.stat-num { font-family: 'Bebas Neue', cursive; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.game-card-visual { width: 100%; max-width: 380px; background: var(--card); border: 1px solid rgba(255,215,0,.2); border-radius: 16px; padding: 30px; box-shadow: 0 20px 60px rgba(0,0,0,.5); position: relative; overflow: hidden; animation: rgCardFloat 4s ease-in-out infinite alternate; }
@keyframes rgCardFloat { from{transform:translateY(0) rotate(-1deg)} to{transform:translateY(-12px) rotate(1deg)} }
.color-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.color-chip { height: 60px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 1px; cursor: pointer; transition: .2s; }
.color-chip:hover { transform: scale(1.05); }
.chip-red { background: linear-gradient(135deg,#e8001d,#ff4d6d); color: #fff; }
.chip-green { background: linear-gradient(135deg,#00c853,#00e676); color: #000; }
.chip-violet { background: linear-gradient(135deg,#6200ea,#aa00ff); color: #fff; }
.wingo-label { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--gold); text-align: center; margin-bottom: 12px; letter-spacing: 3px; }
.timer-bar { background: #0d0d1a; border-radius: 100px; height: 8px; overflow: hidden; margin-bottom: 20px; }
.timer-fill { height: 100%; width: 65%; background: linear-gradient(90deg,var(--red),var(--gold)); border-radius: 100px; animation: rgTimerAnim 30s linear infinite; }
@keyframes rgTimerAnim { from{width:100%} to{width:0%} }
.bonus-tag { background: rgba(0,230,118,.1); border: 1px solid var(--green); color: var(--green); padding: 10px 16px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 1rem; letter-spacing: 1px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark2); border-top: 1px solid rgba(255,215,0,.1); border-bottom: 1px solid rgba(255,215,0,.1); padding: 20px 5%; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 1.4rem; }
.trust-text { font-size: .82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.trust-text strong { color: var(--text); display: block; font-size: .95rem; }

/* ── GAMES GRID (Homepage) ── */
#rg-games { background: var(--dark2); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin-top: 60px; }
.game-tile { background: var(--card); border: 1px solid rgba(255,215,0,.1); border-radius: 12px; padding: 30px 20px; text-align: center; transition: .3s; cursor: pointer; position: relative; overflow: hidden; }
.game-tile:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.game-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }
.game-name { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--text); letter-spacing: 2px; margin-bottom: 8px; }
.game-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.game-badge { display: inline-block; margin-top: 12px; background: rgba(232,0,29,.15); border: 1px solid rgba(232,0,29,.3); color: var(--red); padding: 3px 10px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 30px; margin-top: 60px; }
.step { position: relative; padding: 40px 30px; background: var(--card); border-radius: 12px; border: 1px solid rgba(255,215,0,.08); }
.step-num { font-family: 'Bebas Neue', cursive; font-size: 5rem; color: rgba(255,215,0,.08); position: absolute; top: 10px; right: 20px; line-height: 1; }
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-title { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; }
.step-text { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ── BONUS CARDS (Homepage) ── */
#rg-bonuses { background: var(--dark2); }
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 60px; }
.bonus-card { background: var(--card); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,215,0,.1); transition: .3s; }
.bonus-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.bonus-head { padding: 30px; background: linear-gradient(135deg,var(--red),#6200ea); position: relative; overflow: hidden; }
.bonus-head::after { content: ''; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; background: rgba(255,255,255,.06); border-radius: 50%; }
.bonus-amount { font-family: 'Bebas Neue', cursive; font-size: 3rem; color: #fff; line-height: 1; }
.bonus-name { font-size: 1rem; color: rgba(255,255,255,.8); font-weight: 600; letter-spacing: 1px; }
.bonus-body { padding: 24px 30px; }
.bonus-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bonus-perks li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; }
.bonus-perks li::before { content: '✓'; color: var(--green); font-weight: 700; }
.bonus-cta { display: block; text-align: center; margin-top: 24px; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; padding: 12px; border-radius: 6px; font-weight: 700; letter-spacing: 1px; transition: .2s; }
.bonus-cta:hover { opacity: .9; transform: scale(1.02); color: #000; }

/* ── LEAD FORM ── */
#rg-register { background: radial-gradient(ellipse 80% 60% at 50% 50%,rgba(232,0,29,.15) 0%,var(--dark) 70%); }
.form-wrapper { max-width: 560px; margin: 0 auto; background: var(--card); border: 1px solid rgba(255,215,0,.2); border-radius: 20px; padding: 48px 40px; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.form-title { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; text-align: center; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.form-sub { text-align: center; color: var(--muted); margin-bottom: 32px; font-size: .95rem; }
.form-sub span { color: var(--green); font-weight: 700; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select { width: 100%; background: #0d0d1a; border: 1px solid rgba(255,215,0,.2); border-radius: 6px; padding: 13px 15px; color: var(--text); font-family: 'Rajdhani', sans-serif; font-size: 1rem; transition: .2s; outline: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,215,0,.1); }
.form-group input::placeholder { color: var(--muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { width: 100%; background: #0d0d1a; border: 1px solid rgba(255,215,0,.2); border-radius: 6px; padding: 13px 15px; color: var(--text); font-family: 'Rajdhani', sans-serif; font-size: 1rem; transition: .2s; outline: none; min-height: 120px; resize: vertical; }
.form-group textarea:focus { border-color: var(--gold); }
.form-submit { width: 100%; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; border: none; padding: 16px; border-radius: 6px; font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 2px; cursor: pointer; transition: .3s; margin-top: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,0,29,.5); }
.form-privacy { text-align: center; color: var(--muted); font-size: .78rem; margin-top: 16px; }
.form-privacy a { color: var(--gold); }

/* ── TESTIMONIALS ── */
#rg-testimonials { background: var(--dark2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 60px; }
.testi-card { background: var(--card); border-radius: 12px; padding: 32px; border: 1px solid rgba(255,255,255,.05); transition: .3s; }
.testi-card:hover { border-color: rgba(255,215,0,.2); }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { color: var(--muted); font-size: .95rem; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-user { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 1.2rem; color: #000; flex-shrink: 0; }
.av1 { background: linear-gradient(135deg,var(--gold),var(--gold2)); }
.av2 { background: linear-gradient(135deg,var(--red),#ff6b6b); }
.av3 { background: linear-gradient(135deg,#00c853,#00e676); }
.av4 { background: linear-gradient(135deg,#6200ea,#aa00ff); }
.testi-name { font-weight: 700; color: var(--text); font-size: .95rem; }
.testi-loc { font-size: .8rem; color: var(--muted); }
.testi-won { font-size: .8rem; color: var(--green); font-weight: 700; margin-top: 2px; }

/* ── DOWNLOAD SECTION ── */
#rg-download { background: linear-gradient(135deg,#0d0d1a 0%,#1a0a00 50%,#0d0d1a 100%); position: relative; overflow: hidden; }
#rg-download::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%,rgba(255,165,0,.08),transparent); }
.download-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.download-phones { display: flex; gap: 16px; justify-content: center; }
.phone-mock { width: 140px; background: var(--card); border: 2px solid rgba(255,215,0,.2); border-radius: 24px; overflow: hidden; padding: 16px 12px; }
.phone-mock:first-child { transform: rotate(-8deg) translateY(20px); }
.phone-mock:last-child { transform: rotate(6deg) translateY(-10px); }
.phone-screen { background: #0d0d1a; border-radius: 12px; padding: 12px; }
.phone-game-row { display: flex; gap: 6px; margin-bottom: 8px; }
.phone-chip { flex: 1; height: 28px; border-radius: 5px; }
.phone-chip.r { background: linear-gradient(135deg,var(--red),#ff4d6d); }
.phone-chip.g { background: linear-gradient(135deg,#00c853,#00e676); }
.phone-chip.v { background: linear-gradient(135deg,#6200ea,#aa00ff); }
.phone-win { background: rgba(0,230,118,.15); border: 1px solid var(--green); color: var(--green); border-radius: 5px; padding: 6px; text-align: center; font-size: .6rem; font-weight: 700; margin-top: 8px; }
.download-btns { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.dl-btn { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid rgba(255,215,0,.2); border-radius: 10px; padding: 14px 24px; transition: .3s; }
.dl-btn:hover { border-color: var(--gold); transform: translateX(6px); }
.dl-btn-icon { font-size: 1.8rem; }
.dl-btn-text small { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.dl-btn-text strong { color: var(--text); font-size: 1rem; }

/* ── FAQ ── */
.faq-list { margin-top: 60px; display: flex; flex-direction: column; gap: 16px; max-width: 800px; }
.faq-item { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; overflow: hidden; transition: .2s; }
.faq-item:hover { border-color: rgba(255,215,0,.2); }
.faq-q { padding: 20px 24px; font-weight: 700; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); user-select: none; }
.faq-q::after { content: '＋'; color: var(--gold); font-size: 1.2rem; transition: .3s; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '－'; }
.faq-a { display: none; padding: 0 24px 20px; color: var(--muted); line-height: 1.7; font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
.rg-footer { background: #FFD700; border-top: 1px solid rgba(0,0,0,.1); padding: 60px 5% 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-desc { color: #1a1a1a; font-size: .9rem; line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-col h3 { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; color: #111; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #333; font-size: .9rem; transition: .2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,.12); }
.footer-copy { color: #1a1a1a; font-size: .85rem; }
.footer-disclaimer { color: rgba(30,30,30,.65); font-size: .75rem; text-align: center; max-width: 700px; line-height: 1.6; margin: 20px auto 0; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: .2s; color: #111; }
.social-btn:hover { background: rgba(0,0,0,.2); transform: translateY(-2px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 140px 5% 80px; background: radial-gradient(ellipse 70% 60% at 50% 0%,rgba(232,0,29,.15),transparent 70%), var(--dark); text-align: center; }
.page-hero h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem,7vw,5.5rem); line-height: 1; margin-bottom: 20px; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }

/* ── GAMES PAGE ── */
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 60px; }
.feat-card { background: var(--card); border: 1px solid rgba(255,215,0,.1); border-radius: 18px; overflow: hidden; transition: .3s; }
.feat-card:hover { border-color: rgba(255,215,0,.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.feat-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; }
.fi1 { background: linear-gradient(135deg,rgba(232,0,29,.45),rgba(100,0,200,.35)); }
.fi2 { background: linear-gradient(135deg,rgba(255,140,0,.35),rgba(255,215,0,.25)); }
.fi3 { background: linear-gradient(135deg,rgba(0,200,83,.25),rgba(0,230,118,.15)); }
.fi4 { background: linear-gradient(135deg,rgba(98,0,234,.35),rgba(224,64,251,.25)); }
.feat-body { padding: 24px 28px; }
.feat-tag { display: inline-block; background: rgba(255,215,0,.1); border: 1px solid rgba(255,215,0,.25); color: var(--gold); padding: 3px 12px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.feat-name { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 8px; }
.feat-desc { color: var(--muted); font-size: .92rem; line-height: 1.65; margin-bottom: 16px; }
.games-all-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 20px; }
.game-mini-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 24px 16px; text-align: center; transition: .3s; }
.game-mini-card:hover { border-color: rgba(255,215,0,.3); transform: translateY(-4px); }
.gm-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.gm-name { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 6px; }
.gm-desc { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.gm-badge { display: inline-block; margin-top: 10px; background: rgba(255,215,0,.1); border: 1px solid rgba(255,215,0,.2); color: var(--gold); padding: 2px 10px; border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: 1px; }

/* ── BONUSES PAGE ── */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.bc-head { padding: 30px; position: relative; overflow: hidden; }
.bc-h1 { background: linear-gradient(135deg,var(--red),#6200ea); }
.bc-h2 { background: linear-gradient(135deg,#ff6b00,#ffd700); }
.bc-h3 { background: linear-gradient(135deg,#00897b,#00e676); }
.bc-h4 { background: linear-gradient(135deg,#1565c0,#42a5f5); }
.bc-h5 { background: linear-gradient(135deg,#6a1b9a,#ce93d8); }
.bc-h6 { background: linear-gradient(135deg,#bf360c,#ff8f00); }
.bc-amount { font-family: 'Bebas Neue', cursive; font-size: 3.5rem; color: #fff; line-height: 1; }
.bc-name { font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 600; letter-spacing: 1px; margin-top: 4px; }
.bc-body { padding: 24px 30px; }
.bc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.bc-list li { color: var(--muted); font-size: .9rem; padding-left: 20px; position: relative; line-height: 1.5; }
.bc-list li::before { content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.bc-cta { display: block; text-align: center; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; padding: 12px; border-radius: 6px; font-weight: 700; letter-spacing: 1px; transition: .2s; }
.bc-cta:hover { opacity: .9; color: #000; }
.bc-expiry { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 10px; }

/* ── HOW TO PLAY PAGE ── */
.steps-big { display: flex; flex-direction: column; gap: 40px; margin-top: 60px; }
.step-big { display: grid; grid-template-columns: 120px 1fr; gap: 30px; align-items: start; }
.step-num-big { font-family: 'Bebas Neue', cursive; font-size: 5rem; color: var(--gold); opacity: .25; line-height: 1; text-align: center; }
.step-content h3 { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.step-content p { color: var(--muted); line-height: 1.7; font-size: .95rem; margin-bottom: 16px; }
.step-tips { display: flex; flex-wrap: wrap; gap: 8px; }
.tip-chip { background: rgba(255,215,0,.1); border: 1px solid rgba(255,215,0,.2); color: var(--gold); padding: 4px 12px; border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: 1px; }
.games-guide { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; margin-top: 30px; }
.guide-card { background: var(--card); border: 1px solid rgba(255,215,0,.1); border-radius: 12px; padding: 28px; }
.guide-card .emoji { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.guide-card h4 { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.guide-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.tips-box { background: var(--card); border: 1px solid rgba(255,215,0,.2); border-radius: 12px; padding: 36px; margin-top: 60px; }
.tips-box h3 { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 20px; }
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tips-list li { color: var(--muted); font-size: .92rem; line-height: 1.6; padding-left: 24px; position: relative; }
.tips-list li::before { content: '🏆'; position: absolute; left: 0; font-size: .8rem; }

/* ── REFER PAGE ── */
.earn-highlight { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin: 30px 0; }
.eh-item { text-align: center; background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.2); border-radius: 12px; padding: 20px 30px; }
.eh-num { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: var(--green); }
.eh-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.refer-how { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; margin-top: 48px; }
.rh-card { background: var(--card); border-radius: 12px; padding: 32px 24px; text-align: center; border: 1px solid rgba(255,255,255,.06); }
.rh-num { font-family: 'Bebas Neue', cursive; font-size: 3rem; color: rgba(255,215,0,.2); margin-bottom: 8px; }
.rh-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.rh-title { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.rh-text { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.earn-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.earn-table th { background: var(--card); color: var(--gold); font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 1px; padding: 16px; text-align: left; }
.earn-table td { padding: 14px 16px; color: var(--muted); font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.earn-table tr:hover td { background: rgba(255,255,255,.02); }
.code-box { background: var(--card); border: 1px solid rgba(255,215,0,.2); border-radius: 16px; padding: 36px; margin-top: 48px; text-align: center; }
.code-box h3 { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.code-box p { color: var(--muted); margin-bottom: 24px; }
.code-display { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; }
.code-val { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: var(--text); background: var(--dark); border: 2px dashed var(--gold); padding: 12px 32px; border-radius: 8px; letter-spacing: 4px; }
.copy-btn { background: var(--gold); color: #000; border: none; padding: 12px 24px; border-radius: 6px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: .2s; }
.copy-btn:hover { background: var(--gold2); }
.share-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.share-btn { display: inline-block; padding: 12px 24px; border-radius: 6px; font-weight: 700; font-size: .9rem; letter-spacing: 1px; transition: .2s; }
.sb-wa { background: #25D366; color: #000; }
.sb-tg { background: #0088cc; color: #fff; }
.share-btn:hover { transform: translateY(-2px); opacity: .9; }
.register-cta { background: linear-gradient(135deg,rgba(232,0,29,.15),rgba(255,215,0,.1)); border: 1px solid rgba(255,215,0,.2); border-radius: 16px; padding: 48px; text-align: center; margin-top: 48px; }
.register-cta h2 { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; }
.register-cta p { color: var(--muted); margin-bottom: 28px; }
.btn-dark { display: inline-block; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 1rem; letter-spacing: 1px; transition: .3s; }
.btn-dark:hover { transform: translateY(-2px); color: #000; }

/* ── DOWNLOAD PAGE ── */
.app-specs { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 16px; margin-top: 40px; margin-bottom: 60px; }
.spec-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 20px; text-align: center; }
.spec-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.spec-val { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; color: var(--gold); margin-bottom: 4px; }
.spec-lbl { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; }
.install-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px; margin-top: 40px; }
.step-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 24px; position: relative; text-align: center; }
.step-card .step-num { position: absolute; top: 12px; right: 16px; font-family: 'Bebas Neue', cursive; font-size: 3rem; color: rgba(255,215,0,.1); }
.step-card .step-emoji { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.step-card h4 { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: .82rem; line-height: 1.6; }
.feat-grid-dl { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; margin-top: 40px; }
.feat-card-dl { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 28px; }
.feat-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.feat-card-dl h3 { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.feat-card-dl p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.dark-sec { background: var(--dark2); }
.btn-dl { display: inline-block; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 1rem; letter-spacing: 1px; transition: .3s; margin: 8px; }
.btn-dl:hover { transform: translateY(-2px); color: #000; }
.btn-dl-ghost { display: inline-block; border: 2px solid var(--gold); color: var(--gold); padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 1rem; letter-spacing: 1px; transition: .3s; margin: 8px; }
.btn-dl-ghost:hover { background: var(--gold); color: #000; }
.hero-rating { color: var(--muted); font-size: .88rem; margin-top: 20px; }
.hero-rating .stars { color: var(--gold); font-size: .9rem; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.comp-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 32px; }
.comp-card.highlight { border-color: rgba(255,215,0,.3); background: linear-gradient(135deg,rgba(255,215,0,.05),var(--card)); }
.comp-card h3 { font-family: 'Bebas Neue', cursify, cursive; font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 20px; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.comp-list li { color: var(--muted); font-size: .9rem; display: flex; align-items: flex-start; gap: 8px; }
.comp-list .ic { flex-shrink: 0; }

/* ── CONTACT PAGE ── */
.resp-banner { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.rb-card { background: var(--card); border: 1px solid rgba(255,215,0,.2); border-radius: 16px; padding: 32px; text-align: center; }
.rb-num { font-family: 'Bebas Neue', cursive; font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.rb-lbl { color: var(--muted); font-size: .85rem; line-height: 1.5; }
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 40px; }
.ch-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 32px; }
.ch-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.ch-card h3 { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.ch-resp { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.2); color: var(--green); padding: 4px 12px; border-radius: 100px; font-size: .78rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: rgBlink 1.2s ease-in-out infinite; }
@keyframes rgBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
.ch-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.ch-hours { background: var(--dark); border-radius: 8px; padding: 12px 16px; margin-bottom: 16px; font-size: .85rem; color: var(--muted); }
.ch-hours strong { display: block; color: var(--text); margin-bottom: 4px; }
.btn-ch { display: block; text-align: center; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .9rem; letter-spacing: 1px; transition: .2s; }
.btn-wa { background: #25D366; color: #000; }
.btn-tg { background: #0088cc; color: #fff; }
.btn-em { background: var(--card); border: 1px solid rgba(255,215,0,.2); color: var(--gold); }
.btn-ch:hover { transform: translateY(-2px); opacity: .9; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-side h3, .form-side h3 { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.info-side > p, .form-side .sub { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.issue-types { display: flex; flex-direction: column; gap: 16px; }
.issue-item { display: flex; gap: 16px; align-items: flex-start; }
.issue-icon { font-size: 1.8rem; flex-shrink: 0; width: 44px; height: 44px; background: var(--dark); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.issue-item h4 { font-family: 'Bebas Neue', cursive; font-size: 1.1rem; color: var(--text); letter-spacing: 1px; margin-bottom: 4px; }
.issue-item p { color: var(--muted); font-size: .82rem; line-height: 1.6; }
.btn-submit { width: 100%; background: linear-gradient(135deg,var(--red),var(--gold2)); color: #000; border: none; padding: 16px; border-radius: 6px; font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; cursor: pointer; transition: .3s; margin-top: 8px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,0,29,.5); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.about-stat { background: var(--card); border-radius: 12px; padding: 24px; border: 1px solid rgba(255,215,0,.1); text-align: center; }
.about-stat-num { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.about-stat-lbl { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; margin-top: 48px; }
.value-card { background: var(--card); border-radius: 12px; padding: 32px; border: 1px solid rgba(255,255,255,.06); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.tl-item { display: flex; gap: 24px; align-items: flex-start; }
.tl-year { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: var(--gold); min-width: 80px; }
.tl-content { background: var(--card); border-radius: 10px; padding: 20px; flex: 1; border: 1px solid rgba(255,255,255,.06); }
.tl-content h4 { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; color: var(--text); letter-spacing: 1px; margin-bottom: 6px; }
.tl-content p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ── PRIVACY / TERMS ── */
.policy-layout { max-width: 1200px; margin: 0 auto; padding: 60px 5%; display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.sidebar { position: sticky; top: 90px; background: var(--card); border-radius: 12px; padding: 24px; border: 1px solid rgba(255,255,255,.06); }
.sidebar-title { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.toc { list-style: none; display: flex; flex-direction: column; gap: 8px; counter-reset: toc-counter; }
.toc li a { color: var(--muted); font-size: .88rem; transition: .2s; }
.toc li a:hover { color: var(--gold); }
.policy-content h2 { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; color: var(--gold); letter-spacing: 2px; margin: 40px 0 16px; }
.policy-content h3 { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; color: var(--text); letter-spacing: 1px; margin: 24px 0 12px; }
.policy-content p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; padding-left: 0; }
.policy-content ul li { color: var(--muted); font-size: .9rem; line-height: 1.6; padding-left: 20px; position: relative; }
.policy-content ul li::before { content: '→'; color: var(--gold); position: absolute; left: 0; }
.policy-content a { color: var(--gold); }
.highlight-box { background: rgba(255,215,0,.05); border: 1px solid rgba(255,215,0,.2); border-radius: 10px; padding: 20px 24px; margin-bottom: 30px; }
.highlight-box p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }
.warn-box { background: rgba(232,0,29,.08); border: 1px solid rgba(232,0,29,.2); border-radius: 8px; padding: 16px 20px; margin: 16px 0; }
.warn-box p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin: 0; }
.policy-section { border-bottom: 1px solid rgba(255,255,255,.04); padding-bottom: 32px; margin-bottom: 8px; }
.content .warning-box { background: rgba(232,0,29,.1); border: 1px solid rgba(232,0,29,.3); border-radius: 10px; padding: 20px 24px; margin: 20px 0; }
.content { max-width: 800px; margin: 60px auto; padding: 0 5%; }
.content h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem,5vw,4rem); color: var(--text); margin-bottom: 8px; }
.content h2 { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; color: var(--gold); letter-spacing: 2px; margin: 32px 0 12px; padding-top: 72px; }
.content p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 16px; }
.content ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.content ul li { color: var(--muted); font-size: .9rem; line-height: 1.6; padding-left: 20px; position: relative; }
.content ul li::before { content: '→'; color: var(--gold); position: absolute; left: 0; }
.meta-date { color: var(--muted); font-size: .85rem; margin-bottom: 30px; }

/* ── 404 PAGE ── */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 5% 60px; }
.error-page .err-num { font-family: 'Bebas Neue', cursive; font-size: clamp(8rem,25vw,16rem); color: var(--red); line-height: 1; text-shadow: 0 0 60px rgba(232,0,29,.4); }
.error-page h1 { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; margin-bottom: 16px; }
.error-page p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 440px; }
.err-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── BLOG / SINGLE ── */
.blog-hero { padding: 140px 5% 60px; background: var(--dark2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 28px; margin-top: 48px; }
.post-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; overflow: hidden; transition: .3s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,.2); }
.post-thumb { height: 200px; background: linear-gradient(135deg,var(--dark2),var(--card)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.post-body { padding: 24px; }
.post-body h2 { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 8px; color: var(--text); }
.post-body h2 a { color: inherit; }
.post-body h2 a:hover { color: var(--gold); }
.post-body p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.post-meta { display: flex; gap: 12px; color: var(--muted); font-size: .78rem; margin-bottom: 12px; }
.single-content { max-width: 800px; margin: 0 auto; padding: 60px 5%; }
.single-content h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem,5vw,4rem); line-height: 1; margin-bottom: 16px; }
.single-content .entry-content { color: var(--muted); font-size: .95rem; line-height: 1.8; }
.single-content .entry-content h2, .single-content .entry-content h3 { font-family: 'Bebas Neue', cursive; color: var(--gold); letter-spacing: 1px; margin: 32px 0 12px; }
.single-content .entry-content a { color: var(--gold); }
.single-content .entry-content img { border-radius: 8px; margin: 20px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .resp-banner { grid-template-columns: 1fr; }
  .step-big { grid-template-columns: 1fr; }
  .step-num-big { font-size: 3rem; text-align: left; }
}
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 1rem; }
  .form-wrapper { padding: 32px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .float-cta { animation: none; }
  #rg-loader { display: none !important; }
}

/* ══════════════════════════════════════════
   SEO IMAGE BLOCKS — rg_seo_img()
   Displayed when admin uploads via Customizer
══════════════════════════════════════════ */
.rg-seo-img {
  margin: 40px auto;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
  position: relative;
}
.rg-seo-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .4s ease;
}
.rg-seo-img:hover img { transform: scale(1.02); }
.rg-seo-img figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-size: .85rem;
  padding: 24px 20px 14px;
  text-align: center;
  letter-spacing: .5px;
}
/* Wide variant */
.rg-seo-img.wide { max-width: 100%; }
/* Pair variant: 2 images side-by-side */
.rg-seo-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px auto;
  max-width: 960px;
}
.rg-seo-img-pair .rg-seo-img { margin: 0; }
@media (max-width: 700px) {
  .rg-seo-img-pair { grid-template-columns: 1fr; }
}
