*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --black:#000000;
  --dark:#050816;
  --dark-2:#070a16;
  --card:rgba(255,255,255,.055);
  --card-2:rgba(255,255,255,.025);
  --gold:#D4AF37;
  --gold-light:#F5D77A;
  --white:#ffffff;
  --muted:#9ca3af;
  --line:rgba(212,175,55,.18);
  --shadow:0 25px 90px rgba(0,0,0,.45);
}

html{
  scroll-behavior:smooth;
}

body{
  background:#000;
  font-family:Inter,Arial,sans-serif;
  color:#fff;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 18% 12%,rgba(212,175,55,.07),transparent 28%),
    radial-gradient(circle at 82% 26%,rgba(212,175,55,.04),transparent 32%),
    linear-gradient(180deg,#000 0%,#03040a 48%,#000 100%);
}

.container{
  max-width:1280px;
  margin:0 auto;
  padding:0 20px;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  height:auto;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(0,0,0,.76);
  border-bottom:1px solid rgba(212,175,55,.14);
  backdrop-filter:blur(18px);
  transition:.3s ease;
}

.site-header.scrolled,
header.scrolled{
  background:rgba(0,0,0,.88);
  border-bottom-color:rgba(212,175,55,.22);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
}

.brand-icon{
  width:50px;
  height:50px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--gold),#9b6b18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-size:25px;
  box-shadow:0 0 38px rgba(212,175,55,.35);
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-text strong{
  font-size:20px;
  font-weight:900;
  line-height:1.1;
}

.brand-text small{
  margin-top:3px;
  font-size:11px;
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:800;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.desktop-nav a{
  color:#aeb5c4;
  font-size:14px;
  font-weight:800;
  transition:.3s ease;
}

.desktop-nav a:hover{
  color:var(--gold);
}

.nav-cta,
.btn-gold,
.btn-glass{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:900;
  transition:.3s ease;
}

.nav-cta,
.btn-gold{
  padding:16px 28px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light),var(--gold));
  color:#050816 !important;
  box-shadow:0 0 35px rgba(212,175,55,.22);
}

.nav-cta:hover,
.btn-gold:hover{
  transform:translateY(-3px);
  box-shadow:0 0 45px rgba(212,175,55,.4);
}

.btn-glass{
  padding:16px 28px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(212,175,55,.18);
  color:#fff;
}

.btn-glass:hover{
  background:rgba(212,175,55,.08);
  border-color:rgba(212,175,55,.35);
}

.mobile-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
}

.mobile-toggle span{
  display:block;
  width:28px;
  height:3px;
  margin:5px 0;
  border-radius:20px;
  background:#fff;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:14px;
  padding:22px 20px 26px;
  background:#030303;
  border-bottom:1px solid rgba(212,175,55,.16);
}

.mobile-menu.active{
  display:flex;
}

.mobile-menu a{
  color:#fff;
  font-weight:800;
}

.mobile-cta{
  padding:14px;
  border-radius:999px;
  text-align:center;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#050816 !important;
}

/* GLOBAL SECTIONS */
.hero-section,
.features-section,
.devices-section,
.se-pricing,
.testimonials-section,
.faq-section,
.final-cta{
  position:relative;
  overflow:hidden;
  background:transparent;
}

.hero-section{
  padding:125px 0 58px;
}

.features-section,
.devices-section,
.se-pricing,
.testimonials-section,
.faq-section{
  padding:65px 0;
}

.final-cta{
  padding:78px 0;
  text-align:center;
}

.section-head{
  max-width:850px;
  margin:0 auto 34px;
  text-align:center;
}

.section-head h1,
.section-head h2{
  font-size:42px;
  line-height:1.15;
  font-weight:950;
  letter-spacing:-1px;
  margin-bottom:14px;
}

.section-head h1 span,
.section-head h2 span,
.final-cta h2 span{
  color:var(--gold);
}

