/* =============================================
   96M SGS — css/style.css
   CSS prefix: bet-*
   Colors: #0524DD (blue) · #FF8A00 (orange) · #10B981 (emerald) · #EFF6FF (surface) · #0A1F6E (navy)
   Fonts: Rubik (headings) · Inter (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bet-blue:     #0524DD;
  --bet-orange:   #FF8A00;
  --bet-emerald:  #10B981;
  --bet-surface:  #EFF6FF;
  --bet-white:    #FFFFFF;
  --bet-navy:     #0A1F6E;
  --bet-radius:   10px;
  --font-heading: 'Rubik', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background-color: var(--bet-white);
  color: var(--bet-blue);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--bet-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.bet-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.bet-nav {
  background-color: var(--bet-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(5,36,221,0.2);
}

.bet-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.bet-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bet-nav__logo img { height: 36px; width: auto; }

.bet-nav__wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--bet-white);
  letter-spacing: 0.5px;
}

.bet-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.bet-nav__links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.bet-nav__links a:hover,
.bet-nav__links a.active {
  color: var(--bet-orange);
  background: rgba(255,138,0,0.1);
  text-decoration: none;
}

.bet-nav__cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.bet-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--bet-radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  line-height: 1.4;
  white-space: nowrap;
}

.bet-btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }

.bet-btn--primary {
  background-color: var(--bet-orange);
  color: var(--bet-white);
  border: 2px solid var(--bet-orange);
}

.bet-btn--outline {
  border: 2px solid var(--bet-orange);
  color: var(--bet-orange);
  background: transparent;
}

.bet-btn--outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--bet-white);
  background: transparent;
}

.bet-btn--lg {
  padding: 13px 30px;
  font-size: 15px;
}

/* ---- Hamburger ---- */
.bet-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.bet-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bet-white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Mobile menu ---- */
.bet-nav__mobile-menu {
  display: none;
  background: var(--bet-blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px 16px;
}

.bet-nav__mobile-menu.open { display: block; }

.bet-nav__mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}

.bet-nav__mobile-menu a:hover { color: var(--bet-orange); text-decoration: none; }

/* ============================================================
   ACCESS BAR
   ============================================================ */
.bet-access-bar {
  background-color: var(--bet-surface);
  border-bottom: 1px solid #d0dcff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bet-access-bar::-webkit-scrollbar { display: none; }

.bet-access-bar__label {
  font-size: 12px;
  color: var(--bet-blue);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.bet-access-bar__btn {
  background-color: var(--bet-blue);
  color: var(--bet-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.bet-access-bar__btn:hover {
  background-color: var(--bet-orange);
  text-decoration: none;
  color: var(--bet-white);
}

.bet-access-bar__all {
  font-size: 12px;
  color: var(--bet-blue);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.bet-hero {
  background: linear-gradient(135deg, var(--bet-blue) 0%, var(--bet-navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 16px;
}

.bet-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://aether.million-edge.online/public/html/cms/banner20251014022425141_EN_MY.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.bet-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.bet-hero__heading {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--bet-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.bet-hero__subtext {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.65;
  max-width: 500px;
}

.bet-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Featured match card (hero) ---- */
.bet-match-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--bet-radius);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.bet-match-card__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bet-emerald);
  color: var(--bet-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.bet-match-card__live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--bet-white);
  border-radius: 50%;
  animation: bet-pulse 1.4s ease-in-out infinite;
}

@keyframes bet-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.bet-match-card__teams {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--bet-white);
  margin-bottom: 6px;
}

.bet-match-card__meta {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}

.bet-match-card__odds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.bet-odds-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.bet-odds-btn:hover { background: var(--bet-orange); border-color: var(--bet-orange); }

.bet-odds-btn__label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.bet-odds-btn__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--bet-emerald);
}

.bet-odds-btn:hover .bet-odds-btn__value { color: var(--bet-white); }

.bet-match-card__disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   SPORT TABS ROW
   ============================================================ */
.bet-sports-tabs {
  background: var(--bet-white);
  border-bottom: 2px solid var(--bet-surface);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bet-sports-tabs::-webkit-scrollbar { display: none; }

.bet-sports-tabs__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bet-sports-tabs__btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  padding: 14px 16px;
  color: #555;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, border-color 0.2s;
}

