/* ============================================
   Template C — Sharp Geometric
   Electric Blue + Hot Orange / Dark Navy
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --bg-body: #060b18;
  --bg-card: #0d1424;
  --bg-card-alt: #111b30;
  --bg-section: #0a1020;

  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-light: #60a5fa;
  --accent-2: #f97316;
  --accent-2-light: #fb923c;

  --gradient-main: linear-gradient(135deg, #3b82f6, #6366f1);
  --gradient-warm: linear-gradient(135deg, #f97316, #ef4444);
  --gradient-mix: linear-gradient(135deg, #3b82f6, #f97316);

  --text-primary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #f1f5f9;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .3);
  --shadow-md: 0 4px 24px rgba(59, 130, 246, .08), 0 2px 8px rgba(0, 0, 0, .3);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, .15), 0 0 60px rgba(99, 102, 241, .06);

  --transition: .3s ease;
  --container: 1200px;
  --gap: 24px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: .5em;
}

h1 {
  font-weight: 800;
  font-size: 2.8rem;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
}

h3 {
  font-weight: 600;
  font-size: 1.35rem;
}

p {
  margin-bottom: 1em;
  color: var(--text-muted);
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #93bbfd;
}

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

ul {
  list-style: none;
}

::selection {
  background: rgba(59, 130, 246, .4);
  color: #fff;
}

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

/* ---------- Age Banner ---------- */
.age-banner {
  background: linear-gradient(90deg, rgba(59, 130, 246, .12), rgba(249, 115, 22, .08));
  border-bottom: 1px solid rgba(59, 130, 246, .1);
  padding: 8px 0;
  font-size: .78rem;
  color: var(--text-muted);
}

.age-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.age-banner__left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.age-banner a {
  color: var(--text-muted);
  font-size: .78rem;
}

.age-banner a:hover {
  color: var(--accent-light);
}

.age-badge {
  background: var(--gradient-main);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .72rem;
}

/* ---------- Header ---------- */
.header {
  position: relative;
  z-index: 1000;
  background: rgba(6, 11, 24, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 130, 246, .08);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gradient-main);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--text-heading);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(59, 130, 246, .15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(249, 115, 22, .1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(99, 102, 241, .08) 0%, transparent 50%),
    linear-gradient(rgba(6, 11, 24, .78), rgba(6, 11, 24, .85)),
    url('https://plus.unsplash.com/premium_photo-1718826131603-2a5d9398c05a?w=1920&q=80');
  background-size: auto, auto, auto, cover, cover;
  background-position: center, center, center, center, center;
  background-attachment: fixed;
  animation: heroBgShift 10s ease-in-out infinite alternate;
}

/* Hero grid overlay */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
}

/* Hero pulsing glow */
.hero__bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, .18) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    opacity: .4;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Floating geometric shapes */
.hero__shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .08;
}

.hero__shape--1 {
  top: 10%;
  right: 12%;
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent);
  transform: rotate(30deg);
  animation: floatShape1 8s ease-in-out infinite;
}

.hero__shape--2 {
  bottom: 18%;
  left: 8%;
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 60px solid var(--accent-2);
  animation: floatShape2 10s ease-in-out infinite;
}

.hero__shape--3 {
  top: 55%;
  right: 5%;
  width: 60px;
  height: 60px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: floatShape3 12s ease-in-out infinite;
}

.hero__shape--4 {
  top: 25%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-2);
  border-radius: 50%;
  animation: floatShape1 9s ease-in-out infinite reverse;
}

.hero__shape--5 {
  bottom: 10%;
  right: 30%;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 44px solid var(--accent);
  animation: floatShape2 7s ease-in-out infinite reverse;
}

@keyframes floatShape1 {

  0%,
  100% {
    transform: rotate(30deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(-30px);
  }
}

@keyframes floatShape2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}

@keyframes floatShape3 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-25px) rotate(30deg) scale(1.1);
  }
}

@keyframes heroBgShift {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }

  100% {
    opacity: 1;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .2);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__content h1 {
  margin-bottom: 20px;
}

.hero__content h1 span {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__content>p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual — Stacked Cards */
.hero__visual {
  position: relative;
}

.hero__card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .1);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero__mini-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-main);
}

.hero__mini-card--1::before {
  background: var(--gradient-warm);
}

.hero__mini-card:hover {
  border-color: rgba(59, 130, 246, .25);
  transform: translateX(6px);
}

.hero__mini-rank {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 28px;
}

.hero__mini-name {
  flex: 1;
  font-weight: 600;
  color: var(--text-heading);
  font-size: .95rem;
}