.section-head p,
.final-cta p{
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.hero-content p a,
.feature-card p a,
.faq-answer a,
.final-cta p a{
  color:var(--gold);
  font-weight:900;
  border-bottom:1px solid rgba(212,175,55,.45);
}

/* HERO */
.hero-glow{
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  background:rgba(212,175,55,.08);
  filter:blur(90px);
  z-index:0;
}

.hero-glow-left{
  top:20%;
  left:-180px;
}

.hero-glow-right{
  right:-180px;
  bottom:10%;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:70px;
  align-items:center;
}

.premium-badge{
  display:inline-flex;
  align-items:center;
  padding:11px 18px;
  border-radius:999px;
  margin-bottom:26px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(212,175,55,.18);
  color:var(--gold);
  font-weight:900;
}

.hero-content h1{
  font-size:62px;
  line-height:1.05;
  font-weight:950;
  letter-spacing:-2px;
  margin-bottom:24px;
}

.hero-content h1 span{
  background:linear-gradient(135deg,var(--gold),var(--gold-light),var(--gold));
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}

.hero-content p{
  max-width:650px;
  color:#aab2c1;
  font-size:18px;
  line-height:1.8;
  margin-bottom:26px;
}

.hero-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:30px;
}

.hero-points div{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(212,175,55,.12);
  color:#d1d5db;
  font-size:14px;
  font-weight:800;
}

.hero-points i,
.tv-mini-grid i{
  color:var(--gold);
  margin-right:8px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

/* LIVE CARD */
.hero-tv{
  position:relative;
  padding:26px;
  border-radius:32px;
  background:linear-gradient(145deg,#050505,#071224);
  border:1px solid rgba(212,175,55,.14);
  box-shadow:0 0 80px rgba(212,175,55,.09),0 25px 80px rgba(0,0,0,.75);
}

.tv-badge{
  position:absolute;
  top:-15px;
  right:18px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(5,8,22,.95);
  border:1px solid rgba(212,175,55,.32);
  color:var(--gold);
  font-size:13px;
  font-weight:950;
}

.tv-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:14px;
  margin-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.055);
}

.tv-top span{
  color:var(--gold);
  font-size:14px;
  letter-spacing:1px;
  font-weight:950;
}

.tv-top span.is-live{
  color:#ef4444 !important;
  animation:livePulse 1.2s infinite;
}

.tv-top small{
  color:var(--muted);
}

.tv-screen{
  border-radius:24px;
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at center,rgba(212,175,55,.12),transparent 42%),linear-gradient(145deg,#020202,#071226);
  border:1px solid rgba(255,255,255,.06);
}

.tv-screen.match-screen{
  min-height:330px;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.match-league,
#matchLeague{
  color:var(--gold);
  font-size:13px;
  font-weight:950;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:24px;
  text-align:center;
}

.teams-row{
  width:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
}

.team-box{
  text-align:center;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
}

.team-box strong{
  display:block;
  font-size:30px;
  font-weight:950;
  color:#fff;
}

.team-logo{
  width:76px !important;
  height:76px !important;
  object-fit:contain !important;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 0 18px rgba(212,175,55,.28));
}

#homeName,
#awayName,
.team-box span{
  display:block;
  margin-top:10px;
  font-size:17px !important;
  color:#fff !important;
  font-weight:900 !important;
}

.score-box{
  min-width:120px;
  text-align:center;
}

#matchScore,
.score-box b{
  display:block;
  color:var(--gold) !important;
  font-size:58px !important;
  line-height:1;
  font-weight:950 !important;
  letter-spacing:-2px;
}

#matchMinute,
.score-box small{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.15);
  color:var(--gold);
  font-size:15px;
  font-weight:950;
}

.live-bar{
  width:100%;
  height:8px;
  margin-top:26px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  overflow:hidden;
}

.live-bar span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  box-shadow:0 0 22px rgba(212,175,55,.4);
}

.match-note,
#matchNote{
  margin-top:18px;
  color:#e5e7eb;
  font-size:16px;
  font-weight:900;
  text-align:center;
}

.match-board{
  transition:opacity .35s ease,transform .35s ease,filter .35s ease;
}

.match-board.match-changing{
  opacity:.12;
  transform:translateY(14px) scale(.98);
  filter:blur(7px);
}

.tv-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}

.tv-mini-grid div{
  padding:15px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  color:#e5e7eb;
  font-size:14px;
  font-weight:800;
}

@keyframes livePulse{
  0%,100%{opacity:1;text-shadow:0 0 8px rgba(239,68,68,.35);}
  50%{opacity:.6;text-shadow:0 0 20px rgba(239,68,68,.9);}
}