.bet-sports-tabs__btn:hover,
.bet-sports-tabs__btn.active {
  color: var(--bet-orange);
  border-bottom-color: var(--bet-orange);
  text-decoration: none;
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.bet-section {
  padding: 60px 16px;
}

.bet-section--alt {
  background-color: var(--bet-surface);
}

.bet-section__header {
  max-width: 1200px;
  margin: 0 auto 32px;
}

.bet-section__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--bet-blue);
  margin-bottom: 8px;
}

.bet-section__subtitle {
  font-size: 15px;
  color: #666;
}

/* ============================================================
   MATCH GRID
   ============================================================ */
.bet-matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.bet-match-row {
  background: var(--bet-white);
  border: 1px solid #d8e4ff;
  border-radius: var(--bet-radius);
  padding: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bet-match-row:hover {
  box-shadow: 0 6px 20px rgba(5,36,221,0.1);
  transform: translateY(-2px);
}

.bet-match-row__league {
  font-size: 11px;
  color: var(--bet-orange);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bet-match-row__teams {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--bet-blue);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.bet-match-row__vs {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
}

.bet-match-row__odds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.bet-odds-pill {
  background: var(--bet-surface);
  border: 1px solid #c8d8ff;
  border-radius: 7px;
  padding: 8px 4px;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
}

.bet-odds-pill:hover { background: var(--bet-orange); border-color: var(--bet-orange); }
.bet-odds-pill:hover .bet-odds-pill__value,
.bet-odds-pill:hover .bet-odds-pill__label { color: var(--bet-white); }

.bet-odds-pill__label {
  display: block;
  font-size: 9px;
  color: #888;
  margin-bottom: 2px;
  font-weight: 500;
}

.bet-odds-pill__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--bet-emerald);
}

/* ============================================================
   SPORTS PROVIDERS
   ============================================================ */
.bet-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.bet-providers__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.9;
  transition: filter 0.2s, opacity 0.2s;
}

.bet-providers__logo:hover { filter: grayscale(0%); opacity: 1; }

/* ============================================================
   AMBASSADOR
   ============================================================ */
.bet-ambassador {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bet-ambassador__img {
  border-radius: var(--bet-radius);
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
}

.bet-ambassador__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--bet-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bet-ambassador__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--bet-blue);
  margin-bottom: 18px;
  line-height: 1.2;
}

.bet-ambassador__text {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ============================================================
   MOBILE APP
   ============================================================ */
.bet-app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.bet-app__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(5,36,221,0.15);
}

.bet-app__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--bet-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bet-app__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--bet-blue);
  margin-bottom: 16px;
  line-height: 1.2;
}

.bet-app__text {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.bet-app__features {
  list-style: none;
  margin-bottom: 28px;
}

.bet-app__features li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #eef0ff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bet-app__features li::before {
  content: '✓';
  color: var(--bet-emerald);
  font-weight: 700;
  font-size: 14px;
}

.bet-app__stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bet-app__stores img { height: 44px; width: auto; }

/* ============================================================
   BLOG GRID
   ============================================================ */
