:root{
  --blue:#0e66d1;
  --blue2:#0047a8;
  --green:#16a34a;
  --lime:#a3ff12;
  --dark:#06121f;
  --card:#ffffff;
  --muted:#64748b;
  --text:#0f172a;
  --line:#e2e8f0;
  --gold:#facc15;
  --red:#ef4444;
  --shadow:0 18px 45px rgba(15,23,42,.12);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:#f5f8fc;
  color:var(--text);
  padding-bottom:0;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1180px,100%);
  margin:auto;
  padding:0 16px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.navbar{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo a{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  font-size:22px;
  color:#10213f;
}

.logo-badge{
  width:42px;
  height:42px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--green));
  color:#fff;
  box-shadow:0 12px 28px rgba(14,102,209,.22);
}

.menu-toggle{
  display:none;
  border:0;
  background:var(--blue);
  color:#fff;
  border-radius:12px;
  padding:10px 13px;
  font-size:22px;
  cursor:pointer;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  padding:0;
}

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:13px;
  font-weight:850;
  font-size:14px;
  color:#334155;
}

.nav-links a:hover{
  background:#eff6ff;
  color:var(--blue);
}

.nav-links .nav-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
}

.nav-links .nav-app{
  background:linear-gradient(135deg,var(--green),var(--lime));
  color:#06121f;
}

/* Quick nav */
.quick-nav{
  background:#06121f;
  border-top:1px solid rgba(255,255,255,.08);
}

.quick-nav-inner{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:10px 16px;
  scrollbar-width:none;
}

.quick-nav-inner::-webkit-scrollbar{display:none}

.quick-nav a{
  white-space:nowrap;
  color:#dbeafe;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  padding:9px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.quick-nav a:hover{
  background:var(--green);
  color:#fff;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 15%,rgba(163,255,18,.18),transparent 18rem),
    radial-gradient(circle at 5% 85%,rgba(14,102,209,.35),transparent 18rem),
    linear-gradient(135deg,#06121f,#0b2b56 52%,#0e66d1);
  color:#fff;
  padding:76px 0 56px;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:42px 42px;
  opacity:.45;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:30px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#bbf7d0;
  font-weight:900;
  font-size:13px;
}

.hero h1{
  margin:18px 0 12px;
  font-size:clamp(38px,5vw,66px);
  line-height:.98;
  letter-spacing:-2.2px;
  font-weight:950;
}

.hero p{
  color:#dbeafe;
  font-size:17px;
  line-height:1.7;
  max-width:650px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.trust-row span{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  color:#f8fafc;
  font-weight:900;
  font-size:13px;
  padding:9px 12px;
  border-radius:999px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:13px 18px;
  border-radius:16px;
  border:0;
  font-weight:950;
  cursor:pointer;
  transition:.18s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-main{
  background:linear-gradient(135deg,var(--green),var(--lime));
  color:#06121f;
  box-shadow:0 16px 34px rgba(22,163,74,.28);
}

.btn-light{
  background:#fff;
  color:#06121f;
}

.btn-ghost{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}

.btn-telegram-light{
  background:#fff;
  color:#06121f;
  border:1px solid #dbeafe;
}

/* Slip */
.hero-card{
  border-radius:30px;
  padding:20px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  box-shadow:0 20px 55px rgba(0,0,0,.2);
}

.hero-slip{
  background:#fff;
  color:#0f172a;
  border-radius:24px;
  padding:18px;
  position:relative;
  overflow:hidden;
}

.hero-slip:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  background:linear-gradient(90deg,var(--green),var(--lime),var(--blue));
}

.slip-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.slip-head small{
  display:block;
  color:var(--green);
  font-size:11px;
  font-weight:950;
  letter-spacing:.8px;
}

.slip-head strong{
  display:block;
  font-size:20px;
  margin-top:2px;
}

.live-badge{
  background:#dcfce7;
  color:#15803d;
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:950;
}

.ticket-list{
  display:grid;
  gap:10px;
}

.ticket-match{
  padding:14px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
}

.match-top,
.match-bottom{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}

.match-top span{
  color:#64748b;
  font-size:12px;
  font-weight:900;
}

.status{
  font-style:normal;
  padding:5px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  background:#e2e8f0;
  color:#334155;
}

.status.won,
.status.win{
  background:#dcfce7;
  color:#15803d;
}

.status.lost,
.status.loss{
  background:#fee2e2;
  color:#b91c1c;
}

.status.pending{
  background:#fef9c3;
  color:#a16207;
}

.ticket-match h3{
  margin:9px 0;
  font-size:15px;
  line-height:1.35;
}

.match-bottom strong{
  color:#06121f;
  font-size:14px;
}

.match-bottom span{
  background:#06121f;
  color:#fff;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:950;
}

.odds-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px;
  border-radius:18px;
  background:#06121f;
  color:#fff;
  margin-top:12px;
}

.odds-row strong{
  color:var(--lime);
  font-size:20px;
}

.empty-slip{
  text-align:center;
  background:#f8fafc;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  padding:22px;
}

.empty-slip h3{
  margin:0 0 8px;
}

.empty-slip p{
  margin:0;
  color:#64748b;
  font-size:14px;
}

.slip-more-btn{
  margin-top:14px;
  width:100%;
  display:flex;
  justify-content:center;
  padding:13px 16px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--green),var(--lime));
  color:#06121f;
  font-weight:950;
}

