html, body { overflow-x: hidden; max-width: 100vw; }

.sbWrap {
  --localAcc: #00ff9d;
  --localAcc2: #ff3d7f;
  --localDark: #0a0e1a;
  --localCard: #131829;
  color: var(--fg);
  padding: 2rem 0 4rem;
}

.sbHero {
  position: relative;
  border-radius: var(--rad, 20px);
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #2d1b4e 100%);
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid rgba(0, 255, 157, 0.15);
}

.sbHero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 255, 157, 0.18), transparent 60%);
  pointer-events: none;
}

.sbHero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 61, 127, 0.15), transparent 60%);
  pointer-events: none;
}

.sbHeroInner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.sbBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  background: rgba(0, 255, 157, 0.12);
  border: 1px solid rgba(0, 255, 157, 0.35);
  color: #00ff9d;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sbBadge span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff9d;
  box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(0, 255, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

.sbHero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.sbHero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #00ff9d, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sbHero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
}

.sbStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.sbStat {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.sbStat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #00ff9d;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.sbStat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sbCta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  background: linear-gradient(135deg, #00ff9d, #00c47a);
  color: #0a0e1a !important;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 36px rgba(0, 255, 157, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sbCta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 255, 157, 0.5);
  color: #0a0e1a;
}

.sbCta::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.sbCta:hover::after { transform: translateX(4px); }

.sbTrust {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.sbTrustItem {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sbTrustItem::before {
  content: '✓';
  color: #00ff9d;
  font-weight: 800;
}

.sectionTitle {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  margin: 3rem 0 1.5rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  position: relative;
  padding-left: 1.2rem;
}

.sectionTitle::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #00ff9d, #ff3d7f);
  border-radius: 4px;
}

.subTitle {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--fg);
}

.bodyText {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--mute);
  margin-bottom: 1.2rem;
}

.bodyText a {
  color: #00c47a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 196, 122, 0.4);
}

.bodyText a:hover { color: #00ff9d; }

/* Sports grid */
.sportsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.sportCard {
  background: linear-gradient(160deg, #131829 0%, #1a1f3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.sportCard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ff9d, #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.sportCard:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 157, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.sportCard:hover::before { transform: scaleX(1); }

.sportCard h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fff;
}

.sportCard p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Live betting block */
.liveBlock {
  background: linear-gradient(135deg, #1a0a1f 0%, #2d0a3a 60%, #0a0e1a 100%);
  border-radius: 22px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  margin: 2rem 0 3rem;
  border: 1px solid rgba(255, 61, 127, 0.2);
  position: relative;
  overflow: hidden;
}

.liveBlock::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255, 61, 127, 0.18), transparent 65%);
}

.liveTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 61, 127, 0.18);
  border: 1px solid rgba(255, 61, 127, 0.4);
  color: #ff6fa0;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

.liveTag .dot {
  width: 7px;
  height: 7px;
  background: #ff3d7f;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(255, 61, 127, 0.7);
}

.liveBlock h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  position: relative;
  z-index: 2;
  font-weight: 800;
}

.liveBlock p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

.liveMarkets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 2;
}

.liveMarket {
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
}

/* Comparison table */
.tblWrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  background: var(--bg2, #131829);
  margin: 1.5rem 0 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cmpTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.cmpTable th, .cmpTable td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cmpTable thead {
  background: linear-gradient(90deg, #00ff9d 0%, #00d4ff 100%);
}

.cmpTable thead th {
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cmpTable tbody tr:hover { background: rgba(0, 255, 157, 0.04); }
.cmpTable tbody td:first-child { font-weight: 700; color: var(--fg); }
.cmpTable tbody td { color: var(--mute); font-size: 0.95rem; }

/* Steps */
.stepsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.8rem 0 2.5rem;
  counter-reset: stepCount;
}

.stepCard {
  background: var(--bg2, #131829);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.4rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  counter-increment: stepCount;
}

.stepCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.stepCard::before {
  content: counter(stepCount, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: 1.3rem;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00ff9d, #00d4ff);
  color: #0a0e1a;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  letter-spacing: 0.04em;
}

.stepCard h4 {
  font-size: 1.05rem;
  margin: 0.5rem 0 0.5rem;
  color: var(--fg);
  font-weight: 700;
}

.stepCard p {
  font-size: 0.92rem;
  color: var(--mute);
  line-height: 1.55;
  margin: 0;
}

/* FAQ accordion */
.faqList {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.faqItem {
  background: var(--bg2, #131829);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faqItem[open] { border-color: rgba(0, 255, 157, 0.35); }

.faqItem summary {
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--fg);
  font-size: 1rem;
}

.faqItem summary::-webkit-details-marker { display: none; }

.faqItem summary::after {
  content: '+';
  font-size: 1.6rem;
  color: #00ff9d;
  transition: transform 0.3s;
  font-weight: 400;
  line-height: 1;
}

.faqItem[open] summary::after { transform: rotate(45deg); }

.faqItem .faqBody {
  padding: 0 1.4rem 1.2rem;
  color: var(--mute);
  line-height: 1.65;
  font-size: 0.96rem;
}

/* Final CTA */
.finalCta {
  background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 2.5rem 0 1rem;
  position: relative;
  overflow: hidden;
  color: #0a0e1a;
}

.finalCta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.35), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.finalCta h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.8rem;
  position: relative;
  color: #0a0e1a;
}

.finalCta p {
  margin: 0 0 1.5rem;
  position: relative;
  color: #0a2a1f;
  font-size: 1.02rem;
}

.finalCta .sbCta {
  background: #0a0e1a;
  color: #00ff9d !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.finalCta .sbCta:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.responsibleNote {
  text-align: center;
  font-size: 0.86rem;
  color: var(--mute);
  padding: 1.2rem;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .sbStats { grid-template-columns: 1fr; gap: 0.6rem; }
  .sbStat { display: flex; align-items: center; justify-content: space-between; }
  .sbStat strong { margin-bottom: 0; font-size: 1.4rem; }
}