/* =====================================================
   GOLDEN SPADE SOCIETY - Premium Casino Aggregator
   Language: French | Domain: aussievenues
   ===================================================== */

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

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A8820A;
  --neon-gold: #FFD700;
  --neon-green: #39FF14;
  --neon-purple: #BF5FFF;
  --neon-blue: #00F5FF;
  --bg-dark: #050810;
  --bg-card: #0D1117;
  --bg-card-2: #111827;
  --bg-card-3: #0a0e1a;
  --text-primary: #FFFFFF;
  --text-secondary: #B8C2D4;
  --text-muted: #6B7280;
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-neon: rgba(57, 255, 20, 0.3);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
  --shadow-neon: 0 0 20px rgba(57, 255, 20, 0.5);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F0D060, #A8820A);
  --gradient-hero: linear-gradient(135deg, #050810 0%, #0D1117 50%, #060C1A 100%);
}

*, *::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-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.neon-text-gold {
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
}

.neon-text-green {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(57, 255, 20, 0.6), 0 0 40px rgba(57, 255, 20, 0.4);
}

.neon-text-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8), 0 0 20px rgba(0, 245, 255, 0.6), 0 0 40px rgba(0, 245, 255, 0.4);
}

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

/* ============ AGE WARNING BAR ============ */
.age-warning-bar {
  background: linear-gradient(90deg, #1a0a00, #2a1500, #1a0a00);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 100;
}

.age-warning-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ NAVIGATION ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 8, 16, 0.99);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
}

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

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-logo-text .line1 {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  font-size: 1rem;
}

.nav-logo-text .line2 {
  display: block;
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 6px var(--gold);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7) !important;
  color: #000 !important;
  text-shadow: none !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(57, 255, 20, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(191, 95, 255, 0.06) 0%, transparent 60%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5, 8, 16, 0.92) 0%,
    rgba(5, 8, 16, 0.85) 50%,
    rgba(5, 8, 16, 0.92) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  box-shadow: 0 0 6px var(--gold);
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .line-gold {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-title .line-white {
  display: block;
  color: var(--text-primary);
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  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 35px rgba(212, 175, 55, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-gold);
}

.hero-stat-item { text-align: center; }

.hero-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  font-family: 'Raleway', sans-serif;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Right - Floating Cards */
.hero-right {
  position: relative;
  height: 500px;
}

.hero-card-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.floating-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.card-main {
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-card1 6s ease-in-out infinite;
}

.card-bonus {
  width: 200px;
  top: 10%;
  right: 0;
  animation: float-card2 5s ease-in-out infinite 1s;
  border-color: rgba(57, 255, 20, 0.3);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.card-rating {
  width: 180px;
  bottom: 10%;
  left: 0;
  animation: float-card3 7s ease-in-out infinite 2s;
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

@keyframes float-card1 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
}

@keyframes float-card2 {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes float-card3 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.casino-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a2235, #263045);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}

.casino-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.casino-card-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.casino-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.casino-stars span {
  color: var(--gold);
  font-size: 0.85rem;
}

.bonus-highlight {
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.bonus-amount {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

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

.rating-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0% 92%, rgba(255,255,255,0.1) 92% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  position: relative;
}

.rating-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 5%;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 0;
  box-shadow: 0 0 10px var(--gold);
}

/* ============ FEATURED CASINOS ============ */
.casinos-section {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

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

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.casino-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.casino-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

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

.casino-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1520, #1a2235);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  z-index: 1;
}

/* Logo wrapper for white-bg logos */
.casino-card-image[style*="background:#fff"] {
  padding: 0;
}

.casino-card-image[style*="background:#fff"] img,
.casino-card-image[style*="background: #fff"] img {
  border-radius: 4px;
}

.casino-card-image img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.4s ease;
  border-radius: 6px;
}

.casino-card:hover .casino-card-image img {
  transform: scale(1.1);
}

.casino-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(57, 255, 20, 0.15);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--neon-green);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
  letter-spacing: 0.5px;
}

