/* =============================================
   UGLYSWANNZ SOCIAL CASINO – MAIN STYLESHEET
   Version: 1.0
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --brand-bg: #08001a;
  --brand-dark: #0d0126;
  --brand-purple: #1e0450;
  --brand-purple-mid: #3a0d80;
  --brand-purple-light: #6a35c0;
  --brand-gold: #c9a227;
  --brand-gold-light: #f0d060;
  --brand-gold-pale: #e8c85a;
  --brand-accent: #9b59b6;
  --brand-rose: #e0507a;
  --text-primary: #f0e8ff;
  --text-secondary: #b0a0d0;
  --text-muted: #7a6a9a;
  --card-bg: rgba(30,4,80,0.7);
  --card-border: rgba(201,162,39,0.25);
  --card-border-hover: rgba(201,162,39,0.7);
  --glow-purple: 0 0 30px rgba(106,53,192,0.5);
  --glow-gold: 0 0 20px rgba(201,162,39,0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --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: var(--brand-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--brand-gold-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-gold); }

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

strong { color: var(--brand-gold-light); }
em { color: var(--text-secondary); }

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

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: 'Cinzel', serif;
}

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

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #f0d060, #c9a227, #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #8b2fc9, #c9a227);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #a050e0, #f0d060);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,47,201,0.5); color: #fff; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--brand-gold-light);
  border: 2px solid var(--brand-gold);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-secondary:hover {
  background: rgba(201,162,39,0.15);
  color: var(--brand-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--brand-gold-light);
  border: 1.5px solid rgba(201,162,39,0.5);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--brand-gold);
  background: rgba(201,162,39,0.1);
  color: var(--brand-gold-light);
}

/* ===========================
   AGE GATE OVERLAY
   =========================== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,0,26,0.97);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.age-gate-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-card {
  background: linear-gradient(145deg, #1a0440, #0d0120);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(139,47,201,0.3), 0 0 40px rgba(201,162,39,0.1);
  position: relative;
  overflow: hidden;
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}

.age-gate-logo-img {
  height: 60px;
  margin: 0 auto 20px;
}

.age-gate-icon { margin-bottom: 16px; }

.age-badge {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b2fc9, #c9a227);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 80px;
  text-align: center;
  box-shadow: 0 0 30px rgba(139,47,201,0.6);
}

.age-gate-title {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-gold-light);
  margin-bottom: 16px;
}

.age-gate-text {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.age-gate-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 28px;
}
.age-gate-disclaimer i { color: var(--brand-gold); margin-right: 6px; }

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-enter {
  padding: 16px 24px;
  background: linear-gradient(135deg, #5a1caa, #c9a227);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-enter:hover {
  background: linear-gradient(135deg, #7a30cc, #e0c040);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,47,201,0.4);
}
.btn-enter i { color: #a0ffb0; }

.btn-decline {
  padding: 14px 24px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-decline:hover {
  background: rgba(255,50,50,0.1);
  border-color: rgba(255,50,50,0.3);
  color: #ff8080;
}

.age-gate-footer {
  font-size: 12px;
  color: var(--text-muted);
}
.age-gate-footer a { color: var(--brand-gold); }
.age-gate-footer a:hover { color: var(--brand-gold-light); }

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,0,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: var(--transition);
}

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

.nav-logo {
  height: 44px;
  width: auto;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.nav-link i { font-size: 12px; }
.nav-link:hover, .nav-link.active {
  color: var(--brand-gold-light);
  background: rgba(201,162,39,0.1);
}

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

.badge-18 {
  background: linear-gradient(135deg, #8b2fc9, #c9a227);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

.badge-free {
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--brand-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 60px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(58,13,128,0.5) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 30%, rgba(139,47,201,0.3) 0%, transparent 60%),
              linear-gradient(180deg, #08001a 0%, #0f003a 50%, #08001a 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(201,162,39,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(106,53,192,0.1) 0%, transparent 40%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label i { font-size: 10px; opacity: 0.7; }

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-brand {
  background: linear-gradient(135deg, #f0d060 0%, #c9a227 40%, #f0d060 70%, #e8c85a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(0 0 20px rgba(201,162,39,0.5));
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-tag i { color: var(--brand-gold); font-size: 11px; }

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

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-cards-anim {
  position: relative;
  width: 200px;
  height: 200px;
}

.float-card {
  position: absolute;
  width: 70px;
  height: 95px;
  background: linear-gradient(145deg, #2a0860, #1a0440);
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.card-1 { top: 0; left: 10px; color: #e0506a; animation: floatCard 4s ease-in-out infinite; }
.card-2 { top: 20px; right: 10px; color: #e0506a; animation: floatCard 4s ease-in-out infinite 0.8s; }
.card-3 { bottom: 0; left: 30px; color: var(--text-primary); animation: floatCard 4s ease-in-out infinite 1.6s; }
.card-4 { bottom: 20px; right: 30px; color: var(--text-primary); animation: floatCard 4s ease-in-out infinite 2.4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.hero-slots-preview {
  display: flex;
  gap: 8px;
  background: linear-gradient(145deg, #1a0440, #0a0020);
  border: 2px solid rgba(201,162,39,0.3);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--glow-purple);
}

.slot-reel-mini {
  width: 60px;
  height: 120px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  animation: reelSpin 3s linear infinite;
}
.slot-reel-mini.delay-1 { animation-delay: 0.4s; }
.slot-reel-mini.delay-2 { animation-delay: 0.8s; }

@keyframes reelSpin {
  0%, 80%, 100% { transform: translateY(0); }
  20% { transform: translateY(-10px); }
  40% { transform: translateY(5px); }
  60% { transform: translateY(-5px); }
}

.reel-symbol { font-size: 28px; line-height: 1; }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 2s ease-in-out infinite;
}
.hero-scroll-hint a { color: var(--text-muted); font-size: 20px; }
.hero-scroll-hint a:hover { color: var(--brand-gold); }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   NOTICE BANNER
   =========================== */