.bet-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bet-blog-card {
  background: var(--bet-white);
  border: 1px solid #d8e4ff;
  border-radius: var(--bet-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bet-blog-card:hover {
  box-shadow: 0 8px 28px rgba(5,36,221,0.1);
  transform: translateY(-3px);
}

.bet-blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.bet-blog-card__tag {
  display: inline-block;
  background: var(--bet-surface);
  color: var(--bet-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.bet-blog-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--bet-blue);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}

.bet-blog-card__excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.bet-blog-card__meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.bet-blog-card__read-more {
  color: var(--bet-orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bet-blog-card__read-more:hover { text-decoration: underline; }

/* ============================================================
   TRUST LOGOS
   ============================================================ */
.bet-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.bet-trust img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   RG BAR
   ============================================================ */
.bet-rg-bar {
  background: var(--bet-navy);
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 12px;
  padding: 11px 16px;
  line-height: 1.6;
}

.bet-rg-bar a { color: var(--bet-orange); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.bet-footer {
  background-color: var(--bet-navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 16px 28px;
}

.bet-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.bet-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.bet-footer__brand img { height: 32px; width: auto; }

.bet-footer__wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--bet-white);
}

.bet-footer__desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.bet-footer__affiliate {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.bet-footer__affiliate a { color: rgba(255,255,255,0.65); text-decoration: underline; }

.bet-footer__col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--bet-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bet-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bet-footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.bet-footer__links a:hover { color: var(--bet-orange); text-decoration: none; }

.bet-footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto 24px;
}

.bet-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto 28px;
  align-items: center;
}

.bet-footer__payments img { height: 28px; width: auto; }

.bet-footer__legal {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.bet-footer__legal a { color: rgba(255,255,255,0.6); text-decoration: underline; }

.bet-footer__legal p + p { margin-top: 6px; }

/* ============================================================
   CONTENT PAGE HERO (non-homepage)
   ============================================================ */
.bet-page-hero {
  background: linear-gradient(135deg, var(--bet-blue) 0%, var(--bet-navy) 100%);
  padding: 48px 16px 56px;
}

.bet-page-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.bet-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.bet-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.bet-breadcrumb a:hover { color: var(--bet-orange); }
.bet-breadcrumb span { margin: 0 6px; }

.bet-page-hero h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--bet-white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.bet-page-hero__meta {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

.bet-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,138,0,0.5);
  border-radius: var(--bet-radius);
  padding: 12px 20px;
  margin-top: 16px;
}

.bet-rating-badge__score {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--bet-orange);
  line-height: 1;
}

.bet-rating-badge__label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.bet-rating-badge__stars {
  color: var(--bet-orange);
  font-size: 18px;
  letter-spacing: 2px;
}

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.bet-article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 16px 64px;
}

.bet-author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bet-surface);
  border-radius: var(--bet-radius);
  margin-bottom: 24px;
  border: 1px solid #c8d8ff;
}

.bet-author-bar__avatar {
  width: 50px;
  height: 50px;
  background: var(--bet-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bet-white);
  font-weight: 700;
  font-size: 17px;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.bet-author-bar__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--bet-blue);
}

.bet-author-bar__title {
  font-size: 12px;
  color: var(--bet-orange);
  font-weight: 600;
  margin-top: 2px;
}

.bet-author-bar__meta {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

.bet-disclosure-bar {
  background: #fffbe6;
  border: 1px solid #ffe08a;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.bet-disclosure-bar a { color: var(--bet-blue); text-decoration: underline; }

.bet-toc {
  background: var(--bet-surface);
  border-radius: var(--bet-radius);
  padding: 22px 26px;
  margin-bottom: 36px;
  border: 1px solid #c8d8ff;
}

.bet-toc__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--bet-blue);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bet-toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bet-toc li { font-size: 14px; }

.bet-toc a { color: var(--bet-blue); text-decoration: none; }
.bet-toc a:hover { color: var(--bet-orange); text-decoration: underline; }

/* Article body */
.bet-article h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--bet-blue);
  margin: 40px 0 14px;
  padding-top: 10px;
  border-top: 2px solid var(--bet-surface);
}

.bet-article h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--bet-blue);
  margin: 26px 0 10px;
}

.bet-article p {
  margin-bottom: 16px;
  color: #333;
  font-size: 15px;
  line-height: 1.75;
}

.bet-article strong { color: var(--bet-blue); }

.bet-article ul, .bet-article ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.bet-article li {
  margin-bottom: 7px;
  color: #333;
  font-size: 15px;
  line-height: 1.65;
}

/* ---- Tables ---- */
.bet-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--bet-radius);
  border: 1px solid #c8d8ff;
  box-shadow: 0 2px 8px rgba(5,36,221,0.06);
}

.bet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}

.bet-table th {
  background: var(--bet-blue);
  color: var(--bet-white);
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.bet-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eef1ff;
  color: #333;
  vertical-align: middle;
}