.casino-card-body {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.casino-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.casino-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

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

.stars-display i { color: var(--gold); font-size: 0.8rem; }

.rating-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

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

.feature-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--text-secondary);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.casino-bonus-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.bonus-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bonus-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.casino-card-actions {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-casino-primary {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-casino-primary:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  transform: translateY(-2px);
}

.btn-casino-secondary {
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.btn-casino-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

/* ============ HOW IT WORKS ============ */
.how-section {
  background: var(--bg-dark);
  position: relative;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.1), var(--gold));
  z-index: 0;
}

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

.step-number-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.step-item:hover .step-number-wrap {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ WHY CHOOSE US ============ */
.why-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px var(--gold);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ RESPONSIBLE GAMING BANNER ============ */
.resp-gaming-banner {
  background: linear-gradient(135deg, #0D1117, #111827);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.resp-gaming-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
}

.resp-gaming-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.resp-gaming-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--bg-card);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============ DISCLAIMER 18+ ============ */
.disclaimer-section {
  background: linear-gradient(135deg, #0a0c14, #0f1220);
  border-top: 2px solid rgba(212, 175, 55, 0.4);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
  padding: 40px 5%;
}

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

.disclaimer-badge-big {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  line-height: 1.1;
}

.disclaimer-content-wrap { flex: 1; }

.disclaimer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ FOOTER ============ */
.footer {
  background: #02040A;
  padding: 60px 5% 30px;
  border-top: 1px solid var(--border-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 300px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Regulators */
.footer-regulators {
  border-top: 1px solid var(--border-gold);
  padding-top: 40px;
  margin-bottom: 40px;
}

.regulators-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: center;
}

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

.regulator-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.regulator-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.regulator-item img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.85) grayscale(0.3);
  transition: filter 0.3s ease;
}

.regulator-item:hover img {
  filter: brightness(1) grayscale(0);
}

.regulator-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.3s ease;
}

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

/* ============ AGE POPUP ============ */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.age-popup-overlay.active {
  display: flex;
}

.age-popup {
  background: linear-gradient(135deg, #0D1117, #111827);
  border: 2px solid var(--border-gold);
  border-radius: 24px;
  padding: 50px 44px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

.popup-logo-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.popup-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  font-size: 1.4rem;
  font-weight: 900;
  color: #000;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.popup-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.popup-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.popup-actions {
  display: flex;
  gap: 12px;
}

.btn-popup-yes {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-popup-yes:hover {
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
  transform: translateY(-2px);
}

.btn-popup-no {
  flex: 1;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-popup-no:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-secondary);
}

.popup-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 12, 20, 0.97);
  border-top: 1px solid var(--border-gold);
  padding: 20px 5%;
  z-index: 9000;
  backdrop-filter: blur(20px);
  display: none;
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 1.5rem; flex-shrink: 0; }

.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  min-width: 200px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept:hover { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }

.btn-cookie-settings {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-settings:hover { color: var(--gold); border-color: var(--border-gold); }

/* ============ INNER PAGES ============ */
.page-hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  z-index: 1;
}

.page-hero .subtitle {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: var(--text-muted); }

.page-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 5%;
}

.page-content h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 36px 0 14px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  box-shadow: -3px 0 10px rgba(212, 175, 55, 0.3);
}

.page-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

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

.page-content li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 6px;
}

.page-content a { color: var(--gold); }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 5%;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}

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

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

/* ============ RESPONSIBLE GAMING PAGE ============ */
.resp-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.resp-tool-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.resp-tool-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.resp-tool-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.resp-tool-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.resp-tool-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.help-orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.help-org-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 12px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-org-btn img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.help-org-btn span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.help-org-btn:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============ MEDIA QUERIES ============ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.98);
    padding: 20px 5%;
    border-bottom: 1px solid var(--border-gold);
    z-index: 998;
    gap: 20px;
  }
  .section { padding: 60px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .resp-gaming-banner { grid-template-columns: 1fr; padding: 28px; }
  .disclaimer-inner { flex-direction: column; align-items: center; text-align: center; }
  .casino-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-settings { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  .popup-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .nav-logo-text .line1 { font-size: 0.85rem; }
}

/* ============ ANIMATIONS ============ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
}

.glow-animate { animation: glow-pulse 2.5s ease infinite; }

/* Fade In on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
