/* =============================================
   CAMELOT SLOTS — STYLE.CSS
   Royal Medieval Social Casino
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  /* Base */
  --midnight-blue: #0c1426;
  --royal-navy: #16213e;
  --deep-stone: #1f2937;
  /* Accents */
  --royal-gold: #d4af37;
  --royal-gold-light: #e8c84a;
  --royal-gold-dark: #b8941f;
  --crimson-red: #7f1d1d;
  --crimson-light: #991b1b;
  --mystic-purple: #5b3c88;
  --mystic-purple-light: #7c5aad;
  /* Supporting */
  --parchment: #f5e6c8;
  --steel-silver: #9ca3af;
  /* Text */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5f5;
  --text-muted: #8892b0;
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4af37, #b8941f);
  --gradient-gold-crimson: linear-gradient(135deg, #d4af37 0%, #991b1b 100%);
  --gradient-dark: linear-gradient(180deg, #0c1426 0%, #16213e 100%);
  --gradient-card: linear-gradient(145deg, rgba(22,33,62,0.8) 0%, rgba(31,41,55,0.6) 100%);
  /* Layout */
  --max-width: 1400px;
  --narrow-width: 880px;
  --header-height: 80px;
  /* Spacing */
  --section-padding: 100px;
  /* Borders */
  --border-gold: 1px solid rgba(212,175,55,0.3);
  --border-gold-strong: 2px solid rgba(212,175,55,0.5);
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --shadow-gold-strong: 0 0 60px rgba(212,175,55,0.25);
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- RESET --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--midnight-blue);
  overflow-x: hidden;
}

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

a {
  color: var(--royal-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

::selection {
  background: rgba(212,175,55,0.3);
  color: var(--text-primary);
}

/* --- UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.container-narrow {
  max-width: var(--narrow-width);
}

.text-gold {
  color: var(--royal-gold);
  background: linear-gradient(135deg, #d4af37, #e8c84a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--royal-gold);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- HEADER --- */
.royal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(12,20,38,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
}

.royal-header.scrolled {
  background: rgba(12,20,38,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--royal-gold);
  letter-spacing: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--royal-gold);
}

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

.header-cta {
  flex-shrink: 0;
}

.btn-cta {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--midnight-blue);
  background: var(--gradient-gold);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta:hover {
  color: var(--midnight-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}

.toggle-bar {
  width: 28px;
  height: 2px;
  background: var(--royal-gold);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1050;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #0c1426 0%, #16213e 50%, #1f2937 100%);
  z-index: 1060;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-slow);
  border-left: 1px solid rgba(212,175,55,0.2);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: var(--border-gold);
}

.mobile-menu-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--royal-gold);
  font-weight: 600;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--royal-gold);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.mobile-nav-link {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--royal-gold);
  background: rgba(212,175,55,0.08);
}

.mobile-cta {
  text-align: center;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--midnight-blue);
  background: var(--gradient-gold-crimson);
  padding: 16px 36px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}

.btn-primary:hover {
  color: var(--midnight-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.35);
}

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--royal-gold);
  background: transparent;
  padding: 16px 36px;
  border-radius: 16px;
  border: 2px solid rgba(212,175,55,0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  color: var(--royal-gold-light);
  border-color: rgba(212,175,55,0.7);
  background: rgba(212,175,55,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.15);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  font-size: 18px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(22,33,62,1) 0%, rgba(12,20,38,1) 70%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(91,60,136,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(212,175,55,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(127,29,29,0.1) 0%, transparent 50%);
}

.hero-fog {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0.03;
  background: radial-gradient(ellipse, rgba(212,175,55,0.3), transparent 70%);
}

.hero-fog-1 {
  top: -50%;
  left: -50%;
  animation: fogDrift1 25s ease-in-out infinite;
}

.hero-fog-2 {
  bottom: -50%;
  right: -50%;
  animation: fogDrift2 30s ease-in-out infinite;
}

.hero-rays {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.badge-icon {
  font-size: 16px;
}

.badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--royal-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 24px;
  background: rgba(31,41,55,0.5);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
}

.hero-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--royal-gold);
  border-bottom: 2px solid var(--royal-gold);
  transform: rotate(45deg);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* --- PAGE HERO (Subpages) --- */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.page-hero-sm {
  padding: 160px 0 80px;
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
}

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

/* --- GAME SECTION --- */
.game-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.game-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(22,33,62,0.5) 0%, var(--midnight-blue) 70%);
  pointer-events: none;
}

.game-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  animation: ambientPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.game-frame {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.game-frame-border {
  position: relative;
  background: linear-gradient(145deg, rgba(22,33,62,0.9), rgba(31,41,55,0.7));
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow:
    0 0 40px rgba(212,175,55,0.1),
    0 0 80px rgba(212,175,55,0.05),
    inset 0 1px 0 rgba(212,175,55,0.1);
  overflow: hidden;
  transition: box-shadow var(--transition-slow);
}

.game-frame:hover .game-frame-border {
  box-shadow:
    0 0 50px rgba(212,175,55,0.15),
    0 0 100px rgba(212,175,55,0.08),
    inset 0 1px 0 rgba(212,175,55,0.15);
}

.game-frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 5;
}

.game-frame-corner::before,
.game-frame-corner::after {
  content: '';
  position: absolute;
  background: var(--royal-gold);
}

.game-frame-corner-tl {
  top: -1px;
  left: -1px;
}
.game-frame-corner-tl::before {
  width: 30px; height: 3px; top: 0; left: 0;
}
.game-frame-corner-tl::after {
  width: 3px; height: 30px; top: 0; left: 0;
}