.hero__mini-score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stats {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.hero__stat {
  text-align: center;
  padding: 14px 20px;
  background: rgba(59, 130, 246, .06);
  border: 1px solid rgba(59, 130, 246, .1);
  border-radius: var(--radius);
  flex: 1;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(.97);
}

.btn--primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, .3);
}

.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(59, 130, 246, .4);
  transform: translateY(-2px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid rgba(59, 130, 246, .3);
  padding: 11px 26px;
}

.btn--outline:hover {
  background: rgba(59, 130, 246, .08);
  border-color: rgba(59, 130, 246, .5);
}

.btn--white {
  background: #fff;
  color: var(--accent-hover);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.btn--white:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
  color: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(59, 130, 246, .15);
  padding: 11px 20px;
}

.btn--ghost:hover {
  border-color: rgba(59, 130, 246, .35);
  color: var(--text-primary);
}

.btn--sm {
  font-size: .82rem;
  padding: 9px 20px;
}

/* ---------- Section Helpers ---------- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

/* ---------- Casino Rows ---------- */
.casinos {
  padding: 80px 0;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .06);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity var(--transition);
}

.casino-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, .15);
}

.casino-row:hover::before {
  opacity: 1;
}

.casino-row__rank span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.casino-row__info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.casino-row__bonus {
  font-size: .88rem;
  color: var(--accent-2-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.casino-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.casino-row__tags span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .72rem;
  color: var(--text-muted);
  background: rgba(59, 130, 246, .06);
  border: 1px solid rgba(59, 130, 246, .06);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.casino-row__score {
  text-align: center;
}

.score-circle {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  box-shadow: 0 0 20px rgba(59, 130, 246, .3);
}

.casino-row__score span {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.disclaimer-sm {
  text-align: center;
  margin-top: 24px;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ---------- How It Works / Steps ---------- */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-section);
  border-top: 1px solid rgba(59, 130, 246, .06);
  border-bottom: 1px solid rgba(59, 130, 246, .06);
}

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

.step {
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  font-size: .9rem;
  margin-bottom: 0;
}

/* ---------- Info Blocks ---------- */
.info-section {
  padding: 80px 0;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, .15);
}

.info-block--wide {
  border-left: 3px solid var(--accent);
}

.info-block__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.info-block__content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-block__content p {
  font-size: .9rem;
  margin-bottom: 0;
}

/* ---------- Banner CTA ---------- */
.banner-cta {
  padding: 60px 0;
}

.banner-cta__inner {
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(59, 130, 246, .2);
}

.banner-cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 60%);
  pointer-events: none;
}

.banner-cta__text h2 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.banner-cta__text p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 0;
  font-size: .95rem;
}

/* ---------- Methodology ---------- */
.methodology {
  padding: 80px 0;
}

.methodology__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.methodology__text>p {
  margin-bottom: 28px;
}

.criteria {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.criteria__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .06);
  border-radius: var(--radius);
}

.criteria__item:hover {
  border-color: rgba(59, 130, 246, .15);
}

.criteria__pct {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 48px;
}

.criteria__item h4 {
  font-size: .95rem;
  margin-bottom: 4px;
}

.criteria__item p {
  font-size: .82rem;
  margin-bottom: 0;
}

.methodology__card {
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .1);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-glow);
}

.methodology__card h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bar-item__head {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  margin-bottom: 6px;
}

.bar-item__head span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.bar-item__head span:last-child {
  color: var(--accent-light);
  font-weight: 700;
  font-family: var(--font-heading);
}

.bar-track {
  height: 8px;
  background: rgba(59, 130, 246, .08);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 10px;
}

