@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  --bg-1: #0c1222;
  --bg-2: #111827;
  --surface: #1e293b;
  --surface-2: #263449;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --green: #16a34a;
  --green-bright: #22c55e;
  --amber: #eab308;
  --danger: #ef4444;
  --border: rgba(148, 163, 184, 0.18);
  --logo-bg: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 45px rgba(3, 7, 18, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(34, 197, 94, 0.18), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(234, 179, 8, 0.1), transparent 40%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  line-height: 1.55;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(12, 18, 34, 0.93);
  border-color: rgba(34, 197, 94, 0.5);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-mark {
  color: var(--green-bright);
  font-size: 1.2em;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.92rem;
  color: #dbe7f8;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-bright);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.85);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.hero {
  padding: 62px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy {
  background:
    repeating-linear-gradient(-25deg, rgba(34, 197, 94, 0.07) 0 10px, transparent 10px 24px),
    linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.96));
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-bright);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.16);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  text-transform: uppercase;
}

.hero-copy p {
  margin: 14px 0 0;
  color: #cbd5e1;
  max-width: 64ch;
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.87rem;
  color: #d1fae5;
}

.hero-stats {
  background: linear-gradient(160deg, #172033, #101827);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 16px;
}

.hero-stats h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 12px;
}

.stat-card strong {
  display: block;
  color: #dcfce7;
  font-size: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.stat-card span {
  font-size: 0.84rem;
  color: var(--muted);
}

.section {
  padding: 42px 0;
}

.section h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-intro {
  color: #cbd5e1;
  max-width: 75ch;
  margin-bottom: 20px;
}

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

.promo-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  background: linear-gradient(140deg, #1a2438, #101828);
  padding: 18px;
  box-shadow: var(--shadow);
}

.promo-label {
  display: inline-block;
  background: rgba(234, 179, 8, 0.16);
  color: #fde68a;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.promo-card h3 {
  margin-top: 12px;
  font-size: 1.55rem;
}

.promo-offer {
  margin-top: 8px;
  color: #fef08a;
  font-weight: 700;
  font-size: 1.02rem;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.casino-card {
  background: linear-gradient(145deg, var(--surface), #172132);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-bright);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-top {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.rank {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.45);
  display: grid;
  place-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.casino-logo-container {
  width: 120px;
  height: 80px;
  min-width: 120px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--logo-bg);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.casino-logo-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.card-main h3 {
  font-size: 1.75rem;
}

.meta-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.93rem;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
}

.badge {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.badge.hot {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.badge.choice {
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
}

.badge.bonus {
  background: rgba(234, 179, 8, 0.18);
  color: #fde68a;
}

.badge.new {
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
}

.offer-box {
  margin-top: 14px;
  background: rgba(22, 163, 74, 0.18);
  border: 1px dashed rgba(34, 197, 94, 0.5);
  border-radius: 12px;
  padding: 12px;
}

.offer-box strong {
  display: block;
  font-size: 1.06rem;
  color: #dcfce7;
}

.offer-box span {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.pill-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  padding: 5px 10px;
  color: #dbeafe;
  font-size: 0.8rem;
}

.info-row {
  margin-top: 12px;
  color: #bfdbfe;
  font-size: 0.89rem;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #f8fafc;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 190px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(34, 197, 94, 0.55);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.34);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.card-footer {
  margin-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.content-card {
  background: linear-gradient(145deg, #1a2539, #101826);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.content-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.content-card p {
  color: #cbd5e1;
  margin: 0 0 12px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.8);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #eff6ff;
  padding: 16px;
  font-size: 1.02rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: #cbd5e1;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(8, 12, 24, 0.92);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.footer h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.footer p,
.footer li,
.footer a {
  color: #cbd5e1;
  font-size: 0.92rem;
}

.footer ul {
  margin: 0;
  padding-left: 18px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #9ca3af;
  font-size: 0.87rem;
}

.legal-main {
  padding: 38px 0 52px;
}

.legal-wrap {
  background: linear-gradient(145deg, #172132, #0f1728);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.legal-wrap h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 10px;
}

.legal-wrap h2 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.legal-wrap p,
.legal-wrap li {
  color: #d2dae7;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-box {
  background: rgba(30, 41, 59, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 18px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  width: min(560px, 100%);
  background: linear-gradient(150deg, #1b2638, #101828);
  border-radius: 16px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-bright);
  padding: 24px;
  box-shadow: var(--shadow);
}

.modal h3 {
  font-size: 1.6rem;
}

.modal p {
  color: #cbd5e1;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(10, 14, 26, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-top: 3px solid var(--green);
  border-radius: 14px;
  padding: 14px;
  display: none;
  z-index: 110;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  color: #d1d5db;
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  z-index: 999;
  background: #fff;
  color: #111;
  padding: 8px 10px;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .card-top {
    grid-template-columns: auto auto 1fr;
  }

  .card-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 6px;
  }

  .criteria-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(9, 15, 27, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 6px 4vw 14px;
  }

  .main-nav a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 34px;
  }

  .hero-copy,
  .hero-stats,
  .casino-card,
  .content-card,
  .legal-wrap {
    padding: 16px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .card-top {
    grid-template-columns: 1fr;
  }

  .rank {
    width: 34px;
    height: 34px;
  }

  .cta-btn {
    width: 100%;
    min-width: unset;
  }
}