.game-frame-corner-tr {
  top: -1px;
  right: -1px;
}
.game-frame-corner-tr::before {
  width: 30px; height: 3px; top: 0; right: 0;
}
.game-frame-corner-tr::after {
  width: 3px; height: 30px; top: 0; right: 0;
}

.game-frame-corner-bl {
  bottom: -1px;
  left: -1px;
}
.game-frame-corner-bl::before {
  width: 30px; height: 3px; bottom: 0; left: 0;
}
.game-frame-corner-bl::after {
  width: 3px; height: 30px; bottom: 0; left: 0;
}

.game-frame-corner-br {
  bottom: -1px;
  right: -1px;
}
.game-frame-corner-br::before {
  width: 30px; height: 3px; bottom: 0; right: 0;
}
.game-frame-corner-br::after {
  width: 3px; height: 30px; bottom: 0; right: 0;
}

.game-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--midnight-blue);
}

.game-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.game-glow-pulse {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 28px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: gameGlow 3s ease-in-out infinite;
}

.game-disclaimer {
  text-align: center;
  margin-top: 24px;
}

.game-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(31,41,55,0.4);
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,175,55,0.08);
}

/* --- FEATURES SECTION --- */
.features-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  margin-bottom: 24px;
}

.feature-icon {
  font-size: 32px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- SECRETS SECTION --- */
.secrets-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, var(--midnight-blue) 0%, rgba(22,33,62,0.5) 50%, var(--midnight-blue) 100%);
}

.secrets-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.secrets-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.secrets-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.secrets-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-secondary);
}

.secrets-list-icon {
  flex-shrink: 0;
  font-size: 20px;
  margin-top: 2px;
}

.secrets-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.secrets-card-stack {
  position: relative;
  width: 400px;
  height: 400px;
}

.secrets-floating-card {
  position: absolute;
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.sfc-icon {
  font-size: 32px;
}

.sfc-label {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--royal-gold);
  letter-spacing: 1px;
}

.sfc-1 {
  top: 20px;
  left: 30px;
  animation: floatCard1 6s ease-in-out infinite;
}

.sfc-2 {
  top: 100px;
  right: 10px;
  animation: floatCard2 7s ease-in-out infinite;
}

.sfc-3 {
  bottom: 100px;
  left: 10px;
  animation: floatCard3 8s ease-in-out infinite;
}

.sfc-4 {
  bottom: 20px;
  right: 40px;
  animation: floatCard4 6.5s ease-in-out infinite;
}

.secrets-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: ambientPulse 4s ease-in-out infinite;
}

/* --- MAGIC SECTION --- */
.magic-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.magic-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.magic-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.magic-step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--royal-gold);
}

.magic-step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.magic-step-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.magic-step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(212,175,55,0.3), rgba(212,175,55,0.05));
  margin: 8px 0 8px 29px;
}

/* --- STATS SECTION --- */
.stats-section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.stat-card {
  text-align: center;
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.2);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--royal-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(91,60,136,0.12) 0%, var(--midnight-blue) 70%);
}

.cta-fog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  animation: ambientPulse 5s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
}

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

.cta-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* --- CONTENT SECTIONS (Subpages) --- */
.content-section {
  padding: 80px 0 var(--section-padding);
}

.content-block {
  margin-bottom: 60px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.content-block p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.content-list li {
  font-size: 17px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.content-list li::before {
  content: '⚜';
  position: absolute;
  left: 0;
  font-size: 12px;
  color: var(--royal-gold);
  top: 4px;
}

.content-cta {
  margin-top: 36px;
}

/* --- LEGAL SECTIONS --- */
.legal-section {
  padding: 60px 0 var(--section-padding);
}

.legal-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--royal-gold);
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: var(--border-gold);
}

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

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content ul li {
  font-size: 16px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--royal-gold);
  font-size: 18px;
  font-weight: 700;
}

.legal-content a {
  color: var(--royal-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- CONTACT --- */
.contact-form-wrap {
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 60px;
}

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

.form-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(12,20,38,0.6);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Crimson Text', serif;
  font-size: 17px;
  transition: all var(--transition-base);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 20px rgba(212,175,55,0.08);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}

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

.form-success {
  text-align: center;
  padding: 48px;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--royal-gold);
}

.form-success p {
  font-size: 17px;
  color: var(--text-secondary);
}

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

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}

.contact-info-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.contact-info-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-info-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- RESPONSIBLE GAMING --- */
.rg-important-box {
  background: linear-gradient(145deg, rgba(127,29,29,0.15), rgba(22,33,62,0.8));
  border: 2px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
}

.rg-important-box h2 {
  font-size: 24px;
  color: var(--royal-gold);
  margin-bottom: 16px;
}

.rg-important-box p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.rg-important-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rg-important-box ul li {
  font-size: 16px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.rg-important-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--royal-gold);
  font-weight: 700;
}

.rg-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.rg-resource-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
}

.rg-resource-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--royal-gold);
  margin-bottom: 10px;
}

.rg-resource-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.5;
}

/* --- FOOTER --- */
.royal-footer {
  background: linear-gradient(180deg, rgba(12,20,38,0.5) 0%, #080e1a 100%);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 80px 0 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.age-badge,
.social-badge,
.free-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-badge {
  background: rgba(127,29,29,0.3);
  border: 1px solid rgba(127,29,29,0.5);
  color: #fca5a5;
}

.social-badge {
  background: rgba(91,60,136,0.2);
  border: 1px solid rgba(91,60,136,0.4);
  color: #c4b5fd;
}

.free-badge {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--royal-gold);
}

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--royal-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.footer-links li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
  margin-bottom: 30px;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-legal {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(136,146,176,0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ENDFILE */