:root {
  /* Whiskey / amber / gold / brown / red / orange theme */
  --bg: #1a120c;
  --panel: rgba(42, 28, 18, 0.92);
  --panel-2: rgba(52, 34, 20, 0.95);
  --text: rgba(255, 246, 230, 0.96);
  --muted: rgba(232, 210, 176, 0.78);
  --muted-2: rgba(196, 168, 128, 0.58);
  --border: rgba(212, 168, 88, 0.28);
  --shadow: 0 18px 60px rgba(20, 8, 2, 0.65);
  --brand: #d97706; /* amber / whiskey */
  --brand2: #eab308; /* gold / yellow */
  --gold: #f0c14b;
  --gold-deep: #d4a017;
  --amber: #f59e0b;
  --orange: #ea580c;
  --orange-bright: #f97316;
  --red: #c2410c;
  --red-deep: #9a3412;
  --whiskey: #b45309;
  --brown: #3d2314;
  --brown-deep: #1a120c;
  --cream: #fff6e6;
  --danger: #e35d5d;
  --ok: #eab308;
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 680px at 12% -10%, rgba(234, 88, 12, 0.22), transparent 58%),
    radial-gradient(900px 620px at 92% 8%, rgba(240, 193, 75, 0.16), transparent 55%),
    radial-gradient(800px 520px at 50% 40%, rgba(180, 83, 9, 0.14), transparent 60%),
    linear-gradient(180deg, #120c08 0%, #241610 45%, #1a120c 100%);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(26, 18, 12, 0.86);
  border-bottom: 1px solid rgba(212, 168, 88, 0.28);
}

.site-header__container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-header__logo-text {
  background: linear-gradient(135deg, #fff6e6 0%, #f0c14b 50%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #1a120c;
  background: linear-gradient(135deg, #fff1d6 0%, #f0c14b 55%, #d97706 100%);
  border: 1px solid rgba(255, 236, 200, 0.55);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.32);
}

.site-header__logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ea580c, #f0c14b);
  box-shadow: 0 14px 40px rgba(234, 88, 12, 0.32);
}

.site-header__nav {
  display: none;
  gap: 10px;
  align-items: center;
}

.site-header__nav-link {
  color: var(--muted);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 14px;
}
.site-header__nav-link:hover {
  text-decoration: none;
  color: var(--text);
  background: rgba(234, 88, 12, 0.16);
}

.site-header__menu-toggle {
  width: 48px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(212, 168, 88, 0.28);
  background: rgba(42, 28, 18, 0.94);
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 10px;
}

.site-header__menu-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 246, 230, 0.9);
}

.site-header__nav--open {
  display: grid;
  gap: 8px;
  position: absolute;
  left: 18px;
  right: 18px;
  top: 64px;
  padding: 12px;
  border: 1px solid rgba(212, 168, 88, 0.28);
  border-radius: var(--radius);
  background: rgba(28, 18, 12, 0.98);
  box-shadow: var(--shadow);
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 860px) {
  .site-header__menu-toggle {
    display: none;
  }
  .site-header__nav {
    display: flex;
  }
  .site-header__nav--open {
    position: static;
    display: flex;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
  }
}

/* Headline */
.header {
  padding: 26px 0 16px;
}
.header__title {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff6e6 0%, #f0c14b 40%, #ea580c 75%, #c2410c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

@media (min-width: 860px) {
  .header__title {
    font-size: 44px;
  }
}

/* Casino cards */
#casinoCards {
  display: grid;
  gap: 14px;
}

.casino-card-link {
  display: block;
}
.casino-card-link:hover {
  text-decoration: none;
}

.casino-card {
  position: relative;
  border: 1px solid rgba(212, 168, 88, 0.26);
  background:
    linear-gradient(145deg, rgba(58, 36, 20, 0.97), rgba(26, 16, 10, 0.98));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 8, 2, 0.5);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.casino-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #c2410c, #ea580c, #f0c14b, #eab308);
  opacity: 0.9;
  pointer-events: none;
}
.casino-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 193, 75, 0.55);
  box-shadow:
    0 22px 55px rgba(20, 8, 2, 0.58),
    0 0 0 1px rgba(234, 88, 12, 0.2);
}

