/* ============================================================
   ScarletCardClub — Main Stylesheet
   Premium Casino Aggregator | Croatia
   ============================================================ */

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

/* === CSS Variables === */
:root {
  --neon-red:    #FF1744;
  --neon-pink:   #FF1493;
  --neon-gold:   #FFD700;
  --neon-purple: #BF5AF2;
  --bg-dark:     #08080f;
  --bg-card:     #0f0f1e;
  --bg-card2:    #13132a;
  --bg-card3:    #1a1a30;
  --border-glow: rgba(255, 23, 68, 0.4);
  --text-primary: #F0E6FF;
  --text-muted:   #8888aa;
  --text-bright:  #ffffff;
  --transition:   0.3s ease;
  --radius:       12px;
  --shadow-neon:  0 0 20px rgba(255, 23, 68, 0.5), 0 0 60px rgba(255, 23, 68, 0.2);
  --shadow-gold:  0 0 20px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.15);
  --shadow-purple:0 0 20px rgba(191, 90, 242, 0.5), 0 0 60px rgba(191, 90, 242, 0.15);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ============================================================
   AGE VERIFICATION POPUP
   ============================================================ */
#age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.age-popup__inner {
  background: var(--bg-card);
  border: 2px solid var(--neon-red);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-neon), inset 0 0 60px rgba(255, 23, 68, 0.05);
  animation: popupIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.8) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.age-popup__badge {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px; font-weight: 700; color: #fff;
  box-shadow: var(--shadow-neon);
}
.age-popup__logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--neon-gold);
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}
.age-popup__title {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text-bright); margin-bottom: 12px;
}
.age-popup__text {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 32px; line-height: 1.7;
}
.age-popup__buttons { display: flex; gap: 16px; justify-content: center; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--neon-red), #c0392b);
  color: #fff; border: none; padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  font-family: 'Exo 2', sans-serif;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4);
}
.btn-age-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.6);
}
.btn-age-no {
  background: transparent;
  color: var(--text-muted); border: 1px solid #333;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; cursor: pointer; transition: all var(--transition);
  font-family: 'Exo 2', sans-serif;
}
.btn-age-no:hover { border-color: #666; color: #ccc; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(13, 13, 28, 0.97);
  border-top: 1px solid rgba(255, 23, 68, 0.3);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; z-index: 999;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cookie-text {
  flex: 1; font-size: 13px; color: var(--text-muted); min-width: 200px;
}
.cookie-text a { color: var(--neon-pink); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--neon-red); color: #fff;
  border: none; padding: 8px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-accept:hover { background: #ff4766; }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted);
  border: 1px solid #333; padding: 8px 16px;
  border-radius: 6px; font-size: 13px; cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: #555; color: #aaa; }

/* ============================================================
   TOP WARNING BAR
   ============================================================ */
.top-warning {
  background: linear-gradient(90deg, #1a0008, #200010, #1a0008);
  border-bottom: 1px solid rgba(255, 23, 68, 0.2);
  padding: 8px 24px;
  text-align: center; font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.5px;
}
.top-warning span { color: var(--neon-red); font-weight: 700; }
.top-warning a { color: var(--neon-pink); }
.top-warning a:hover { text-decoration: underline; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(8, 8, 15, 0.95);
  border-bottom: 1px solid rgba(255, 23, 68, 0.15);
  backdrop-filter: blur(20px);
  padding: 0 24px;
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 24px;
}
.site-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px; font-weight: 700;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-text .logo-scarlet { color: var(--neon-red); text-shadow: 0 0 15px rgba(255, 23, 68, 0.7); font-size: 20px;}
.logo-text .logo-card    { color: var(--neon-gold); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-size: 20px;}
.logo-text .logo-club    { color: var(--text-muted); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin-top: 2px;}

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-bright);
  background: rgba(255, 23, 68, 0.1);
}

.header-cta {
  background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
  color: #fff; padding: 10px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.35);
  transition: all var(--transition);
  font-family: 'Exo 2', sans-serif;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(255, 23, 68, 0.55);
  color: #fff;
}

.burger-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 1px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 23, 68, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(191, 90, 242, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
              var(--bg-dark);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,23,68,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,23,68,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-particle {
  position: absolute; border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.6;
}
@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.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-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 23, 68, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; color: var(--neon-red); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '♠'; font-size: 14px; }
.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800; line-height: 1.1;
  color: var(--text-bright); margin-bottom: 20px;
}
.hero-title .neon-word {
  color: var(--neon-red);
  text-shadow: 0 0 30px rgba(255, 23, 68, 0.8), 0 0 60px rgba(255, 23, 68, 0.4);
  display: inline-block;
}
.hero-title .gold-word {
  color: var(--neon-gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.hero-subtitle {
  font-size: 16px; color: var(--text-muted);
  max-width: 480px; margin-bottom: 36px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: linear-gradient(135deg, var(--neon-red), #c0392b);
  color: #fff; padding: 16px 32px; border-radius: 10px;
  font-family: 'Exo 2', sans-serif; font-size: 15px; font-weight: 700;
  box-shadow: 0 0 30px rgba(255, 23, 68, 0.45);
  transition: all var(--transition); display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 23, 68, 0.65);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary); padding: 16px 32px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Exo 2', sans-serif; font-size: 15px; font-weight: 600;
  transition: all var(--transition); display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--neon-red);
  background: rgba(255, 23, 68, 0.08);
  color: #fff;
}
.hero-stats {
  display: flex; gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--neon-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Right — Cards visual */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  min-height: 420px;
}
.hero-card {
  position: absolute;
  width: 200px; height: 280px;
  background: var(--bg-card2);
  border-radius: 16px;
  border: 1px solid rgba(255, 23, 68, 0.3);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: all var(--transition);
}
.hero-card:nth-child(1) { transform: rotate(-12deg) translate(-80px, 10px); }
.hero-card:nth-child(2) { transform: rotate(-4deg) translate(-10px, -20px); z-index: 2; }
.hero-card:nth-child(3) { transform: rotate(8deg) translate(70px, 5px); }
.hero-card:hover { transform: scale(1.05) rotate(0deg) translateY(-10px) !important; z-index: 10; box-shadow: var(--shadow-neon); }
.card-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--bg-card3), var(--bg-card));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 20px;
}
.card-logo-wrap {
  width: 100%; display: flex; justify-content: center; align-items: center;
  background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px; margin-bottom: 8px;
  min-height: 70px;
}
.card-logo-wrap img { max-height: 44px; width: auto; filter: brightness(1.1); }
.card-name { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 14px; color: var(--text-bright); }
.card-tag {
  font-size: 10px; background: rgba(255, 23, 68, 0.2);
  color: var(--neon-red); padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(255, 23, 68, 0.3);
}
.card-stars { color: var(--neon-gold); font-size: 12px; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: 80px 24px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--neon-red); margin-bottom: 12px;
}
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--text-bright);
  margin-bottom: 16px; line-height: 1.2;
}
.section-title .neon-text {
  color: var(--neon-gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 23, 68, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.casino-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,23,68,0.05), transparent);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.casino-card:hover {
  border-color: rgba(255, 23, 68, 0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon);
}
.casino-card:hover::before { opacity: 1; }

