/* ============================================
   Template A — Royal Prestige
   Gold/Amber Glassmorphism Dark Theme
   ============================================ */

/* ---------- 1. CSS Variables ---------- */
:root {
  --bg-body: #0f1419;
  --bg-card: #1a1f28;
  --bg-secondary: #1f2733;
  --bg-tertiary: #1a2030;

  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.35);

  --accent-2: #e67e22;
  --accent-2-hover: #d35400;
  --accent-2-light: #f0a04b;
  --accent-2-glow: rgba(230, 126, 34, 0.3);

  --gradient-accent: linear-gradient(135deg, #f59e0b, #e67e22);
  --gradient-accent-reverse: linear-gradient(135deg, #e67e22, #f59e0b);
  --gradient-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(230, 126, 34, 0.15));

  --text-primary: #e8e4dc;
  --text-muted: #9b978f;
  --text-heading: #f5f0e8;
  --text-link: #fbbf24;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-card: 16px;
  --radius-btn: 10px;
  --radius-sm: 8px;

  --shadow-card: 0 4px 24px rgba(245, 158, 11, 0.06), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(245, 158, 11, 0.14), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2), 0 0 60px rgba(230, 126, 34, 0.08);
  --shadow-btn: 0 4px 16px rgba(245, 158, 11, 0.25);

  --glass-bg: rgba(26, 31, 40, 0.6);
  --glass-border: rgba(245, 158, 11, 0.12);
  --glass-blur: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1200px;
  --container-padding: 24px;
}

/* ---------- 2. Base Styles ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-weight: 700; font-size: 2.75rem; }
h2 { font-weight: 700; font-size: 2rem; }
h3 { font-weight: 600; font-size: 1.5rem; }
h4 { font-weight: 600; font-size: 1.2rem; }

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

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(245, 158, 11, 0.4);
  color: #fff;
}

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

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 40px;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- 3. Top Bar ---------- */
.top-bar {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), rgba(230, 126, 34, 0.08), rgba(245, 158, 11, 0.1));
  border-bottom: 1px solid rgba(245, 158, 11, 0.08);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.top-bar a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

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

.top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--accent-light);
  font-size: 0.75rem;
}

/* ---------- 4. Header ---------- */
.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(15, 20, 25, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.08);
  padding: 0;
  transition: box-shadow var(--transition-base);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  -webkit-text-fill-color: #fff;
}

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

.nav-main a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

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

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

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

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ---------- 5. Hero Section ---------- */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(170deg, rgba(15, 20, 25, 0.94) 0%, rgba(26, 31, 40, 0.9) 40%, rgba(15, 20, 25, 0.96) 100%),
    url('https://plus.unsplash.com/premium_photo-1718826131603-2a5d9398c05a?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(230, 126, 34, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-section::after {
  content: '\2660 \2665 \2666 \2663';
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-size: 10rem;
  letter-spacing: 1rem;
  opacity: 0.025;
  color: var(--accent);
  pointer-events: none;
  z-index: 0;
}

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

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-centered h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 12px 24px;
  transition: var(--transition-base);
}

.stat-pill:hover {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

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

.stat-pill-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---------- 7. Casino Cards ---------- */
.cards-section {
  padding: 80px 0;
  position: relative;
}

.cards-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.cards-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(245, 158, 11, 0.06);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-card);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0.7;
  transition: opacity var(--transition-base);
  z-index: 2;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(245, 158, 11, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: none;
  z-index: 0;
}

.card:hover .card-shine {
  animation: cardShine 0.6s ease forwards;
}

@keyframes cardShine {
  to { left: 150%; }
}

.card-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}

.card-rank {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 36px;
  text-align: center;
}

.card-rank .top-badge {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
}

.card-info {
  flex: 1;
}

.card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.card-bonus {
  font-size: 0.92rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 8px;
}

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

.card-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(245, 158, 11, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.05);
  transition: var(--transition-fast);
}

.card-features span:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.12);
}

.card-features .feature-icon {
  font-size: 0.7rem;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 140px;
}

.score-badge {
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
  position: relative;
}

