/* ============================================
   Golden Spade Society — Main Stylesheet
   Premium Casino Aggregator for France
   ============================================ */

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  /* Light premium palette */
  --bg-primary: #FAFAF7;
  --bg-secondary: #F5F0E8;
  --bg-card: #FFFFFF;
  --bg-dark: #1a1a2e;
  --bg-dark-alt: #16213e;

  /* Gold & accent */
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;

  /* Neon accents */
  --neon-cyan: #00E5FF;
  --neon-amber: #FFB300;
  --neon-green: #39FF14;
  --neon-pink: #FF2D78;

  /* Text */
  --text-dark: #1a1a2e;
  --text-medium: #4a4a6a;
  --text-light: #8888aa;
  --text-white: #ffffff;

  /* Borders */
  --border-light: #E8E0CC;
  --border-gold: #D4AF37;

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(212, 175, 55, 0.12);
  --shadow-card: 0 8px 32px rgba(26, 26, 46, 0.10);
  --shadow-neon: 0 0 20px rgba(0, 229, 255, 0.35);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.45);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === Age Warning Banner (top) === */
.age-warning-bar {
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #fff;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 100;
}

.age-warning-bar .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  flex-shrink: 0;
}

.age-warning-bar .warn-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.age-warning-bar .warn-link:hover { color: var(--neon-cyan); }

/* === Cookie Banner === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9000;
  flex-wrap: wrap;
}

#cookie-banner p {
  color: #ccc;
  font-size: 14px;
  flex: 1;
  min-width: 240px;
}

#cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-cookie-decline {
  background: transparent;
  color: #aaa;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 1px solid #444;
  transition: var(--transition);
}

.btn-cookie-decline:hover { border-color: #888; color: #fff; }

/* === Age Verification Popup === */
#age-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 24, 0.92);
  backdrop-filter: blur(8px);
}

.age-modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 60px rgba(212,175,55,0.15);
  border: 2px solid var(--border-gold);
}

.age-modal-box .modal-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.age-modal-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.age-modal-box p {
  color: var(--text-medium);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-badge-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
  margin-bottom: 20px;
}

.age-modal-actions { display: flex; gap: 14px; flex-direction: column; }

.btn-age-yes {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid var(--gold);
  letter-spacing: 0.5px;
}

.btn-age-yes:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-age-no {
  background: transparent;
  color: var(--text-medium);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.btn-age-no:hover { border-color: #aaa; color: var(--text-dark); }

.age-disclaimer {
  font-size: 11px;
  color: #aaa;
  margin-top: 20px;
  line-height: 1.5;
}

/* === Navigation === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(26, 26, 46, 0.07);
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-dark);
  background: var(--bg-secondary);
}

.nav-links a.active {
  color: var(--gold-dark);
  font-weight: 600;
}

.nav-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--gold);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: #fff !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.hamburger:hover { background: var(--bg-secondary); }

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(255, 45, 120, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '♠';
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .neon-text {
  background: linear-gradient(90deg, var(--gold-light), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.hero-title .gold-text {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero visual - casino cards showcase */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-cards-stack {
  position: relative;
  width: 320px;
  height: 420px;
}

.hero-card-item {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.hero-card-item:nth-child(1) {
  width: 240px;
  top: 20px;
  left: 40px;
  transform: rotate(-8deg);
  background: rgba(255,255,255,0.04);
  animation: float1 4s ease-in-out infinite;
}

.hero-card-item:nth-child(2) {
  width: 260px;
  top: 80px;
  left: 20px;
  transform: rotate(-3deg);
  background: rgba(212, 175, 55, 0.08);
  animation: float2 5s ease-in-out infinite;
}

.hero-card-item:nth-child(3) {
  width: 280px;
  top: 140px;
  left: 10px;
  transform: rotate(2deg);
  background: rgba(0, 229, 255, 0.06);
  animation: float3 6s ease-in-out infinite;
  border-color: rgba(0,229,255,0.3);
}

@keyframes float1 { 0%,100%{transform:rotate(-8deg) translateY(0)} 50%{transform:rotate(-8deg) translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:rotate(-3deg) translateY(0)} 50%{transform:rotate(-3deg) translateY(-14px)} }
@keyframes float3 { 0%,100%{transform:rotate(2deg) translateY(0)} 50%{transform:rotate(2deg) translateY(-8px)} }

.hero-card-logo { margin-bottom: 12px; }
.hero-card-logo img { height: 36px; width: auto; }

.hero-card-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero-card-tag {
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-card-bonus {
  font-size: 18px;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0,229,255,0.6);
  margin-top: 8px;
}

/* Glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.5;
}

.glow-orb-1 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 0; right: -40px;
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite;
}

.glow-orb-2 {
  width: 150px; height: 150px;
  background: var(--neon-cyan);
  bottom: 60px; left: -20px;
  opacity: 0.12;
  animation: pulse 6s ease-in-out infinite 2s;
}

@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }

/* === Section Basics === */
section { padding: 80px 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(0,229,255,0.1));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title .highlight {
  position: relative;
  color: var(--gold-dark);
}

.section-title .neon-inline {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0,229,255,0.3);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Featured Casinos === */
.casinos-section {
  background: var(--bg-primary);
  position: relative;
}

.casinos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.casino-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.casino-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(0,229,255,0.04) 100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26,26,46,0.16), 0 0 40px rgba(212,175,55,0.15);
  border-color: var(--gold);
}

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

.casino-card-header {
  padding: 28px 28px 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.casino-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.2) 0%, transparent 60%);
}