.notice-banner {
  background: linear-gradient(90deg, rgba(139,47,201,0.15), rgba(201,162,39,0.15));
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 14px 0;
}
.notice-banner .container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.notice-banner i { color: var(--brand-gold); flex-shrink: 0; font-size: 16px; }
.notice-banner strong { color: var(--brand-gold-light); }

/* ===========================
   GAMES PREVIEW SECTION
   =========================== */
.games-preview-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30,4,80,0.2) 50%, transparent 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
}
.game-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow-purple), var(--glow-gold);
}

.game-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: linear-gradient(135deg, #2c8a3a, #45aa50);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.game-card-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots-thumb {
  background: linear-gradient(135deg, #1a0440, #3a0d80, #1a0440);
}

.cards-thumb {
  background: linear-gradient(135deg, #0d2a0d, #1a5a2a, #0d2a0d);
}

.slots-preview-art {
  display: flex;
  gap: 10px;
  padding: 20px;
}

.preview-reel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 56px;
  align-items: center;
}
.preview-reel span { font-size: 28px; }

.cards-preview-art {
  position: relative;
  width: 160px;
  height: 160px;
}
.preview-card {
  position: absolute;
  width: 80px;
  height: 110px;
  background: linear-gradient(145deg, #0d2a0d, #1a5a2a);
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.preview-card.back { top: 0; left: 0; transform: rotate(-15deg); opacity: 0.6; }
.preview-card.mid { top: 20px; left: 30px; transform: rotate(-5deg); opacity: 0.8; }
.preview-card.front { top: 30px; left: 60px; transform: rotate(8deg); z-index: 2; }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,0,26,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8b2fc9, #c9a227);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139,47,201,0.5);
  color: #fff;
}

.game-card-info {
  padding: 24px;
}

.game-card-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-gold-light);
  margin-bottom: 10px;
}

.game-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
}
.meta-tag i { color: var(--brand-gold); font-size: 10px; }

.games-cta { text-align: center; }

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  padding: 100px 0;
}

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

