/* ============================================================
   DIAMOND SLOT — STYLE.CSS
   Crystal Vault Gaming · arcadealleyindex.homes
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES — DIAMOND PALETTE
   ============================================================ */
:root {
  /* Base Colors */
  --color-bg-primary: #070A12;
  --color-bg-secondary: #0E1424;
  --color-surface: rgba(18, 26, 46, 0.65);
  --color-surface-solid: #121A2E;

  /* Diamond Accents */
  --color-accent-blue: #7DD3FC;
  --color-accent-violet: #A78BFA;
  --color-accent-white: #E5E7EB;

  /* Typography */
  --color-text-primary: #F8FAFC;
  --color-text-secondary: #B6C2D9;
  --color-text-muted: #7C8AA5;

  /* Gradients */
  --gradient-diamond: linear-gradient(135deg, #7DD3FC 0%, #A78BFA 50%, #E5E7EB 100%);
  --gradient-btn: linear-gradient(135deg, #7DD3FC 0%, #A78BFA 100%);
  --gradient-hero: linear-gradient(180deg, #070A12 0%, #0E1424 100%);
  --gradient-glow-blue: radial-gradient(circle, rgba(125, 211, 252, 0.15) 0%, transparent 70%);
  --gradient-glow-violet: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(125, 211, 252, 0.08);
  --shadow-medium: 0 16px 48px rgba(125, 211, 252, 0.12);
  --shadow-strong: 0 24px 64px rgba(125, 211, 252, 0.18);
  --shadow-glow: 0 0 40px rgba(125, 211, 252, 0.2);
  --shadow-violet: 0 8px 32px rgba(167, 139, 250, 0.12);

  /* Borders */
  --border-glass: 1px solid rgba(125, 211, 252, 0.15);
  --border-glass-strong: 1px solid rgba(125, 211, 252, 0.25);
  --border-violet: 1px solid rgba(167, 139, 250, 0.2);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 120px;

  /* Typography */
  --font-primary: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1320px;
  --header-height: 104px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, iframe, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* ============================================================
   3. LAYOUT SYSTEM
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   4. AMBIENT BACKGROUND
   ============================================================ */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-beam {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.beam-1 {
  background: var(--color-accent-blue);
  top: -200px;
  left: -100px;
}

.beam-2 {
  background: var(--color-accent-violet);
  top: 20%;
  right: -150px;
  opacity: 0.09;
}

.beam-3 {
  background: var(--color-accent-blue);
  bottom: -100px;
  left: 30%;
  opacity: 0.08;
}

.beam-violet {
  background: var(--color-accent-violet) !important;
}

.particle-field {
  position: absolute;
  inset: 0;
}

/* ============================================================
   5. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.site-header.scrolled {
  background: rgba(7, 10, 18, 0.92);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(125, 211, 252, 0.15);
}

/* Top Bar */
.header-topbar {
  background: rgba(7, 10, 18, 0.95);
  border-bottom: 1px solid rgba(125, 211, 252, 0.08);
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

.header-topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.topbar-icon {
  color: var(--color-accent-blue);
}

.topbar-text-mobile {
  display: none;
}

@media (max-width: 768px) {
  .topbar-text-desktop {
    display: none;
  }
  .topbar-text-mobile {
    display: inline;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-lg);
}

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

.logo-diamond {
  font-size: 22px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.5));
  line-height: 1;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--gradient-btn);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary);
  background: rgba(125, 211, 252, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(125, 211, 252, 0.08);
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-med), opacity var(--transition-fast);
}

/* ============================================================
   6. MOBILE OVERLAY
   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 10, 18, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform var(--transition-med);
}

.mobile-overlay.active {
  transform: translateX(0);
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.overlay-close:hover {
  color: var(--color-accent-blue);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.mobile-nav-link {
  display: block;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-align: center;
}

.mobile-nav-link:hover {
  color: var(--color-accent-blue);
  background: rgba(125, 211, 252, 0.06);
}

.mobile-nav-cta {
  margin-top: var(--space-md);
  background: var(--gradient-btn);
  color: var(--color-bg-primary) !important;
  border-radius: var(--radius-md);
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #050810;
  box-shadow: 0 4px 20px rgba(125, 211, 252, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.4);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent-blue);
  border: var(--border-glass-strong);
}

.btn-ghost:hover {
  background: rgba(125, 211, 252, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 12px;
  opacity: 0.8;
}

/* ============================================================
   8. GLASS CARD
   ============================================================ */
.glass-card {
  background: var(--color-surface);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.3), transparent);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(125, 211, 252, 0.08);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent-blue);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-diamond {
  font-size: 10px;
}