.bet-table tr:last-child td { border-bottom: none; }
.bet-table tr:nth-child(even) td { background: var(--bet-surface); }
.bet-table tr:hover td { background: #e8eeff; }

/* ---- FAQ ---- */
.bet-faq { margin-top: 40px; }

.bet-faq__item {
  border: 1px solid #c8d8ff;
  border-radius: var(--bet-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.bet-faq__question {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--bet-blue);
  padding: 17px 20px;
  background: var(--bet-surface);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.bet-faq__question::after {
  content: '+';
  font-size: 22px;
  color: var(--bet-orange);
  flex-shrink: 0;
  line-height: 1;
}

.bet-faq__answer {
  padding: 16px 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  border-top: 1px solid #dce8ff;
}

/* ---- CTA Box ---- */
.bet-cta-box {
  background: linear-gradient(135deg, var(--bet-blue) 0%, var(--bet-navy) 100%);
  border-radius: var(--bet-radius);
  padding: 36px 32px;
  text-align: center;
  margin: 36px 0;
}

.bet-cta-box h2 {
  color: var(--bet-white);
  font-size: 26px;
  margin: 0 0 10px;
  border: none;
  padding: 0;
}

.bet-cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
  font-size: 15px;
}

/* ---- Related Blog ---- */
.bet-related {
  background: var(--bet-surface);
  border-radius: var(--bet-radius);
  padding: 24px 26px;
  margin-top: 40px;
  border: 1px solid #c8d8ff;
}

.bet-related__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--bet-blue);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bet-related__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bet-related__links a {
  color: var(--bet-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bet-related__links a::before { content: '→'; color: var(--bet-orange); font-weight: 700; }
.bet-related__links a:hover { color: var(--bet-orange); text-decoration: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bet-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.bet-team-card {
  background: var(--bet-white);
  border: 1px solid #c8d8ff;
  border-radius: var(--bet-radius);
  padding: 28px 22px;
  text-align: center;
}

.bet-team-card__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bet-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bet-white);
  font-weight: 700;
  font-size: 22px;
  font-family: var(--font-heading);
  margin: 0 auto 14px;
}

.bet-team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--bet-blue);
  margin-bottom: 4px;
}

.bet-team-card__role {
  font-size: 12px;
  color: var(--bet-orange);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bet-team-card__bio {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.bet-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 580px;
}

.bet-form__group { display: flex; flex-direction: column; gap: 6px; }

.bet-form label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--bet-blue);
}

.bet-form input,
.bet-form select,
.bet-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b8ccff;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--bet-white);
  color: var(--bet-blue);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bet-form input:focus,
.bet-form select:focus,
.bet-form textarea:focus {
  border-color: var(--bet-blue);
  box-shadow: 0 0 0 3px rgba(5,36,221,0.1);
}

.bet-form textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   BLOG LISTING
   ============================================================ */
.bet-blog-hero {
  background: linear-gradient(135deg, var(--bet-blue) 0%, var(--bet-navy) 100%);
  padding: 48px 16px;
  text-align: center;
}

.bet-blog-hero h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--bet-white);
  margin-bottom: 12px;
}

.bet-blog-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog post full article */
.bet-post-header {
  background: linear-gradient(135deg, var(--bet-blue) 0%, var(--bet-navy) 100%);
  padding: 48px 16px;
}

.bet-post-header__inner {
  max-width: 760px;
  margin: 0 auto;
}

.bet-post-header h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--bet-white);
  margin-bottom: 14px;
  line-height: 1.2;
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.bet-highlight {
  background: var(--bet-surface);
  border-left: 4px solid var(--bet-orange);
  border-radius: 0 var(--bet-radius) var(--bet-radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: #444;
  line-height: 1.65;
}

.bet-highlight strong { color: var(--bet-blue); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .bet-nav__links,
  .bet-nav__cta { display: none; }

  .bet-nav__hamburger { display: block; }

  .bet-hero__inner {
    grid-template-columns: 1fr;
  }

  .bet-hero { padding: 40px 16px; }
  .bet-hero__heading { font-size: 30px; }
  .bet-hero__subtext { font-size: 15px; }

  .bet-matches-grid { grid-template-columns: 1fr; }

  .bet-ambassador {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bet-ambassador__img { height: 240px; }

  .bet-app {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bet-app__img { max-width: 240px; }

  .bet-blog-grid { grid-template-columns: 1fr; }

  .bet-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .bet-team-grid { grid-template-columns: 1fr; }

  .bet-page-hero h1 { font-size: 26px; }

  .bet-section__title { font-size: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .bet-hero__heading { font-size: 25px; }
  .bet-section { padding: 40px 16px; }
  .bet-section__title { font-size: 21px; }
  .bet-footer__grid { grid-template-columns: 1fr; }
  .bet-page-hero h1 { font-size: 22px; }
  .bet-article h2 { font-size: 20px; }
  .bet-cta-box { padding: 24px 16px; }
  .bet-cta-box h2 { font-size: 21px; }
  .bet-ambassador__title,
  .bet-app__title { font-size: 24px; }
}
