/* ========================================
   ARVILORSH – DRAGON GAMING PLATFORM
   Premium Fantasy + Neon Tech UI
   ======================================== */

/* ── CSS VARIABLES ── */
:root {
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --primary-dark: #5B21B6;
  --secondary: #1E1B4B;
  --accent: #22D3EE;
  --accent-dark: #0891B2;
  --highlight: #F59E0B;
  --highlight-light: #FCD34D;
  --bg-dark: #030014;
  --bg-card: rgba(30, 27, 75, 0.4);
  --glass-bg: rgba(30, 27, 75, 0.25);
  --glass-border: rgba(124, 58, 237, 0.3);
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --neon-glow: 0 0 20px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.2);
  --neon-glow-cyan: 0 0 20px rgba(34, 211, 238, 0.5), 0 0 40px rgba(34, 211, 238, 0.2);
  --neon-glow-gold: 0 0 20px rgba(245, 158, 11, 0.5), 0 0 40px rgba(245, 158, 11, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-height: 80px;
}

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

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

body {
  font-family: 'Rajdhani', 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(91, 33, 182, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #030014 0%, #0a0025 30%, #050020 60%, #020010 100%);
  background-attachment: fixed;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── DRAGON SILHOUETTE ── */
.dragon-silhouette {
  position: fixed;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: dragonFloat 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes dragonFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(-50px, 30px) scale(1.05); opacity: 0.5; }
  50% { transform: translate(-20px, -40px) scale(0.95); opacity: 0.3; }
  75% { transform: translate(30px, 20px) scale(1.02); opacity: 0.4; }
}

/* ── GLASS HEADER ── */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(3, 0, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  transition: var(--transition-smooth);
}

.glass-header.scrolled {
  background: rgba(3, 0, 20, 0.9);
  border-bottom-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 4px 30px rgba(124, 58, 237, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6)); }
  50% { filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.9)); }
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

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

.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: transform 0.3s ease;
}

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

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

.nav-link.active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 24px 80px;
}

.hero-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(34, 211, 238, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  animation: auraBreath 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes auraBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(245, 158, 11, 0.03) 30deg,
      transparent 60deg,
      rgba(124, 58, 237, 0.03) 120deg,
      transparent 150deg,
      rgba(34, 211, 238, 0.03) 210deg,
      transparent 240deg,
      rgba(245, 158, 11, 0.03) 300deg,
      transparent 330deg
    );
  animation: raysRotate 30s linear infinite;
  pointer-events: none;
}

@keyframes raysRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  max-width: 900px;
}

.hero-egg-wrapper {
  position: relative;
  width: 280px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.egg-aura {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(34, 211, 238, 0.1) 40%,
    transparent 70%
  );
  animation: eggAuraPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes eggAuraPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-egg-image {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: eggFloat 4s ease-in-out infinite;
  filter: brightness(1.1) saturate(1.2);
  box-shadow:
    0 0 30px rgba(245, 158, 11, 0.4),
    0 0 60px rgba(34, 211, 238, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

@keyframes eggFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  75% { transform: translateY(-8px) rotate(-1deg); }
}

.egg-glow-overlay {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 40% 40%,
    rgba(245, 158, 11, 0.15) 0%,
    transparent 50%
  ),
  radial-gradient(circle at 60% 70%,
    rgba(34, 211, 238, 0.12) 0%,
    transparent 50%
  );
  border-radius: 50%;
  animation: glowShift 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes glowShift {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.title-line {
  display: block;
}

.title-line.accent {
  background: linear-gradient(135deg, var(--highlight), var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--primary-light);
  border-bottom: 2px solid var(--primary-light);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-glow), 0 8px 30px rgba(124, 58, 237, 0.5);
}

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

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-primary:hover .btn-glow {
  opacity: 1;
  animation: btnGlowMove 1.5s ease-in-out infinite;
}

@keyframes btnGlowMove {
  0% { transform: translate(-30%, -30%); }
  50% { transform: translate(10%, 10%); }
  100% { transform: translate(-30%, -30%); }
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--neon-glow-cyan);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 60px;
  font-family: 'Inter', sans-serif;
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.1);
}