/* GRIDS + CARDS */
.features-grid,
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.feature-card,
.testimonial-card,
.trustpilot-box,
.faq-item,
.trust-grid div{
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(212,175,55,.16);
  box-shadow:0 20px 70px rgba(0,0,0,.25);
  transition:.35s ease;
}

.feature-card,
.testimonial-card{
  padding:34px;
  border-radius:30px;
}

.feature-card:hover,
.testimonial-card:hover,
.trust-grid div:hover{
  transform:translateY(-8px);
  border-color:rgba(212,175,55,.42);
  box-shadow:0 30px 100px rgba(212,175,55,.14);
}

.feature-icon{
  width:62px;
  height:62px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.25);
  margin-bottom:22px;
}

.feature-icon i{
  font-size:30px;
  color:var(--gold);
}

.feature-card h3,
.testimonial-card h3{
  font-size:22px;
  margin-bottom:14px;
}

.feature-card p,
.testimonial-card p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

/* DEVICES */
.devices-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}

.device-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
  transition:.35s ease;
}

.device-card:hover{
  transform:translateY(-8px) scale(1.05);
}

.device-card i{
  font-size:52px;
  color:var(--gold);
  filter:drop-shadow(0 0 18px rgba(212,175,55,.35));
}

.device-card b{
  font-size:17px;
  color:#fff;
  font-weight:950;
}

.compat-note{
  max-width:850px;
  margin:38px auto 0;
  padding:18px 26px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(212,175,55,.18);
  color:#d8dbe6;
  text-align:center;
  line-height:1.7;
}

/* PRICING */
.billing-toggle{
  width:max-content;
  margin:0 auto 34px;
  padding:8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  display:flex;
  gap:8px;
}

.billing-toggle button{
  border:0;
  background:transparent;
  cursor:pointer;
}

.billing-btn{
  padding:16px 38px;
  border-radius:999px;
  color:var(--muted);
  font-weight:950;
  font-size:16px;
  transition:.3s ease;
}

.billing-btn.active{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#050816;
  box-shadow:0 12px 32px rgba(212,175,55,.32);
}

.pricing-set{
  display:none;
}

.pricing-set.active{
  display:grid;
}

.se-pricing-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:32px;
  align-items:stretch;
}

.se-price-card,
.js .se-price-card.reveal,
.js .se-price-card.reveal.show{
  opacity:1 !important;
  transform:none !important;
}

.se-price-card{
  position:relative;
  min-height:610px;
  padding:44px 38px;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  color:#fff;
  border:1px solid rgba(212,175,55,.20);
  box-shadow:0 25px 90px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  transition:.35s ease;
}

.se-price-card:hover,
.js .se-price-card.reveal:hover,
.js .se-price-card.reveal.show:hover{
  transform:translateY(-10px) !important;
}

.se-price-card.featured{
  background:linear-gradient(160deg,#d4af37 0%,#f5d77a 45%,#b8860b 100%);
  color:#050816;
  box-shadow:0 30px 110px rgba(212,175,55,.28);
}

.se-price-card.featured:hover{
  box-shadow:0 35px 120px rgba(212,175,55,.42),0 0 50px rgba(212,175,55,.22);
}

.top-label{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  padding:12px 26px;
  border-radius:999px;
  background:#16c784;
  color:#fff;
  font-size:15px;
  font-weight:950;
  white-space:nowrap;
  box-shadow:0 18px 40px rgba(22,199,132,.3);
}

.se-price-card h3{
  min-height:62px;
  margin-bottom:26px;
  text-align:center;
  font-size:20px;
  line-height:1.25;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:#fff;
}

.se-price{
  margin-bottom:24px;
  text-align:center;
  font-size:86px;
  font-weight:950;
  line-height:1;
  color:var(--gold);
  letter-spacing:-3px;
}

.se-price span{
  margin-left:8px;
  font-size:30px;
  letter-spacing:0;
}

.se-price-card p{
  min-height:58px;
  margin-bottom:26px;
  text-align:center;
  color:#c7cbd6;
  font-size:16px;
  line-height:1.65;
}

.se-price-card hr{
  border:0;
  height:1px;
  background:rgba(212,175,55,.20);
  margin-bottom:26px;
}

.se-price-card ul{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 30px !important;
}

.se-price-card li{
  position:relative;
  list-style:none !important;
  padding-left:42px;
  margin-bottom:14px;
  color:#d7dbe6;
  font-size:16px;
  line-height:1.45;
}

.se-price-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  width:25px;
  height:25px;
  border-radius:50%;
  border:2px solid var(--gold);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:950;
}

