:root {
  --color-bg-deep: #081c15;
  --color-bg-moss: #0f2a21;
  --color-bg-elevated: rgba(255, 255, 255, 0.04);
  --color-bg-glass: rgba(15, 42, 33, 0.7);
  --color-bg-glass-light: rgba(15, 42, 33, 0.4);
  --color-green: #22c55e;
  --color-green-glow: #4ade80;
  --color-gold: #facc15;
  --color-text-primary: #ecfdf5;
  --color-text-secondary: #bbf7d0;
  --color-text-muted: #6ee7b7;
  --color-border: rgba(34, 197, 94, 0.15);
  --color-border-glow: rgba(34, 197, 94, 0.3);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(34, 197, 94, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(34, 197, 94, 0.25);
  --max-width: 1320px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

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

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

a {
  color: var(--color-green-glow);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-green);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text-primary);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 28, 21, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(8, 28, 21, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border-bottom-color: var(--color-border-glow);
}

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

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

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

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.5px;
}

.logo-dot {
  color: var(--color-green);
}

.nav-desktop {
  display: flex;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-green-glow);
}

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

.header-cta {
  font-size: 14px;
  padding: 10px 24px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  pointer-events: none;
}

.mobile-menu.open {
  pointer-events: all;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-bg-moss);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--color-bg-elevated);
  color: var(--color-green-glow);
}

.mobile-cta {
  width: 100%;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green) 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
  filter: brightness(1.1);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-green-glow);
  border: 2px solid var(--color-border-glow);
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: var(--color-green);
  box-shadow: var(--shadow-glow);
  color: var(--color-green-glow);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15), transparent);
  bottom: -100px;
  left: -50px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2), transparent);
  top: 50%;
  left: 40%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--color-green-glow), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  max-width: 540px;
}

.hero-disclaimer {
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.hero-disclaimer p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

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

.hero-card {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-card-inner {
  position: relative;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-2xl);
  padding: 48px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-elf-scene {
  position: relative;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.elf-castle {
  font-size: 80px;
  margin-bottom: 12px;
  animation: floatSlow 6s ease-in-out infinite;
}

.elf-trees {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.tree {
  font-size: 40px;
  animation: floatSlow 5s ease-in-out infinite;
}

.tree-1 { animation-delay: 0s; }
.tree-2 { animation-delay: 1s; font-size: 48px; }
.tree-3 { animation-delay: 2s; }

.elf-character {
  font-size: 60px;
  animation: floatSlow 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.elf-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: var(--color-gold);
  font-size: 14px;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 { top: 10%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.sparkle-4 { bottom: 20%; right: 15%; animation-delay: 1.5s; }
.sparkle-5 { top: 50%; left: 50%; animation-delay: 2s; }

.hero-card-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 16px;
}

/* ============================================
   PAGE HERO (Sub pages)
   ============================================ */
.page-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

.page-hero-compact {
  padding-bottom: 60px;
}

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

.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

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

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: 100px 0 120px;
  position: relative;
}

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

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

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

.game-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1), transparent 70%);
  border-radius: var(--radius-2xl);
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.game-frame-container {
  position: relative;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  aspect-ratio: 16 / 9;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.game-frame-container:hover {
  transform: scale(1.005);
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
}

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

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

.game-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.game-info-chip svg {
  stroke: var(--color-text-muted);
  flex-shrink: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-glow);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

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

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.story-card {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 60px;
  backdrop-filter: blur(10px);
}

.story-scene {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-glow-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-border-glow);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite, spinSlow 20s linear infinite;
}

.story-emoji {
  position: absolute;
  font-size: 36px;
  animation: floatSlow 4s ease-in-out infinite;
}

.story-emoji-1 { top: 15%; left: 20%; animation-delay: 0s; }
.story-emoji-2 { top: 40%; left: 50%; transform: translateX(-50%); font-size: 48px; animation-delay: 0.5s; }
.story-emoji-3 { top: 15%; right: 20%; animation-delay: 1s; }
.story-emoji-4 { bottom: 20%; left: 25%; animation-delay: 1.5s; }
.story-emoji-5 { bottom: 20%; right: 25%; animation-delay: 2s; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  position: relative;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-2xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
}

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

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

.content-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

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

.content-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.content-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.content-mini-card {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition-base);
}

.content-mini-card:hover {
  border-color: var(--color-border-glow);
}

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

.content-mini-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.content-mini-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-method-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-method h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-method p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.contact-form-wrapper {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

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

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

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

.form-input::placeholder {
  color: rgba(110, 231, 183, 0.4);
}

.form-input:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236ee7b7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%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;
  padding-right: 40px;
}

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

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

.form-submit {
  width: 100%;
}

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

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

.form-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding-top: 40px;
}

.legal-content {
  padding-bottom: 40px;
}

.legal-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}

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

.legal-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-display);
  color: var(--color-text-primary);
}

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

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

.legal-block li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.legal-block li::before {
  content: '🍃';
  position: absolute;
  left: 0;
  font-size: 12px;
}

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

.legal-block a {
  color: var(--color-green-glow);
  text-decoration: underline;
  text-decoration-color: rgba(74, 222, 128, 0.3);
  text-underline-offset: 3px;
}

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

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.rg-important-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(250, 204, 21, 0.04));
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}

.rg-important-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.rg-important-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.rg-important-card p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

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

.rg-tip-card {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.rg-tip-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-2px);
}

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

.rg-tip-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

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

.rg-resources {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.rg-resource {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.rg-resource h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.rg-resource p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.rg-resource a {
  color: var(--color-green-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 60px 0 40px;
  background: rgba(8, 28, 21, 0.5);
}

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

.footer-brand-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 360px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-green-glow);
}

.footer-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

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

.footer-legal {
  font-size: 12px;
  color: var(--color-text-muted);
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   PARTICLES
   ============================================ */
.particle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-green);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}