@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@400;500&family=Lato:wght@300;400;700&display=swap");

:root {
  --cream: #fafaf7;
  --white: #ffffff;
  --indigo: #3730a3;
  --indigo2: #4f46e5;
  --indigo3: #6366f1;
  --indigo-lt: #eef2ff;
  --amber: #f59e0b;
  --amber-lt: #fef3c7;
  --slate: #1e293b;
  --slate2: #334155;
  --slate3: #64748b;
  --slate4: #94a3b8;
  --border: #e2e8f0;
  --border2: #cbd5e1;

  --sidebar-w: 72px;
  --topbar-h: 56px;
  --font-syne: "Syne", sans-serif;
  --font-mono: "DM Mono", monospace;
  --font-lato: "Lato", sans-serif;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(55, 48, 163, 0.1);
  --shadow-lg: 0 12px 40px rgba(55, 48, 163, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-lato);
  background: var(--cream);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px 0 calc(var(--sidebar-w) + 24px);
  z-index: 200;
  gap: 24px;
}
.topbar__logo {
  font-family: var(--font-syne);
  font-size: 20px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.topbar__logo span {
  color: var(--amber);
}
.topbar__logo-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.topbar__ticker {
  flex: 1;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate3);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  display: flex;
  gap: 40px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.ticker-item .up {
  color: #16a34a;
}
.ticker-item .down {
  color: #dc2626;
}

.topbar__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-login {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  border: 1.5px solid var(--indigo);
  border-radius: var(--radius);
  padding: 7px 20px;
  transition: all 0.2s;
}
.btn-login:hover {
  background: var(--indigo);
  color: #fff;
}
.btn-signup {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--amber);
  border-radius: var(--radius);
  padding: 8px 22px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}
.btn-signup:hover {
  background: #d97706;
  transform: translateY(-1px);
}

.sidebar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--white);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 150;
  gap: 4px;
  overflow-y: auto;
}
.sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--radius);
  width: 56px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--slate4);
  font-size: 9px;
  font-family: var(--font-syne);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1.5px solid transparent;
}
.sidebar__item i {
  font-size: 18px;
}
.sidebar__item:hover {
  color: var(--indigo);
  background: var(--indigo-lt);
}
.sidebar__item.active {
  color: var(--indigo);
  background: var(--indigo-lt);
  border-color: var(--indigo3);
}
.sidebar__divider {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.sidebar__betslip {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--radius);
  width: 56px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--white);
  background: var(--indigo);
  font-size: 9px;
  font-family: var(--font-syne);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.sidebar__betslip i {
  font-size: 20px;
}
.betslip-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--amber);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.main-layout {
  margin-left: var(--sidebar-w);
  margin-top: var(--topbar-h);
  min-height: calc(100vh - var(--topbar-h));
}

.hero {
  background: linear-gradient(
    135deg,
    var(--indigo) 0%,
    #1e1b4b 60%,
    #312e81 100%
  );
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 64px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 50%,
      rgba(245, 158, 11, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    );
}
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__content {
  position: relative;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
.hero__title {
  font-family: var(--font-syne);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero__title em {
  color: var(--amber);
  font-style: normal;
}
.hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__cta {
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  background: var(--amber);
  border-radius: var(--radius);
  padding: 14px 32px;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
  transition: all 0.25s;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.55);
}
.hero__secondary {
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 14px 28px;
  transition: all 0.25s;
}
.hero__secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.hero__stats {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 36px;
  gap: 20px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.25s;
}
.hero-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-4px);
}
.hero-stat__val {
  font-family: var(--font-syne);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.hero-stat__val span {
  color: var(--amber);
}
.hero-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.content-area {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  min-height: calc(100vh - var(--topbar-h) - 340px);
}
.content-main {
  padding: 32px;
  border-right: 1px solid var(--border);
}
.content-side {
  padding: 24px;
  background: var(--white);
}

.section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-hd h2 {
  font-family: var(--font-syne);
  font-size: 18px;
  font-weight: 700;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-hd h2::before {
  content: "";
  width: 4px;
  height: 20px;
  background: var(--indigo);
  border-radius: 2px;
}
.section-hd a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--indigo3);
  letter-spacing: 0.5px;
}