.score-badge::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.2;
  z-index: -1;
}

.score-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.button:active {
  transform: scale(0.97);
}

.button.primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
}

.button.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.button.primary:hover {
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.35), 0 0 40px rgba(245, 158, 11, 0.12);
  transform: translateY(-1px);
  color: #fff;
}

.button.primary:hover::before {
  opacity: 1;
}

.button.secondary {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid rgba(245, 158, 11, 0.3);
  padding: 10px 26px;
}

.button.secondary:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.12);
}

.button.sm {
  font-size: 0.82rem;
  padding: 8px 20px;
}

.button.lg {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ---------- 9. Feature Visual ---------- */
.feature-visual {
  padding: 80px 0;
  position: relative;
}

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

.feature-visual__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.1);
}

.feature-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}

.feature-visual__content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.feature-visual__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-visual__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-visual__list li {
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
}

.feature-visual__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- 10. Parallax ---------- */
.parallax-casino {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.parallax-casino--1 {
  background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1920&q=80');
}

.parallax-casino--2 {
  background-image: url('https://images.unsplash.com/photo-1566563255308-753861417000?w=1920&q=80');
}

.parallax-casino__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.8) 0%, rgba(15, 20, 25, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.parallax-casino__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.parallax-casino__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- 11. Trust Section ---------- */
.trust-section {
  padding: 80px 0;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(230, 126, 34, 0.03) 0%, transparent 50%);
}

.trust-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.trust-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.trust-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(245, 158, 11, 0.2);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---------- 12. Info Section ---------- */
.info-section {
  padding: 80px 0;
  position: relative;
  background:
    radial-gradient(ellipse at 10% 40%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 60%, rgba(230, 126, 34, 0.03) 0%, transparent 50%);
}

.info-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.info-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.info-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card--hero {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.info-card--hero .info-card-icon {
  flex-shrink: 0;
}

.info-card--hero .info-card-body h3 {
  margin-bottom: 10px;
}

.info-card--hero .info-card-body p {
  margin-bottom: 0;
}

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

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

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(245, 158, 11, 0.2);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
  transition: box-shadow var(--transition-base);
}

.info-card:hover .info-card-icon {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2), 0 0 50px rgba(245, 158, 11, 0.08);
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---------- 13. Methodology ---------- */
.methodology-section {
  padding: 80px 0;
  position: relative;
}

.methodology-section::before {
  content: '\2666';
  position: absolute;
  top: 60px;
  left: 4%;
  font-size: 8rem;
  opacity: 0.02;
  color: var(--accent);
  pointer-events: none;
}

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

.methodology-content h2 {
  margin-bottom: 16px;
}

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

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

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.06);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.criteria-item:hover {
  border-color: rgba(245, 158, 11, 0.15);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.06);
}

.criteria-weight {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.criteria-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.criteria-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.methodology-visual {
  position: relative;
}

.methodology-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-glow);
}

.methodology-card h3 {
  text-align: center;
  margin-bottom: 24px;
}

.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.score-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.score-bar-label {
  color: var(--text-primary);
  font-weight: 500;
}

.score-bar-value {
  color: var(--accent-light);
  font-weight: 700;
  font-family: var(--font-heading);
}

.score-bar-track {
  height: 8px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: width 1s ease;
  position: relative;
}

.score-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
  background-size: 200% 100%;
}

/* ---------- 14. FAQ ---------- */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-section::after {
  content: '\2663';
  position: absolute;
  bottom: 40px;
  right: 5%;
  font-size: 6rem;
  opacity: 0.02;
  color: var(--accent);
  pointer-events: none;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

details {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

details:hover {
  border-color: rgba(245, 158, 11, 0.15);
}

details[open] {
  border-color: rgba(245, 158, 11, 0.18);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.06);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
  list-style: none;
  transition: background var(--transition-fast);
  user-select: none;
}

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

summary:hover {
  background: rgba(245, 158, 11, 0.03);
}

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

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

details .faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeUp 0.3s ease;
}

