/* ============================================================
   OMNICLICKDRFT.CLICK — STYLE.CSS
   Box-Slot Social Casino — Main Stylesheet
   ============================================================ */

/* ─── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  /* Base Colors */
  --color-bg:            #0d1210;
  --color-bg-2:          #111916;
  --color-bg-3:          #151e1a;
  --color-surface:       #1a2420;
  --color-surface-2:     #202c27;
  --color-surface-3:     #263430;

  /* Accents */
  --color-emerald:       #3d9b6e;
  --color-emerald-dim:   #2d7252;
  --color-emerald-glow:  rgba(61, 155, 110, 0.18);
  --color-emerald-light: #5bbf8e;
  --color-gold:          #c9a84c;
  --color-gold-light:    #e8c96e;
  --color-gold-dim:      #a07c30;
  --color-gold-glow:     rgba(201, 168, 76, 0.18);
  --color-amber:         #d4823a;
  --color-amber-light:   #f09a50;
  --color-amber-glow:    rgba(212, 130, 58, 0.18);

  /* Text */
  --color-text-primary:  #edf2ef;
  --color-text-secondary:#a8bdb4;
  --color-text-muted:    #6a8278;
  --color-text-accent:   #5bbf8e;

  /* Glass */
  --glass-bg:            rgba(26, 36, 32, 0.72);
  --glass-border:        rgba(61, 155, 110, 0.14);
  --glass-blur:          blur(16px);

  /* Shadows */
  --shadow-sm:           0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:           0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:           0 16px 64px rgba(0,0,0,0.55);
  --shadow-emerald:      0 0 40px rgba(61, 155, 110, 0.15);
  --shadow-gold:         0 0 40px rgba(201, 168, 76, 0.15);

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

  /* Spacing */
  --space-xs:            8px;
  --space-sm:            16px;
  --space-md:            32px;
  --space-lg:            64px;
  --space-xl:            100px;

  /* Typography */
  --font-body:           'Poppins', sans-serif;
  --font-size-base:      16px;
  --line-height-base:    1.7;

  /* Transitions */
  --transition-fast:     0.18s ease;
  --transition-base:     0.28s ease;
  --transition-slow:     0.45s ease;

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

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: var(--line-height-base);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--color-emerald-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

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

/* ─── 3. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

/* ─── 4. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-emerald-light) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-emerald-light);
  background: var(--color-emerald-glow);
  border: 1px solid rgba(91, 191, 142, 0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  text-align: center;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.section-body {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ─── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dim) 100%);
  color: #fff;
  border-color: rgba(91, 191, 142, 0.3);
  box-shadow: 0 4px 20px rgba(61, 155, 110, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 155, 110, 0.38);
  filter: brightness(1.1);
  color: #fff;
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--color-emerald-light);
  border-color: var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--color-emerald);
  background: rgba(61, 155, 110, 0.12);
  color: var(--color-emerald-light);
  box-shadow: 0 4px 20px rgba(61, 155, 110, 0.18);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ─── 6. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13, 18, 16, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(13, 18, 16, 0.92);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(61, 155, 110, 0.2);
}

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

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

.logo-icon {
  font-size: 1.5rem;
  color: var(--color-emerald-light);
  line-height: 1;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--color-emerald-light);
}

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

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary);
}

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

.header-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 15, 12, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.mobile-overlay.open {
  display: flex;
}

.overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: color var(--transition-fast);
}

.overlay-close:hover {
  color: var(--color-text-primary);
}

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

.mobile-nav-link {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-emerald-light);
}

.mobile-cta {
  margin-top: var(--space-sm);
  font-size: 1rem;
}

/* ─── 7. HERO SECTION ───────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61, 155, 110, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 20% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
              var(--color-bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  background: var(--color-gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: var(--space-sm);
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Hero Visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-game-preview {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preview-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, var(--color-emerald-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: previewGlowPulse 3.5s ease-in-out infinite;
}

.preview-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg), var(--shadow-emerald);
}

.preview-box {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  transition: transform var(--transition-base);
  animation: boxFloat 4s ease-in-out infinite;
}

.preview-box:nth-child(2) { animation-delay: 0.3s; }
.preview-box:nth-child(3) { animation-delay: 0.6s; }
.preview-box:nth-child(4) { animation-delay: 0.9s; }
.preview-box:nth-child(5) { animation-delay: 1.2s; }
.preview-box:nth-child(6) { animation-delay: 1.5s; }
.preview-box:nth-child(7) { animation-delay: 1.8s; }
.preview-box:nth-child(8) { animation-delay: 2.1s; }
.preview-box:nth-child(9) { animation-delay: 2.4s; }

.box-gold {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.08) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--color-gold-light);
}

.box-emerald {
  background: linear-gradient(135deg, rgba(61, 155, 110, 0.2) 0%, rgba(61, 155, 110, 0.08) 100%);
  border: 1px solid rgba(61, 155, 110, 0.25);
  color: var(--color-emerald-light);
}

.box-amber {
  background: linear-gradient(135deg, rgba(212, 130, 58, 0.2) 0%, rgba(212, 130, 58, 0.08) 100%);
  border: 1px solid rgba(212, 130, 58, 0.25);
  color: var(--color-amber-light);
}

.preview-label {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 6s ease-in-out infinite;
}

/* ─── 8. GAME SECTION ───────────────────────────────────────── */
.game-section {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(61, 155, 110, 0.05) 0%, transparent 70%),
              var(--color-bg-2);
  text-align: center;
}

