:root {
  --bg:    #08080f;
  --bg2:   #0e0d18;
  --bg3:   #13121f;
  --card:  #16141f;
  --card2: #1c1a28;
  --red:   #e63946;
  --gold:  #f4a940;
  --teal:  #06d6a0;
  --text:  #f0eee8;
  --muted: #8c8aab;
  --border: rgba(230,57,70,0.18);
  --border2: rgba(244,169,64,0.2);
  --glow:  rgba(230,57,70,0.25);
  --live:  #ff3158;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* TICKER */
.ticker {
  background: linear-gradient(90deg, #1a0a0e, #0e0d18, #1a0a0e);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-sep { color: var(--red); opacity: 0.6; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), #b02030);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 18px rgba(230,57,70,0.4);
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.logo-text em { color: var(--gold); font-style: normal; }

nav { display: flex; gap: 6px; align-items: center; }
nav > a, .nav-dropdown > .nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
nav > a:hover, .nav-dropdown:hover > .nav-link { color: var(--text); }

.nav-dropdown { position: relative; }
.nav-link .arrow { font-size: 9px; transition: transform 0.25s; }
.nav-dropdown:hover .nav-link .arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 2000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.dropdown-menu a:hover {
  color: var(--text);
  background: rgba(230,57,70,0.07);
  padding-left: 26px;
}
.dropdown-menu .dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 6px 0;
}
.dropdown-menu .dd-label {
  padding: 6px 22px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

.btn-cta-nav {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.25);
  letter-spacing: 0.5px;
  margin-left: 10px;
  white-space: nowrap;
  animation: ctaPulse 2s ease-in-out infinite;
}
.btn-cta-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
@keyframes ctaPulse {
  0%,100%{ box-shadow: 0 4px 18px rgba(37,211,102,0.25); }
  50%{ box-shadow: 0 4px 28px rgba(37,211,102,0.5); }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.25);
  letter-spacing: 0.3px;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 70px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,57,70,0.09) 0%, transparent 70%),
              linear-gradient(180deg, #08080f 0%, #0e0b14 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
}
.hero-deco {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border: 1px solid rgba(244,169,64,0.06);
  border-radius: 50%;
}
.hero-deco::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  border: 1px solid rgba(230,57,70,0.06);
  border-radius: 50%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 100px);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 24px;
  position: relative;
}
.hero h1 .line1 { color: #fff; display: block; }
.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--red), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .line3 { color: #fff; display: block; font-size: 70%; letter-spacing: 5px; margin-top: 6px; }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--red), #b02030);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 6px 28px rgba(230,57,70,0.35);
  letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(230,57,70,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-item .lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* TRUST BAR */
.trust-bar {
  background: var(--bg2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 16px 24px;
  overflow: hidden;
}
.trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.trust-chip .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal);
}

/* SECTION LAYOUT */
.section { padding: 70px 24px; max-width: 1320px; margin: 0 auto; }
.alt-bg { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 2px;
  line-height: 1.0;
  color: #fff;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-rule {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 12px;
}
.game-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.game-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 10px 30px rgba(230,57,70,0.2); }
.game-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; filter: saturate(0.8); transition: filter 0.25s; }
.game-card:hover img { filter: saturate(1.1); }
.game-card .game-name { padding: 9px 8px; font-size: 11px; font-weight: 700; color: #bbb; text-align: center; letter-spacing: 0.3px; }
.badge {
  position: absolute;
  top: 6px; left: 6px;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.badge-live { background: var(--live); color: #fff; }
.badge-hot { background: var(--gold); color: #000; }

/* MATCH BOARD */
.match-board-section { background: var(--bg2); padding: 70px 24px; }
.match-board-inner { max-width: 1320px; margin: 0 auto; }

.sport-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center; }
.sport-tab {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.sport-tab.active, .sport-tab:hover { background: var(--red); color: #fff; border-color: var(--red); }

.match-table { background: var(--card); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.match-table-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px 100px;
  background: rgba(230,57,70,0.07);
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.match-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 100px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.match-row:hover { background: rgba(230,57,70,0.04); }
.match-row:last-child { border-bottom: none; }
.match-teams { font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 4px; }
.match-meta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; font-weight: 600; }
.live-pulse {
  width: 7px; height: 7px;
  background: var(--live);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.2;} }
.odds-box {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 8px 12px;
  border-radius: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  margin-left: 4px;
}
.odds-box:hover { background: var(--gold); color: #000; }
.bet-btn {
  background: linear-gradient(135deg, var(--red), #b02030);
  color: #fff;
  padding: 8px 16px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.2s;
}
.bet-btn:hover { transform: scale(1.05); box-shadow: 0 4px 14px rgba(230,57,70,0.4); }

/* LIVE CASINO */
.casino-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.casino-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.casino-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.casino-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: saturate(0.75); transition: filter 0.3s; }
.casino-card:hover img { filter: saturate(1.1); }
.casino-info { padding: 14px 16px; }
.casino-name { font-weight: 800; font-size: 14px; color: #fff; margin-bottom: 3px; }
.casino-type { font-size: 11px; color: var(--muted); font-weight: 600; }
.play-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,15,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.casino-card:hover .play-overlay { opacity: 1; }
.play-btn-inner {
  background: linear-gradient(135deg, var(--red), #b02030);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { transform: translateY(-5px); border-color: rgba(230,57,70,0.3); }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), #b02030);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(230,57,70,0.3);
}
.step-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-visual img { width: 100%; height: 400px; object-fit: cover; display: block; filter: saturate(0.8); border-radius: 20px; }
.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,0.12) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}
.about-visual .img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.about-visual .img-badge .bnum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}
.about-visual .img-badge .btxt {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  letter-spacing: 2px;
  line-height: 1.0;
  margin-bottom: 22px;
  color: #fff;
}
.about-content h2 em { color: var(--red); font-style: normal; }
.about-content p { color: var(--muted); line-height: 1.85; font-size: 15px; margin-bottom: 16px; }
.check-list { list-style: none; margin: 24px 0; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-size: 15px; margin-bottom: 13px; font-weight: 600;
}
.check-list li::before {
  content: '✓';
  background: linear-gradient(135deg, var(--red), #b02030);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { border-color: rgba(230,57,70,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.feature-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.feature-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* BONUS */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #ff6f00);
}
.bonus-card:hover { border-color: rgba(244,169,64,0.4); transform: translateY(-5px); box-shadow: 0 14px 36px rgba(244,169,64,0.12); }
.bonus-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(244,169,64,0.3);
}
.bonus-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.bonus-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border); }
.faq-item.open { border-color: rgba(230,57,70,0.3); }
.faq-q {
  padding: 18px 24px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.faq-icon { color: var(--red); font-size: 22px; transition: transform 0.3s; font-family: 'Bebas Neue', sans-serif; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 18px; }

/* RESPONSIBLE */
.responsible-box {
  background: linear-gradient(135deg, #0e0d18, #160d14);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.responsible-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(230,57,70,0.06) 0%, transparent 70%);
}
.responsible-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}
.responsible-box p { color: var(--muted); line-height: 1.85; font-size: 15px; position: relative; }
.resp-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; position: relative; }
.resp-chip {
  background: rgba(6,214,160,0.08);
  border: 1px solid rgba(6,214,160,0.25);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

/* FOOTER */
footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: #4a4860; font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: #4a4860;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-col a:hover { color: var(--text); }
.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-list-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #5c5a7a; font-weight: 600; }
.trust-list-item .chk { color: var(--teal); font-weight: 800; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 13px; color: #2e2c40; }

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 999;
  animation: float 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.05); }
@keyframes float {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}

/* BANNER TRACK */
.banners { background: var(--bg2); padding: 20px; overflow: hidden; }
.banner-track {
  display: flex; gap: 16px;
  animation: slide 30s linear infinite;
  width: max-content;
}
@keyframes slide { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.banner-item {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  width: 320px; height: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gold);
  padding: 0 24px;
  gap: 12px;
}

/* ============ SUB-PAGE STYLES ============ */

/* Page hero (compact) */
.page-hero {
  padding: 60px 24px 50px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(230,57,70,0.12) 0%, transparent 70%),
              linear-gradient(180deg, #08080f 0%, #0e0b14 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .sub {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Content Section */
.content-section { padding: 60px 24px; max-width: 1100px; margin: 0 auto; }
.content-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.content-section h2 em { color: var(--gold); font-style: normal; }
.content-section h3 {
  font-size: 20px;
  color: #fff;
  margin: 30px 0 12px;
  font-weight: 800;
}
.content-section p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 16px;
}
.content-section strong { color: var(--text); font-weight: 700; }
.content-section ul { margin: 16px 0 20px 22px; color: var(--muted); line-height: 1.85; font-size: 15px; }
.content-section ul li { margin-bottom: 8px; }
.content-section ol { margin: 16px 0 20px 22px; color: var(--muted); line-height: 1.85; font-size: 15px; }
.content-section ol li { margin-bottom: 8px; }

/* Info cards */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  margin: 24px 0;
}
.info-card h3 { margin-top: 0; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
.compare-table th {
  background: rgba(230,57,70,0.12);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 14px 18px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-weight: 600;
}
.compare-table td:first-child {
  color: var(--muted);
  font-weight: 700;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(230,57,70,0.03); }
.compare-table .yes { color: var(--teal); font-weight: 800; }
.compare-table .no { color: var(--red); font-weight: 800; }

/* Prediction card */
.pred-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.pred-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.pred-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.pred-teams {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: #fff;
}
.pred-teams em { color: var(--red); font-style: normal; font-size: 18px; margin: 0 8px; }
.pred-venue { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 600; }
.pred-badge {
  background: var(--gold);
  color: #000;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}
.pred-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.pred-col h4 {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 800;
}
.pred-col p { font-size: 14px; color: var(--text); line-height: 1.7; }
.pred-stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.pred-stat span:first-child { color: var(--muted); }
.pred-stat span:last-child { color: var(--gold); font-weight: 700; }
.pred-winner {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(6,214,160,0.08);
  border: 1px solid rgba(6,214,160,0.25);
  border-radius: 10px;
  font-size: 14px;
  color: var(--teal);
  font-weight: 700;
}
.pred-winner strong { color: #fff; }

/* Dream11 card */
.d11-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.d11-card {
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 18px;
}
.d11-card h4 {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.d11-card ul { list-style: none; margin: 0; padding: 0; }
.d11-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.d11-card ul li:last-child { border-bottom: none; }
.d11-card ul li .captain-tag {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 800;
}

/* Proof table */
.proof-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0;
  font-size: 13px;
}
.proof-table th {
  background: rgba(6,214,160,0.08);
  color: var(--teal);
  padding: 14px;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(6,214,160,0.2);
}
.proof-table td {
  padding: 12px 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-weight: 600;
}
.proof-table tr:hover td { background: rgba(6,214,160,0.04); color: var(--text); }
.proof-table .amt { color: var(--gold); font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.proof-table .status-ok { color: var(--teal); font-weight: 800; }

/* Points table */
.points-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
  font-size: 14px;
}
.points-table th {
  background: rgba(230,57,70,0.1);
  color: var(--gold);
  padding: 12px 14px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
}
.points-table th:first-child { text-align: left; }
.points-table td {
  padding: 12px 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  font-weight: 600;
}
.points-table td:first-child { text-align: left; color: #fff; font-weight: 800; }
.points-table .pts { color: var(--gold); font-weight: 800; }

/* Stat blocks */
.stat-blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin: 30px 0; }
.stat-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
}
.stat-block .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-block .l {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Exchange card */
.exchange-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.exchange-hero .logo-box {
  background: linear-gradient(135deg, var(--card), var(--card2));
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
}
.exchange-hero .logo-box .ex-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 12px;
}
.exchange-hero .logo-box p { color: var(--muted); font-size: 14px; font-weight: 600; }

/* Advantage callout */
.advantage-banner {
  background: linear-gradient(135deg, rgba(6,214,160,0.1), rgba(244,169,64,0.08));
  border: 1px solid rgba(6,214,160,0.25);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 30px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.advantage-banner .ab-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.advantage-banner .ab-text h4 {
  color: var(--teal);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.advantage-banner .ab-text p { color: var(--text); font-size: 14px; line-height: 1.6; margin: 0; }

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, var(--card), #1a0d12);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(230,57,70,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  position: relative;
}
.cta-block h3 em { color: var(--gold); font-style: normal; }
.cta-block p { color: var(--muted); font-size: 15px; margin-bottom: 24px; position: relative; }

/* Live blog */
.liveblog { border-left: 3px solid var(--red); padding-left: 24px; margin: 30px 0; }
.liveblog-entry {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
  position: relative;
}
.liveblog-entry::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 20px;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
}
.liveblog-entry .lb-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.liveblog-entry p { color: var(--text); font-size: 14px; margin: 0; line-height: 1.6; }

/* Pros/Cons */
.procons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.procons-card {
  background: var(--card);
  border-radius: 14px;
  padding: 24px 26px;
  border: 1px solid;
}
.procons-card.pros { border-color: rgba(6,214,160,0.25); }
.procons-card.cons { border-color: rgba(230,57,70,0.25); }
.procons-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.procons-card.pros h4 { color: var(--teal); }
.procons-card.cons h4 { color: var(--red); }
.procons-card ul { list-style: none; margin: 0; padding: 0; }
.procons-card ul li {
  padding: 7px 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 10px;
}
.procons-card.pros ul li::before { content: '✓'; color: var(--teal); font-weight: 800; }
.procons-card.cons ul li::before { content: '✕'; color: var(--red); font-weight: 800; }

/* Responsive */
@media(max-width:960px) {
  .hamburger { display: block; }
  nav {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 30px;
    gap: 0;
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 999;
  }
  nav.open { right: 0; }
  nav > a, .nav-dropdown > .nav-link {
    padding: 14px 24px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.02);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 600px;
    padding: 6px 0;
  }
  .nav-dropdown .nav-link .arrow { margin-left: auto; }
  .nav-dropdown.open .nav-link .arrow { transform: rotate(180deg); }
  .btn-cta-nav { margin: 20px 24px 0; justify-content: center; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
  }
  .nav-overlay.show { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .match-table-header, .match-row { grid-template-columns: 1fr 80px 80px; }
  .exchange-hero { grid-template-columns: 1fr; }
  .pred-body { grid-template-columns: 1fr; }
  .procons { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float .wa-txt { display: none; }
  .hero h1 { letter-spacing: 1px; }
  .hero-stats { margin-top: 36px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .points-table { font-size: 12px; }
  .points-table th, .points-table td { padding: 8px 6px; }
}