.small-text {
  font-size: .85rem !important;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.mt-24 {
  margin-top: 24px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

details {
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

details:hover {
  border-color: rgba(59, 130, 246, .15);
}

details[open] {
  border-color: rgba(59, 130, 246, .2);
  box-shadow: 0 4px 16px rgba(59, 130, 246, .06);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-heading);
  list-style: none;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
  content: '';
}

summary::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

details[open] summary::after {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

/* ---------- Responsible Gaming CTA ---------- */
.rg-cta {
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(249, 115, 22, .15);
}

.rg-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 60%);
  pointer-events: none;
}

.rg-cta h2 {
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.rg-cta p {
  color: rgba(255, 255, 255, .9);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.rg-cta .btn {
  background: #fff;
  color: #ea580c;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.rg-cta .btn:hover {
  background: rgba(255, 255, 255, .9);
  color: #ea580c;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(59, 130, 246, .08);
  padding: 56px 0 0;
  margin-top: 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: .85rem;
  margin-bottom: 16px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(59, 130, 246, .06);
  border: 1px solid rgba(59, 130, 246, .08);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer__col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col a {
  color: var(--text-muted);
  font-size: .85rem;
}

.footer__col a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(59, 130, 246, .06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  font-size: .78rem;
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--accent-light);
}

.footer__disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(59, 130, 246, .04);
}

.footer__disclaimer p {
  font-size: .72rem;
  color: rgba(148, 163, 184, .5);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100svw;
  box-sizing: border-box;
  overflow-x: hidden;
  z-index: 998;
  background: rgba(13, 20, 36, .96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(59, 130, 246, .12);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .3);
}

.cookie-banner.visible,
.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner.hiding {
  transform: translateY(100%);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__inner p {
  flex: 1;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.cookie-banner__inner a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Subpages ---------- */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, .07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.3rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-content {
  padding: 40px 0 80px;
}

.page-content .content-block {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(59, 130, 246, .1);
}

.page-content h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.page-content p {
  font-size: .92rem;
  line-height: 1.8;
}

.page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: .92rem;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-main);
}

/* ---------- Stats Counter ---------- */
.stats-counter {
  padding: 64px 0;
  position: relative;
  background: var(--bg-section);
  overflow: hidden;
}

.stats-counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(59, 130, 246, .06) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.stats-counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, .08);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, .15), 0 0 60px rgba(59, 130, 246, .06);
  border-color: rgba(59, 130, 246, .25);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-mix);
}

.stat-box__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-box__label {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.stat-box__bar {
  height: 4px;
  background: rgba(59, 130, 246, .08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.stat-box__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  background: var(--gradient-mix);
  border-radius: 4px;
  animation: barSlide 2.5s ease-in-out infinite;
}

@keyframes barSlide {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* ---------- Diagonal Section Dividers ---------- */
.how-it-works {
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: -20px;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.stats-counter {
  clip-path: polygon(0 0, 100% 16px, 100% 100%, 0 calc(100% - 16px));
  padding-top: 80px;
  padding-bottom: 80px;
}

.banner-cta {
  position: relative;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-body);
  clip-path: polygon(0 0, 100% 30px, 100% 60px, 0 30px);
  pointer-events: none;
}

.faq {
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .03) 0%, rgba(249, 115, 22, .03) 100%);
  clip-path: polygon(0 0, 100% 24px, 100% 48px, 0 24px);
  pointer-events: none;
}

/* ---------- Neon Glow Card Effects ---------- */
.casino-row:hover {
  box-shadow:
    0 0 15px rgba(59, 130, 246, .15),
    0 0 30px rgba(59, 130, 246, .08),
    0 4px 24px rgba(0, 0, 0, .3);
  border-color: rgba(59, 130, 246, .3);
}

.casino-row::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity .4s ease;
  background: linear-gradient(135deg, rgba(59, 130, 246, .03) 0%, rgba(249, 115, 22, .02) 100%);
  pointer-events: none;
}

.casino-row:hover::after {
  opacity: 1;
}

.score-circle {
  transition: box-shadow .4s ease;
}

.casino-row:hover .score-circle {
  box-shadow:
    0 0 20px rgba(59, 130, 246, .4),
    0 0 40px rgba(59, 130, 246, .15),
    0 0 60px rgba(99, 102, 241, .08);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, .4), 0 0 40px rgba(59, 130, 246, .15);
  }

  50% {
    box-shadow: 0 0 25px rgba(59, 130, 246, .5), 0 0 50px rgba(59, 130, 246, .2), 0 0 80px rgba(99, 102, 241, .1);
  }
}

/* ---------- Geometric Pattern Overlays ---------- */
.info-section {
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(59, 130, 246, .04) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.info-section>.container {
  position: relative;
  z-index: 1;
}

.methodology {
  position: relative;
}

.methodology::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, .02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.methodology>.container {
  position: relative;
  z-index: 1;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, .3);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, .5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, .3) var(--bg-body);
}

/* ---------- Parallax Block ---------- */
.parallax-block {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1742666978255-007e0fcfc0c5?w=1920&q=80') center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 11, 24, .82), rgba(13, 20, 36, .88));
  z-index: 0;
}

.parallax-block .container {
  position: relative;
  z-index: 1;
}

.parallax-block__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.parallax-block__stat {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.2rem;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.parallax-block__content h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 14px;
}

.parallax-block__content p {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ---------- Choose Section (Image + Text) ---------- */
.choose-section {
  padding: 80px 0;
}

.choose-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.choose-section__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, .1);
  box-shadow: var(--shadow-md);
}

.choose-section__text .section-tag {
  margin-bottom: 12px;
}

.choose-section__text h2 {
  margin-bottom: 16px;
}

.choose-section__text>p {
  margin-bottom: 24px;
}

