/*
Theme Name: Loot-Sphere | Legendary Trials Await
Author: TrueWhitePages
Version: 3.0.0
*/
/* ========================================
   LOOT-SPHERE - Modern Mythological Design
   Complete CSS Redesign
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

/* ========== ROOT VARIABLES ========== */
:root {
  /* Color Palette - Mythological Theme */
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #818CF8;
  --secondary: #8B5CF6;
  --accent: #EC4899;
  --accent-light: #F472B6;
  --gold: #F59E0B;
  --gold-light: #FBBF24;
  
  /* Neutrals */
  --bg-dark: #0F172A;
  --bg-darker: #020617;
  --bg-card: #1E293B;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  
  /* Effects */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--gold));
  --glow-primary: 0 0 30px rgba(99, 102, 241, 0.5);
  --glow-accent: 0 0 30px rgba(236, 72, 153, 0.5);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --container-width: 1400px;
  --section-padding: 5rem;
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-darker);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-full {
  width: 100%;
  padding: 0;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(var(--glow-primary));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
  width: 100%;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* ========== AGE GATE MODAL ========== */
.age-gate {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.age-gate.active {
  display: flex;
}

.age-gate-content {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 3rem;
  max-width: 600px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--glow-primary);
  animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-gate-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.age-gate-content h2 {
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate-content p {
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary,
.btn-hero,
.btn-outline,
.btn-cta,
.btn-submit {
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--glow-primary);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 2px solid var(--text-muted);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary);
  padding: 1.25rem 3rem;
}

.btn-outline:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.btn-cta {
  background: var(--gradient-accent);
  color: white;
  padding: 1.25rem 3.5rem;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--glow-accent);
}

.btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--bg-darker) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* ========== NOTICE BANNER ========== */
.notice-banner {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(245, 158, 11, 0.1));
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.notice-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.notice-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.notice-text h3 {
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.notice-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.notice-link:hover {
  border-bottom-color: var(--gold);
}

/* ========== SECTIONS ========== */
section {
  padding: var(--section-padding) 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
}

.section-title {
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ========== FEATURED TRIAL ========== */
.featured-trial {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
  border-radius: 20px;
  padding: 4rem 2rem;
  margin: 4rem auto;
}

.trial-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.trial-visual {
  position: relative;
}

.trial-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

.trial-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.trial-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(30, 41, 59, 0.8);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== FEATURES GRID ========== */
.features-section {
  padding: var(--section-padding) 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  background: var(--bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-box h3 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
  border-radius: 20px;
  padding: 4rem 2rem;
  margin: 4rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 20px;
  margin: 4rem 2rem;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== GAME PAGE ========== */
.game-page {
  padding-top: 80px;
}

.page-header {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.page-header h1 {
  margin-bottom: 1rem;
}

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

.game-header {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

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

.game-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.game-title {
  margin-bottom: 1.5rem;
}

.game-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.game-section {
  padding: 3rem 2rem;
}

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

.game-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

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

.game-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-darker);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
  z-index: 1;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.game-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.control-btn {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.control-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.game-info-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-panel {
  background: var(--bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.info-panel h3 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.info-panel ul {
  list-style: none;
  padding: 0;
}

.info-panel li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

.info-panel li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========== CONTACT PAGE ========== */
.contact-info-section {
  padding: 3rem 2rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-light);
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
}

.contact-item strong {
  display: block;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-item a {
  color: var(--primary);
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-section {
  padding: 4rem 2rem;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-container h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-light);
}

.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.faq-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
  border-radius: 20px;
  margin: 4rem 2rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.faq-item h3 {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== LEGAL PAGES ========== */
.legal-section {
  padding: 3rem 2rem 5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  border-bottom: 3px solid var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  color: var(--primary-light);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.legal-content ul {
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.legal-content strong {
  color: var(--primary-light);
}

.legal-content a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
}

.legal-content a:hover {
  border-bottom-color: var(--primary);
}

.legal-notice {
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.legal-notice.critical {
  background: rgba(236, 72, 153, 0.1);
  border-color: var(--accent);
}

.legal-notice p {
  margin: 0;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--primary);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto 3rem;
}

.footer-column h4 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
}

.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-info li {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 2px solid rgba(99, 102, 241, 0.2);
  padding-top: 2rem;
  text-align: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--glow-primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4rem;
  }

  .trial-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-section {
    min-height: 90vh;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-hero,
  .btn-outline {
    width: 100%;
  }

  .hero-stats {
    gap: 2rem;
  }

  .features-grid,
  .testimonials-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .age-gate-content {
    padding: 2rem;
  }

  .age-gate-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .notice-content {
    flex-direction: column;
    text-align: center;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .contact-info-card,
  .form-container,
  .legal-content {
    padding: 2rem 1.5rem;
  }

  .game-controls {
    flex-direction: column;
  }

  .control-btn {
    width: 100%;
  }
}

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}