﻿/* ============================================
   NEON SLOTS - Free Simulated Gambling-Style Games
   Theme: Neon Nights / Cyberpunk Aesthetic
   ============================================ */

/* CSS Custom Properties */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0d0d1a;
  --bg-card: #12122a;
  --bg-card-hover: #1a1a3e;
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-purple: #b829ff;
  --neon-green: #39ff14;
  --neon-yellow: #ffe500;
  --text-primary: #ffffff;
  --text-secondary: #b0b0cc;
  --text-muted: #6a6a8a;
  --border-color: #1e1e3a;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-pink: 0 0 10px #ff2d95, 0 0 20px #ff2d95, 0 0 40px #ff2d95;
  --glow-cyan: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #00f0ff;
  --glow-purple: 0 0 10px #b829ff, 0 0 20px #b829ff, 0 0 40px #b829ff;
  --glow-pink-subtle: 0 0 5px #ff2d95, 0 0 10px rgba(255, 45, 149, 0.3);
  --glow-cyan-subtle: 0 0 5px #00f0ff, 0 0 10px rgba(0, 240, 255, 0.3);
  --glow-purple-subtle: 0 0 5px #b829ff, 0 0 10px rgba(184, 41, 255, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink-subtle);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: var(--glow-cyan-subtle);
  color: var(--neon-cyan);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  box-shadow: var(--glow-pink-subtle);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-pink);
  color: #fff;
  text-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan-subtle);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
  color: var(--neon-cyan);
  text-shadow: none;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--neon-pink);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-pink);
  box-shadow: var(--glow-pink-subtle);
  flex-shrink: 0;
}

.badge-18-small {
  width: 30px;
  height: 30px;
  font-size: 0.6rem;
}

.disclaimer-banner {
  background: linear-gradient(90deg, rgba(255, 45, 149, 0.15), rgba(184, 41, 255, 0.15));
  border-top: 1px solid rgba(255, 45, 149, 0.3);
  border-bottom: 1px solid rgba(255, 45, 149, 0.3);
  padding: 10px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.disclaimer-banner strong {
  color: var(--neon-pink);
}

.no-real-money-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.2), rgba(184, 41, 255, 0.2));
  border: 1px solid var(--neon-pink);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: var(--glow-pink-subtle);
}

/* ============================================
   SVG ICON STYLES
   ============================================ */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(255, 45, 149, 0.5));
}

.logo:hover .logo-text {
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

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

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: var(--transition-smooth);
  box-shadow: var(--glow-cyan-subtle);
}

.nav-link:hover,
.nav-link.active {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-subtle);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--neon-cyan);
  transition: var(--transition-smooth);
  border-radius: 2px;
  box-shadow: var(--glow-cyan-subtle);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: url('../assets/heromainback.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 15, 0.88) 0%, rgba(10, 10, 15, 0.75) 50%, rgba(10, 10, 15, 0.88) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(255, 45, 149, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184, 41, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  padding: 40px 16px;
}

.hero-text {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero-image {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  transform: rotate(3deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.15);
  border: 2px solid rgba(0, 240, 255, 0.2);
}

.hero-badge {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 32px;
}

.hero-disclaimer strong {
  color: var(--neon-pink);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   DISCLAIMER BANNER (Top Bar)
   ============================================ */
.top-disclaimer {
  background: linear-gradient(90deg, rgba(255, 45, 149, 0.1), rgba(184, 41, 255, 0.1));
  border-bottom: 1px solid rgba(255, 45, 149, 0.2);
  padding: 8px 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.top-disclaimer strong {
  color: var(--neon-pink);
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
  background: var(--bg-secondary);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 2;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--glow-cyan-subtle);
  border-color: rgba(0, 240, 255, 0.3);
}

.game-card:hover::before {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.game-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-free-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(57, 255, 20, 0.2);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}

.game-card-body {
  padding: 20px;
}

.game-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.game-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.game-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.game-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-pink);
  color: #fff;
  text-shadow: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-primary);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
}

.step-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--glow-cyan-subtle);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(184, 41, 255, 0.15));
  border: 2px solid var(--neon-cyan);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 0 auto 20px;
  box-shadow: var(--glow-cyan-subtle);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* ============================================
   RESPONSIBLE GAMBLING TEASER
   ============================================ */
.responsible-teaser {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.responsible-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
}

.teaser-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.teaser-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.1);
  border: 2px solid rgba(57, 255, 20, 0.3);
  color: var(--neon-green);
}

