@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #050c18;
  --ink2: #0a1628;
  --ink3: #0f1f38;
  --ink4: #162840;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --cyan: #22d3ee;
  --diamond: #a5d8ff;
  --shimmer: #e0f2fe;
  --border: rgba(59, 130, 246, 0.18);
  --border2: rgba(59, 130, 246, 0.35);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted2: rgba(255, 255, 255, 0.3);
  --red: #f43f5e;
  --green: #10b981;
  --radius: 10px;
  --radius-lg: 18px;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--blue-light);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--blue);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate__inner {
  text-align: center;
  max-width: 440px;
}
.age-gate__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.age-gate__logo span {
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.age-gate__diamond {
  font-size: 48px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.age-gate__inner h2 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.age-gate__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate__btns .btn {
  min-width: 140px;
  justify-content: center;
  font-size: 15px;
  padding: 12px 28px;
}

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: var(--ink3);
  border-top: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-bar.show {
  transform: translateY(0);
}
#cookie-bar p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  min-width: 220px;
}
#cookie-bar p a {
  color: var(--blue-light);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btns .btn {
  padding: 8px 18px;
  font-size: 13px;
}
#cookie-settings-panel {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 8889;
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
#cookie-settings-panel.show {
  display: block;
}
#cookie-settings-panel h4 {
  font-size: 15px;
  margin-bottom: 16px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.cookie-toggle:last-of-type {
  border-bottom: none;
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--ink4);
  border-radius: 22px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--muted);
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--blue);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
  background: #fff;
}
.cookie-save-btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 12, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.navbar__logo-text span {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar__nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar__nav a:hover {
  color: var(--white);
  background: rgba(59, 130, 246, 0.1);
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__bet-count {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border2);
  color: var(--blue-light);
  cursor: pointer;
  transition: all 0.2s;
}
.navbar__bet-count:hover {
  background: rgba(59, 130, 246, 0.18);
}
.bet-badge {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__hamburger {
  display: none;
  background: none;
  color: var(--white);
  font-size: 20px;
  padding: 8px;
}
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 24px;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.navbar__mobile-menu.open {
  display: flex;
}
.navbar__mobile-menu a {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.navbar__mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.ticker {
  background: linear-gradient(90deg, #0d1e36, #112233, #0d1e36);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  margin-top: 68px;
  display: flex;
  align-items: center;
}
.ticker__label {
  flex-shrink: 0;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
.ticker__track-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 45s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 12px;
  color: var(--muted);
  border-right: 1px solid var(--border);
}
.ticker__item strong {
  color: var(--white);
  font-weight: 600;
}
.ticker__item .odds {
  color: var(--cyan);
  font-weight: 700;
}
.ticker__item .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  display: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 60% 50%,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-light);
}
.hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 1.5s ease infinite;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 54px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
  z-index: 1;
}
.hero__crystal {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  opacity: 0.12;
}
.hero__crystal polygon {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 1.5;
}
.hero__glow {
  position: absolute;
  right: 5%;
  top: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(34, 211, 238, 0.18) 0%,
    transparent 65%
  );
  border-radius: 50%;
}

.sports-bar {
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.sports-bar::-webkit-scrollbar {
  display: none;
}
.sports-bar__inner {
  display: flex;
  gap: 4px;
  padding: 12px 0;
}
.sport-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.sport-tab:hover {
  color: var(--white);
  background: rgba(59, 130, 246, 0.07);
}
.sport-tab.active {
  color: var(--blue-light);
  background: rgba(59, 130, 246, 0.13);
  border-color: var(--border2);
}
.sport-tab i {
  font-size: 14px;
}

.odds-section {
  padding: 60px 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--blue-light);
}
.section-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.see-all {
  font-size: 13px;
  color: var(--blue-light);
  font-weight: 500;
  white-space: nowrap;
}
.see-all:hover {
  color: var(--cyan);
}

.odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.match-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: all 0.25s ease;
  cursor: default;
}
.match-card:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
  transform: translateY(-2px);
}
.match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.match-card__sport {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.match-card__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}
.match-card__time {
  font-size: 11px;
  color: var(--muted);
}
.match-card__teams {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.match-card__team-name {
  font-size: 15px;
  font-weight: 600;
  flex: 1;
}
.match-card__team-name.right {
  text-align: right;
}
.vs-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  background: var(--ink3);
  border: 1px solid var(--border);
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.match-card__markets {
  display: flex;
  gap: 8px;
}
.market-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 8px;
  transition: all 0.2s;
  font-family: "Outfit", sans-serif;
}
.market-btn:hover,
.market-btn.selected {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--blue);
}
.market-btn.selected .market-odds {
  color: var(--cyan);
}
.market-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.market-odds {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.promos-section {
  padding: 60px 0;
  background: var(--ink2);
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.promo-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  opacity: 0;
  transition: opacity 0.3s;
}
.promo-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.promo-card:hover::before {
  opacity: 1;
}
.promo-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.promo-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.promo-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.promo-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.promo-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.promo-card__link:hover {
  gap: 10px;
  color: var(--cyan);
}

.betslip-panel {
  position: fixed;
  top: 68px;
  right: 0;
  bottom: 0;
  width: 320px;
  z-index: 900;
  background: var(--ink2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.betslip-panel.open {
  transform: translateX(0);
}
.betslip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.betslip-header h3 {
  font-size: 15px;
  font-weight: 600;
}
.betslip-close {
  background: none;
  color: var(--muted);
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 6px;
}
.betslip-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.betslip-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.betslip-body::-webkit-scrollbar {
  width: 4px;
}
.betslip-body::-webkit-scrollbar-track {
  background: transparent;
}
.betslip-body::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 4px;
}
.betslip-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 14px;
}
.betslip-empty i {
  font-size: 36px;
  margin-bottom: 14px;
  opacity: 0.4;
}
.betslip-item {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}
.betslip-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.betslip-item__match {
  font-size: 12px;
  color: var(--muted);
}
.betslip-item__selection {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.betslip-item__odds {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-light);
}
.betslip-item__remove {
  background: none;
  color: var(--muted);
  font-size: 16px;
  padding: 2px;
}
.betslip-item__remove:hover {
  color: var(--red);
}
.betslip-item__stake {
  margin-top: 10px;
}
.stake-input {
  width: 100%;
  padding: 8px 12px;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}
.stake-input:focus {
  outline: none;
  border-color: var(--blue);
}
.betslip-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.betslip-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}
.betslip-total strong {
  color: var(--white);
  font-size: 16px;
}
.betslip-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px;
}
.betslip-dimmer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 899;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.betslip-dimmer.show {
  display: block;
}