/* ---------- 15. CTA Panel ---------- */
.cta-panel {
  background-image:
    linear-gradient(135deg, rgba(245, 158, 11, 0.92) 0%, rgba(230, 126, 34, 0.9) 100%),
    url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1200&q=80');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-card);
  padding: 56px 48px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.2);
}

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

.cta-panel h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-panel .button {
  background: #fff;
  color: var(--accent-hover);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-panel .button:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: var(--accent-hover);
}

/* ---------- 16. Footer ---------- */
.footer {
  background: var(--bg-secondary);
  background-image:
    radial-gradient(circle at 15% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(230, 126, 34, 0.02) 0%, transparent 40%);
  border-top: 1px solid rgba(245, 158, 11, 0.08);
  padding: 60px 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;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-column a:hover {
  color: var(--text-primary);
  padding-left: 6px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 158, 11, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-light);
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(245, 158, 11, 0.04);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(155, 151, 143, 0.6);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

/* ---------- 17. 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(26, 31, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245, 158, 11, 0.12);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-text {
  flex: 1;
  margin: unset;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.cookie-accept:hover {
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(245, 158, 11, 0.15);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.cookie-decline:hover {
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--text-primary);
  background: rgba(245, 158, 11, 0.05);
}
/* ---------- 18. Subpage Styles ---------- */
.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(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  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.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.1);
}

.page-content h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.page-content ul { list-style: none; }

.page-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.page-content ol {
  counter-reset: list-counter;
  list-style: none;
}

.page-content ol li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-content ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- 19. Decorative ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.12), rgba(230, 126, 34, 0.08), transparent);
  margin: 0;
  border: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}

.badge.gradient {
  background: var(--gradient-accent);
  color: #fff;
}

.hero-centered .badge.gradient {
  margin-bottom: 4px;
}

.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
}

.pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.3);
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ---------- 20. Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  border: 2px solid var(--bg-body);
}
::-webkit-scrollbar-thumb:hover { background: rgba(245, 158, 11, 0.5); }

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.3) var(--bg-body);
}

/* ---------- 21. Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-scroll { overflow: hidden; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- 22. Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero-section { padding: 60px 0 80px; }

  .hero-centered h1 { font-size: 2.8rem; }

  .hero-stats-strip {
    flex-wrap: wrap;
  }

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

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

  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-brand { grid-column: 1 / -1; }
}

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

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body { font-size: 15px; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .top-bar { display: none; }

  .header-inner { padding: 12px 0; }

  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 100svw);
    max-width: 100svw;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 999;
    border-left: 1px solid rgba(245, 158, 11, 0.08);
  }

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

  .nav-main a {
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(245, 158, 11, 0.05);
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

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

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

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

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

  .hero-section::after { display: none; }

  .hero-centered h1 { font-size: 2rem; }

  .hero-stats-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
  }

  .stat-pill { padding: 10px 20px; }

  .info-card--hero {
    flex-direction: column;
  }

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

  .card-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .card-rank {
    position: absolute;
    top: 16px;
    left: 20px;
  }

  .card-features { justify-content: center; }

  .card-right {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
    gap: 16px;
  }

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

  .info-card { padding: 24px; }

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

  .feature-visual__image img {
    min-height: 200px;
    max-height: 260px;
  }

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

  .parallax-casino__title { font-size: 1.5rem; }

  .methodology-section::before { display: none; }
  .faq-section::after { display: none; }

  .cta-panel {
    padding: 40px 24px;
    margin: 24px 0;
  }

  .cta-panel h2 { font-size: 1.5rem; }

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

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

  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

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

  .page-hero { padding: 80px 0 40px; }
  .page-hero h1 { font-size: 2rem; }
  .page-content h2 { margin-top: 36px; }

  .faq-list { gap: 8px; }
  summary { padding: 16px 20px; font-size: 0.92rem; }
  details .faq-answer { padding: 0 20px 16px; font-size: 0.88rem; }
}

/* ---------- Print ---------- */
@media print {
  .top-bar, .site-header, .cookie-banner, .cta-panel, .nav-overlay { display: none !important; }
  body { background: #fff; color: #000; }
  .card { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
}