.se-price-card.featured h3,
.se-price-card.featured p,
.se-price-card.featured .se-price,
.se-price-card.featured li{
  color:#050816;
}

.se-price-card.featured li::before{
  border-color:#050816;
  color:#050816;
}

.se-btn{
  margin-top:auto;
  display:block;
  width:100%;
  padding:18px;
  border-radius:17px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#050816 !important;
  font-size:17px;
  font-weight:950;
  text-align:center;
  transition:.3s ease;
}

.se-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 35px rgba(212,175,55,.28);
}

.se-btn.light{
  background:#fff;
}

/* TESTIMONIALS */
.trustpilot-box{
  max-width:520px;
  margin:0 auto 44px;
  padding:28px;
  border-radius:28px;
  text-align:center;
}

.trust-score strong{
  display:block;
  font-size:30px;
  margin-bottom:8px;
}

.trust-score span,
.stars{
  display:block;
  color:var(--gold);
  font-size:22px;
  letter-spacing:3px;
  margin-bottom:10px;
}

.trust-score p,
.customer span{
  color:var(--muted);
}

.customer{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid rgba(212,175,55,.15);
}

.customer b{
  display:block;
  margin-bottom:5px;
}

/* FAQ */
.faq-section .container{
  max-width:1050px;
}

.faq-item{
  margin-bottom:18px;
  border-radius:22px;
  overflow:hidden;
}

.faq-item.active{
  border-color:rgba(212,175,55,.45);
  box-shadow:0 0 35px rgba(212,175,55,.08);
}

