/* ========================================
   ORBICREWMERGE — CINEMATIC STUDIO LUXE
   Design System & Complete Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  /* Base Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;

  /* Accent Colors */
  --cinema-red: #e11d48;
  --spotlight-gold: #facc15;
  --warm-amber: #fb923c;
  --soft-white: #f5f5f5;

  /* Gradients */
  --gradient-cinema: linear-gradient(135deg, #e11d48, #fb923c);
  --gradient-spotlight: linear-gradient(135deg, #facc15, #fb923c);
  --gradient-premium: linear-gradient(135deg, #e11d48, #facc15);

  /* Glow */
  --glow-red: rgba(225, 29, 72, 0.45);
  --glow-gold: rgba(250, 204, 21, 0.35);
  --glow-red-soft: rgba(225, 29, 72, 0.2);
  --glow-gold-soft: rgba(250, 204, 21, 0.15);

  /* Surface */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;

  /* Typography */
  --text-primary: #f8fafc;
  --text-secondary: #d4d4d8;
  --text-muted: #71717a;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 1100px;
  --pad-desktop: 24px;
  --pad-mobile: 16px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Font */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

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

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Layout --- */
.scene-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
  width: 100%;
}

.scene-section {
  padding: 100px 0;
  position: relative;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--spotlight-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Text Gradients --- */
.text-gradient-cinema {
  background: var(--gradient-cinema);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

/* ========================================
   HEADER — STUDIO NAV BAR
   ======================================== */
.studio-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all var(--transition-med);
}

.studio-nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.nav-link.active {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-cinema);
  border-radius: 2px;
}

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

.btn-cta-nav {
  padding: 10px 24px;
  background: var(--gradient-cinema);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px var(--glow-red-soft);
  cursor: pointer;
}

.btn-cta-nav:hover {
  box-shadow: 0 4px 30px var(--glow-red);
  transform: translateY(-1px);
}

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

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

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

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

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

/* ========================================
   HERO — MOVIE PREMIERE EXPERIENCE
   ======================================== */
.hero-premiere {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.8) 0%, transparent 50%, rgba(10,10,10,0.8) 100%);
}

/* Curtain Animation */
.hero-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  background: linear-gradient(90deg, #3a0a0a, #1a0505);
  animation: curtainOpen 2s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-curtain-left {
  left: 0;
  transform-origin: left center;
}

.hero-curtain-right {
  right: 0;
  transform-origin: right center;
}

@keyframes curtainOpen {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

/* Spotlight Effects */
.hero-spotlight {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-spotlight-1 {
  top: -20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-red-soft) 0%, transparent 70%);
  animation: spotlightDrift 8s ease-in-out infinite alternate;
}

.hero-spotlight-2 {
  top: -10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow-gold-soft) 0%, transparent 70%);
  animation: spotlightDrift 10s ease-in-out infinite alternate-reverse;
}

.hero-spotlight-3 {
  bottom: 10%;
  left: 40%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251,146,60,0.08) 0%, transparent 70%);
  animation: spotlightDrift 12s ease-in-out infinite alternate;
}

@keyframes spotlightDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--pad-desktop);
  animation: fadeInUp 1s ease-out 1.5s both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cinema-red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--glow-red); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: fadeInUp 1s ease-out 2.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-cinema);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 25px var(--glow-red-soft);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--glow-red);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

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

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========================================
   GAME SECTION
   ======================================== */
.game-preview-section {
  background: var(--bg-secondary);
}

.game-showcase-card {
  position: relative;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.game-card-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-cinema);
  border-radius: calc(var(--radius-xl) + 2px);
  opacity: 0.4;
  filter: blur(20px);
  z-index: 0;
  transition: opacity var(--transition-med);
}

.game-showcase-card:hover .game-card-glow {
  opacity: 0.6;
}

.game-card-inner {
  position: relative;
  z-index: 1;
  background: var(--bg-tertiary);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.game-iframe-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
}

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

.game-card-info {
  padding: 32px;
}

.game-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.game-tag {
  padding: 4px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.game-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.game-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 600px;
}