.choose-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.choose-section__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.choose-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
}

/* ---------- Methodology Background Image ---------- */
.methodology::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542145272-597f274b38ab?w=1920&q=80') center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Banner CTA Background Image ---------- */
.banner-cta__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1604028297236-42130c7dcc3a?w=1920&q=80') center / cover no-repeat;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.banner-cta__text {
  position: relative;
  z-index: 1;
}

.banner-cta__inner>.btn {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 80px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .methodology__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .banner-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }

  .casino-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .casino-row__score {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .casino-row__score .score-circle {
    margin: 0;
  }

  .casino-row__action {
    grid-column: 1 / -1;
  }

  .stats-counter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works {
    clip-path: polygon(0 12px, 100% 0, 100% calc(100% - 12px), 0 100%);
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .stats-counter {
    clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 calc(100% - 10px));
  }

  .choose-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --gap: 16px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .age-banner {
    display: none;
  }

  .header .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 100svw);
    max-width: 100svw;
    height: 100vh;
    background: var(--bg-card-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 30px rgba(0, 0, 0, .5);
    z-index: 999;
    border-left: 1px solid rgba(59, 130, 246, .08);
  }

  .nav.open,
  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(59, 130, 246, .05);
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero__content h1 {
    font-size: 1.85rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 10px;
  }

  .casino-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .casino-row__rank {
    display: none;
  }

  .casino-row__tags {
    justify-content: center;
  }

  .casino-row__score {
    justify-content: center;
    text-align: center;
  }

  .casino-row__score-label {
    display: none;
  }

  .info-block {
    grid-template-columns: 1fr;
  }

  .info-block__num {
    font-size: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .rg-cta {
    padding: 36px 20px;
  }

  .rg-cta h2 {
    font-size: 1.4rem;
  }

  .stats-counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-box__number {
    font-size: 2.2rem;
  }

  .stat-box {
    padding: 28px 18px 22px;
  }

  .hero__shape {
    display: none;
  }

  .how-it-works {
    clip-path: none;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .stats-counter {
    clip-path: none;
  }

  .page-hero {
    padding: 80px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .parallax-block {
    background-attachment: scroll;
    height: 300px;
  }

  .parallax-block__stat {
    font-size: 2.4rem;
  }

  .parallax-block__content h2 {
    font-size: 1.3rem;
  }

  .choose-section {
    padding: 60px 0;
  }

  .choose-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .choose-section__image img {
    height: 260px;
  }

  .hero__bg {
    background-attachment: scroll;
  }
}

@media print {

  .age-banner,
  .header,
  .cookie-banner,
  .banner-cta,
  .rg-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* === SUBPAGE COMPAT (alt class names) === */
.logo-icon {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.nav-list,
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a,
.nav-links a {
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .25s;
  text-decoration: none;
}

.nav-list a:hover,
.nav-links a:hover,
.nav-list a.active,
.nav-links a.active {
  color: var(--accent);
  background: rgba(59, 130, 246, .06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 14px;
}

.footer-col p {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  transition: color .25s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo .logo-icon {
  color: var(--accent);
}

.footer-logo .logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 6px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-badges a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all .25s;
  text-decoration: none;
}

.footer-badges a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: .88rem;
}

.page-content th,
.page-content td {
  padding: 10px 14px;
  border: 1px solid rgba(59, 130, 246, .12);
  text-align: left;
}

.page-content th {
  background: rgba(59, 130, 246, .05);
  font-weight: 600;
  color: var(--text);
}

.page-content td {
  color: var(--text-muted);
}

.page-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-content ol li {
  position: relative;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100svw;
  box-sizing: border-box;
  overflow-x: hidden;
  z-index: 998;
  background: var(--bg-card, #0e1628);
  border-top: 1px solid rgba(59, 130, 246, .1);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform .5s ease;
}

#cookieBanner.visible {
  transform: translateY(0);
}

#cookieBanner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#cookieBanner p {
  font-size: .85rem;
  color: var(--text-muted, rgba(255, 255, 255, .6));
}

.cookie-text {
  margin: unset;
}

#cookieBanner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons,
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.btn-primary:hover {
  background: var(--accent-hover, #2563eb);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: all .25s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list,
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 100svw);
    max-width: 100svw;
    background: var(--bg-card, #0e1628);
    flex-direction: column;
    padding: 80px 20px 20px;
    transform: translateX(100%);
    transition: transform .35s;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .3);
    z-index: 999;
    align-items: stretch;
  }

  .nav-list.open,
  .nav-links.open {
    transform: translateX(0);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #cookieBanner .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- No Scroll (when sidebar is open) ---------- */
body.no-scroll {
  overflow: hidden;
}