.faq-question{
  width:100%;
  padding:24px 28px;
  background:none;
  border:0;
  color:#fff;
  font-size:19px;
  font-weight:950;
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.faq-question::after{
  content:"+";
  color:var(--gold);
  font-size:28px;
  transition:.3s ease;
}

.faq-item.active .faq-question::after{
  content:"−";
  transform:rotate(180deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 28px;
  transition:max-height .35s ease,padding .35s ease;
}

.faq-answer p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.faq-item.active .faq-answer{
  max-height:260px;
  padding:0 28px 26px;
}

/* FINAL CTA + TRUST */
.final-cta h2{
  font-size:48px;
  margin-bottom:22px;
}

.final-cta p{
  max-width:700px;
  margin:0 auto 34px;
}

.trust-section{
  padding:34px 0;
  background:#030303;
  border-top:1px solid rgba(212,175,55,.08);
  border-bottom:1px solid rgba(212,175,55,.08);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.trust-grid div{
  padding:28px;
  border-radius:24px;
  text-align:center;
}

.trust-grid strong{
  display:block;
  font-size:32px;
  margin-bottom:8px;
}

.trust-grid span{
  color:var(--muted);
  font-weight:800;
}

/* CHECKOUT POPUP */
.checkout-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:999999;
}

.checkout-modal.active{
  display:flex !important;
  align-items:center;
  justify-content:center;
  padding:18px;
  overflow-y:auto;
}

.checkout-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(8px);
}

.checkout-box{
  position:relative;
  width:100%;
  max-width:560px;
  max-height:90vh;
  overflow-y:auto;
  margin:0 auto;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(180deg,#090b12,#02030a);
  border:1px solid rgba(212,175,55,.28);
  color:#fff;
  box-shadow:0 30px 120px rgba(0,0,0,.85),0 0 50px rgba(212,175,55,.12);
  z-index:2;
}

.checkout-close{
  position:absolute;
  top:16px;
  right:16px;
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

.checkout-box h2{
  font-size:30px;
  margin-bottom:10px;
  padding-right:45px;
}

.checkout-box p{
  color:var(--muted);
  margin-bottom:22px;
  line-height:1.7;
}

.selected-plan{
  padding:18px;
  border-radius:20px;
  background:rgba(212,175,55,.08);
  border:1px solid rgba(212,175,55,.18);
  margin-bottom:20px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.selected-plan span{
  color:var(--muted);
  font-size:13px;
}

.selected-plan strong{
  font-size:18px;
}

.selected-plan b{
  color:var(--gold);
  font-size:24px;
}

.checkout-box input,
.checkout-box select,
.checkout-box textarea,
.search-field{
  width:100%;
  margin-bottom:14px;
  padding:15px 17px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  color:#fff;
  outline:none;
  font-size:15px;
}

.checkout-box select option{
  color:#000;
}

.checkout-box input::placeholder,
.checkout-box textarea::placeholder,
.search-field::placeholder{
  color:#8b93a3;
}

.checkout-box textarea{
  min-height:105px;
  resize:vertical;
}

.checkout-submit{
  width:100%;
  padding:18px;
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#050816;
  font-weight:950;
  font-size:17px;
  cursor:pointer;
}

/* FOOTER */
.site-footer{
  clear:both;
  padding:70px 0 32px;
  background:#000;
  border-top:1px solid rgba(212,175,55,.12);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.7fr 1fr 1fr;
  gap:60px;
  align-items:start;
}

.footer-brand p{
  max-width:540px;
  margin:24px 0;
  color:#9fa5b5;
  line-height:1.85;
  font-size:16px;
}

.payment-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:24px;
}

.payment-row span{
  display:flex;
}

.payment-row i{
  color:var(--gold);
  font-size:40px;
  filter:drop-shadow(0 0 12px rgba(212,175,55,.22));
}

.footer-grid h4{
  color:#fff;
  font-size:20px;
  margin-bottom:22px;
}

.footer-grid a{
  display:block;
  color:#9fa5b5;
  margin-bottom:14px;
  font-size:16px;
  transition:.3s ease;
}

.footer-grid a:hover{
  color:var(--gold);
  transform:translateX(5px);
}

.footer-bottom{
  margin-top:52px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.footer-bottom p{
  max-width:850px;
  margin:0 auto 18px;
  color:#8f96a8;
  line-height:1.8;
  font-size:14px;
}

.footer-bottom span{
  color:#8f96a8;
  font-size:14px;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:66px;
  height:66px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  box-shadow:0 0 30px rgba(37,211,102,.45),0 0 60px rgba(37,211,102,.22);
  z-index:9999;
  transition:.3s ease;
  animation:whatsappFloat 2.5s infinite ease-in-out;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

@keyframes whatsappFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}

/* REVEAL */
.js .reveal{
  opacity:0;
  transform:translateY(35px);
  transition:opacity .75s ease,transform .75s ease;
}

.js .reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* TABLET */
@media(max-width:991px){
  .desktop-nav,
  .nav-cta{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:48px;
  }

  .hero-content h1{
    font-size:46px;
  }

  .features-grid,
  .testimonials-grid{
    grid-template-columns:1fr 1fr;
  }

  .devices-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .se-pricing-grid{
    grid-template-columns:1fr;
  }

  .se-price-card{
    min-height:auto;
  }

  .trust-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .footer-brand .brand,
  .payment-row{
    justify-content:center;
  }

  .footer-brand p{
    margin-left:auto;
    margin-right:auto;
  }
}

/* MOBILE */
@media(max-width:600px){
  .container{
    padding:0 14px;
  }

  .nav-wrap{
    min-height:72px;
  }

  .brand-icon{
    width:44px;
    height:44px;
    font-size:21px;
  }

  .brand-text strong{
    font-size:16px;
  }

  .brand-text small{
    font-size:9px;
    letter-spacing:2px;
  }

  .mobile-menu{
    position:fixed;
    top:72px;
    left:0;
    right:0;
    z-index:99999;
  }

  .hero-section{
    padding:96px 0 45px;
  }

  .features-section,
  .devices-section,
  .se-pricing,
  .testimonials-section,
  .faq-section{
    padding:55px 0;
  }

  .section-head{
    margin-bottom:26px;
  }

  .section-head h1,
  .section-head h2,
  .final-cta h2{
    font-size:28px;
  }

  .section-head p,
  .final-cta p{
    font-size:15.5px;
  }

  .hero-content h1{
    font-size:33px;
    line-height:1.08;
    letter-spacing:-1px;
  }

  .hero-content p{
    font-size:15.5px;
    line-height:1.75;
  }

  .hero-points{
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-points div{
    padding:13px 14px;
    font-size:13.5px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-buttons a,
  .btn-gold,
  .btn-glass{
    width:100%;
  }

  .hero-tv{
    padding:16px;
    border-radius:24px;
  }

  .tv-badge{
    right:14px;
    top:-14px;
    font-size:12px;
  }

  .tv-top span{
    font-size:14px;
  }

  .tv-top small{
    font-size:12px;
  }

  .tv-screen.match-screen{
    min-height:auto;
    padding:25px 16px;
    border-radius:22px;
  }

  #matchLeague{
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:20px;
  }

  .teams-row{
    grid-template-columns:1fr;
    gap:16px;
  }

  .team-logo{
    width:64px !important;
    height:64px !important;
  }

  #homeName,
  #awayName{
    font-size:16px !important;
  }

  #matchScore{
    font-size:52px !important;
  }

  #matchMinute{
    font-size:14px;
    padding:7px 14px;
  }

  .tv-mini-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .tv-mini-grid div{
    padding:15px 18px;
    font-size:15px;
  }

  .features-grid,
  .testimonials-grid{
    grid-template-columns:1fr;
  }

  .devices-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px 18px;
  }

  .device-card i{
    font-size:42px;
  }

  .compat-note{
    border-radius:22px;
  }

  .billing-toggle{
    width:100%;
  }

  .billing-btn{
    flex:1;
    padding:12px 8px;
    font-size:13px;
  }

  .se-price-card{
    padding:34px 22px;
    border-radius:26px;
  }

  .se-price-card h3{
    min-height:auto;
    font-size:16px;
  }

  .se-price{
    font-size:58px;
  }

  .se-price span{
    font-size:22px;
  }

  .top-label{
    font-size:13px;
    padding:10px 18px;
  }

  .trust-grid{
    grid-template-columns:1fr;
  }

  .faq-question{
    padding:20px;
    font-size:17px;
  }

  .faq-answer{
    padding:0 20px;
  }

  .faq-item.active .faq-answer{
    padding:0 20px 22px;
  }

  .checkout-modal.active{
    align-items:flex-start;
    padding:14px 12px;
  }

  .checkout-box{
    max-height:92vh;
    padding:24px 18px;
    border-radius:22px;
  }

  .checkout-box h2{
    font-size:24px;
  }

  .checkout-close{
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    font-size:24px;
  }

  .checkout-box input,
  .checkout-box select,
  .checkout-box textarea{
    padding:14px 15px;
    font-size:14px;
  }

  .footer-grid{
    gap:32px;
  }

  .footer-bottom{
    display:block;
  }

  .payment-row i{
    font-size:34px;
  }

  .whatsapp-float{
    width:56px;
    height:56px;
    right:14px;
    bottom:14px;
  }
}
@media(max-width:991px){
  .mobile-menu{
    position:fixed !important;
    top:72px !important;
    left:0 !important;
    right:0 !important;
    max-height:calc(100vh - 72px) !important;
    overflow-y:auto !important;
    z-index:99998 !important;
  }
}

@media(max-width:768px){

.footer-brand{
display:flex !important;
flex-direction:column !important;
align-items:center !important;
text-align:center !important;
}

.footer-brand .brand{
display:flex !important;
align-items:center !important;
justify-content:center !important;
gap:15px !important;
margin-bottom:20px !important;
}

.footer-brand p{
text-align:center !important;
max-width:320px !important;
margin:auto !important;
}

.payment-row{
justify-content:center !important;
}

}

/* =====================================================
   FINAL MOBILE MATCH CARD FIX - SAFE OVERRIDE
   This block only affects phones and keeps desktop unchanged.
===================================================== */
@media(max-width:600px){

  .hero-section{
    padding-top:88px !important;
  }

  .hero-tv{
    width:100% !important;
    padding:12px !important;
    border-radius:24px !important;
    margin-top:22px !important;
  }

  .tv-badge{
    top:-12px !important;
    right:12px !important;
    padding:8px 14px !important;
    font-size:12px !important;
  }

  .tv-top{
    gap:10px !important;
    padding-bottom:12px !important;
    margin-bottom:14px !important;
  }

  .tv-top span{
    font-size:14px !important;
    letter-spacing:.8px !important;
    white-space:nowrap !important;
  }

  .tv-top small{
    font-size:12px !important;
    text-align:right !important;
  }

  .tv-screen.match-screen{
    min-height:265px !important;
    padding:20px 12px 18px !important;
    border-radius:22px !important;
  }

  .match-league,
  #matchLeague{
    font-size:11px !important;
    letter-spacing:4px !important;
    margin-bottom:18px !important;
    line-height:1.2 !important;
  }

  .teams-row{
    width:100% !important;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) !important;
    align-items:center !important;
    gap:8px !important;
  }

  .team-box{
    min-width:0 !important;
    text-align:center !important;
  }

  .team-logo{
    width:46px !important;
    height:46px !important;
    object-fit:contain !important;
    margin:0 auto !important;
  }

  #homeName,
  #awayName,
  .team-box span{
    margin-top:8px !important;
    font-size:12px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    white-space:normal !important;
    overflow:hidden !important;
    display:-webkit-box !important;
    -webkit-line-clamp:2 !important;
    line-clamp:2 !important;

    -webkit-box-orient:vertical !important;
  }

  .score-box{
    min-width:86px !important;
    max-width:92px !important;
    text-align:center !important;
  }

  #matchScore,
  .score-box b{
    font-size:40px !important;
    line-height:.95 !important;
    letter-spacing:-1px !important;
  }

  #matchMinute,
  .score-box small{
    margin-top:8px !important;
    padding:6px 12px !important;
    font-size:12px !important;
  }

  .live-bar{
    height:7px !important;
    margin-top:20px !important;
  }

  .match-note,
  #matchNote{
    margin-top:14px !important;
    font-size:14px !important;
    line-height:1.25 !important;
  }

  .tv-mini-grid{
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    margin-top:14px !important;
  }

  .tv-mini-grid div{
    padding:13px 10px !important;
    border-radius:16px !important;
    font-size:13px !important;
    text-align:center !important;
  }

  .whatsapp-float{
    width:54px !important;
    height:54px !important;
    right:14px !important;
    bottom:14px !important;
  }
}