.faq-section {
  padding: 80px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.faq-item {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  width: 100%;
  background: none;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(59, 130, 246, 0.05);
}
.faq-question i {
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 22px 18px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal__box {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.modal__head {
  background: linear-gradient(135deg, #0f1e38, #162840);
  border-bottom: 1px solid var(--border);
  padding: 28px 28px 22px;
  position: relative;
}
.modal__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.modal__logo span {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal__subtitle {
  font-size: 13px;
  color: var(--muted);
}
.modal__close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal__close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.modal__body {
  padding: 28px;
}
.modal__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.modal__tab {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--ink3);
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.modal__tab.active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-light);
  border-color: var(--blue);
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  transition: all 0.2s;
}
.form-check input {
  margin: 1px 0 0;
  accent-color: var(--blue);
}
.form-check:hover {
  border-color: var(--border2);
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  margin-top: 8px;
}
.modal__switch {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.modal__switch a {
  color: var(--blue-light);
  cursor: pointer;
}
.modal__success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal__success i {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 16px;
}
.modal__success h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.modal__success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(5, 12, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.legal-topnav__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.legal-topnav__logo span {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-topnav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legal-topnav__links a {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.legal-topnav__links a:hover {
  color: var(--white);
  background: rgba(59, 130, 246, 0.08);
}
.legal-topnav__back {
  font-size: 13px;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.legal-topnav__back:hover {
  color: var(--cyan);
}

.legal-hero {
  margin-top: 68px;
  padding: 64px 28px 48px;
  background: linear-gradient(135deg, var(--ink2), var(--ink3));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 28px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
}
.legal-hero__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--blue-light);
}
.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.legal-hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}
.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--blue-light);
}
.legal-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px 20px;
}
.legal-content ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-content a {
  color: var(--blue-light);
  text-decoration: underline;
}
.callout {
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.callout strong {
  color: var(--white);
}

.footer,
.footer .top-content {
  background-color: #205dc7 !important;
}
.footer .copyright-section {
  background-color: #205dc7 !important;
}
.footer .rg-boxes-section {
  background-color: #205dc7;
}
.footer .col__header {
  color: var(--white) !important;
}
.footer .col__link,
.footer .col__link p {
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer .col__link:hover,
.footer .col__link:hover p {
  color: var(--cyan) !important;
}
.footer .partners-box__title {
  color: var(--white) !important;
}
.footer .footer-rg-message span {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px;
}
.footer .bg-white-100 {
  background-color: #111827 !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
}
.footer .font-bold {
  color: var(--white) !important;
}
.footer .text-c-13 {
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer a.underline {
  color: var(--blue-light) !important;
}
.footer .copyright-info span {
  color: rgba(255, 255, 255, 0.4) !important;
}
.footer-top-border {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.4),
    rgba(34, 211, 238, 0.4),
    transparent
  );
}

@media (max-width: 1100px) {
  .odds-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promos-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .navbar__nav,
  .navbar__actions .btn-outline {
    display: none;
  }
  .navbar__hamburger {
    display: block;
  }
  .odds-grid {
    grid-template-columns: 1fr;
  }
  .promos-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .hero__visual {
    display: none;
  }
  .hero__stats {
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .betslip-panel {
    width: 100%;
    top: 0;
  }
  .legal-topnav__links {
    display: none;
  }
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar {
  display: none;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}
.cat-tab:hover {
  color: var(--white);
  background: rgba(59, 130, 246, 0.07);
}
.cat-tab.active {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.25),
    rgba(34, 211, 238, 0.15)
  );
  border-color: var(--border2);
}
.cat-tab i {
  font-size: 11px;
}

.sports-bar__inner {
  padding: 8px 0 12px;
}
.sport-tab.hidden {
  display: none;
}

.odds-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.odds-filter-btns {
  display: flex;
  gap: 4px;
}
.odds-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
}
.odds-filter:hover {
  color: var(--white);
  border-color: var(--border2);
}
.odds-filter.active {
  color: var(--blue-light);
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--blue);
}
.live-dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease infinite;
}
.see-all {
  font-size: 13px;
  color: var(--blue-light);
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.see-all:hover {
  color: var(--cyan);
}

.load-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.load-more-btn {
  padding: 12px 32px;
  font-size: 14px;
  gap: 8px;
}

.match-card.hidden {
  display: none;
}

@media (max-width: 768px) {
  .odds-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .odds-filter-btns {
    flex-wrap: wrap;
  }
}
