*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #080807; --bg2: #0f0f0e; --bg3: #161614;
  --accent: #b5f23d; --gold: #f5c842; --silver: #aeb4bc; --bronze: #c97c3a;
  --text: #f0ede6; --muted: #8a8880; --border: rgba(255,255,255,0.06); --radius: 10px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.6; overflow-x: hidden; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(8,8,7,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 0 2rem; height: 56px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1.5px; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-link { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: var(--bg); padding: 7px 16px; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding: 6rem 2rem 5rem; overflow: hidden; }
.hero-img { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?w=1600&q=80'); background-size: cover; background-position: center 30%; opacity: 0.18; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,7,0.3) 0%, rgba(8,8,7,0.55) 60%, rgba(8,8,7,1) 100%); }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% -5%, rgba(181,242,61,0.11) 0%, transparent 55%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 70%, transparent 100%); }
.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; padding: 5px 14px; font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }
h1.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.8rem, 9vw, 7.5rem); line-height: 0.93; letter-spacing: 0.01em; margin-bottom: 1.5rem; }
h1.hero-title em { font-style: normal; color: var(--accent); display: block; }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary { background: var(--accent); color: var(--bg); padding: 14px 26px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; transition: opacity 0.15s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); padding: 14px 26px; border-radius: 8px; font-weight: 500; font-size: 15px; text-decoration: none; border: 1px solid rgba(255,255,255,0.1); transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.trust-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; }

/* SHARED */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 0.6rem; }
.section-sub { color: var(--muted); font-size: 15px; max-width: 520px; margin-bottom: 2.5rem; }

/* STATS */
.stats-strip { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--muted); }

/* FILTERS */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: var(--bg3); border: 1px solid var(--border); color: var(--muted); padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: rgba(181,242,61,0.1); border-color: rgba(181,242,61,0.35); color: var(--accent); }