.sport-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.sport-tabs::-webkit-scrollbar {
  display: none;
}
.sport-tab {
  flex-shrink: 0;
  font-family: var(--font-syne);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  color: var(--slate3);
  background: var(--white);
  transition: all 0.2s;
  cursor: pointer;
}
.sport-tab:hover {
  border-color: var(--indigo3);
  color: var(--indigo);
}
.sport-tab.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.matches-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.match-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.match-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--indigo);
  transform: scaleY(0);
  transition: transform 0.2s;
  border-radius: 0 2px 2px 0;
}
.match-card:hover {
  border-color: var(--indigo3);
  box-shadow: var(--shadow);
}
.match-card:hover::after {
  transform: scaleY(1);
}
.match-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.match-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.match-live-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 100px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.match-live-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}
.match-card__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.match-team {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.match-team:last-child {
  text-align: right;
}
.match-team__name {
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
}
.match-team__detail {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate4);
}
.match-vs {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate4);
  background: var(--cream);
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
}
.match-card__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.odd-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: all 0.2s;
  cursor: pointer;
}
.odd-btn:hover {
  border-color: var(--indigo3);
  background: var(--indigo-lt);
}
.odd-btn.selected {
  border-color: var(--indigo);
  background: var(--indigo-lt);
}
.odd-btn__label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--slate4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.odd-btn__val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--indigo);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo3));
}
.promo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.promo-card__num {
  font-family: var(--font-syne);
  font-size: 48px;
  font-weight: 800;
  color: var(--indigo-lt);
  line-height: 1;
  position: absolute;
  right: 16px;
  bottom: 8px;
}
.promo-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--amber);
  background: var(--amber-lt);
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
}
.promo-card__title {
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
  line-height: 1.3;
}
.promo-card__sub {
  font-size: 13px;
  color: var(--slate3);
  line-height: 1.5;
}

.side-widget {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}
.side-widget__title {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-widget__title i {
  color: var(--indigo3);
}

.betslip-empty {
  text-align: center;
  padding: 20px;
}
.betslip-empty i {
  font-size: 32px;
  color: var(--border2);
  margin-bottom: 8px;
}
.betslip-empty p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate4);
}
.betslip-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  position: relative;
}
.betslip-item__match {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.betslip-item__detail {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate3);
}
.betslip-item__odd {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo);
}
.betslip-item__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--slate4);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.betslip-item__remove:hover {
  background: #fee2e2;
  color: #dc2626;
}
.betslip-stake {
  margin-top: 12px;
}
.betslip-stake label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}
.betslip-stake input {
  width: 100%;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--slate);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.betslip-stake input:focus {
  border-color: var(--indigo);
}
.betslip-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}
.betslip-total span:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate3);
  text-transform: uppercase;
}
.betslip-total span:last-child {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
}
.betslip-total.win span:last-child {
  color: #16a34a;
}
.btn-place {
  width: 100%;
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  border-radius: 10px;
  padding: 13px;
  margin-top: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(55, 48, 163, 0.3);
}
.btn-place:hover {
  background: var(--indigo2);
  transform: translateY(-1px);
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--slate2);
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.quick-link:hover {
  border-color: var(--indigo3);
  color: var(--indigo);
}
.quick-link i {
  color: var(--slate4);
  font-size: 12px;
}

