/* ============================================================
   CasinoReviewBrazil 2026 — Modern Premium Design
   Fonts: Barlow Condensed (display) + Inter (body)
   Design: Glassmorphism · Smooth Animations · Modern Gradients
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:      #0a0e27;
  --bg2:     #111b3c;
  --bg3:     #1a2850;
  --line:    #243556;
  --line2:   #2d4466;
  --green:   #00d97e;
  --green-dark: #00b870;
  --green-light: #33e699;
  --blue:    #3b82f6;
  --purple:  #8b5cf6;
  --amber:   #fbbf24;
  --red:     #ef4444;
  --white:   #f8fafc;
  --muted:   #94a3b8;
  --muted2:  #64748b;
  --font-h:  'Barlow Condensed', sans-serif;
  --font-b:  'Inter', sans-serif;
  --r:       12px;
  --r2:      16px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { background:linear-gradient(135deg, var(--bg) 0%, #0f1535 100%); color:var(--white); font-family:var(--font-b); font-size:15px; line-height:1.65; overflow-x:hidden; }

a { color:var(--green); text-decoration:none; transition:color 0.3s ease, text-shadow 0.3s ease; }
a:hover { color:var(--green-light); text-shadow:0 0 12px rgba(0, 217, 126, 0.5); }
p { color:var(--muted); }
h1,h2,h3,h4,h5 { font-family:var(--font-h); line-height:1.1; color:var(--white); font-weight:900; letter-spacing:-0.5px; }
h1 { font-size:clamp(2.4rem, 8vw, 5.5rem); }
h2 { font-size:clamp(1.8rem, 4vw, 3rem); }
h3 { font-size:1.5rem; }
h4 { font-size:1.05rem; letter-spacing:-0.02em; }

.wrap { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes slideInRight {
  from { opacity:0; transform:translateX(-30px); }
  to { opacity:1; transform:translateX(0); }
}
@keyframes glow {
  0%, 100% { text-shadow:0 0 10px rgba(0, 217, 126, 0.3); }
  50% { text-shadow:0 0 20px rgba(0, 217, 126, 0.6); }
}
@keyframes pulse {
  0%, 100% { opacity:1; }
  50% { opacity:0.7; }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }

/* ── AGE BAR ─────────────────────────────────────────────── */
.age-bar {
  background:rgba(17, 27, 60, 0.6); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0, 217, 126, 0.2);
  padding:12px 0;
  display:flex; align-items:center; justify-content:center; gap:14px;
  font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted);
}
.age-pill {
  background:linear-gradient(135deg, var(--red), #cc3333); color:#fff; font-family:var(--font-h);
  font-weight:900; font-size:12px; padding:4px 11px; border-radius:6px; letter-spacing:.06em; box-shadow:0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ── HEADER ──────────────────────────────────────────────── */
header {
  position:sticky; top:0; z-index:200;
  background:rgba(10, 14, 39, 0.7); backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0, 217, 126, 0.15); box-shadow:0 8px 24px rgba(0, 0, 0, 0.3);
}
.hdr-inner {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 24px; max-width:1200px; margin:0 auto; height:68px;
}
.logo-link { display:flex; align-items:center; gap:10px; transition:transform 0.3s ease; }
.logo-link:hover { transform:translateY(-2px); }
.logo-text {
  font-family:var(--font-h); font-size:20px; font-weight:900;
  color:var(--white); letter-spacing:-.3px; text-transform:uppercase;
}
.logo-text span { background:linear-gradient(135deg, var(--green), var(--green-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
nav { display:flex; align-items:center; gap:3px; }
nav a {
  font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--muted); padding:8px 14px; border-radius:var(--r); transition:all 0.3s ease;
}
nav a:hover { color:var(--green-light); background:rgba(0, 217, 126, 0.1); }
nav a.on { color:var(--green); background:rgba(0, 217, 126, 0.15); }
.lang-wrap { display:flex; border:1px solid rgba(0, 217, 126, 0.2); border-radius:var(--r); overflow:hidden; margin-left:16px; }
.lang-wrap a {
  padding:6px 12px; font-size:11px; font-weight:700; letter-spacing:.06em;
  background:transparent; color:var(--muted); border-radius:0; transition:all 0.3s ease;
}
.lang-wrap a.on, .lang-wrap a:hover { background:var(--green); color:#000; }
.burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.burger span { display:block; width:22px; height:2px; background:var(--white); transition:all .3s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding:100px 0 80px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0, 217, 126, 0.1) 0%, transparent 60%),
             radial-gradient(ellipse 50% 100% at 100% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events:none;
}
.hero::after {
  content:'';
  position:absolute; inset:0;
  background:url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,217,126,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  pointer-events:none;
}
.hero-grid { display:grid; grid-template-columns:1fr 360px; gap:60px; align-items:center; position:relative; z-index:1; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(0, 217, 126, 0.5); background:rgba(0, 217, 126, 0.08); color:var(--green);
  font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:8px 16px; border-radius:20px; margin-bottom:24px; transition:all 0.3s ease;
  backdrop-filter:blur(10px);
}
.hero-eyebrow:hover { background:rgba(0, 217, 126, 0.15); border-color:var(--green); }
.hero-eyebrow::before { content:''; width:8px; height:8px; background:var(--green); border-radius:50%; animation:blink 2s infinite; box-shadow:0 0 12px rgba(0, 217, 126, 0.6); }
.hero h1 { text-transform:uppercase; margin-bottom:20px; animation:fadeInUp 0.8s ease 0.1s both; }
.hero h1 .line2 { background:linear-gradient(135deg, var(--green), var(--green-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; }
.hero h1 .line3 { display:block; color:var(--muted); font-size:0.6em; margin-top:8px; }
.hero-sub { font-size:15px; color:var(--muted); max-width:480px; margin-bottom:36px; line-height:1.8; animation:fadeInUp 0.8s ease 0.2s both; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; animation:fadeInUp 0.8s ease 0.3s both; }

.btn-main {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:linear-gradient(135deg, var(--green), var(--green-dark)); color:#000; font-family:var(--font-h);
  font-weight:800; font-size:14px; letter-spacing:.08em; text-transform:uppercase;
  padding:14px 32px; border:none; cursor:pointer; transition:all 0.3s ease; border-radius:var(--r);
  box-shadow:0 12px 24px rgba(0, 217, 126, 0.3);
}
.btn-main:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0, 217, 126, 0.5); }
.btn-main:active { transform:translateY(-2px); }

.btn-out {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:transparent; color:var(--white); border:1.5px solid rgba(0, 217, 126, 0.3);
  font-family:var(--font-h); font-weight:700; font-size:13px; letter-spacing:.08em; text-transform:uppercase;
  padding:13px 28px; cursor:pointer; transition:all 0.3s ease; border-radius:var(--r);
}
.btn-out:hover { border-color:var(--green); background:rgba(0, 217, 126, 0.1); color:var(--green); }

/* Hero panel */
.hero-panel {
  background:rgba(17, 27, 60, 0.5); border:1px solid rgba(0, 217, 126, 0.2);
  border-radius:var(--r2); padding:32px; position:relative;
  backdrop-filter:blur(10px); animation:fadeInUp 0.8s ease 0.4s both;
  box-shadow:0 20px 40px rgba(0, 0, 0, 0.3);
}
.hero-panel::before {
  content:''; position:absolute; inset:0; border-radius:var(--r2);
  background:linear-gradient(135deg, rgba(0, 217, 126, 0.1), transparent); pointer-events:none;
}
.hp-label {
  font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--green); margin-bottom:8px;
}
.hp-val {
  font-family:var(--font-h); font-size:3.5rem; font-weight:900; color:var(--white); line-height:1; background:linear-gradient(135deg, var(--white), #e0e7ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hp-row { display:flex; gap:0; border-top:1px solid rgba(0, 217, 126, 0.1); margin-top:24px; padding-top:24px; }
.hp-cell { flex:1; padding:0 16px; border-right:1px solid rgba(0, 217, 126, 0.1); }
.hp-cell:first-child { padding-left:0; }
.hp-cell:last-child { border-right:none; }
.hp-cell .hp-label { margin-bottom:4px; }
.hp-cell .hp-val { font-size:1.8rem; background:linear-gradient(135deg, var(--green), #99ff99); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hp-badge {
  margin-top:24px; padding-top:24px; border-top:1px solid rgba(0, 217, 126, 0.1);
  display:flex; align-items:center; gap:10px;
  font-size:12px; font-weight:600; letter-spacing:.04em; color:var(--muted);
}
.check-ico { width:22px; height:22px; background:linear-gradient(135deg, var(--green), var(--green-dark)); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:12px; color:#000; flex-shrink:0; font-weight:900; }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust { background:transparent; border-bottom:1px solid rgba(0, 217, 126, 0.1); padding:64px 0; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.trust-cell {
  padding:28px; border:1px solid rgba(0, 217, 126, 0.15); background:rgba(17, 27, 60, 0.4);
  display:flex; flex-direction:column; gap:12px; border-radius:var(--r); transition:all 0.3s ease;
  backdrop-filter:blur(10px);
}
.trust-cell:hover { border-color:var(--green); background:rgba(0, 217, 126, 0.1); transform:translateY(-6px); }
.trust-ico {
  width:48px; height:48px; border:1px solid rgba(0, 217, 126, 0.2); border-radius:var(--r);
  display:flex; align-items:center; justify-content:center; font-size:24px; background:rgba(0, 217, 126, 0.05);
}
.trust-cell h4 { font-size:15px; letter-spacing:-.03em; }
.trust-cell p { font-size:13px; line-height:1.6; }

/* ── SECTION TITLE ───────────────────────────────────────── */
.sec-title { padding:64px 0 48px; }
.sec-title .eyebrow {
  font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--green); display:block; margin-bottom:12px;
}
.sec-title h2 { margin-bottom:12px; text-transform:uppercase; }
.sec-title p { max-width:560px; font-size:15px; }

/* ── CASINO CARDS ────────────────────────────────────────── */
.casino-wrap { padding-bottom:80px; }
.casino-card {
  background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15);
  border-radius:var(--r2); margin-bottom:32px; transition:all 0.3s ease; overflow:hidden;
  backdrop-filter:blur(10px); box-shadow:0 12px 32px rgba(0, 0, 0, 0.2);
}
.casino-card:hover { border-color:var(--green); transform:translateY(-8px); box-shadow:0 24px 48px rgba(0, 217, 126, 0.2); }
.cc-top {
  display:grid; grid-template-columns:140px 1fr auto;
  gap:28px; align-items:center; padding:28px;
  border-bottom:1px solid rgba(0, 217, 126, 0.1);
}
.cc-logo {
  background:rgba(248, 250, 252, 0.9); border-radius:var(--r); width:120px; height:72px;
  display:flex; align-items:center; justify-content:center; padding:8px; flex-shrink:0; box-shadow:0 8px 16px rgba(0, 0, 0, 0.2);
}
.cc-logo img { max-width:100%; max-height:100%; object-fit:contain; }
.cc-name { font-family:var(--font-h); font-size:1.9rem; font-weight:900; letter-spacing:-.5px; margin-bottom:6px; }
.cc-tag { font-size:13px; color:var(--muted); margin-bottom:12px; }
.cc-lic {
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid rgba(0, 217, 126, 0.4); background:rgba(0, 217, 126, 0.1);
  color:var(--green); font-size:11px; font-weight:700; letter-spacing:.05em;
  padding:6px 12px; border-radius:6px; transition:all 0.3s ease; backdrop-filter:blur(4px);
}
.cc-lic:hover { background:rgba(0, 217, 126, 0.2); border-color:var(--green); }
.cc-rating { text-align:center; flex-shrink:0; }
.rating-num {
  font-family:var(--font-h); font-size:3.5rem; font-weight:900; line-height:1;
  background:linear-gradient(135deg, var(--green), var(--green-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.rating-num span { font-size:1.4rem; color:var(--muted); }
.stars { color:var(--amber); font-size:14px; letter-spacing:2px; margin-top:4px; }
.cc-mid {
  display:grid; grid-template-columns:repeat(4,1fr) 180px;
  gap:0; border-bottom:1px solid rgba(0, 217, 126, 0.1);
}
.cc-stat {
  padding:20px 24px; border-right:1px solid rgba(0, 217, 126, 0.1);
}
.cc-stat:last-of-type { border-right:none; }
.cc-stat .lbl { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted2); margin-bottom:6px; }
.cc-stat .val { font-size:15px; font-weight:700; color:var(--white); }
.cc-stat .val.hi { color:var(--green); font-size:17px; }
.cc-actions { display:flex; flex-direction:column; gap:10px; justify-content:center; padding:20px 24px; border-left:1px solid rgba(0, 217, 126, 0.1); }
.btn-visit {
  display:block; text-align:center; background:linear-gradient(135deg, var(--green), var(--green-dark)); color:#000;
  font-family:var(--font-h); font-weight:800; font-size:13px; letter-spacing:.08em; text-transform:uppercase;
  padding:11px 16px; border-radius:8px; transition:all 0.3s ease; border:none; cursor:pointer; box-shadow:0 8px 16px rgba(0, 217, 126, 0.3);
}
.btn-visit:hover { transform:translateY(-2px); box-shadow:0 12px 24px rgba(0, 217, 126, 0.4); }
.btn-rev {
  display:block; text-align:center; background:transparent; color:var(--muted);
  border:1px solid rgba(0, 217, 126, 0.2); font-size:12px; font-weight:600;
  padding:10px 16px; border-radius:8px; transition:all 0.3s ease;
}
.btn-rev:hover { border-color:var(--green); color:var(--white); background:rgba(0, 217, 126, 0.1); }
.cc-warn {
  padding:12px 28px; font-size:12px; color:var(--muted2);
  background:rgba(0, 0, 0, 0.2); text-align:center; letter-spacing:.02em;
}

/* Pros/Cons */
.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:24px; padding:28px; border-bottom:1px solid rgba(0, 217, 126, 0.1); }
.pc-box { }
.pc-box h4 { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px; }
.pc-box.pros h4 { color:var(--green); }
.pc-box.cons h4 { color:var(--red); }
.pc-box ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.pc-box li { font-size:13px; color:var(--muted); display:flex; align-items:flex-start; gap:8px; }
.pc-box.pros li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; }
.pc-box.cons li::before { content:'✗'; color:var(--red); font-weight:700; flex-shrink:0; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.ph {
  padding:80px 0 60px;
  background:rgba(17, 27, 60, 0.3);
  position:relative; overflow:hidden;
  border-bottom:1px solid rgba(0, 217, 126, 0.1);
}
.ph::after {
  content:''; position:absolute; top:0; right:0; width:40%; height:100%;
  background:radial-gradient(ellipse 80% 100% at 100% 0%, rgba(0, 217, 126, 0.05) 0%, transparent 60%);
  pointer-events:none;
}
.ph-eyebrow { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); display:block; margin-bottom:12px; }
.ph h1 { font-size:clamp(2.4rem, 5vw, 4rem); text-transform:uppercase; margin-bottom:14px; }
.ph p { max-width:560px; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-sec { padding:80px 0 100px; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.about-text p { font-size:15px; margin-bottom:18px; line-height:1.8; }
.mission-box {
  background:rgba(0, 217, 126, 0.08); border:1px solid rgba(0, 217, 126, 0.2); border-left:3px solid var(--green);
  padding:24px; margin:28px 0; border-radius:var(--r); backdrop-filter:blur(10px);
}
.mission-box p { color:var(--white); font-style:italic; font-size:15px; margin:0; line-height:1.8; }
.how-box { background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r2); padding:32px; backdrop-filter:blur(10px); }
.how-box h3 { font-size:1.2rem; text-transform:uppercase; letter-spacing:-.02em; margin-bottom:24px; color:var(--green); }
.how-step {
  display:flex; align-items:center; gap:16px; padding:16px 0;
  border-bottom:1px solid rgba(0, 217, 126, 0.1);
}
.how-step:last-child { border-bottom:none; }
.step-n {
  width:32px; height:32px; border:2px solid var(--green); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-h); font-weight:800; font-size:14px; color:var(--green); flex-shrink:0;
}
.how-step span { font-size:13px; color:var(--muted); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-sec { padding:80px 0 100px; }
.contact-grid { display:grid; grid-template-columns:1fr 1.8fr; gap:60px; }
.info-card {
  background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r);
  padding:24px; display:flex; flex-direction:column; gap:8px; margin-bottom:18px; transition:all 0.3s ease; backdrop-filter:blur(10px);
}
.info-card:hover { border-color:var(--green); transform:translateX(8px); }
.info-card .ico { font-size:24px; }
.info-card h4 { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); }
.info-card p { font-size:13px; margin:0; }
.form-box { background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r2); padding:36px; backdrop-filter:blur(10px); }
.form-box h3 { font-size:1.3rem; text-transform:uppercase; margin-bottom:28px; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.f-group { margin-bottom:20px; }
.f-group label { display:block; font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted2); margin-bottom:8px; }
.f-group input, .f-group textarea, .f-group select {
  width:100%; background:rgba(10, 14, 39, 0.6); border:1px solid rgba(0, 217, 126, 0.2); border-radius:var(--r);
  padding:12px 16px; color:var(--white); font-family:var(--font-b); font-size:14px; outline:none; transition:all 0.3s ease;
}
.f-group input:focus, .f-group textarea:focus { border-color:var(--green); background:rgba(0, 217, 126, 0.05); }
.f-group textarea { min-height:140px; resize:vertical; }
.alert-ok { background:rgba(0, 217, 126, 0.1); border:1px solid rgba(0, 217, 126, 0.3); color:var(--green-light); padding:14px 18px; border-radius:var(--r); margin-bottom:18px; font-size:13px; }
.alert-err { background:rgba(239, 68, 68, 0.1); border:1px solid rgba(239, 68, 68, 0.3); color:#ff8888; padding:14px 18px; border-radius:var(--r); margin-bottom:18px; font-size:13px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { padding:80px 0 100px; }
.faq-list { display:flex; flex-direction:column; gap:12px; max-width:860px; }
.faq-item {
  background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r);
  overflow:hidden; transition:all 0.3s ease; backdrop-filter:blur(10px);
}
.faq-item.open { border-color:var(--green); background:rgba(0, 217, 126, 0.08); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:20px 24px; cursor:pointer; user-select:none;
  font-family:var(--font-h); font-size:15px; font-weight:700; letter-spacing:-.02em; color:var(--white);
  background:none; border:none; width:100%; text-align:left; transition:all 0.3s ease;
}
.faq-q:hover { color:var(--green-light); }
.faq-item.open .faq-q { color:var(--green); }
.faq-ico {
  width:28px; height:28px; border:1.5px solid rgba(0, 217, 126, 0.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:16px; color:var(--muted2); transition:all 0.3s ease;
}
.faq-item.open .faq-ico { transform:rotate(45deg); border-color:var(--green); color:var(--green); }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height 0.4s ease;
  padding:0 24px; font-size:13px; color:var(--muted); line-height:1.8;
}
.faq-item.open .faq-a { max-height:400px; padding:0 24px 20px; }

/* ── RESPONSIBLE ─────────────────────────────────────────── */
.rg-sec { padding:80px 0 100px; }
.rg-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:48px; }
.rg-box { background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r2); padding:32px; backdrop-filter:blur(10px); }
.rg-box h3 { font-size:1.1rem; text-transform:uppercase; letter-spacing:-.02em; margin-bottom:20px; color:var(--green); }
.rg-box ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.rg-box li { font-size:13px; color:var(--muted); display:flex; align-items:center; gap:10px; }
.rg-box.tools li::before { content:'→'; color:var(--green); font-weight:700; }
.rg-box.signs li::before { content:'!'; width:18px; height:18px; background:linear-gradient(135deg, var(--red), #cc3333); color:#fff; border-radius:50%; text-align:center; line-height:18px; font-size:11px; font-weight:900; flex-shrink:0; }
.rg-help { margin-top:32px; }
.rg-help h3 { color:var(--amber); }
.org-row { display:flex; flex-direction:column; gap:12px; margin-top:14px; }
.org-link { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:rgba(10, 14, 39, 0.6); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r); font-size:13px; transition:all 0.3s ease; }
.org-link:hover { border-color:var(--green); background:rgba(0, 217, 126, 0.08); }
.org-link span { color:var(--muted2); }

/* ── REVIEW PAGE ─────────────────────────────────────────── */
.rev-hdr { padding:60px 0 48px; background:rgba(17, 27, 60, 0.3); border-bottom:1px solid rgba(0, 217, 126, 0.1); }
.rev-hdr-inner { display:flex; gap:28px; align-items:flex-start; flex-wrap:wrap; }
.rev-logo-box { background:#fff; border-radius:var(--r2); width:130px; height:78px; display:flex; align-items:center; justify-content:center; padding:10px; flex-shrink:0; box-shadow:0 12px 24px rgba(0, 0, 0, 0.2); }
.rev-logo-box img { max-width:100%; object-fit:contain; }
.rev-meta h1 { font-size:2.5rem; margin-bottom:8px; text-transform:uppercase; }
.rev-body { padding:60px 0 100px; }
.rev-grid { display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:start; }
.rev-section { margin-bottom:48px; }
.rev-section h2 { font-size:1.3rem; text-transform:uppercase; letter-spacing:-.02em; padding-bottom:12px; border-bottom:1px solid rgba(0, 217, 126, 0.1); margin-bottom:18px; }
.rev-section p { font-size:15px; line-height:1.8; }
.sb-box { background:rgba(17, 27, 60, 0.4); border:1px solid rgba(0, 217, 126, 0.15); border-radius:var(--r2); padding:24px; margin-bottom:18px; backdrop-filter:blur(10px); }
.sb-box h4 { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
.sb-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid rgba(0, 217, 126, 0.1); font-size:13px; }
.sb-row:last-of-type { border-bottom:none; }
.sb-row span:first-child { color:var(--muted); }
.sb-row span:last-child { color:var(--white); font-weight:600; }
.sb-cta { display:block; text-align:center; background:linear-gradient(135deg, var(--green), var(--green-dark)); color:#000; font-family:var(--font-h); font-weight:800; font-size:14px; text-transform:uppercase; letter-spacing:.08em; padding:13px; border-radius:var(--r); margin-top:14px; transition:all 0.3s ease; border:none; cursor:pointer; box-shadow:0 8px 16px rgba(0, 217, 126, 0.3); }
.sb-cta:hover { transform:translateY(-2px); box-shadow:0 12px 24px rgba(0, 217, 126, 0.4); }
.lic-verify-box { background:rgba(0, 217, 126, 0.08); border:1px solid rgba(0, 217, 126, 0.2); border-radius:var(--r); padding:14px 16px; margin-top:14px; font-size:12px; color:var(--muted); }
.lic-verify-box a { font-size:12px; }

/* ── LEGAL ───────────────────────────────────────────────── */
.legal-body { padding:60px 0 100px; max-width:800px; }
.legal-body h2 { font-size:1.1rem; text-transform:uppercase; letter-spacing:-.02em; color:var(--green); margin:32px 0 12px; }
.legal-body p { font-size:15px; margin-bottom:14px; line-height:1.8; }
.legal-body ul { margin:10px 0 14px 24px; }
.legal-body li { font-size:15px; color:var(--muted); margin-bottom:8px; line-height:1.8; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background:linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(17, 27, 60, 0.6)); border-top:1px solid rgba(0, 217, 126, 0.15); padding:64px 0 0; }
.foot-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(0, 217, 126, 0.1); }
.foot-brand .logo-link { display:inline-flex; margin-bottom:16px; }
.foot-brand p { font-size:13px; max-width:280px; line-height:1.8; }
.foot-logos { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.foot-logo {
  display:flex; align-items:center; gap:6px;
  border:1px solid rgba(0, 217, 126, 0.2); background:rgba(17, 27, 60, 0.4); border-radius:var(--r);
  padding:7px 12px; font-size:11px; font-weight:700; color:var(--muted);
  transition:all 0.3s ease; white-space:nowrap; text-decoration:none; backdrop-filter:blur(10px);
}
.foot-logo:hover { border-color:var(--green); color:var(--green); background:rgba(0, 217, 126, 0.1); }
.foot-logo img { width:40px; height:40px; object-fit:contain; }
.foot-col h5 { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.foot-col li a { font-size:13px; color:var(--muted); transition:all 0.3s ease; }
.foot-col li a:hover { color:var(--green-light); }
.foot-bottom { padding:28px 0; }
.age-notice {
  display:flex; align-items:center; gap:12px;
  background:rgba(239, 68, 68, 0.08); border:1px solid rgba(239, 68, 68, 0.2);
  border-radius:var(--r); padding:14px 18px; margin-bottom:18px;
}
.age-badge { background:linear-gradient(135deg, var(--red), #cc3333); color:#fff; font-family:var(--font-h); font-weight:900; font-size:12px; padding:4px 11px; border-radius:6px; flex-shrink:0; }
.age-notice p { font-size:12px; margin:0; }
.foot-disc { font-size:12px; color:var(--muted2); line-height:1.8; margin-bottom:14px; }
.foot-copy { font-size:12px; color:var(--muted2); text-align:center; }

/* ── COOKIE MODAL ────────────────────────────────────────── */
#cookie-modal {
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%);
  width:calc(100% - 48px); max-width:640px;
  background:rgba(17, 27, 60, 0.9); border:1px solid rgba(0, 217, 126, 0.3); border-top:2px solid var(--green);
  border-radius:var(--r2); padding:24px; backdrop-filter:blur(16px);
  z-index:9999; box-shadow:0 24px 48px rgba(0, 0, 0, 0.6);
  animation:slideUp 0.4s ease;
}
.cm-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:14px; }
.cm-top h4 { font-family:var(--font-h); font-size:1.1rem; font-weight:800; text-transform:uppercase; color:var(--white); }
.cm-close { background:none; border:none; color:var(--muted); font-size:22px; cursor:pointer; line-height:1; flex-shrink:0; transition:color 0.3s ease; }
.cm-close:hover { color:var(--white); }
.cm-text { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:18px; }
.cm-text a { font-size:13px; }
.cm-btns { display:flex; gap:10px; flex-wrap:wrap; }
.cm-accept {
  flex:1; min-width:120px; background:linear-gradient(135deg, var(--green), var(--green-dark)); color:#000;
  font-family:var(--font-h); font-weight:800; font-size:12px; text-transform:uppercase; letter-spacing:.08em;
  padding:11px; border:none; border-radius:var(--r); cursor:pointer; transition:all 0.3s ease; box-shadow:0 8px 16px rgba(0, 217, 126, 0.3);
}
.cm-accept:hover { transform:translateY(-2px); box-shadow:0 12px 24px rgba(0, 217, 126, 0.4); }
.cm-decline {
  flex:1; min-width:120px; background:transparent; color:var(--muted);
  border:1px solid rgba(0, 217, 126, 0.2); font-size:12px; font-weight:600;
  padding:11px; border-radius:var(--r); cursor:pointer; transition:all 0.3s ease;
}
.cm-decline:hover { border-color:var(--green); color:var(--green-light); background:rgba(0, 217, 126, 0.1); }

/* ── 404 ─────────────────────────────────────────────────── */
.notfound { text-align:center; padding:140px 24px; }
.nf-code { font-family:var(--font-h); font-size:10rem; font-weight:900; line-height:1; background:linear-gradient(135deg, var(--green), var(--green-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:960px){
  .hero-grid, .about-grid, .contact-grid, .rev-grid, .rg-grid { grid-template-columns:1fr; }
  .hero-panel { display:none; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-cell { border-bottom:1px solid rgba(0, 217, 126, 0.1); }
  .cc-mid { grid-template-columns:1fr 1fr; }
  .cc-actions { grid-column:1/-1; flex-direction:row; border-top:1px solid rgba(0, 217, 126, 0.1); border-left:none; }
  .foot-grid { grid-template-columns:1fr 1fr; }
  .cc-top { grid-template-columns:auto 1fr; }
  .cc-rating { grid-column:1/-1; display:flex; align-items:center; gap:16px; }
  .rev-grid { grid-template-columns:1fr; }
}
@media(max-width:640px){
  h1 { font-size:clamp(2rem, 10vw, 3.5rem); }
  h2 { font-size:1.6rem; }
  .trust-grid { grid-template-columns:1fr; }
  .foot-grid { grid-template-columns:1fr; }
  nav { display:none; position:absolute; top:68px; left:0; right:0; background:rgba(17, 27, 60, 0.95); flex-direction:column; gap:0; border-bottom:1px solid rgba(0, 217, 126, 0.15); padding:12px; z-index:300; backdrop-filter:blur(10px); }
  nav.open { display:flex; }
  .burger { display:flex; }
  .pros-cons { grid-template-columns:1fr; }
  .f-row { grid-template-columns:1fr; }
  #cookie-modal { padding:20px; width:calc(100% - 32px); bottom:16px; }
  .cm-btns { flex-direction:column; }
  .cm-accept, .cm-decline { min-width:0; }
  .hero-grid { gap:32px; }
  .hero h1 { font-size:2.2rem; }
  .contact-grid, .rev-grid { gap:32px; }
  .about-grid { gap:48px; }
}