/* ── FEATURES SECTION ── */
.features {
  padding: 120px 0;
}

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

.feature-card {
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  animation-delay: var(--icon-delay, 0s);
}

.feature-card:nth-child(1) .feature-icon { --icon-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { --icon-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { --icon-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { --icon-delay: 1.5s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ── EXPERIENCE SECTION ── */
.experience {
  padding: 120px 0;
}

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

.experience-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.experience-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.exp-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.experience-list li strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.experience-list li p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exp-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.image-frame:hover .exp-img {
  transform: scale(1.05);
}

.image-frame-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 60px rgba(124, 58, 237, 0.1);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.image-frame:hover .image-frame-glow {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: inset 0 0 80px rgba(124, 58, 237, 0.15), var(--neon-glow);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0 120px;
}

.cta-box {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight), var(--accent), transparent);
}

.cta-box h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 60px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.page-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 18px;
}

/* ── GAME IFRAME SECTION ── */
.game-iframe-section {
  padding: 60px 0;
}

.game-iframe-wrapper {
  padding: 32px;
  overflow: hidden;
}

.game-iframe-title {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* ── GAMES GRID ── */
.games-section {
  padding: 80px 0 120px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.game-card {
  perspective: 1000px;
}

.game-card-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
}

.game-card:hover .game-card-inner {
  border-color: var(--primary);
  box-shadow: var(--neon-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px);
}

.game-thumbnail {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.game-card:hover .game-thumbnail img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 0, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-info {
  padding: 24px;
}

.game-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.game-info p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--accent);
  background: rgba(34, 211, 238, 0.08);
}

/* ── CONTENT SECTION (ABOUT, TERMS, PRIVACY) ── */
.content-section {
  padding: 60px 0 120px;
}

.content-card {
  padding: 48px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--accent);
}

.about-text p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.about-values h2 {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent);
}

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

.value-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(30, 27, 75, 0.3);
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.15);
  transition: var(--transition-smooth);
}

.value-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.value-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Legal Content */
.legal-content h2 {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

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

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--highlight);
}

.terms-date {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}

.contact-info,
.contact-form-wrapper {
  padding: 40px;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.contact-info p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.contact-item strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  font-size: 16px;
}

.contact-item a:hover {
  color: var(--accent);
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(3, 0, 20, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: var(--transition-smooth);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
  background: rgba(30, 27, 75, 0.3);
}

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

/* ── FOOTER ── */
.main-footer {
  position: relative;
  z-index: 1;
  background: rgba(3, 0, 20, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}

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

.footer-brand p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-nav a,
.footer-legal a,
.footer-contact a {
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: var(--transition-smooth);
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding: 24px 0;
  text-align: center;
}

.age-notice {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.copyright {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 20px 24px;
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  transition: bottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

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

.cookie-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-image {
    order: -1;
  }

  .exp-img {
    height: 350px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-img {
    height: 300px;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-left: 1px solid var(--glass-border);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 20px;
    padding: 12px 24px;
  }

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

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

  .hero-content {
    gap: 30px;
  }

  .hero-egg-wrapper {
    width: 220px;
    height: 270px;
  }

  .hero-egg-image {
    width: 170px;
    height: 220px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .content-card {
    padding: 28px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 28px;
  }

  .game-iframe-wrapper {
    padding: 20px;
  }

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

  .cookie-text {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-brand .logo {
    justify-content: center;
  }

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

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

  .experience-list li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: calc(var(--header-height) + 20px) 16px 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .page-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .content-card {
    padding: 20px;
  }

  .game-iframe-wrapper {
    padding: 16px;
  }
}

/* ── SPECIAL EFFECTS ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}