/* Full Page Game */
.game-fullpage {
  padding-top: 120px;
}

.game-fullscreen-card {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.game-card-inner-full {
  border-radius: var(--radius-xl);
}

.game-iframe-full {
  aspect-ratio: 16 / 9;
  min-height: 400px;
}

.game-info-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.game-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.info-icon {
  font-size: 1.2rem;
}

/* ========================================
   FEATURE SCENE CARDS
   ======================================== */
.features-section {
  background: var(--bg-primary);
}

.scene-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.scene-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-med);
  position: relative;
}

.scene-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: var(--gradient-cinema);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-med);
  z-index: 1;
  pointer-events: none;
}

.scene-card:hover::before {
  opacity: 0.5;
}

.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.scene-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.scene-card:hover .scene-card-image img {
  transform: scale(1.08);
}

.scene-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg-secondary) 100%);
}

.scene-card-content {
  padding: 28px;
  position: relative;
}

.scene-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.scene-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

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

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-med);
}

.stat-item:hover {
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.1);
}

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

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   CTA FINALE
   ======================================== */
.cta-finale {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10,10,10,0.85) 40%, var(--bg-primary) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PAGE HERO MINI (Subpages)
   ======================================== */
.page-hero-mini {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}

.page-hero-mini-sm {
  padding: 140px 0 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, var(--bg-primary) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid {
  display: grid;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.about-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

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

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cinema-red);
  box-shadow: 0 0 0 3px var(--glow-red-soft);
  background: rgba(255, 255, 255, 0.06);
}

.form-group select {
  cursor: pointer;
  appearance: auto;
}

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

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

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

.contact-info-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

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

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.legal-nav-link {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.legal-nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}

.legal-nav-link.active {
  background: var(--gradient-cinema);
  color: #fff;
  border-color: transparent;
}

.legal-content {
  line-height: 1.8;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

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

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

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

.responsible-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.responsible-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.responsible-banner p {
  margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.studio-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
}

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

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

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.age-badge,
.social-badge,
.free-badge {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-badge {
  background: rgba(225, 29, 72, 0.15);
  color: var(--cinema-red);
  border: 1px solid rgba(225, 29, 72, 0.3);
}

.social-badge {
  background: rgba(250, 204, 21, 0.1);
  color: var(--spotlight-gold);
  border: 1px solid rgba(250, 204, 21, 0.25);
}

.free-badge {
  background: rgba(251, 146, 60, 0.1);
  color: var(--warm-amber);
  border: 1px solid rgba(251, 146, 60, 0.25);
}

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

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

/* ========================================
   ANIMATIONS — Scroll Reveal
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Light sweep on hover for interactive elements */
@keyframes lightSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Glow pulse animation */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--glow-red-soft); }
  50% { box-shadow: 0 0 40px var(--glow-red); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .scene-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .scene-section {
    padding: 60px 0;
  }

  .scene-container {
    padding: 0 var(--pad-mobile);
  }

  .nav-container {
    padding: 0 var(--pad-mobile);
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: right var(--transition-med);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 999;
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 28px;
    width: 80%;
    text-align: center;
  }

  .btn-cta-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn-lg {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Game */
  .game-card-info {
    padding: 24px;
  }

  /* Scene Cards */
  .scene-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Legal nav */
  .legal-nav {
    flex-direction: column;
  }

  .legal-nav-link {
    text-align: center;
  }

  .glass-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-premiere {
    min-height: 100svh;
  }

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

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

  .hero-headline {
    font-size: 2rem;
  }

  .page-hero-mini {
    padding: 130px 0 60px;
  }

  .game-fullpage {
    padding-top: 100px;
  }

  .game-iframe-full {
    min-height: 250px;
  }

  .game-info-bar {
    gap: 16px;
  }

  .footer-badges {
    gap: 8px;
  }
}

/* Mobile overlay when nav is open */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Selection styling */
::selection {
  background: var(--cinema-red);
  color: #fff;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--cinema-red);
  outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(225, 29, 72, 0.4);
}