@media(max-width:390px){
  .team-logo{
    width:42px !important;
    height:42px !important;
  }

  #matchScore,
  .score-box b{
    font-size:36px !important;
  }

  .score-box{
    min-width:78px !important;
    max-width:82px !important;
  }

  #homeName,
  #awayName,
  .team-box span{
    font-size:11.5px !important;
  }
}
.error-msg{
    display:block;
    color:#ff4d4f;
    font-size:13px;
    margin-top:6px;
    min-height:18px;
    font-weight:500;
}

.input-error{
    border:2px solid #ff4d4f !important;
}

.input-success{
    border:2px solid #2ecc71 !important;
}
#successModal{
  position:fixed !important;
  inset:0 !important;
  background:rgba(0,0,0,.75) !important;
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  z-index:999999999 !important;
  padding:20px !important;
}

#successModal.active{
  display:flex !important;
}

#successModal .success-box{
  background:#0b0f19 !important;
  border:1px solid rgba(255,255,255,.15) !important;
  border-radius:24px !important;
  padding:32px !important;
  max-width:420px !important;
  width:100% !important;
  text-align:center !important;
  box-shadow:0 20px 60px rgba(0,0,0,.5) !important;
}

#successModal .success-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#2ecc71;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  font-weight:800;
  margin:0 auto 18px;
}

#successModal h2{
  color:#fff;
  margin-bottom:10px;
}

#successModal p{
  color:#cbd5e1;
  line-height:1.6;
  margin-bottom:22px;
}

#successModal button{
  background:linear-gradient(135deg,#facc15,#f59e0b);
  border:none;
  padding:14px 28px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.checkout-submit:disabled{
    opacity:.7;
    cursor:not-allowed;
}
.blog-categories{
  margin:35px 0;
  padding:25px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.blog-categories h2{
  margin-bottom:18px;
  color:#fff;
  font-size:28px;
  font-weight:700;
}

.category-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.category-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
  white-space:nowrap;
}

.category-links a:hover{
  background:#D4AF37;
  color:#050816;
}

/* Mobile */
@media (max-width:768px){

  .blog-categories{
    padding:18px;
  }

  .blog-categories h2{
    font-size:22px;
    text-align:center;
  }

  .category-links{
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding-bottom:5px;
  }

  .category-links::-webkit-scrollbar{
    display:none;
  }

  .category-links a{
    flex:0 0 auto;
  }

}