.teaser-content h2 {
  font-size: 1.8rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.teaser-content p {
  color: var(--text-secondary);
  max-width: 600px;
  font-size: 1rem;
}

/* ============================================
   GAME PAGE
   ============================================ */
.game-page-header {
  padding-top: 110px;
  padding-bottom: 20px;
  background: var(--bg-secondary);
  position: relative;
}

.game-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.game-page-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-subtle);
}

.game-page-header p {
  color: var(--text-secondary);
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.7;
}

.game-embed-container {
  padding: 24px 0;
}

.game-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: var(--bg-card);
}

.game-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  margin: 24px 0;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.1), rgba(184, 41, 255, 0.1));
  border: 1px solid rgba(255, 45, 149, 0.3);
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.game-notice strong {
  color: var(--neon-pink);
}

.related-games {
  padding: 40px 0 60px;
}

.related-games h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-subtle);
}

.related-games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.related-game-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.related-game-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--glow-cyan-subtle);
  transform: translateX(4px);
  color: var(--text-primary);
  text-shadow: none;
}

.related-game-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-game-info h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.related-game-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   GAMES PAGE - AGE GATE
   ============================================ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.age-gate-box {
  background: var(--bg-card);
  border: 2px solid var(--neon-pink);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--glow-pink-subtle);
}

.age-gate-box .badge-18 {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}

.age-gate-box h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink-subtle);
}

.age-gate-box p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.age-gate-box .disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(255, 45, 149, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 45, 149, 0.2);
}

.age-gate-box .disclaimer-text strong {
  color: var(--neon-pink);
}

.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-buttons .btn {
  min-width: 140px;
}

.age-gate-hidden {
  display: none;
}

/* ============================================
   CONTENT PAGES (About, Contact, etc.)
   ============================================ */
.page-header {
  padding-top: 110px;
  padding-bottom: 40px;
  background: var(--bg-secondary);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
}

.page-header h1 {
  font-size: 2.2rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-subtle);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.page-content {
  padding: 48px 0 60px;
}

.page-content h2 {
  font-size: 1.4rem;
  color: var(--neon-pink);
  margin-top: 36px;
  margin-bottom: 16px;
  text-shadow: var(--glow-pink-subtle);
}

.page-content h3 {
  font-size: 1.1rem;
  color: var(--neon-cyan);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.page-content ul,
.page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content ul {
  list-style: none;
}

.page-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.page-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}

.page-content ol {
  list-style: decimal;
}

.page-content ol li {
  padding-left: 8px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.page-content a {
  color: var(--neon-cyan);
}

.page-content a:hover {
  color: var(--neon-pink);
}

.info-box {
  padding: 20px 24px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  margin: 24px 0;
}

.info-box.warning {
  background: rgba(255, 45, 149, 0.05);
  border-color: rgba(255, 45, 149, 0.2);
}

.info-box.success {
  background: rgba(57, 255, 20, 0.05);
  border-color: rgba(57, 255, 20, 0.2);
}

.info-box p {
  margin-bottom: 8px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan-subtle);
  text-shadow: none;
}

/* Self-Assessment Section */
.assessment-list {
  list-style: decimal !important;
  padding-left: 24px !important;
  counter-reset: none;
}

.assessment-list li {
  padding-left: 8px !important;
  margin-bottom: 14px !important;
}

.assessment-list li::before {
  display: none !important;
  content: none !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
  margin-top: auto;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-column a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan-subtle);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
}

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

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}

.footer-disclaimer strong {
  color: var(--neon-pink);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--neon-cyan);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: var(--glow-pink-subtle);
  }
  50% {
    box-shadow: var(--glow-pink);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 480px+ */
@media (min-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: <768px - hero stacks vertically */
@media (max-width: 767px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
    padding: 30px 16px;
  }

  .hero-text {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero-image {
    flex: none;
    max-width: 280px;
    width: 280px;
    margin-top: 24px;
  }

  .hero-image img {
    transform: rotate(1deg);
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Tablet: 768px+ */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .game-card-image {
    height: 240px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .related-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header h1 {
    font-size: 2.6rem;
  }

  .game-page-header h1 {
    font-size: 2.4rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .age-gate-box {
    padding: 48px 40px;
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .hamburger {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .section {
    padding: 100px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .game-card-image {
    height: 200px;
  }

  .game-page-header h1 {
    font-size: 2.8rem;
  }

  .related-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Navigation Toggle */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}

/* Small mobile adjustments */
@media (max-width: 479px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 32px;
  }

  .age-gate-box {
    padding: 32px 20px;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .age-gate-buttons .btn {
    width: 100%;
  }

  .game-page-header {
    padding-top: 100px;
  }

  .page-header {
    padding-top: 100px;
  }
}
