@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #080a0e;
  color: #c8cdd8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: inherit;
}

:root {
  --green: #00ff87;
  --green-d: #00cc6a;
  --green-dim: rgba(0, 255, 135, 0.08);
  --ink: #080a0e;
  --ink2: #0d1018;
  --ink3: #131720;
  --ink4: #1a2030;
  --border: rgba(255, 255, 255, 0.07);
  --text: #c8cdd8;
  --muted: #5a6275;
  --white: #f0f2f7;
  --success: #00ff87;
  --danger: #ff4d6d;
  --radius: 6px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.3s;
}


.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
}
.tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--green);
}
.display {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after {
  opacity: 1;
}
.btn-green {
  background: var(--green);
  color: #000;
  font-weight: 800;
}
.btn-green:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 255, 135, 0.25);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9990;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate__inner {
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.age-gate__logo {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.age-gate__logo span {
  color: var(--green);
}
.age-gate__line {
  width: 60px;
  height: 2px;
  background: var(--green);
  margin: 0 auto 32px;
}
.age-gate__inner h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.age-gate__inner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.age-gate__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.age-gate__btns .btn {
  flex: 1;
  max-width: 200px;
  justify-content: center;
}
#age-gate.hidden {
  display: none;
}

#cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 8500;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  width: calc(100% - 48px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 255, 135, 0.08);
  backdrop-filter: blur(12px);
}
#cookie-bar p {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
#cookie-bar p a {
  color: var(--green);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 11px;
}
#cookie-bar.hidden {
  display: none;
}

#cookie-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
#cookie-settings-modal.open {
  display: flex;
}
.cookie-modal__box {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 36px;
}
.cookie-modal__box h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-toggle-row:last-of-type {
  border-bottom: none;
}
.cookie-toggle-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.cookie-toggle-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--ink4);
  border-radius: 24px;
  cursor: pointer;
  transition: var(--t);
  border: 1px solid var(--border);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--muted);
  border-radius: 50%;
  transition: var(--t);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--green);
  border-color: var(--green);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
  background: #000;
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 72px;
  display: flex;
  align-items: center;
  transition:
    background var(--t),
    backdrop-filter var(--t);
}
.navbar.scrolled {
  background: rgba(8, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.navbar__logo-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.navbar__logo-name span {
  color: var(--green);
}
.navbar__logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.navbar__spacer {
  flex: 1;
}
.navbar__nav {
  display: none;
  gap: 2px;
}
@media (min-width: 1024px) {
  .navbar__nav {
    display: flex;
  }
}
.navbar__nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color var(--t);
}
.navbar__nav a:hover {
  color: var(--white);
}
.navbar__nav a.active {
  color: var(--green);
}
.navbar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.navbar__cart-btn {
  position: relative;
  background: var(--ink3);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--t);
}
.navbar__cart-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 16px rgba(0, 255, 135, 0.15);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--green);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible {
  display: flex;
}
.navbar__btn {
  padding: 11px 24px;
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 135, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 135, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 10, 14, 1) 0%,
    rgba(8, 10, 14, 0.5) 40%,
    rgba(8, 10, 14, 0.1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero__tag {
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(52px, 8vw, 112px);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero__title em {
  color: var(--green);
  font-style: normal;
}
.hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.15s var(--ease) both;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}
.hero__cta .btn {
  padding: 16px 36px;
  font-size: 12px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.45s var(--ease) both;
  flex-wrap: wrap;
}
.hero__stat-val {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero__stat-val span {
  color: var(--green);
}
.hero__stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--green));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.scroll-hint__label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.ticker {
  background: var(--green);
  color: #000;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  gap: 0;
  animation: tickerRoll 30s linear infinite;
  width: max-content;
}
.ticker__track:hover {
  animation-play-state: paused;
}
@keyframes tickerRoll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item::after {
  content: "◆";
  font-size: 8px;
}

.sports-bar {
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 400;
  overflow-x: auto;
  scrollbar-width: none;
}
.sports-bar::-webkit-scrollbar {
  display: none;
}
.sports-bar__inner {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 0 24px;
  min-width: max-content;
  margin: 0 auto;
}
.sport-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--t);
  white-space: nowrap;
  min-width: 80px;
  position: relative;
}
.sport-tab i {
  font-size: 20px;
}
.sport-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}
.sport-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: rgba(0, 255, 135, 0.04);
}

.odds-section {
  padding: 72px 0;
  background: var(--ink);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header .tag {
  margin-bottom: 10px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 109, 0.12);
  border: 1px solid rgba(255, 77, 109, 0.3);
  color: #ff4d6d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: #ff4d6d;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
.odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.match-card {
  background: var(--ink2);
  padding: 24px;
  transition: background var(--t);
  position: relative;
}
.match-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.match-card:hover {
  background: var(--ink3);
}
.match-card:hover::before {
  transform: scaleX(1);
}
.match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.match-card__league {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.match-card__time {
  font-size: 11px;
  color: var(--muted);
  font-feature-settings: "tnum";
}
.match-teams {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  flex: 1;
}
.team-name.right {
  text-align: right;
}
.vs-sep {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  flex-shrink: 0;
  background: var(--ink4);
  border-radius: 4px;
  padding: 3px 7px;
}
.odds-row {
  display: flex;
  gap: 8px;
}
.odd-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: var(--ink4);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--t);
  color: inherit;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.odd-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--t);
}
.odd-btn:hover {
  border-color: rgba(0, 255, 135, 0.4);
}
.odd-btn:hover::before {
  opacity: 0.06;
}
.odd-btn.selected {
  border-color: var(--green);
  background: rgba(0, 255, 135, 0.1);
}
.odd-label {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  position: relative;
}
.odd-value {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  position: relative;
}