/* App strip */
.app-strip{
  margin-top:-26px;
  position:relative;
  z-index:2;
}

.app-strip-box{
  padding:18px 20px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.app-strip-box strong{font-size:18px}

.app-strip-box p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:14px;
}

.app-strip-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Proof */
.proof-section{
  padding:34px 0 8px;
}

.proof-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.proof-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.proof-card strong{
  display:block;
  font-size:18px;
  margin-bottom:7px;
}

.proof-card p{
  margin:0 0 14px;
  color:#64748b;
  line-height:1.55;
  font-size:14px;
}

.proof-card a{
  display:inline-flex;
  color:var(--blue);
  font-weight:950;
}

/* Sections */
.section{
  padding:54px 0;
}

.section-title{
  text-align:center;
  margin:0 0 10px;
  font-size:clamp(26px,4vw,38px);
  font-weight:950;
  letter-spacing:-1px;
}

.section-sub{
  text-align:center;
  color:var(--muted);
  max-width:650px;
  margin:0 auto 28px;
  line-height:1.6;
}

/* Features */
.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:0 12px 28px rgba(15,23,42,.07);
  transition:.2s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#eff6ff;
  color:var(--blue);
  font-size:25px;
  margin-bottom:14px;
}

.feature-card h3{
  margin:0 0 8px;
  font-size:19px;
}

.feature-card p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.feature-btn{
  display:inline-flex;
  padding:10px 14px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  font-weight:900;
  font-size:13px;
}

/* Affiliates */
.aff-wrap{
  background:#eef5ff;
  padding:54px 0;
  border-top:1px solid #dbeafe;
  border-bottom:1px solid #dbeafe;
}

.aff-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.aff-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  text-align:center;
  box-shadow:0 12px 28px rgba(15,23,42,.07);
}

.partner-tag{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:#06121f;
  color:#fff;
  font-size:12px;
  font-weight:950;
  margin-bottom:10px;
}

.aff-promo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  background:#eff6ff;
  border:1px dashed var(--blue);
  padding:11px;
  border-radius:14px;
  margin:8px 0 14px;
  flex-wrap:wrap;
}

.aff-promo-code{
  font-weight:950;
  color:#002868;
  font-size:14px;
}

.copy-btn{
  border:none;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  padding:7px 10px;
  border-radius:10px;
  cursor:pointer;
}

.aff-img{
  width:100%;
  height:135px;
  object-fit:contain;
  padding:10px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:16px;
  margin:5px 0 14px;
}

.aff-btn{
  display:flex;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--green),var(--lime));
  color:#06121f;
  font-weight:950;
}

/* Stats */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  text-align:center;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.stat h3{
  margin:0 0 6px;
  color:var(--blue);
  font-size:25px;
}

.stat p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