.game-frame-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto var(--space-md);
}

.game-frame-ambient {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, var(--color-emerald-glow) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientPulse 4s ease-in-out infinite;
  border-radius: var(--radius-xl);
}

.game-frame-container {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg), var(--shadow-emerald);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.game-frame-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(61, 155, 110, 0.22);
}

.game-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(13, 18, 16, 0.6);
  border-bottom: 1px solid var(--glass-border);
}

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

.frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-surface-3);
}

.frame-dots span:first-child { background: rgba(212, 130, 58, 0.6); }
.frame-dots span:nth-child(2) { background: rgba(201, 168, 76, 0.5); }
.frame-dots span:last-child { background: rgba(61, 155, 110, 0.6); }

.frame-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.frame-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-emerald-light);
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-emerald-light);
  animation: statusPulse 2s ease-in-out infinite;
}

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

.game-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 9. FEATURES / HOW IT WORKS ────────────────────────────── */
.features-section {
  background: var(--color-bg-3);
  text-align: center;
}

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

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  backdrop-filter: var(--glass-blur);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-emerald);
  border-color: rgba(61, 155, 110, 0.25);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

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

.feature-body {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ─── 10. REWARDS SECTION ───────────────────────────────────── */
.rewards-section {
  background: var(--color-bg-2);
}

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

.rewards-text .section-label {
  margin-bottom: var(--space-sm);
}

.rewards-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rewards-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.reward-icon {
  font-size: 1.1rem;
}

/* Reward Card Stack */
.rewards-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-card-stack {
  position: relative;
  width: 220px;
  height: 300px;
}

.reward-card {
  position: absolute;
  width: 200px;
  height: 270px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-surface-3) 100%);
}

.reward-card-back {
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, rgba(61, 155, 110, 0.08) 0%, rgba(61, 155, 110, 0.03) 100%);
  transform: rotate(6deg);
}

.reward-card-mid {
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.04) 100%);
  transform: rotate(3deg);
}

.reward-card-front {
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--color-surface-2) 0%, rgba(201, 168, 76, 0.1) 100%);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  animation: cardFloat 3.5s ease-in-out infinite;
}

.reward-card-icon {
  font-size: 3rem;
  color: var(--color-gold-light);
}

.reward-card-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.reward-card-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gold-light);
}

/* ─── 11. FAIR PLAY SECTION ─────────────────────────────────── */
.fairplay-section {
  background: var(--color-bg-3);
  text-align: center;
}

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

.fairplay-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: var(--glass-blur);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.fairplay-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-emerald);
  border-color: rgba(61, 155, 110, 0.25);
}

.fairplay-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.fairplay-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text-primary);
}

.fairplay-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ─── 12. CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background: var(--color-bg-2);
  padding: var(--space-lg) 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: linear-gradient(135deg, rgba(61, 155, 110, 0.1) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  backdrop-filter: var(--glass-blur);
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 6px;
}