.casino-logo-wrap {
  width: 110px;
  height: 52px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.casino-logo-wrap img {
  max-height: 36px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.casino-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars span {
  font-size: 13px;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212,175,55,0.7);
}

.rating-value {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.casino-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}

.badge-featured {
  color: var(--gold);
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.12);
}

.badge-new {
  color: var(--neon-cyan);
  border-color: rgba(0,229,255,0.5);
  background: rgba(0,229,255,0.1);
}

.badge-hot {
  color: var(--neon-pink);
  border-color: rgba(255,45,120,0.5);
  background: rgba(255,45,120,0.1);
}

.casino-card-body {
  padding: 24px 28px;
}

.casino-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.casino-tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.5;
}

.casino-bonus-box {
  background: linear-gradient(135deg, rgba(26,26,46,0.06) 0%, rgba(212,175,55,0.08) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
}

.bonus-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bonus-value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.bonus-value .bonus-highlight {
  color: var(--gold-dark);
}

.bonus-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 4px 10px;
}

.casino-card-footer {
  padding: 0 28px 28px;
}

.btn-casino {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.3);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-casino::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  transition: 0.5s;
}

.btn-casino:hover::before { left: 100%; }

.btn-casino:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.casino-disclaimer {
  font-size: 10px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* === Why Us Section === */
.why-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 40%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 60%, rgba(0,229,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.why-section .section-title { color: #fff; }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
}

.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === How It Works === */
.howto-section { background: var(--bg-secondary); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-gold), rgba(0,229,255,0.5), var(--border-gold));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* === Bonus Comparison Table === */
.comparison-section { background: var(--bg-primary); }

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.comparison-table th {
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  color: rgba(255,255,255,0.9);
  padding: 18px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-md) 0 0; }

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-dark);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td {
  background: rgba(212,175,55,0.04);
}

.comparison-table .casino-logo-cell img {
  height: 32px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.comparison-table .bonus-cell {
  font-weight: 700;
  color: var(--gold-dark);
}

.comparison-table .check { color: #22c55e; font-size: 16px; }
.comparison-table .cross { color: #ef4444; font-size: 16px; }

.btn-table-cta {
  display: inline-block;
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(212,175,55,0.3);
  transition: var(--transition);
}

.btn-table-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

/* === Trust & Reviews === */
.reviews-section { background: var(--bg-secondary); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars span { color: var(--gold); font-size: 14px; }

.review-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.reviewer-location {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* === Newsletter / CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Footer === */
.site-footer {
  background: #111122;
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand .footer-logo-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* === Regulators Footer Section === */
.regulators-strip {
  background: #0d0d1e;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 28px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.regulators-strip h5 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.regulators-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.regulator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  transition: var(--transition);
  text-decoration: none;
}

.regulator-item:hover { opacity: 1; }

.regulator-item img {
  height: 40px;
  width: auto;
  filter: brightness(0.9);
}

.regulator-item span {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

/* === Disclaimer Block (18+) === */
.disclaimer-block {
  background: #0a0a18;
  border-top: 2px solid rgba(212,175,55,0.3);
  padding: 32px 24px;
}

.disclaimer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.disclaimer-badge-18 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
}

.disclaimer-text a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

.disclaimer-text a:hover { color: var(--gold); }

/* === Footer Bottom === */
.footer-bottom {
  background: #080814;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 24px;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

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

/* === Inner Pages === */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
}

.content-section {
  padding: 64px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 36px;
  padding-top: 8px;
  border-top: 2px solid var(--border-light);
}

.content-section h2:first-child { border-top: none; margin-top: 0; }

.content-section p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-section ul {
  margin: 12px 0 20px 0;
  padding-left: 0;
}

.content-section ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-section ul li::before {
  content: '♠';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 5px;
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(26,26,46,0.08), rgba(212,175,55,0.1));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-detail-content p:first-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-detail-content p:last-child {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-primary);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* === Responsible Gaming Page === */
.rg-alert-box {
  background: linear-gradient(135deg, rgba(26,26,46,0.06), rgba(212,175,55,0.08));
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 36px;
  text-align: center;
}

.rg-alert-icon { font-size: 40px; margin-bottom: 12px; }

.rg-alert-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.rg-alert-box p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.rg-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.rg-tool-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.rg-tool-icon { font-size: 32px; margin-bottom: 14px; }

.rg-tool-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.rg-tool-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.help-contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.help-contact-card {
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.help-contact-card .help-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 4px;
}

.help-contact-card .help-phone {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.help-contact-card .help-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* === About Page === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin: 32px 0;
}

.team-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.3);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === Neon Glow Effects === */
.neon-glow {
  box-shadow: 0 0 12px rgba(0,229,255,0.4), 0 0 24px rgba(0,229,255,0.2);
}

.gold-glow {
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* Text neon styles */
.text-neon { color: var(--neon-cyan); text-shadow: 0 0 12px rgba(0,229,255,0.5); }
.text-gold { color: var(--gold); }
.text-gold-bright { color: var(--gold-light); text-shadow: 0 0 12px rgba(240,208,96,0.5); }

/* === Scroll to top === */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 400;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-gold);
}

/* === Breadcrumb === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb a { color: var(--text-medium); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border-light); }
.breadcrumb .current { color: var(--text-dark); font-weight: 500; }

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-visual { order: 2; min-height: 300px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .steps-grid::before { display: none; }
  .hero-content { padding: 60px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .age-modal-box { padding: 36px 24px; }
  .casino-cards-grid { grid-template-columns: 1fr; }
}

/* === Utility === */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