.casino-card--featured {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(160deg, rgba(255, 215, 0, 0.04), var(--bg-card));
}
.casino-card--featured:hover {
  border-color: var(--neon-gold);
  box-shadow: var(--shadow-gold);
}
.featured-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--neon-gold), #f39c12);
  color: #111; font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 1px;
}

.casino-card-header {
  padding: 24px 24px 16px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.casino-logo-box {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.casino-logo-box img { max-width: 52px; max-height: 52px; width: auto; height: auto; }
.casino-meta { flex: 1; }
.casino-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text-bright); margin-bottom: 4px;
}
.casino-stars { color: var(--neon-gold); font-size: 13px; margin-bottom: 4px; }
.casino-license { font-size: 11px; color: var(--text-muted); }
.casino-license span { color: #4CAF50; }

.casino-card-body { padding: 16px 24px; }
.casino-bonus {
  background: linear-gradient(135deg, rgba(255,23,68,0.15), rgba(255,23,68,0.05));
  border: 1px solid rgba(255, 23, 68, 0.25);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 16px;
}
.bonus-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.bonus-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--neon-red);
  text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}
.bonus-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.casino-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.feature-tag {
  font-size: 11px; padding: 4px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}

.casino-card-footer {
  padding: 16px 24px 24px;
  display: flex; gap: 10px;
}
.btn-casino-play {
  flex: 1; text-align: center;
  background: linear-gradient(135deg, var(--neon-red), #c0392b);
  color: #fff; padding: 12px; border-radius: 8px;
  font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 14px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}
.btn-casino-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5);
  color: #fff;
}
.btn-casino-review {
  padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted); font-size: 14px;
  transition: all var(--transition);
}
.btn-casino-review:hover {
  border-color: var(--neon-red);
  color: var(--neon-red);
}