.casino-card__main {
  display: grid;
  gap: 12px;
  padding: 40px 14px 14px;
}

.casino-card__left {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
}

.casino-card__logo-wrapper {
  width: 88px;
  height: 66px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 88, 0.3);
  background: rgba(18, 10, 6, 0.94);
}
.casino-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.casino-card__title {
  margin: 0;
  font-size: 18px;
}
.casino-card__bonus {
  margin: 6px 0 0;
  color: #f0c14b;
  font-weight: 700;
}
.casino-card__bonus-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.casino-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}

.casino-card__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 2px 0;
  flex: 0 0 auto;
}

.casino-card__stars {
  color: #f0c14b;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 14px rgba(240, 193, 75, 0.45);
}

.casino-card__rating-value {
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.casino-card__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.casino-card__bonus-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 900;
  background: linear-gradient(135deg, #f0c14b 0%, #ea580c 45%, #c2410c 100%);
  color: #1a120c;
  border: 1px solid rgba(255, 220, 160, 0.45);
  box-shadow:
    0 14px 36px rgba(194, 65, 12, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  animation: bonusPulse 2.4s ease-in-out infinite;
}
.casino-card__bonus-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  animation: bonusShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
.casino-card__bonus-btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.06);
  box-shadow:
    0 18px 44px rgba(194, 65, 12, 0.55),
    0 0 24px rgba(240, 193, 75, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation-play-state: paused;
}
.casino-card__bonus-btn:hover::after {
  animation-duration: 1.1s;
}
.casino-card-link:active .casino-card__bonus-btn {
  transform: translateY(0) scale(0.97);
  filter: brightness(0.98);
  box-shadow:
    0 8px 20px rgba(194, 65, 12, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@keyframes bonusPulse {
  0%,
  100% {
    box-shadow:
      0 14px 36px rgba(194, 65, 12, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 16px 42px rgba(194, 65, 12, 0.55),
      0 0 22px rgba(240, 193, 75, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

@keyframes bonusShimmer {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .casino-card__bonus-btn,
  .casino-card__bonus-btn::after {
    animation: none;
  }
  .casino-card__bonus-btn:hover {
    transform: none;
  }
  .casino-card-link:active .casino-card__bonus-btn {
    transform: none;
  }
}

.casino-card__min-deposit {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
}

.casino-card__terms {
  padding: 12px 14px;
  border-top: 1px solid rgba(212, 168, 88, 0.18);
  color: var(--muted-2);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.3);
}

.casino-badge {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  color: #fff6e6;
}
.casino-badge--orange {
  background: linear-gradient(135deg, #f0c14b 0%, #ea580c 50%, #c2410c 100%);
  border-color: rgba(255, 220, 160, 0.5);
  color: #1a120c;
}
.casino-badge--blue {
  background: linear-gradient(135deg, #fde68a 0%, #d97706 50%, #92400e 100%);
  border-color: rgba(255, 220, 150, 0.45);
  color: #1a120c;
}
.casino-badge--green {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 50%, #7c2d12 100%);
  border-color: rgba(255, 210, 140, 0.45);
  color: #fff6e6;
}

@media (min-width: 860px) {
  .casino-card__main {
    grid-template-columns: minmax(0, 1.15fr) auto;
    align-items: center;
    gap: 20px;
    padding: 42px 20px 18px;
  }
  .casino-badge {
    left: 16px;
    top: 12px;
  }
  .casino-card__actions {
    justify-content: center;
    gap: 16px 22px;
  }
  .casino-card__bonus-btn {
    min-width: 220px;
    padding: 18px 34px;
    font-size: 17px;
  }
}

/* Modals */
.age-verification-modal,
.cookie-consent-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(12, 6, 2, 0.85);
  z-index: 200;
}
.age-verification-modal.is-open,
.cookie-consent-modal.is-open {
  display: grid;
}

.age-verification-modal__content,
.cookie-consent-modal__content {
  width: min(620px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 88, 0.35);
  background:
    linear-gradient(160deg, rgba(58, 36, 20, 0.98), rgba(22, 12, 8, 0.98));
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(234, 88, 12, 0.16);
  padding: 16px;
}

.age-verification-modal__title,
.cookie-consent-modal__title {
  margin: 0 0 8px;
  font-size: 20px;
  color: #f0c14b;
}

.age-verification-modal__text,
.cookie-consent-modal__text {
  margin: 0 0 12px;
  color: var(--muted);
}

.age-verification-modal__buttons,
.cookie-consent-modal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.age-verification-modal__btn,
.cookie-consent-modal__btn {
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid rgba(212, 168, 88, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.age-verification-modal__btn--confirm,
.cookie-consent-modal__btn--accept {
  background: linear-gradient(135deg, #f0c14b 0%, #ea580c 55%, #c2410c 100%);
  color: #1a120c;
  border-color: rgba(255, 220, 160, 0.45);
  box-shadow: 0 12px 30px rgba(194, 65, 12, 0.35);
}

.age-verification-modal__btn--deny,
.cookie-consent-modal__btn--reject {
  border-color: rgba(227, 93, 93, 0.4);
  background: rgba(227, 93, 93, 0.14);
  color: #ffc9c9;
}

.age-verification-modal__disclaimer {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

.cookie-consent-modal__link {
  color: #f0c14b;
  font-weight: 800;
}

/* Disclaimer banner */
.disclaimer-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 12px 12px 14px;
}
.disclaimer-banner__content {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 88, 0.32);
  background: rgba(28, 18, 12, 0.97);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.disclaimer-banner__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.disclaimer-banner__close {
  border: 1px solid rgba(212, 168, 88, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  flex: 0 0 auto;
}
.disclaimer-banner__close:hover {
  background: rgba(234, 88, 12, 0.18);
}

/* FAQ */
.faq-section {
  padding: 26px 0 28px;
}
.faq-section__title {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #f0c14b;
}
.faq-compact {
  display: grid;
  gap: 12px;
}
.faq-compact__item {
  border: 1px solid rgba(212, 168, 88, 0.22);
  border-radius: var(--radius);
  background: rgba(42, 28, 18, 0.88);
  padding: 12px 14px;
}
.faq-compact__question {
  margin: 0 0 6px;
  font-size: 15px;
  color: #fff6e6;
}
.faq-compact__answer {
  margin: 0;
  color: var(--muted);
}
.faq-compact__answer a {
  color: #f0c14b;
  font-weight: 800;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(212, 168, 88, 0.22);
  padding: 22px 18px 26px;
  background: rgba(12, 8, 4, 0.94);
}
.footer__text {
  margin: 10px auto 0;
  max-width: var(--max);
  color: var(--muted-2);
  font-size: 12px;
}
.footer__link {
  color: #f0c14b;
  font-weight: 800;
}
.footer__organizations {
  max-width: var(--max);
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__org-link {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 88, 0.28);
  background: rgba(212, 168, 88, 0.1);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}
.footer__org-link:hover {
  text-decoration: none;
  color: #1a120c;
  background: rgba(240, 193, 75, 0.85);
  border-color: rgba(240, 193, 75, 0.6);
}
.footer__nav {
  max-width: var(--max);
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal {
  max-width: var(--max);
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 168, 88, 0.18);
}
.footer__legal .footer__text:first-child {
  margin-top: 0;
}
.footer__legal strong {
  color: var(--muted);
  font-weight: 800;
}
.footer__nav-link {
  color: var(--muted);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(212, 168, 88, 0.22);
  background: rgba(42, 28, 18, 0.82);
}
.footer__nav-link:hover {
  text-decoration: none;
  color: #fff6e6;
  background: rgba(234, 88, 12, 0.18);
  border-color: rgba(240, 193, 75, 0.45);
}
