:root {
  --green: #00e676;
  --green-dark: #00c853;
  --bg: #0a0e1a;
  --bg2: #111827;
  --bg3: #1a2235;
  --text: #e8eaf0;
  --text-muted: #8892a4;
  --border: #1e2d45;
  --gold: #ffd600;
  --red: #f44336;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header { background: var(--bg2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 22px; font-weight: 800; color: var(--green); }
.logo span { color: var(--text); }
nav { display: flex; gap: 6px; }
nav a { font-size: 14px; color: var(--text-muted); font-weight: 500; padding: 6px 12px; border-radius: 8px; transition: all .2s; }
nav a:hover, nav a.active { color: var(--text); background: var(--bg3); }
.btn-tg { background: #229ED9; color: #fff !important; padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: background .2s; white-space: nowrap; }
.btn-tg:hover { background: #1a8bbf; }

/* PAGE HEADER */
.page-hero { padding: 60px 20px 50px; text-align: center; background: linear-gradient(180deg, #0d1f3c 0%, var(--bg) 100%); }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.page-hero h1 .accent { color: var(--green); }
.page-hero p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }
.section { padding: 60px 20px; }
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; letter-spacing: -.5px; }
.section-sub { color: var(--text-muted); margin-bottom: 36px; font-size: 15px; }

/* BUTTONS */
.btn-primary { background: var(--green); color: #000; padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; border: 1px solid var(--border); cursor: pointer; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* CARDS */
.card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; transition: border-color .2s; }
.card:hover { border-color: rgba(0,230,118,.3); }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.badge-green { background: rgba(0,230,118,.1); color: var(--green); border: 1px solid rgba(0,230,118,.25); }
.badge-gold { background: rgba(255,214,0,.1); color: var(--gold); border: 1px solid rgba(255,214,0,.25); }
.badge-blue { background: rgba(34,158,217,.1); color: #229ED9; border: 1px solid rgba(34,158,217,.25); }
.badge-red { background: rgba(244,67,54,.1); color: var(--red); border: 1px solid rgba(244,67,54,.25); }

/* STATS BAR */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 34px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #0d2b1a 0%, #0a1e30 100%); border: 1px solid rgba(0,230,118,.2); border-radius: 20px; padding: 56px 40px; text-align: center; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 900; margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-sub { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.cta-big { display: inline-flex; align-items: center; gap: 10px; background: #229ED9; color: #fff; padding: 15px 34px; border-radius: 12px; font-size: 16px; font-weight: 700; transition: all .2s; }
.cta-big:hover { background: #1a8bbf; transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 36px 20px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a, .footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-disclaimer { margin-top: 16px; font-size: 11px; color: #3a4a5e; text-align: center; }

/* PRED CARDS */
.pred-list { display: flex; flex-direction: column; gap: 12px; }
.pred-card { padding: 18px 22px; display: grid; grid-template-columns: 52px 1fr auto auto; align-items: center; gap: 18px; }
.pred-icon { width: 52px; height: 52px; background: var(--bg2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.pred-teams { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.pred-meta { font-size: 13px; color: var(--text-muted); }
.pred-bet { background: rgba(0,230,118,.1); color: var(--green); border: 1px solid rgba(0,230,118,.3); padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.pred-coef { text-align: right; min-width: 60px; }
.pred-coef .num { font-size: 22px; font-weight: 900; color: var(--green); }
.pred-coef .lbl { font-size: 11px; color: var(--text-muted); }
.pred-vip { position: relative; overflow: hidden; }
.pred-vip::after { content: '🔒 VIP — откройте в Telegram'; position: absolute; inset: 0; background: rgba(10,14,26,.88); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--gold); backdrop-filter: blur(3px); }

/* TABLES */
.data-table { width: 100%; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); border-collapse: collapse; }
.data-table thead { background: var(--bg2); }
.data-table th { padding: 13px 18px; text-align: left; font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.data-table td { padding: 13px 18px; font-size: 14px; border-top: 1px solid var(--border); }
.data-table tbody tr:hover { background: rgba(255,255,255,.02); }
.win { color: var(--green); font-weight: 700; }
.lose { color: var(--red); font-weight: 700; }
.roi { color: var(--green); font-weight: 800; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.price-card { padding: 30px; position: relative; }
.price-card.hot { border-color: var(--green); background: linear-gradient(135deg, rgba(0,230,118,.05), var(--bg3)); }
.hot-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #000; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.price-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.price-num { font-size: 44px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.price-feat { list-style: none; margin-bottom: 26px; }
.price-feat li { padding: 7px 0; font-size: 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.price-feat li:last-child { border-bottom: none; }
.ck { color: var(--green); }
.no { color: var(--text-muted); }
.price-btn { width: 100%; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; }
.price-btn-main { background: var(--green); color: #000; }
.price-btn-main:hover { background: var(--green-dark); }
.price-btn-sec { background: var(--bg2); color: var(--text); border: 1px solid var(--border); }
.price-btn-sec:hover { border-color: var(--green); color: var(--green); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.review-card { padding: 22px; }
.rv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #000; flex-shrink: 0; }
.rv-name { font-size: 14px; font-weight: 700; }
.rv-stars { color: var(--gold); font-size: 13px; }
.rv-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* SPORT TABS */
.sport-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.sport-tab { padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: var(--bg3); color: var(--text-muted); transition: all .2s; }
.sport-tab:hover, .sport-tab.active { border-color: var(--green); color: var(--green); background: rgba(0,230,118,.05); }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  nav { display: none; }
  .pred-card { grid-template-columns: 44px 1fr; }
  .pred-bet, .pred-coef { display: none; }
  .cta-banner { padding: 36px 20px; }
}