.betslip-dimmer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 749;
  backdrop-filter: blur(4px);
}
.betslip-dimmer.visible {
  display: block;
}
.betslip-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--ink2);
  border-left: 1px solid var(--border);
  z-index: 750;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease);
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.5);
}
.betslip-panel.open {
  right: 0;
}

@media (max-width: 767px) {
  .betslip-panel {
    top: auto;
    bottom: -100%;
    right: 0;
    left: 0;
    width: 100%;
    height: 78vh;
    border-left: none;
    border-top: 1px solid var(--border);
    border-radius: 20px 20px 0 0;
    transition: bottom 0.4s var(--ease);
  }
  .betslip-panel.open {
    bottom: 0;
    right: 0;
  }
}

.betslip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.betslip-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--white);
}
.betslip-header h3 span {
  color: var(--green);
}
.betslip-close {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--t);
}
.betslip-close:hover {
  border-color: var(--green);
  color: var(--green);
}
.betslip-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.betslip-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  text-align: center;
  gap: 14px;
}
.betslip-empty i {
  font-size: 48px;
  opacity: 0.2;
}
.betslip-empty p {
  font-size: 13px;
  line-height: 1.7;
}
.betslip-item {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  position: relative;
}
.betslip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  border-radius: 3px 0 0 3px;
}
.betslip-item__match {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.betslip-item__selection {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.betslip-item__odd {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--green);
  font-weight: 700;
}
.betslip-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.betslip-item__remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  transition: color var(--t);
  flex-shrink: 0;
}
.betslip-item__remove:hover {
  color: var(--danger);
}
.stake-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stake-input-row label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.stake-input {
  flex: 1;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  font-family: "Playfair Display", serif;
}
.stake-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.1);
}
.potential {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.potential span {
  color: var(--green);
  font-weight: 700;
}
.betslip-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.betslip-totals {
  margin-bottom: 16px;
}
.betslip-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
}
.betslip-totals .row strong {
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 15px;
}
.betslip-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2px;
}

.promos-section {
  padding: 72px 0;
  background: var(--ink2);
}
.promos-section .section-header {
  margin-bottom: 48px;
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.promo-card {
  background: var(--ink2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
.promo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.promo-card:hover {
  background: var(--ink3);
}
.promo-card:hover::after {
  transform: scaleX(1);
}
.promo-card__number {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(0, 255, 135, 0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
}
.promo-card__icon {
  font-size: 28px;
  color: var(--green);
}
.promo-card__title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.promo-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.promo-card__cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 11px;
}

.faq-section {
  padding: 80px 0;
  background: var(--ink);
}
.faq-section .container {
  max-width: 820px;
}
.faq-section .section-header {
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  gap: 20px;
  transition: color var(--t);
}
.faq-question:hover {
  color: var(--green);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: #000;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.4s;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.modal-backdrop.open {
  display: flex;
}
.modal {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s var(--ease) both;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 255, 135, 0.06);
}
@keyframes modalIn {
  from {
    transform: translateY(32px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.modal__header {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--t);
}
.modal__close:hover {
  border-color: var(--green);
  color: var(--green);
}
.modal__logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.modal__logo span {
  color: var(--green);
}
.modal__title {
  font-size: 13px;
  color: var(--muted);
}
.modal__body {
  padding: 28px 36px 36px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  transition:
    border-color var(--t),
    box-shadow var(--t);
  appearance: none;
}
.form-group input::placeholder {
  color: var(--muted);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6275' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--ink2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color var(--t);
}
.form-check:has(input:checked) {
  border-color: rgba(0, 255, 135, 0.4);
  background: rgba(0, 255, 135, 0.04);
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  accent-color: var(--green);
  border: 0;
  background: transparent;
  padding: 0;
}
.form-check a {
  color: var(--green);
  font-weight: 700;
}
.form-check label {
}
.modal__submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 8px;
}
.modal__switch {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.modal__switch a {
  color: var(--green);
  font-weight: 700;
}
.modal__success {
  text-align: center;
  padding: 48px 36px;
}
.modal__success i {
  font-size: 64px;
  color: var(--green);
  margin-bottom: 20px;
  display: block;
}
.modal__success h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 14px;
}
.modal__success p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 1024px) {
  .odds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .odds-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 90vh;
    padding-bottom: 60px;
  }
  .hero__stats {
    gap: 28px;
  }
  .container {
    padding: 0 20px;
  }
  .scroll-hint {
    display: none;
  }
  .navbar__actions .btn span {
    display: none;
  }
  .promos-grid {
    grid-template-columns: 1fr;
  }
}