.faq-section {
  padding: 32px;
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
.faq-sidebar h3 {
  font-family: var(--font-syne);
  font-size: 28px;
  font-weight: 800;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 12px;
}
.faq-sidebar p {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.7;
}
.faq-sidebar__contact {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--indigo3);
}
.faq-q {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  gap: 12px;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--slate3);
  transition: all 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.7;
  padding: 0 20px 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 35, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  width: 420px;
  max-width: calc(100vw - 40px);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal {
  transform: none;
}
.modal__header {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal__title {
  font-family: var(--font-syne);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate);
}
.modal__sub {
  font-size: 13px;
  color: var(--slate3);
  margin-top: 4px;
}
.modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--slate3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.modal__close:hover {
  background: var(--border);
}
.modal__body {
  padding: 24px 28px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-lato);
  font-size: 14px;
  color: var(--slate);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: var(--indigo);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate3);
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-check input {
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
}
.btn-form {
  width: 100%;
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  border-radius: 10px;
  padding: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(55, 48, 163, 0.3);
}
.btn-form:hover {
  background: var(--indigo2);
}
.modal__switch {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate3);
}
.modal__switch a {
  color: var(--indigo3);
  font-weight: 700;
  cursor: pointer;
}
.form-success {
  text-align: center;
  padding: 24px;
  display: none;
}
.form-success i {
  font-size: 40px;
  color: #16a34a;
  margin-bottom: 12px;
}
.form-success h3 {
  font-family: var(--font-syne);
  font-size: 20px;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.6;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate__box {
  text-align: center;
  max-width: 420px;
  padding: 48px 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.age-gate__logo {
  font-family: var(--font-syne);
  font-size: 28px;
  font-weight: 800;
  color: var(--indigo);
  margin-bottom: 32px;
}
.age-gate__logo span {
  color: var(--amber);
}
.age-gate__icon {
  font-size: 48px;
  color: var(--indigo3);
  margin-bottom: 20px;
}
.age-gate__title {
  font-family: var(--font-syne);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 10px;
}
.age-gate__sub {
  font-size: 14px;
  color: var(--slate3);
  line-height: 1.6;
  margin-bottom: 28px;
}
.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn-age-yes {
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  border-radius: var(--radius);
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-age-yes:hover {
  background: var(--indigo2);
}
.btn-age-no {
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate3);
  background: var(--cream);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-age-no:hover {
  border-color: var(--slate4);
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 1500;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-bar.show {
  transform: translateY(0);
}
.cookie-bar__text {
  flex: 1;
  font-size: 13px;
  color: var(--slate2);
  line-height: 1.5;
}
.cookie-bar__text a {
  color: var(--indigo3);
  text-decoration: underline;
}
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-settings {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate2);
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-settings:hover {
  border-color: var(--indigo3);
  color: var(--indigo);
}
.btn-cookie-accept {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo);
  border-radius: 8px;
  padding: 9px 22px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-accept:hover {
  background: var(--indigo2);
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-setting-row:last-child {
  border-bottom: none;
}
.cookie-setting-info h4 {
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 2px;
}
.cookie-setting-info p {
  font-size: 12px;
  color: var(--slate3);
}
.toggle {
  width: 40px;
  height: 22px;
  background: var(--border2);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.toggle.on {
  background: var(--indigo);
}
.toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.toggle.on::after {
  transform: translateX(18px);
}
.toggle.disabled {
  opacity: 0.5;
  cursor: default;
}

.footer-wrapper {
  margin-left: 0;
  background: #f5f5f5;
}

@media (max-width: 1024px) {
  .content-area {
    grid-template-columns: 1fr;
  }
  .content-side {
    display: none;
  }
  .hero__stats {
    display: none;
  }
  .hero {
    padding: 48px 24px 64px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .topbar {
    padding: 0 16px;
  }
  .topbar__ticker {
    display: none;
  }
  .sidebar {
    display: none;
  }
  .main-layout {
    margin-left: 0;
  }
  .content-main {
    padding: 16px;
  }
  .promos-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 24px 16px;
  }
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .cookie-bar__actions {
    justify-content: flex-end;
  }
}

.footer-wrapper .h-screen {
  min-height: unset !important;
}

.bs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 35, 0.45);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.bs-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.betslip-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--white);
  z-index: 950;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(55, 48, 163, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.betslip-drawer.open {
  transform: translateX(0);
}

.bs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--indigo);
  flex-shrink: 0;
}
.bs-header__title {
  font-family: var(--font-syne);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bs-header__count {
  background: var(--amber);
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-header__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.bs-header__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.bs-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.bs-tab {
  flex: 1;
  padding: 11px;
  font-family: var(--font-syne);
  font-size: 12px;
  font-weight: 600;
  color: var(--slate3);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.bs-tab.active {
  color: var(--indigo);
  border-bottom-color: var(--indigo);
}

.bs-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}

.bs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: var(--slate4);
}
.bs-empty i {
  font-size: 36px;
  opacity: 0.4;
}
.bs-empty p {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.bs-selection {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  position: relative;
  transition: border-color 0.2s;
}
.bs-selection:hover {
  border-color: var(--indigo3);
}
.bs-sel__sport {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--slate4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.bs-sel__match {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
  padding-right: 24px;
}
.bs-sel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-sel__pick {
  font-size: 12px;
  color: var(--slate3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
}
.bs-sel__odd {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--indigo);
}
.bs-sel__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--slate4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  transition: all 0.15s;
}
.bs-sel__remove:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

.bs-stake-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-top: 4px;
}
.bs-stake-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate4);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.bs-stake-input-wrap {
  position: relative;
}
.bs-stake-input-wrap::before {
  content: "$";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--slate3);
  pointer-events: none;
}
.bs-stake-input {
  width: 100%;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 11px 12px 11px 28px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--slate);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.bs-stake-input:focus {
  border-color: var(--indigo);
}
.bs-quick-stakes {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.bs-quick-stake {
  flex: 1;
  padding: 6px;
  border: 1px solid var(--border2);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate3);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.bs-quick-stake:hover {
  border-color: var(--indigo3);
  color: var(--indigo);
}

.bs-summary {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bs-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--slate3);
}
.bs-summary-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--slate);
}
.bs-summary-row.win span:last-child {
  color: #16a34a;
  font-size: 18px;
}
.bs-summary-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