/* ============================================================
   WHY SECTION / INFO BLOCKS
   ============================================================ */
.why-section {
  background: linear-gradient(180deg,
    transparent,
    rgba(255, 23, 68, 0.04) 30%,
    rgba(255, 23, 68, 0.04) 70%,
    transparent
  );
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(255, 23, 68, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 23, 68, 0.15);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,23,68,0.2), rgba(191,90,242,0.1));
  border: 1px solid rgba(255, 23, 68, 0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.why-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 16px; color: var(--text-bright); margin-bottom: 10px; }
.why-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-red), var(--neon-purple), var(--neon-gold), transparent);
}
.step-item { text-align: center; padding: 32px 20px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--neon-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--neon-red);
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
}
.step-title { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-bright); margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section {
  background: radial-gradient(ellipse at center, rgba(191, 90, 242, 0.07) 0%, transparent 70%);
}
.games-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.game-tab {
  padding: 10px 24px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.game-tab.active, .game-tab:hover {
  background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
  border-color: transparent; color: #fff;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.35);
}
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px;
}
.game-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  transition: all var(--transition); cursor: pointer;
  position: relative;
}
.game-card:hover {
  border-color: rgba(255, 23, 68, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}
.game-thumb {
  flex: 1;
  background: linear-gradient(135deg, #1a0a2e, #0d1a3a, #1a0a1a);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; position: relative; overflow: hidden;
}
.game-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
}
.game-info { padding: 10px; }
.game-name { font-size: 12px; font-weight: 600; color: var(--text-bright); margin-bottom: 2px; }
.game-provider { font-size: 10px; color: var(--text-muted); }

/* ============================================================
   PROMOTIONS SECTION
   ============================================================ */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.promo-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px; transition: all var(--transition);
}
.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-gold);
}
.promo-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.promo-stripe--red { background: linear-gradient(90deg, var(--neon-red), var(--neon-pink)); }
.promo-stripe--gold { background: linear-gradient(90deg, var(--neon-gold), #f39c12); }
.promo-stripe--purple { background: linear-gradient(90deg, var(--neon-purple), #7b2ff7); }
.promo-icon { font-size: 36px; margin-bottom: 16px; }
.promo-title { font-family: 'Exo 2', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.promo-value { font-size: 26px; font-weight: 800; color: var(--neon-gold); font-family: 'Rajdhani', sans-serif; margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);}
.promo-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.promo-casino { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.promo-casino-name { font-size: 12px; color: var(--text-muted); }
.promo-casino-name span { color: var(--neon-red); font-weight: 600; }

/* ============================================================
   RESPONSIBLE GAMING HIGHLIGHT
   ============================================================ */
.rg-banner {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.08), rgba(191, 90, 242, 0.06));
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 16px; padding: 40px;
  display: flex; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.rg-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-purple), var(--neon-gold));
}
.rg-icon { font-size: 56px; flex-shrink: 0; }
.rg-content { flex: 1; }
.rg-title { font-family: 'Exo 2', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.rg-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.rg-logos { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.rg-logo-item {
  height: 36px; opacity: 0.7; filter: grayscale(0.4) brightness(1.2);
  transition: all var(--transition);
}
.rg-logo-item:hover { opacity: 1; filter: none; }
.rg-links { display: flex; gap: 12px; flex-wrap: wrap; }
.rg-link {
  padding: 8px 18px; border-radius: 6px;
  background: rgba(255, 23, 68, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.25);
  color: var(--neon-red); font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.rg-link:hover {
  background: rgba(255, 23, 68, 0.2);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.3);
  color: var(--neon-red);
}

/* ============================================================
   REGULATORS / TRUSTED BY
   ============================================================ */
.trusted-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.regulators-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 32px;
}
.regulator-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.65; transition: all var(--transition);
  text-align: center;
}
.regulator-item:hover { opacity: 1; }
.regulator-item img {
  height: 40px; width: auto; filter: grayscale(0.3) brightness(1.3);
  transition: filter var(--transition);
}
.regulator-item:hover img { filter: none; }
.regulator-name { font-size: 10px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060610;
  border-top: 1px solid rgba(255, 23, 68, 0.15);
}
.footer-main {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 24px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { width: 36px; height: 36px; font-size: 17px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.footer-regulators { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-reg-logo {
  height: 32px; width: auto; opacity: 0.6;
  filter: grayscale(0.5) brightness(1.2);
  transition: all var(--transition);
}
.footer-reg-logo:hover { opacity: 1; filter: none; }

.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text-bright); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--neon-red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--neon-red); }

/* ============================================================
   18+ DISCLAIMER BLOCK
   ============================================================ */
.disclaimer-section {
  background: #04040c;
  border-top: 2px solid rgba(255, 23, 68, 0.3);
  padding: 32px 24px;
}
.disclaimer-inner {
  max-width: 1280px; margin: 0 auto;
}
.disclaimer-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.disclaimer-badge {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--neon-red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #fff;
  font-family: 'Rajdhani', sans-serif;
}
.disclaimer-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text-bright);
}
.disclaimer-text {
  font-size: 11px; color: var(--text-muted); line-height: 1.8;
  border-left: 2px solid rgba(255, 23, 68, 0.3); padding-left: 16px;
}
.disclaimer-text a { color: var(--neon-pink); }
.disclaimer-text a:hover { text-decoration: underline; }
.disclaimer-logos {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 16px;
}
.disclaimer-logos img { height: 28px; width: auto; opacity: 0.5; filter: grayscale(1); transition: all var(--transition); }
.disclaimer-logos img:hover { opacity: 0.8; filter: grayscale(0.3); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 850;
  background: rgba(8, 8, 15, 0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 22px; padding: 14px 24px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--text-primary);
  font-size: 28px; cursor: pointer; padding: 8px;
}

/* ============================================================
   NEON GLOW ANIMATIONS
   ============================================================ */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(255,23,68,0.5), 0 0 30px rgba(255,23,68,0.2); }
  50%       { text-shadow: 0 0 20px rgba(255,23,68,0.9), 0 0 60px rgba(255,23,68,0.4), 0 0 100px rgba(255,23,68,0.2); }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,23,68,0.3); }
  50%       { box-shadow: 0 0 30px rgba(255,23,68,0.7), 0 0 60px rgba(255,23,68,0.3); }
}
.neon-pulse { animation: neonPulse 3s ease-in-out infinite; }
.border-glow { animation: borderGlow 2.5s ease-in-out infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; margin-bottom: 20px; order: -1; }
  .hero-card { width: 150px; height: 210px; }
  .hero-card:nth-child(1) { transform: rotate(-12deg) translate(-60px, 5px); }
  .hero-card:nth-child(3) { transform: rotate(8deg) translate(50px, 0); }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .burger-btn { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px 24px; }
  .steps-grid::before { display: none; }
  .rg-banner { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .casino-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .age-popup__inner { padding: 36px 24px; }
  .age-popup__buttons { flex-direction: column; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }