:root{
  --blue:#0b3c88;
  --blue-2:#134fa8;
  --blue-3:#1f67d2;
  --panel:#ffffff;
  --text:#163154;
  --muted:#5d7598;
  --line:#d7e4f7;
  --shadow:0 18px 40px rgba(10,57,125,.08);
  --radius-xl:28px;
  --radius-lg:20px;
  --max:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Noto Sans Thai',sans-serif;
  color:var(--text);
  background:transparent;
  line-height:1.8;
  overflow-x:hidden;
}
html:not([data-theme="dark"])::before,
html[data-theme="dark"]::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-size:cover,cover,cover;
  background-position:center top,center,center center;
  background-repeat:no-repeat;
}
html:not([data-theme="dark"])::before{
  background-color:#e8f0fa;
  background-image:
    linear-gradient(180deg,rgba(247,251,255,.58) 0%,rgba(236,244,252,.52) 38%,rgba(248,251,255,.72) 100%),
    linear-gradient(135deg,rgba(11,60,136,.26) 0%,rgba(23,90,168,.18) 48%,rgba(31,103,210,.14) 100%),
    url("../assets/stadion1.webp");
}
a{text-decoration:none;color:inherit}
.container{width:min(100% - 32px,var(--max));margin:0 auto}

.header{
  position:sticky;
  top:0;
  z-index:220;
  background:#ffffff;
  border-bottom:1px solid #d7e4f7;
  box-shadow:0 8px 24px rgba(11,60,136,.10);
  backdrop-filter:blur(10px);
  transition:box-shadow .22s ease,background-color .22s ease,border-color .22s ease;
}
.header.is-scrolled{
  box-shadow:0 10px 28px rgba(11,60,136,.18);
}
.nav-wrap{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--blue);
  font-weight:800;
}
.logo-img{
  height:38px;
  width:auto;
  display:block;
  object-fit:contain;
}
.navbar .logo.logo-sbobetv-wrap{
  padding:0;
  height:46px;
  width:auto;
  overflow:visible;
  display:inline-flex;
  align-items:center;
  background:transparent;
}
.logo-img-sbobetv{
  height:46px;
  width:auto;
  max-width:none;
  min-width:0;
  transform:none;
  object-fit:contain;
  object-position:left center;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
}
.nav-links a:hover{color:var(--blue)}
.nav-end{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.hero{
  position:relative;
  overflow:clip;
  padding:24px 0 40px;
}
.hero-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:.9rem;
  font-weight:700;
}
.breadcrumb a{
  color:var(--blue-2);
  transition:color .2s ease;
}
.breadcrumb a:hover{color:var(--blue-3)}
.breadcrumb-sep{opacity:.55}
.breadcrumb [aria-current="page"]{
  color:var(--blue);
  font-weight:800;
}
.hero-banner{
  width:100%;
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#071a38;
}
.hero-banner img{
  width:100%;
  height:auto;
  display:block;
}
.hero-card{
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,251,255,.94));
  border:1px solid rgba(215,228,247,.95);
  border-radius:32px;
  box-shadow:0 28px 60px rgba(10,57,125,.14);
  padding:42px 36px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#fff 0%,#f3f8ff 100%);
  border:1px solid rgba(11,60,136,.14);
  box-shadow:0 2px 14px rgba(11,60,136,.07);
  color:var(--blue);
  font-size:.9rem;
  font-weight:800;
  margin-bottom:18px;
}
.hero h1{
  max-width:900px;
  font-size:clamp(2.45rem,4.9vw,4.55rem);
  line-height:1.03;
  letter-spacing:-.05em;
  margin-bottom:16px;
  color:var(--blue);
  text-shadow:0 1px 0 rgba(255,255,255,.85);
}
.hero h1 span{color:var(--blue-3)}
.hero p{
  max-width:780px;
  font-size:1.04rem;
  color:var(--muted);
  margin-bottom:24px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 20px;
  border-radius:999px;
  font-weight:800;
  border:none;
  cursor:pointer;
  transition:.25s ease;
}
.btn-main,
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue-3));
  box-shadow:0 14px 28px rgba(19,79,168,.22);
}
.btn-sub,
.btn-secondary{
  color:var(--blue);
  background:#fff;
  border:1px solid var(--line);
}
.btn-main:hover,
.btn-primary:hover,
.btn-sub:hover,
.btn-secondary:hover{transform:translateY(-2px)}
.theme-toggle,
.nav-toggle{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid #c9dcf5;
  border-radius:12px;
  background:#f3f8ff;
  color:var(--blue);
  cursor:pointer;
  font-size:1.15rem;
  line-height:1;
  transition:background .2s ease,border-color .2s ease,transform .15s ease;
}
.theme-toggle:hover,
.nav-toggle:hover{
  background:#e6f0ff;
  border-color:#b5d0f3;
  transform:translateY(-1px);
}
.theme-toggle:focus-visible,
.nav-toggle:focus-visible{
  outline:2px solid var(--blue-3);
  outline-offset:2px;
}
.nav-toggle{display:none}

.section{padding:38px 0}
.section-head{
  max-width:820px;
  margin:0 auto 26px;
  text-align:center;
}
.section-head h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.08;
  letter-spacing:-.05em;
  margin-bottom:10px;
  color:var(--blue);
}
.section-head p{
  color:var(--muted);
  font-size:1.02rem;
}

.user-reviews-panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  padding:28px;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
}
.user-reviews-summary{
  display:grid;
  grid-template-columns:minmax(0,220px) minmax(0,1fr);
  gap:28px;
  align-items:center;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
  margin-bottom:22px;
}
.rating-overview{text-align:center}
.rating-score{
  font-size:clamp(3rem,6vw,4.2rem);
  font-weight:900;
  line-height:1;
  color:var(--blue-3);
  margin-bottom:8px;
}
.rating-stars{
  display:flex;
  justify-content:center;
  gap:4px;
  margin-bottom:10px;
}
.rating-stars .star{
  font-size:1.35rem;
  color:#f0b429;
  line-height:1;
}
.rating-stars .star.half{
  background:linear-gradient(90deg,#f0b429 55%,#d5dde8 55%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.rating-count{
  color:var(--muted);
  font-size:.95rem;
}
.rating-count strong{color:var(--blue);font-weight:800}
.rating-bars{display:grid;gap:10px}
.rating-bar-row{
  display:grid;
  grid-template-columns:42px 1fr 38px;
  gap:10px;
  align-items:center;
}
.rating-bar-label,
.rating-bar-pct{
  font-size:.88rem;
  font-weight:700;
  color:var(--muted);
}
.rating-bar-pct{text-align:right;color:var(--blue)}
.rating-bar-track{
  height:10px;
  border-radius:999px;
  background:#e8f0fa;
  overflow:hidden;
}
.rating-bar-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#f59e0b,#f0b429);
  min-width:2px;
}
.user-reviews-highlights{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}
.user-reviews-highlights li{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#edf5ff;
  border:1px solid var(--line);
  color:var(--blue);
  font-size:.92rem;
  font-weight:700;
}
.check-icon{
  display:inline-grid;
  place-items:center;
  width:20px;
  height:20px;
  border-radius:50%;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  font-size:.72rem;
  font-weight:900;
  flex-shrink:0;
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:20px;
}
.testimonial-card{
  padding:22px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(10,57,125,.06);
  transition:transform .22s ease,box-shadow .22s ease;
}
.testimonial-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(10,57,125,.10);
}
.testimonial-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.testimonial-name{
  font-size:.95rem;
  font-weight:800;
  color:var(--blue);
  line-height:1.2;
}
.testimonial-stars{
  color:#f0b429;
  font-size:1rem;
  letter-spacing:1px;
  margin-bottom:0;
  flex-shrink:0;
}
.testimonial-card h3{
  color:var(--blue);
  font-size:1.05rem;
  margin-bottom:8px;
  line-height:1.35;
}
.testimonial-card p{
  color:var(--muted);
  font-size:.92rem;
  margin-bottom:14px;
}
.testimonial-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.testimonial-tenure{
  font-size:.8rem;
  font-weight:600;
  color:var(--muted);
}
.testimonial-author{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#edf5ff;
  color:var(--blue-2);
  font-size:.8rem;
  font-weight:800;
}
.user-reviews-trust{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(135deg,#0b3c88,#1f67d2);
  color:#fff;
  text-align:center;
}
.user-reviews-trust p{
  margin:0;
  font-size:.95rem;
  font-weight:600;
}
.trust-icon{font-size:1.35rem;line-height:1}

.review-grid,
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.feature-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.review-card,
.feature-card,
.compare-box,
.article,
.faq details,
.final-cta{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.review-card{
  padding:22px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
  text-align:center;
}
.review-card h3{
  color:var(--blue);
  font-size:1rem;
  margin-bottom:10px;
}
.score{
  font-size:2.5rem;
  font-weight:900;
  color:var(--blue-3);
  margin-bottom:8px;
}
.review-card p{
  color:var(--muted);
  font-size:.92rem;
}

.feature-card{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
  transition:transform .22s ease,box-shadow .22s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 44px rgba(11,60,136,.12);
}
.feature-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border-radius:14px;
  font-size:1.35rem;
  background:linear-gradient(180deg,#f4f8ff,#eaf2ff);
  border:1px solid var(--line);
}
.feature-card h3{
  color:var(--blue);
  font-size:1.2rem;
  margin-bottom:8px;
}
.feature-card p{
  color:var(--muted);
  font-size:.95rem;
}

.compare{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.compare-box{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
}
.compare-box h3{
  color:var(--blue);
  font-size:1.4rem;
  margin-bottom:12px;
}
.compare-box ul{padding-left:20px}
.compare-box li{
  color:var(--text);
  margin-bottom:10px;
}

.article{
  padding:30px;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
}
.article h2{
  color:var(--blue);
  font-size:clamp(1.9rem,3vw,2.7rem);
  line-height:1.18;
  margin-bottom:14px;
}
.article h3{
  color:var(--blue-2);
  margin-top:24px;
  margin-bottom:8px;
  font-size:1.28rem;
}
.article p,.article li{color:var(--text)}
.article ul{padding-left:22px;margin-top:10px}

.faq{
  display:grid;
  gap:14px;
  max-width:950px;
  margin:0 auto;
}
.faq details{
  padding:0;
  overflow:hidden;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#fafdff);
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:20px 22px;
  color:var(--blue);
  font-size:1.02rem;
  font-weight:800;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:'+';
  float:right;
  font-size:1.2rem;
  line-height:1;
  color:var(--blue);
}
.faq details[open] summary::after{content:'−'}
.faq details p{
  margin:0;
  padding:0 22px 20px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

.final-cta{
  text-align:center;
  border-radius:28px;
  padding:36px 28px;
  background:linear-gradient(135deg,#ffffff 0%,#edf5ff 100%);
}
.final-cta h2{
  color:var(--blue);
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.1;
  margin-bottom:10px;
}
.final-cta p{
  color:var(--muted);
  max-width:720px;
  margin:0 auto 22px;
}

.footer{
  padding:48px 0 90px;
  border-top:1px solid var(--line);
  margin-top:40px;
  background:linear-gradient(180deg,#eef3fb,#e4ecf8);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:28px;
  text-align:left;
}
.footer-logo img{
  height:46px;
  width:auto;
  margin-bottom:16px;
  display:block;
  object-fit:contain;
  object-position:left center;
}
.footer p{
  color:var(--muted);
  line-height:1.8;
  font-size:.95rem;
  font-weight:600;
  max-width:360px;
}
.footer h4{
  color:var(--blue);
  font-size:1.05rem;
  margin-bottom:14px;
  font-weight:800;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  color:var(--muted);
  font-weight:700;
  font-size:.92rem;
  transition:color .2s ease;
}
.footer-links a:hover{color:var(--blue-3)}
.footer-copy{
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid var(--line);
  text-align:center;
  color:var(--muted);
  font-size:.9rem;
  font-weight:600;
}

.mobile-sticky{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  z-index:9999;
  display:none;
  gap:12px;
  align-items:center;
  justify-content:center;
  padding:8px;
  max-width:min(100% - 20px,680px);
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(215,228,247,.95);
  box-shadow:0 18px 45px rgba(10,57,125,.22);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  opacity:.9;
  transition:opacity .2s ease,transform .2s ease,box-shadow .2s ease;
}
body.page-scrolled .mobile-sticky,
.mobile-sticky:hover{opacity:1}
.mobile-sticky a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:145px;
  min-height:50px;
  padding:13px 22px;
  border-radius:999px;
  font-size:1rem;
  font-weight:900;
  line-height:1;
  white-space:nowrap;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.mobile-sticky a:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}
.mobile-sticky a:first-child{
  background:#ffffff;
  color:#0b3c88;
  border:1px solid #d7e4f7;
  box-shadow:0 10px 24px rgba(10,57,125,.10);
}
.mobile-sticky a:last-child{
  background:linear-gradient(135deg,#0b3c88,#1f67d2);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 12px 28px rgba(31,103,210,.30);
}

html[data-theme="dark"]{
  color-scheme:dark;
  --text:#e8eef6;
  --muted:#93a4bd;
  --line:#2f4566;
  --panel:#121c2e;
  --blue:#5294e8;
  --blue-2:#6aa9ff;
  --blue-3:#9dc8ff;
  --shadow:0 18px 48px rgba(0,0,0,.38);
}
html[data-theme="dark"]::before{
  background-image:
    linear-gradient(180deg,rgba(5,10,18,.69) 0%,rgba(8,14,24,.77) 42%,rgba(6,10,18,.83) 100%),
    linear-gradient(135deg,rgba(20,55,105,.20) 0%,rgba(18,48,90,.12) 45%,rgba(10,28,56,.20) 100%),
    url("../assets/stadion1.webp");
}
html[data-theme="dark"] .header{
  background:linear-gradient(135deg,#031024 0%,#041b3a 100%);
  border-bottom-color:#0f2d55;
  box-shadow:0 8px 24px rgba(2,8,20,.56);
}
html[data-theme="dark"] .logo{color:#fff}
html[data-theme="dark"] .nav-links{color:rgba(231,241,255,.80)}
html[data-theme="dark"] .nav-links a:hover{color:#fff}
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .nav-toggle{
  background:#0e1b34;
  border-color:#4e7ec0;
  color:#96bbef;
}
html[data-theme="dark"] .hero-banner{
  border-color:#314667;
  box-shadow:0 14px 38px rgba(0,0,0,.35);
}
html[data-theme="dark"] .breadcrumb{color:var(--muted)}
html[data-theme="dark"] .breadcrumb a{color:var(--blue-3)}
html[data-theme="dark"] .breadcrumb [aria-current="page"]{color:#fff}
html[data-theme="dark"] .user-reviews-panel{
  background:linear-gradient(180deg,#161f33,#121c2e);
  border-color:#314667;
  box-shadow:0 1px 0 rgba(255,255,255,.04) inset,0 14px 38px rgba(0,0,0,.35);
}
html[data-theme="dark"] .user-reviews-summary{border-bottom-color:#314667}
html[data-theme="dark"] .rating-bar-track{background:#1e3148}
html[data-theme="dark"] .rating-count{color:var(--muted)}
html[data-theme="dark"] .rating-count strong{color:var(--blue-3)}
html[data-theme="dark"] .user-reviews-highlights li{
  background:rgba(82,148,232,.12);
  border-color:#355078;
  color:var(--blue-3);
}
html[data-theme="dark"] .testimonial-card{
  background:#161f33;
  border-color:#314667;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
html[data-theme="dark"] .testimonial-name{color:var(--blue-3)}
html[data-theme="dark"] .testimonial-card h3{color:var(--blue-3)}
html[data-theme="dark"] .testimonial-card p{color:var(--muted)}
html[data-theme="dark"] .testimonial-tenure{color:var(--muted)}
html[data-theme="dark"] .testimonial-author{
  background:rgba(82,148,232,.14);
  color:var(--blue-3);
}
html[data-theme="dark"] .user-reviews-trust{
  background:linear-gradient(135deg,#0e2a52,#1a4a8a);
  border:1px solid #355078;
}
html[data-theme="dark"] .hero-card,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .compare-box,
html[data-theme="dark"] .article,
html[data-theme="dark"] .faq details,
html[data-theme="dark"] .final-cta{
  background:linear-gradient(180deg,#161f33,#121c2e);
  border-color:#314667;
  box-shadow:0 1px 0 rgba(255,255,255,.04) inset,0 14px 38px rgba(0,0,0,.35);
}
html[data-theme="dark"] .badge{
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
  border-color:rgba(255,255,255,.14);
  box-shadow:none;
  color:var(--blue-3);
}
html[data-theme="dark"] .hero h1{
  color:#fff;
  text-shadow:none;
}
html[data-theme="dark"] .hero h1 span{color:var(--blue-3)}
html[data-theme="dark"] .hero p,
html[data-theme="dark"] .review-card p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .faq details p,
html[data-theme="dark"] .final-cta p{
  color:var(--muted);
}
html[data-theme="dark"] .review-card h3,
html[data-theme="dark"] .feature-card h3,
html[data-theme="dark"] .compare-box h3,
html[data-theme="dark"] .article h2,
html[data-theme="dark"] .article h3,
html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .faq summary,
html[data-theme="dark"] .final-cta h2{
  color:var(--blue-3);
}
html[data-theme="dark"] .article p,
html[data-theme="dark"] .article li,
html[data-theme="dark"] .compare-box li{
  color:var(--text);
}
html[data-theme="dark"] .feature-icon{
  background:rgba(82,148,232,.14);
  border-color:#355078;
}
html[data-theme="dark"] .btn-sub,
html[data-theme="dark"] .btn-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
  color:#fff;
}
html[data-theme="dark"] .faq details p{border-top-color:#314667}
html[data-theme="dark"] .footer{
  background:linear-gradient(180deg,#0d1626,#080d14);
  border-top-color:#243652;
}
html[data-theme="dark"] .footer p,
html[data-theme="dark"] .footer-copy{color:var(--muted)}
html[data-theme="dark"] .footer h4{color:var(--blue-3)}
html[data-theme="dark"] .footer-links a{color:rgba(175,191,214,.92)}
html[data-theme="dark"] .footer-links a:hover{color:#fff}
html[data-theme="dark"] .footer-copy{border-top-color:#243652}
html[data-theme="dark"] .mobile-sticky{
  background:rgba(18,28,46,.92);
  border-color:#314667;
  box-shadow:0 18px 45px rgba(0,0,0,.5);
}
html[data-theme="dark"] .mobile-sticky a:first-child{
  background:#1a2538;
  color:var(--blue-3);
  border-color:#355078;
}

@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .review-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .feature-grid,
  .compare{grid-template-columns:1fr}
}
@media(max-width:720px){
  .nav-toggle{display:inline-flex}
  .nav-wrap{
    min-height:auto;
    padding:8px 0 10px;
    flex-wrap:wrap;
    align-items:center;
    row-gap:7px;
    column-gap:10px;
  }
  .logo{
    flex:1 1 100%;
    min-width:0;
    justify-content:center;
    margin-inline:auto;
  }
  .logo-img{
    height:34px;
    max-width:min(190px,58vw);
  }
  .navbar .logo.logo-sbobetv-wrap{height:40px;width:auto;overflow:visible}
  .logo-img-sbobetv{height:40px;transform:none}
  .nav-end{
    width:100%;
    display:grid;
    grid-template-columns:42px 42px minmax(0,1fr);
    align-items:center;
    gap:10px;
  }
  .theme-toggle,
  .nav-toggle{
    width:40px;
    height:40px;
  }
  .nav-end .btn{
    width:100%;
    min-width:0;
    min-height:40px;
    padding:9px 13px;
    font-size:clamp(.86rem,3vw,.93rem);
  }
  .nav-links{
    display:none !important;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    gap:0;
    padding:10px 16px 16px;
    margin:0;
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 40px rgba(10,57,125,.08);
    z-index:120;
  }
  .nav-links a{
    padding:12px 4px;
    border-bottom:1px solid #edf3fb;
    font-weight:700;
    color:var(--blue);
  }
  .nav-links a:last-child{border-bottom:none}
  .header.nav-open .nav-links{display:flex !important}
  html[data-theme="dark"] .nav-links{
    background:rgba(12,20,34,.98) !important;
    border-bottom-color:#243652 !important;
    box-shadow:0 18px 40px rgba(0,0,0,.45) !important;
  }
  html[data-theme="dark"] .nav-links a{border-bottom-color:#1e3148}
  .hero{padding:16px 0 28px}
  .hero-stack{gap:12px}
  .hero-banner{border-radius:22px}
  .hero-card{padding:28px 22px;border-radius:24px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .review-grid{grid-template-columns:1fr}
  .user-reviews-panel{padding:20px 16px;border-radius:24px}
  .user-reviews-summary{grid-template-columns:1fr;gap:20px}
  .testimonial-grid{grid-template-columns:1fr}
  .user-reviews-highlights{flex-direction:column}
  .user-reviews-highlights li{width:100%}
  .user-reviews-trust{flex-direction:column;gap:8px}
  .footer{padding:36px 0 92px}
  .footer-grid{grid-template-columns:1fr}
  .footer p{max-width:none}
  .article{padding:22px}
  body{padding-bottom:92px}
  .mobile-sticky{
    display:flex;
    left:0;
    right:0;
    bottom:0;
    transform:none;
    width:100%;
    max-width:100%;
    border-radius:18px 18px 0 0;
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    gap:10px;
  }
  .mobile-sticky a{
    flex:1 1 0;
    min-width:0;
    min-height:50px;
    font-size:.96rem;
  }
}