.cta-strip-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* ─── 13. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.footer-legal-short {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-legal-short strong {
  color: var(--color-text-secondary);
}

.footer-nav-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.footer-nav-list li {
  margin-bottom: 8px;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--color-emerald-light);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: var(--space-sm) 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-bottom a {
  color: var(--color-text-muted);
}

.footer-bottom a:hover {
  color: var(--color-emerald-light);
}

.age-badge {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* ─── 14. PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  position: relative;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(61, 155, 110, 0.07) 0%, transparent 60%),
              var(--color-bg);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(61, 155, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── 15. ABOUT PAGE ─────────────────────────────────────────── */
.about-mission {
  background: var(--color-bg-2);
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  backdrop-filter: var(--glass-blur);
  transition: transform var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-emerald-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-values {
  background: var(--color-bg-3);
  text-align: center;
}

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

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: var(--glass-blur);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-emerald);
  border-color: rgba(61, 155, 110, 0.25);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.about-company {
  background: var(--color-bg-2);
}

.company-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
}

.company-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.company-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.company-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.company-detail p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ─── 16. CONTACT PAGE ──────────────────────────────────────── */
.contact-section {
  background: var(--color-bg-2);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-emerald-glow);
  border: 1px solid rgba(61, 155, 110, 0.2);
  border-radius: var(--radius-md);
}

.contact-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Form */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

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

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

.form-input {
  width: 100%;
  background: rgba(13, 18, 16, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: rgba(61, 155, 110, 0.5);
  box-shadow: 0 0 0 3px rgba(61, 155, 110, 0.1);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a8278' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--color-surface);
  color: var(--color-text-primary);
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-emerald);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.form-success {
  display: none;
  margin-top: var(--space-sm);
  padding: 14px 18px;
  background: rgba(61, 155, 110, 0.15);
  border: 1px solid rgba(61, 155, 110, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-emerald-light);
}

.form-success.visible {
  display: block;
}

/* ─── 17. LEGAL PAGES ───────────────────────────────────────── */
.legal-section {
  background: var(--color-bg-2);
  padding-bottom: var(--space-xl);
}

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

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: var(--glass-blur);
}

.legal-sidebar h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.legal-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-sidebar a {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: block;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.legal-sidebar a:hover {
  color: var(--color-emerald-light);
  background: var(--color-emerald-glow);
}

.legal-content {
  max-width: 720px;
}

.legal-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
}

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

.legal-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

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

.legal-block ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-block ul li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-block a {
  color: var(--color-emerald-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── 18. RULES PAGE EXTRAS ─────────────────────────────────── */
.symbol-table {
  background: rgba(13, 18, 16, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: var(--space-sm) 0;
}

.symbol-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: var(--space-sm);
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

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

.symbol-header {
  background: rgba(61, 155, 110, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.sym-icon {
  font-size: 1.4rem;
  font-weight: 700;
}

.sym-gold { color: var(--color-gold-light); }
.sym-emerald { color: var(--color-emerald-light); }
.sym-amber { color: var(--color-amber-light); }
.sym-mystery { color: var(--color-text-primary); }
.sym-bonus { color: var(--color-gold-light); }

.rules-cta {
  margin-top: var(--space-lg);
}

.rules-cta .cta-strip-inner {
  background: linear-gradient(135deg, rgba(61, 155, 110, 0.1) 0%, rgba(201, 168, 76, 0.05) 100%);
}

/* ─── 19. RESPONSIBLE GAMING PAGE ───────────────────────────── */
.rg-section {
  background: var(--color-bg-2);
}

.rg-intro {
  margin-bottom: var(--space-xl);
}

.rg-intro-card {
  background: linear-gradient(135deg, rgba(61, 155, 110, 0.1) 0%, rgba(61, 155, 110, 0.03) 100%);
  border: 1px solid rgba(61, 155, 110, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.rg-intro-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.rg-intro-card h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.rg-intro-card p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.rg-principles {
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

.rg-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: var(--glass-blur);
  transition: transform var(--transition-base);
}

.rg-card:hover {
  transform: translateY(-4px);
}

.rg-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.rg-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rg-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.rg-warning {
  margin-bottom: var(--space-xl);
}

.warning-list {
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.warning-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-amber);
  flex-shrink: 0;
  margin-top: 7px;
}

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

.rg-resources {
  margin-bottom: var(--space-xl);
}

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

.resource-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.resource-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  flex: 1;
  line-height: 1.6;
}

.rg-tips {
  margin-bottom: var(--space-md);
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--space-md);
  max-width: 720px;
}

.tip-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: var(--glass-blur);
}

.tip-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-emerald-light);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.tip-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tip-item p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}
/* ENDFILE */