.about-text .section-label { display: inline-block; margin-bottom: 16px; }
.about-text .section-title { text-align: left; margin-bottom: 24px; font-size: clamp(24px, 3vw, 40px); }
.about-text p { color: var(--text-secondary); margin-bottom: 18px; font-size: 16px; }
.about-text a { margin-top: 8px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139,47,201,0.3), rgba(201,162,39,0.2));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--brand-gold-light);
}

.feature-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--brand-gold-light);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   RESPONSIBLE GAMING SECTION
   =========================== */
.responsible-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(30,4,80,0.3), transparent);
}

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

.responsible-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.responsible-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}
.responsible-card i {
  font-size: 32px;
  color: var(--brand-gold-light);
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.4));
}
.responsible-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--brand-gold-light);
  margin-bottom: 10px;
}
.responsible-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.responsible-links {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.responsible-links p {
  color: var(--brand-gold-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.support-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}
.support-link:hover {
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.3);
  color: var(--brand-gold-light);
}
.support-link i { color: var(--brand-gold); font-size: 11px; }

/* ===========================
   REGULATORS SECTION
   =========================== */
.regulators-section {
  padding: 80px 0;
}

.regulators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.regulator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.regulator-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.regulator-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(139,47,201,0.3), rgba(201,162,39,0.2));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-gold-light);
  margin-bottom: 16px;
}

.regulator-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-gold-light);
  margin-bottom: 8px;
}

.regulator-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  border-top: 1px solid rgba(201,162,39,0.1);
  background: linear-gradient(180deg, rgba(30,4,80,0.2), #050010);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo { height: 50px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.footer-age-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.badge-18-lg {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8b2fc9, #c9a227);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 44px;
  text-align: center;
}

.footer-nav h4, .footer-support h4, .footer-contact h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--brand-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-nav ul, .footer-support ul, .footer-contact ul {
  list-style: none;
}
.footer-nav li, .footer-support li, .footer-contact li {
  margin-bottom: 10px;
}
.footer-nav a, .footer-support a, .footer-contact a {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-nav a:hover, .footer-support a:hover, .footer-contact a:hover {
  color: var(--brand-gold-light);
}
.footer-nav a i, .footer-contact a i { font-size: 11px; color: var(--brand-gold); }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.footer-contact li i { color: var(--brand-gold); }

.social-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
}
.footer-legal a { color: var(--brand-gold); }
.footer-legal a:hover { color: var(--brand-gold-light); }

.footer-badges {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 20px;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}
.footer-badge i { color: var(--brand-gold); font-size: 10px; }

/* ===========================
   PARTICLE ANIMATIONS
   =========================== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===========================
   PAGE TRANSITIONS
   =========================== */
.page-content {
  animation: pageIn 0.5s ease;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   INNER PAGE HERO
   =========================== */
.inner-hero {
  padding: 130px 0 70px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(58,13,128,0.4) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,162,39,0.03) 0%, transparent 40%);
}
.inner-hero .section-label { display: inline-block; }
.inner-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(32px, 5vw, 60px); font-weight: 700; background: linear-gradient(135deg, #f0d060, #c9a227); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 12px 0 16px; }
.inner-hero p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ===========================
   CONTENT SECTIONS (inner pages)
   =========================== */
.content-section {
  padding: 80px 0;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.content-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--brand-gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-card h3 i { color: var(--brand-gold); }
.content-card p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.7; font-size: 15px; }
.content-card ul { list-style: none; }
.content-card ul li {
  color: var(--text-secondary);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.content-card ul li:last-child { border-bottom: none; }
.content-card ul li::before { content: '▸'; color: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }

/* ===========================
   GAME PAGES
   =========================== */
.games-section {
  padding: 60px 0 100px;
}
.games-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-text .section-title { text-align: center; }
  .about-text .section-label { display: block; text-align: center; }
  .about-text a { display: flex; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-section { padding: 100px 32px 60px; flex-direction: column; gap: 60px; text-align: center; align-items: center; }
  .hero-label { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(8,0,26,0.97);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(201,162,39,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .games-full-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-bottom-inner { flex-direction: column; }
  .age-gate-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 90px 20px 50px; }
  .games-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