.hero-headline {
  font-family: var(--font-primary);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

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

.hero-subtext {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

/* Crystal Chamber Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.crystal-chamber {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crystal-main {
  font-size: 120px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(125, 211, 252, 0.6));
  animation: crystal-pulse 4s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.crystal-orbit {
  position: absolute;
  font-size: 28px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.4));
}

.crystal-orbit-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit-float 6s ease-in-out infinite;
}

.crystal-orbit-2 {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: orbit-float 6s ease-in-out infinite 1.5s;
}

.crystal-orbit-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit-float 6s ease-in-out infinite 3s;
}

.crystal-orbit-4 {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  animation: orbit-float 6s ease-in-out infinite 4.5s;
}

.crystal-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.15);
}

.ring-1 {
  width: 160px;
  height: 160px;
  animation: ring-pulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 260px;
  height: 260px;
  animation: ring-pulse 4s ease-in-out infinite 1s;
  border-color: rgba(167, 139, 250, 0.1);
}

.ring-3 {
  width: 360px;
  height: 360px;
  animation: ring-pulse 4s ease-in-out infinite 2s;
}

.crystal-spark {
  position: absolute;
  font-size: 14px;
  color: var(--color-accent-blue);
  opacity: 0;
  animation: spark-appear 3s ease-in-out infinite;
}

.spark-1 { top: 50px; left: 60px; animation-delay: 0s; }
.spark-2 { top: 80px; right: 50px; animation-delay: 0.6s; }
.spark-3 { bottom: 60px; right: 80px; animation-delay: 1.2s; }
.spark-4 { bottom: 50px; left: 50px; animation-delay: 1.8s; }
.spark-5 { top: 50%; left: 30px; animation-delay: 2.4s; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--color-accent-blue);
}

/* ============================================================
   10. SECTION SHARED STYLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(125, 211, 252, 0.07);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--left {
  text-align: left;
}

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

/* ============================================================
   11. GAME SECTION
   ============================================================ */
.game-section {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0;
}

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

.game-frame-container {
  background: var(--color-surface);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong), 0 0 80px rgba(125, 211, 252, 0.08);
  position: relative;
  z-index: 1;
}

.game-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(14, 20, 36, 0.8);
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
}

.game-frame-dots {
  display: flex;
  gap: 8px;
}

.game-frame-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.2);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.game-frame-dots span:first-child { background: rgba(248, 113, 113, 0.4); }
.game-frame-dots span:nth-child(2) { background: rgba(251, 191, 36, 0.4); }
.game-frame-dots span:last-child { background: rgba(52, 211, 153, 0.4); }

.game-frame-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.game-frame-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34D399;
  animation: live-pulse 2s ease-in-out infinite;
}

.game-embed-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-primary);
}

.game-embed-area iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-frame-footer {
  padding: 14px 24px;
  background: rgba(14, 20, 36, 0.6);
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  text-align: center;
}

.game-footer-note {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.game-ambient-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(125, 211, 252, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: var(--radius-xl);
}

/* ============================================================
   12. FEATURE CARDS
   ============================================================ */
.features-section,
.values-section,
.rg-tools-section {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-surface);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-btn);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(125, 211, 252, 0.3);
}

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

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.3));
}

.feature-icon--violet {
  background: linear-gradient(135deg, #A78BFA, #E5E7EB) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.3)) !important;
}

.feature-icon--white {
  background: linear-gradient(135deg, #E5E7EB, #A78BFA) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

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

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

/* ============================================================
   13. STATS SECTION
   ============================================================ */
.stats-section {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--color-surface);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-lg);
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(125, 211, 252, 0.15);
  flex-shrink: 0;
}

/* ============================================================
   14. HOW TO PLAY
   ============================================================ */
.howto-section {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0;
}

.howto-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.howto-step {
  flex: 1;
  text-align: center;
  animation-delay: var(--delay, 0s);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.08);
  border: var(--border-glass-strong);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  background-clip: text;
  color: var(--color-accent-blue);
  margin: 0 auto var(--space-sm);
}

.step-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

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

.howto-connector {
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.3), transparent);
  margin-top: 32px;
  align-self: flex-start;
}

/* ============================================================
   15. RESPONSIBLE GAMING BANNER
   ============================================================ */
.rg-banner {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 0;
}

.rg-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: rgba(167, 139, 250, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
}

.rg-icon {
  font-size: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.3));
}

.rg-content {
  flex: 1;
}

.rg-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.rg-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   16. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
}

.page-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-sm);
}

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

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.6;
}

.footer-address {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-email {
  color: var(--color-accent-blue);
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: var(--color-text-primary);
}

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-accent-blue);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(125, 211, 252, 0.06);
  border: var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--color-text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.social-link:hover {
  background: rgba(125, 211, 252, 0.12);
  color: var(--color-accent-blue);
  border-color: rgba(125, 211, 252, 0.3);
}