.bs-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-btn-place {
  width: 100%;
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: var(--indigo);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(55, 48, 163, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bs-btn-place:hover {
  background: var(--indigo2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(55, 48, 163, 0.4);
}
.bs-btn-place:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}
.bs-auth-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.bs-auth-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.bs-auth-link {
  flex: 1;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid var(--indigo);
}
.bs-auth-link.login {
  color: var(--indigo);
  background: transparent;
}
.bs-auth-link.login:hover {
  background: var(--indigo-lt);
}
.bs-auth-link.signup {
  color: #fff;
  background: var(--amber);
  border-color: var(--amber);
}
.bs-auth-link.signup:hover {
  background: #d97706;
}

.bs-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--indigo);
  color: #fff;
  border-radius: 100px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-syne);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(55, 48, 163, 0.4);
  z-index: 500;
  transition: all 0.2s;
  border: none;
}
.bs-trigger:hover {
  background: var(--indigo2);
  transform: translateY(-2px);
}
.bs-trigger__badge {
  background: var(--amber);
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 100px;
  padding: 0 5px;
  display: none;
  align-items: center;
  justify-content: center;
}

.sidebar__betslip {
  display: none !important;
}
.content-side .side-widget:first-child {
  display: none;
}

.mob-burger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.mob-burger:hover {
  background: var(--cream);
}
.mob-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all 0.3s;
}
.mob-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mob-burger.open span:nth-child(2) {
  opacity: 0;
}
.mob-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob-nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 800;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 16px;
}
.mob-nav.open {
  transform: translateX(0);
}

.mob-nav__section {
  margin-bottom: 8px;
}
.mob-nav__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate4);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px 4px;
}
.mob-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate2);
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.mob-nav__item i {
  width: 22px;
  text-align: center;
  color: var(--slate4);
  font-size: 16px;
}
.mob-nav__item:hover,
.mob-nav__item.active {
  background: var(--indigo-lt);
  border-color: var(--indigo3);
  color: var(--indigo);
}
.mob-nav__item:hover i,
.mob-nav__item.active i {
  color: var(--indigo);
}
.mob-nav__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 12px 0;
}
.mob-nav__auth {
  display: flex;
  gap: 10px;
  padding: 0 4px;
  margin-top: 16px;
}
.mob-nav__auth .btn-login {
  flex: 1;
  text-align: center;
  padding: 13px;
  font-size: 14px;
}
.mob-nav__auth .btn-signup {
  flex: 1;
  text-align: center;
  padding: 13px;
  font-size: 14px;
}

.mob-betslip-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--indigo);
  color: #fff;
  padding: 14px 20px;
  z-index: 600;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 -4px 20px rgba(55, 48, 163, 0.3);
}
.mob-betslip-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-syne);
  font-size: 15px;
  font-weight: 700;
}
.mob-betslip-bar__badge {
  background: var(--amber);
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-betslip-bar__total {
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: 0.8;
}
.mob-betslip-bar__cta {
  font-family: var(--font-syne);
  font-size: 13px;
  font-weight: 700;
  background: var(--amber);
  color: var(--slate);
  padding: 8px 18px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .mob-burger {
    display: flex;
  }
  .topbar__actions {
    display: none;
  }
  .bs-trigger {
    bottom: 72px;
    right: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }
  .mob-betslip-bar {
    display: flex;
  }
  body.has-bets .footer-wrapper {
    padding-bottom: 62px;
  }
  body.has-bets main {
    padding-bottom: 62px;
  }
}