/* Testimonials */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.testimonial{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.testimonial p{
  color:#475569;
  line-height:1.6;
  margin:0 0 14px;
  font-size:14px;
}

.testimonial h4{
  margin:0;
  color:#10213f;
}

/* CTA */
.cta-section{
  margin:20px auto 54px;
  width:min(1150px,calc(100% - 32px));
  text-align:center;
  padding:42px 22px;
  border-radius:30px;
  color:#fff;
  background:
    radial-gradient(circle at top right,rgba(163,255,18,.2),transparent 15rem),
    linear-gradient(135deg,#06121f,#0e66d1);
  box-shadow:var(--shadow);
}

.cta-section h2{
  margin:0 0 10px;
  font-size:clamp(26px,4vw,40px);
}

.cta-section p{
  color:#dbeafe;
  margin:0 0 20px;
}

.hero-actions-center{justify-content:center}

/* Footer */
.footer{
  background:#06121f;
  color:#cbd5e1;
  padding:44px 0 22px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:22px;
}

.footer h3{
  color:#fff;
  margin:0 0 12px;
}

.footer p,.footer a,.footer li{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.7;
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer input{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:0;
  margin-bottom:8px;
}

.footer button{
  border:0;
  padding:11px 15px;
  border-radius:12px;
  background:var(--green);
  color:#fff;
  font-weight:900;
}

.responsible-note{
  margin-top:10px;
  color:#94a3b8 !important;
  font-size:12px !important;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:28px;
  padding-top:18px;
  text-align:center;
  color:#94a3b8;
  font-size:13px;
}

/* Floating */
#telegram-chat,
#app-download-float{
  position:fixed;
  right:20px;
  z-index:9999;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 38px rgba(15,23,42,.22);
}

#telegram-chat{bottom:105px}

#app-download-float{
  bottom:176px;
  background:linear-gradient(135deg,var(--green),var(--lime));
  color:#06121f;
  font-size:25px;
}

#telegram-chat img{
  width:34px;
  height:34px;
}

.copy-toast{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#06121f;
  color:#fff;
  padding:14px 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  box-shadow:0 12px 28px rgba(0,0,0,.25);
  display:none;
  z-index:99999;
}

/* Mobile bottom CTA */
.mobile-bottom-cta{
  display:none;
}

/* Chat compatibility */
.eb-chat-launcher{
  position:fixed !important;
  right:20px !important;
  bottom:32px !important;
  width:62px !important;
  height:62px !important;
  border-radius:50% !important;
  background:linear-gradient(135deg,#075e54,#14b8a6) !important;
  color:#fff !important;
  z-index:999999999 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  cursor:pointer !important;
  box-shadow:0 18px 40px rgba(15,118,110,.45) !important;
}

.eb-chat-icon{font-size:28px !important}
.eb-chat-widget{z-index:999999999 !important}

/* Responsive */
@media(max-width:900px){
  .menu-toggle{display:block}

  .navbar{flex-wrap:wrap}

  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    padding:10px 0 6px;
  }

  .nav-links.active{display:flex}

  .nav-links a{
    background:#f8fafc;
    justify-content:flex-start;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .proof-grid,
  .features-grid,
  .aff-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .app-strip-box{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:560px){
  body{
    padding-bottom:74px;
  }

  .navbar{
    min-height:68px;
  }

  .logo a{
    font-size:19px;
  }

  .logo-badge{
    width:38px;
    height:38px;
  }

  .hero{
    padding:48px 0 42px;
  }

  .hero h1{
    font-size:38px;
    letter-spacing:-1.4px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-actions,
  .app-strip-actions{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }

  .btn{
    width:100%;
  }

  .hero-card{
    padding:12px;
    border-radius:24px;
  }

  .hero-slip{
    border-radius:20px;
    padding:15px;
  }

  .match-top,
  .match-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .match-bottom span{
    width:100%;
    text-align:center;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  #telegram-chat,
  #app-download-float{
    display:none;
  }

  .mobile-bottom-cta{
    position:fixed;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:999999;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:8px;
    padding:9px;
    border-radius:20px;
    background:rgba(6,18,31,.94);
    backdrop-filter:blur(12px);
    box-shadow:0 16px 40px rgba(0,0,0,.28);
  }

  .mobile-bottom-cta a{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:14px;
    background:rgba(255,255,255,.1);
    color:#fff;
    font-size:12px;
    font-weight:950;
  }

  .mobile-bottom-cta a:nth-child(2){
    background:linear-gradient(135deg,var(--green),var(--lime));
    color:#06121f;
  }

  .eb-chat-launcher{
    bottom:84px !important;
    right:15px !important;
    width:56px !important;
    height:56px !important;
  }
}