@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", Arial, sans-serif;
  background: #0d0f14;
  color: #e8eaf0;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: inherit;
}

:root {
  --gold: #f5a623;
  --gold-d: #c87f0a;
  --dark: #0d0f14;
  --dark2: #161920;
  --dark3: #1e2230;
  --dark4: #252a38;
  --border: #2e3345;
  --text: #e8eaf0;
  --muted: #8892a4;
  --success: #28c76f;
  --danger: #ea5455;
  --radius: 8px;
  --transition: 0.25s ease;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
  color: #fff;
}
.section-title span {
  color: var(--gold);
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-d);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate__box {
  background: var(--dark2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  padding: 40px;
  text-align: center;
}
.age-gate__icon {
  font-size: 56px;
  color: var(--gold);
  margin-bottom: 16px;
}
.age-gate__box h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.age-gate__box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.age-gate__actions .btn {
  flex: 1;
  justify-content: center;
}
#age-gate.hidden {
  display: none;
}

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 2px solid var(--gold);
  z-index: 8000;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
#cookie-bar p {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  min-width: 260px;
}
#cookie-bar p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  padding: 8px 18px;
  font-size: 13px;
}
#cookie-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#cookie-settings-modal.open {
  display: flex;
}
.cookie-modal__box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  padding: 32px;
}
.cookie-modal__box h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.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;
}
.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(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
#cookie-bar.hidden {
  display: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 800;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
}
.navbar__logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}
.navbar__logo-text span {
  color: var(--gold);
}
.navbar__tagline {
  font-size: 11px;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
  line-height: 1.3;
  display: none;
}
@media (min-width: 900px) {
  .navbar__tagline {
    display: block;
  }
}
.navbar__spacer {
  flex: 1;
}
.navbar__nav {
  display: none;
  gap: 4px;
}
@media (min-width: 1024px) {
  .navbar__nav {
    display: flex;
  }
}
.navbar__nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: #fff;
  background: var(--dark3);
}
.navbar__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.navbar__cart-btn {
  position: relative;
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.navbar__cart-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible {
  display: flex;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 15, 20, 0.95) 0%,
    rgba(13, 15, 20, 0.6) 60%,
    rgba(13, 15, 20, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 20px;
}
.hero__title span {
  color: var(--gold);
}
.hero__subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__cta .btn {
  padding: 14px 32px;
  font-size: 15px;
}
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__stat-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.sports-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sports-bar::-webkit-scrollbar {
  display: none;
}
.sports-bar__inner {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px 24px;
  min-width: max-content;
  margin: 0 auto;
}
.sport-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 22px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-width: 72px;
}
.sport-tab i {
  font-size: 20px;
  display: block;
}
.sport-tab:hover {
  background: var(--dark3);
  color: #fff;
}
.sport-tab.active {
  background: var(--dark3);
  color: var(--gold);
}
.sport-tab.active i {
  color: var(--gold);
}

.odds-section {
  padding: 48px 0;
  background: var(--dark);
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ea5455;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
  margin-right: 4px;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.match-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.match-card:hover {
  border-color: var(--gold);
}
.match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
}
.match-card__sport {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.match-card__time {
  font-size: 11px;
  color: var(--muted);
}
.match-card__body {
  padding: 16px;
}
.match-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.team-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex: 1;
}
.vs-badge {
  background: var(--dark3);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}
.team-name.right {
  text-align: right;
}
.odds-row {
  display: flex;
  gap: 8px;
}
.odd-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 4px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  color: inherit;
  font-family: inherit;
  min-width: 0;
}
.odd-btn:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.08);
}
.odd-btn.selected {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.18);
}
.odd-label {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.odd-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.betslip-panel {
  position: fixed;
  top: 64px;
  right: -400px;
  width: 360px;
  height: calc(100vh - 64px);
  background: var(--dark2);
  border-left: 1px solid var(--border);
  z-index: 750;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.betslip-panel.open {
  right: 0;
}

@media (max-width: 767px) {
  .betslip-panel {
    top: auto;
    bottom: -100%;
    right: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    border-left: none;
    border-top: 2px solid var(--gold);
    border-radius: 16px 16px 0 0;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .betslip-panel.open {
    bottom: 0;
    right: 0;
  }
}

.betslip-dimmer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 749;
}
.betslip-dimmer.visible {
  display: block;
}

.betslip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.betslip-header h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
}
.betslip-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.betslip-close:hover {
  color: #fff;
}
.betslip-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  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: 12px;
  font-size: 14px;
}
.betslip-empty i {
  font-size: 40px;
  opacity: 0.4;
}
.betslip-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.betslip-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.betslip-item__match {
  font-size: 12px;
  color: var(--muted);
}
.betslip-item__selection {
  font-size: 14px;
  font-weight: 700;
}
.betslip-item__odd {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
.betslip-item__remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.betslip-item__remove:hover {
  color: var(--danger);
}
.stake-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.stake-input-row label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.stake-input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
  font-family: inherit;
}
.stake-input:focus {
  outline: none;
  border-color: var(--gold);
}
.stake-input-row .potential {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.stake-input-row .potential span {
  color: var(--gold);
  font-weight: 700;
}
.betslip-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.betslip-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
}
.betslip-totals .row {
  display: flex;
  justify-content: space-between;
}
.betslip-totals .row strong {
  color: var(--gold);
}
.betslip-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open {
  display: flex;
}
.modal {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 0;
  position: relative;
  animation: modalIn 0.25s ease;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
@keyframes modalIn {
  from {
    transform: translateY(24px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.modal__header {
  background: linear-gradient(135deg, #1a1f2e 0%, #1e2538 100%);
  border-bottom: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  padding: 28px 28px 24px;
  text-align: center;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal__logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 4px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.modal__logo span {
  color: var(--gold);
}
.modal__title {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.modal__body {
  padding: 24px 28px 28px;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  padding: 11px 14px;
  font-family: inherit;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder {
  color: #4a5268;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}
.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='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option {
  background: var(--dark2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.form-check:has(input:checked) {
  border-color: var(--gold);
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}
.form-check a {
  color: var(--gold);
  font-weight: 700;
}
.form-check label {
  cursor: pointer;
}

.modal__submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  letter-spacing: 1px;
}

.modal__switch {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.modal__switch a {
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
}
.modal__switch a:hover {
  text-decoration: underline;
}

.modal__success {
  text-align: center;
  padding: 40px 28px;
}
.modal__success i {
  font-size: 60px;
  color: var(--success);
  margin-bottom: 18px;
  display: block;
}
.modal__success h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.modal__success p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-section {
  padding: 72px 0;
  background: var(--dark2);
}
.faq-section .container {
  max-width: 860px;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 40px;
  justify-content: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question i {
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.promos-section {
  padding: 48px 0;
  background: var(--dark);
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.promo-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}
.promo-card:hover {
  border-color: var(--gold);
}
.promo-card__icon {
  font-size: 32px;
  color: var(--gold);
}
.promo-card__title {
  font-weight: 700;
  font-size: 16px;
}
.promo-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.promo-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

@import url("./footer.css");

.footer .copyright-info span:first-child {
  font-size: 0;
}
.footer .copyright-info span:first-child::before {
  content: "© 2026 Donnie Bet Pty Ltd. All rights reserved.";
  font-size: 14px;
}

@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: 380px;
  }
  .hero__content {
    padding: 36px 0;
  }
  .hero__stats {
    gap: 20px;
  }
  .hero__cta .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }
  .navbar__actions .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .promos-grid {
    grid-template-columns: 1fr;
  }
}