.footer-divider {
  height: 1px;
  background: rgba(125, 211, 252, 0.08);
  margin-bottom: var(--space-lg);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal-note {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 900px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================================
   18. ABOUT PAGE SPECIFIC
   ============================================================ */
.about-section,
.values-section,
.team-section {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.about-crystal-display {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-crystal-large {
  font-size: 80px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(125, 211, 252, 0.5));
  animation: crystal-pulse 5s ease-in-out infinite;
}

.about-crystal-sm {
  position: absolute;
  font-size: 24px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: orbit-float 5s ease-in-out infinite;
}

.ab-c1 { top: 20px; right: 40px; animation-delay: 0s; }
.ab-c2 { bottom: 30px; right: 60px; animation-delay: 1s; }
.ab-c3 { bottom: 40px; left: 40px; animation-delay: 2s; }

.about-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}

.value-pill {
  padding: 8px 16px;
  background: rgba(125, 211, 252, 0.07);
  border: var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent-blue);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-card {
  background: var(--color-surface);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  animation-delay: var(--delay, 0s);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(125, 211, 252, 0.05));
  border: 2px solid rgba(125, 211, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.team-avatar--violet {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.05)) !important;
  border-color: rgba(167, 139, 250, 0.3) !important;
}

.team-avatar--white {
  background: linear-gradient(135deg, rgba(229, 231, 235, 0.15), rgba(229, 231, 235, 0.05)) !important;
  border-color: rgba(229, 231, 235, 0.2) !important;
}

.avatar-initial {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 12px;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 0 0 var(--space-3xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(125, 211, 252, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  appearance: none;
}

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

.form-input:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(125, 211, 252, 0.07);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.08);
}

.form-select {
  cursor: pointer;
}

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

.form-success {
  margin-top: var(--space-sm);
  padding: 16px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: #6EE7B7;
  text-align: center;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation-delay: var(--delay, 0s);
}

.contact-info-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 18px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--color-accent-blue);
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--color-text-primary);
}

.contact-rg-note {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.rg-note-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.rg-note-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.rg-note-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   20. LEGAL PAGES
   ============================================================ */
.legal-section {
  position: relative;
  z-index: 1;
  padding: 0 0 var(--space-3xl);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.legal-nav {
  background: var(--color-surface);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.legal-nav-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.legal-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.legal-nav-link:hover {
  color: var(--color-accent-blue);
  background: rgba(125, 211, 252, 0.06);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legal-intro {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.legal-intro-icon {
  font-size: 28px;
  flex-shrink: 0;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2px;
}

.legal-intro p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-block {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(125, 211, 252, 0.06);
}

.legal-block:first-of-type {
  border-top: none;
}

.legal-block-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(125, 211, 252, 0.08);
  border: var(--border-glass);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.legal-block p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-block strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-block a {
  color: var(--color-accent-blue);
  transition: color var(--transition-fast);
}

.legal-block a:hover {
  color: var(--color-text-primary);
}

.legal-list {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

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

.legal-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 8px;
  color: var(--color-accent-blue);
  top: 6px;
}

.legal-contact-info {
  background: rgba(125, 211, 252, 0.04);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.legal-contact-info p {
  margin-bottom: 0 !important;
}

/* ============================================================
   21. RULES PAGE SYMBOLS TABLE
   ============================================================ */
.rules-symbols-table {
  background: rgba(125, 211, 252, 0.03);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.rules-symbol-row {
  display: grid;
  grid-template-columns: 60px 1fr 140px;
  gap: var(--space-sm);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.06);
  align-items: center;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.rules-symbol-row:last-child {
  border-bottom: none;
}

.rules-symbol-row--header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  background: rgba(125, 211, 252, 0.04);
}

.sym-icon {
  font-size: 22px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sym-violet {
  background: linear-gradient(135deg, #A78BFA, #E5E7EB) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.sym-white {
  background: linear-gradient(135deg, #E5E7EB, #A78BFA) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.sym-muted {
  -webkit-text-fill-color: var(--color-text-muted) !important;
  background: none !important;
}

.sym-payout {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-accent-blue);
}

/* ============================================================
   22. RESPONSIBLE GAMING PAGE
   ============================================================ */
.rg-section,
.rg-warning-section,
.rg-resources-section {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}

.rg-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.rg-intro-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.rg-intro-card--primary {
  border-color: rgba(167, 139, 250, 0.25);
  background: rgba(167, 139, 250, 0.06);
}

.rg-card-icon {
  font-size: 40px;
  display: block;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.3));
}

.rg-card-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.rg-card-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.rg-warning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.rg-warning-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: var(--space-sm);
  background: rgba(125, 211, 252, 0.03);
  border: var(--border-glass);
  border-radius: var(--radius-md);
}

.rg-warning-icon {
  font-size: 16px;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 2px;
}

.rg-warning-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.rg-warning-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.rg-warning-note {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.rg-resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.rg-resource-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rg-resource-name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.rg-resource-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.rg-resource-link {
  font-size: 13px;
  color: var(--color-accent-blue);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.rg-resource-link:hover {
  color: var(--color-text-primary);
}
/* ============================================================
   END STYLE.CSS
   ============================================================ */