/* RANKING CARDS */
.betting-list { display: flex; flex-direction: column; gap: 12px; }
.bet-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: grid; grid-template-columns: 48px 90px 1fr 90px 130px; gap: 1.2rem; align-items: center; transition: border-color 0.2s, background 0.2s; position: relative; overflow: hidden; }
.bet-card:hover { border-color: rgba(255,255,255,0.11); background: #121210; }
.bet-card.top-pick { border-color: rgba(181,242,61,0.28); background: linear-gradient(90deg, rgba(181,242,61,0.04) 0%, var(--bg2) 50%); }
.bet-card.top-pick::before { content: "EDITOR'S PICK"; position: absolute; top: 0; right: 0; background: var(--accent); color: var(--bg); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 0 var(--radius) 0 var(--radius); }
.rank-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; color: var(--bg3); text-align: center; }
.rank-num.r1 { color: var(--gold); } .rank-num.r2 { color: var(--silver); } .rank-num.r3 { color: var(--bronze); }
.site-logo { width: 90px; height: 44px; background: var(--bg3); border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 1px; color: var(--muted); }
.site-name { font-weight: 700; font-size: 16px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.site-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 6px; }
.tag { font-size: 11px; padding: 2px 8px; border-radius: 4px; background: var(--bg3); color: var(--muted); border: 1px solid var(--border); }
.tag.sports { color: #7ec8e3; border-color: rgba(126,200,227,0.25); background: rgba(126,200,227,0.07); }
.tag.crypto { color: var(--gold); border-color: rgba(245,200,66,0.25); background: rgba(245,200,66,0.07); }
.tag.live { color: #f06060; border-color: rgba(240,96,96,0.25); background: rgba(240,96,96,0.07); }
.tag.nokyc { color: var(--accent); border-color: rgba(181,242,61,0.25); background: rgba(181,242,61,0.07); }
.site-bonus { font-size: 13px; color: var(--muted); }
.site-rating { text-align: center; }
.rating-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--text); line-height: 1; margin-bottom: 4px; }
.stars { display: flex; gap: 2px; justify-content: center; margin-bottom: 2px; }
.star { width: 11px; height: 11px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.star.half { background: var(--bg3); }
.site-action { display: flex; flex-direction: column; gap: 8px; }
.btn-claim { background: var(--accent); color: var(--bg); border: none; padding: 10px 16px; border-radius: 7px; font-weight: 700; font-size: 13px; cursor: pointer; text-align: center; text-decoration: none; display: block; transition: opacity 0.15s, transform 0.15s; font-family: 'DM Sans', sans-serif; }
.btn-claim:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-review { background: transparent; color: var(--muted); border: 1px solid var(--border); padding: 8px 16px; border-radius: 7px; font-size: 12px; cursor: pointer; text-align: center; text-decoration: none; display: block; transition: color 0.2s, border-color 0.2s; }
.btn-review:hover { color: var(--text); border-color: rgba(255,255,255,0.14); }

/* BONUS TABLE */
.bonus-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bonus-table th { text-align: left; padding: 12px 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
.bonus-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(255,255,255,0.02); }
.bonus-amount { color: var(--accent); font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 13px; }

/* MINI REVIEWS */
.reviews-grid { display: flex; flex-direction: column; gap: 16px; }
.review-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 1.6rem; transition: border-color 0.2s; display: flex; flex-direction: column; gap: 1rem; }
.review-card:hover { border-color: rgba(255,255,255,0.11); }
.review-card.featured { border-color: rgba(181,242,61,0.25); display: grid; grid-template-columns: 220px 1fr; gap: 2rem; }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.review-header-left { display: flex; align-items: center; gap: 12px; }
.review-rank { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; min-width: 40px; }
.review-rank.r1 { color: var(--gold); } .review-rank.r2 { color: var(--silver); } .review-rank.r3 { color: var(--bronze); }
.review-logo { width: 80px; height: 40px; background: var(--bg3); border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1px; color: var(--muted); flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 17px; margin-bottom: 2px; }
.review-score { display: flex; align-items: center; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.score-val { color: var(--gold); font-weight: 700; }
.score-stars { display: flex; gap: 2px; }
.review-verdict { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; }
.review-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pros, .cons { background: var(--bg3); border-radius: 8px; padding: 0.8rem 1rem; font-size: 13px; }
.pros-title, .cons-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.pros-title { color: var(--accent); } .cons-title { color: #f06060; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.pros li::before { content: '\2713  '; color: var(--accent); font-weight: 700; }
.cons li::before { content: '\2717  '; color: #f06060; }
.pros li, .cons li { color: var(--muted); }
.review-bonus-tag { display: inline-block; background: rgba(181,242,61,0.08); border: 1px solid rgba(181,242,61,0.2); color: var(--accent); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 5px; font-family: 'JetBrains Mono', monospace; }
.feat-left { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; }
.feat-right { display: flex; flex-direction: column; gap: 1rem; }

/* HOW */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: border-color 0.2s; }
.how-card:hover { border-color: rgba(255,255,255,0.11); }
.how-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1rem; }
.how-icon { font-size: 22px; margin-bottom: 0.8rem; }
.how-title { font-weight: 700; font-size: 16px; margin-bottom: 0.4rem; }
.how-text { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; padding: 1.2rem 1.5rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
.faq-question:hover { color: var(--accent); }
.faq-arrow { width: 20px; height: 20px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: rgba(181,242,61,0.12); border-color: rgba(181,242,61,0.28); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.2rem; color: var(--muted); font-size: 14px; line-height: 1.75; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; background: var(--bg2); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; }
.footer-logo span { color: var(--accent); }
.footer-links-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links-row a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links-row a:hover { color: var(--text); }
.footer-disclaimer { font-size: 12px; color: var(--muted); line-height: 1.65; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-disclaimer a { color: var(--accent); text-decoration: none; }

/* MODAL */
#modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.72); z-index:999; backdrop-filter:blur(4px); }
#modal-box { display:none; position:fixed; top:50%; left:50%; transform:translate(-50%,-50%); z-index:1000; background:var(--bg2); border:1px solid rgba(255,255,255,0.1); border-radius:14px; padding:2.2rem; max-width:520px; width:90%; max-height:80vh; overflow-y:auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

@media (max-width: 820px) {
  .bet-card { grid-template-columns: 36px 1fr; } .site-logo, .site-rating { display: none; } .site-action { flex-direction: row; }
  .stats-inner { grid-template-columns: repeat(2,1fr); } .how-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-template-columns: 1fr; }
  .review-pros-cons { grid-template-columns: 1fr; } .nav-link { display: none; }
}