/* ==========================================================================
   GlowGear - Cinematic Movie Studio Website
   Style System: High-End Sci-Fi & Cinema Noir
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Core Color Palette */
  --bg-dark: #05070D;
  --bg-surface: #0B101C;
  --bg-card: rgba(14, 20, 36, 0.75);
  --bg-card-hover: rgba(22, 32, 58, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(56, 189, 248, 0.25);
  
  /* Cinematic Accents */
  --accent-cyan: #38BDF8;
  --accent-violet: #818CF8;
  --accent-amber: #F59E0B;
  --accent-amber-glow: #FBBF24;
  --accent-magenta: #EC4899;
  
  /* Text */
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-sub: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Animation Curves */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere Glows */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  will-change: transform;
}

.ambient-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-cyan), transparent);
  top: -150px;
  left: 10%;
  animation: floatOrb 22s infinite ease-in-out alternate;
}

.ambient-blob-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-violet), transparent);
  top: 35%;
  right: -100px;
  animation: floatOrb 28s infinite ease-in-out alternate-reverse;
}

.ambient-blob-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-amber), transparent);
  bottom: 5%;
  left: 5%;
  animation: floatOrb 24s infinite ease-in-out alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
  100% { transform: translate(-30px, -40px) scale(0.95); }
}

/* Base Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* Top Bar / Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s var(--ease-smooth);
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.25rem 0;
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #FFFFFF;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-cyan) 80%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 10px var(--accent-amber);
  animation: beaconPulse 2s infinite ease-in-out;
}

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

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

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s var(--ease-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-amber));
  transition: width 0.25s var(--ease-smooth);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Primary Cinematic Buttons */
.btn-cinematic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: #FFFFFF;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0284C7, #2563EB);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.btn-accent {
  background: linear-gradient(135deg, #B45309, #D97706);
  color: #FFFFFF;
  border: 1px solid rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #D97706, #F59E0B);
  border-color: #FDE68A;
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.6);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle span {
  width: 2rem;
  height: 2px;
  background: #FFFFFF;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 7, 13, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 55;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-smooth);
}

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

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s var(--ease-smooth);
}

.mobile-nav-link:hover {
  color: var(--accent-cyan);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.15);
  transform: scale(1.02);
  transition: transform 12s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 7, 13, 0.2) 0%, rgba(5, 7, 13, 0.8) 70%, #05070D 100%),
              linear-gradient(to bottom, rgba(5, 7, 13, 0.6) 0%, transparent 40%, #05070D 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-wrap: balance;
  background: linear-gradient(180deg, #FFFFFF 20%, #CBD5E1 70%, rgba(203, 213, 225, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(56, 189, 248, 0.25));
}

.hero-tagline {
  font-family: var(--font-sub);
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-amber-glow);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.hero-description {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: #CBD5E1;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  text-wrap: balance;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

.hero-scroll-indicator:hover {
  color: var(--accent-cyan);
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Section Headers & Common Layout
   ========================================================================== */
section {
  padding: 6.5rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-wrap: balance;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.about-text-col p {
  font-size: 1.125rem;
  color: #CBD5E1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-genres-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.genre-tag {
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: all 0.2s var(--ease-smooth);
}

.genre-tag:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
}

.about-media-col {
  position: relative;
}

.about-card-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  background: var(--bg-surface);
}

.about-card-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.about-card-frame:hover img {
  transform: scale(1.04);
}

.about-frame-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 1.25rem;
  background: rgba(11, 16, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.about-frame-badge-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.about-frame-badge-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   The GlowGear Universe (Genre Section)
   ========================================================================== */
.universe-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}

.filter-btn:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: #FFFFFF;
  color: #05070D;
  border-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

@media (min-width: 640px) {
  .universe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .universe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.universe-card {
  position: relative;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

.universe-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-glow-color, var(--accent-cyan));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7), 0 0 25px var(--card-glow-color, rgba(56, 189, 248, 0.2));
}

.universe-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.universe-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 13, 0.95) 0%, rgba(5, 7, 13, 0.4) 50%, rgba(5, 7, 13, 0.2) 100%);
  transition: opacity 0.3s ease;
}

.universe-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.universe-card-genre {
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent-cyan));
  margin-bottom: 0.4rem;
}

.universe-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.universe-card-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.5;
  opacity: 0.9;
}

/* ==========================================================================
   Creative Engine Section
   ========================================================================== */
.creative-engine-section {
  background: radial-gradient(circle at center, rgba(14, 20, 36, 0.6) 0%, rgba(5, 7, 13, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.engine-console-container {
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  background: rgba(11, 16, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(56, 189, 248, 0.05);
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .engine-console-container {
    padding: 3.5rem 3rem;
  }
}

.engine-core-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.engine-reactor-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateReactor 30s linear infinite;
}

@keyframes rotateReactor {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.engine-reactor-inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-amber) 0%, rgba(56, 189, 248, 0.2) 60%, transparent 80%);
  box-shadow: 0 0 35px var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: reactorPulse 3s ease-in-out infinite alternate;
}

@keyframes reactorPulse {
  0% { transform: scale(0.92); opacity: 0.85; filter: hue-rotate(0deg); }
  100% { transform: scale(1.08); opacity: 1; filter: hue-rotate(30deg); }
}

.reactor-symbol {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: #FFFFFF;
}

.engine-status-text {
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-top: 1.5rem;
}

.engine-stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .engine-stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .engine-stages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.engine-stage-card {
  padding: 1.75rem;
  background: rgba(14, 20, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  cursor: pointer;
}

.engine-stage-card:hover, .engine-stage-card.active {
  background: rgba(22, 32, 58, 0.8);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.15);
}

.engine-stage-card.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-amber));
}

.stage-step-num {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-amber);
  margin-bottom: 0.75rem;
}

.stage-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.stage-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Original Worlds Section
   ========================================================================== */
.worlds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .worlds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .worlds-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.world-card {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.world-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.7);
}

.world-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.world-card:hover img {
  transform: scale(1.06);
}

.world-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 13, 0.95) 0%, rgba(5, 7, 13, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.world-category {
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.25rem;
}

.world-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.world-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Featured Productions (GlowGear Originals)
   ========================================================================== */
.productions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .productions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.production-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.production-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px rgba(56, 189, 248, 0.2);
}

.production-poster-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.production-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.production-card:hover .production-poster-wrap img {
  transform: scale(1.05);
}

.production-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(11, 16, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0.85;
  transition: all 0.25s var(--ease-smooth);
  text-decoration: none;
}

.production-card:hover .production-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-amber);
  border-color: var(--accent-amber-glow);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  opacity: 1;
}

.production-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.production-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-sub);
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.production-meta span.genre {
  color: var(--accent-cyan);
  font-weight: 700;
}

.production-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.production-synopsis {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.production-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.production-link {
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-amber-glow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s var(--ease-smooth);
}

.production-link:hover {
  gap: 0.65rem;
}

.productions-cta-wrap {
  text-align: center;
}

/* ==========================================================================
   Visual Storytelling Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 13, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease-smooth);
}

.gallery-item:hover .gallery-item-hover {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-item-tag {
  font-size: 0.6875rem;
  font-family: var(--font-sub);
  color: var(--accent-cyan);
  text-transform: uppercase;
}

/* ==========================================================================
   Technology + Story Section
   ========================================================================== */
.tech-story-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
}

@media (min-width: 992px) {
  .tech-story-container {
    grid-template-columns: 1fr auto 1fr;
  }
}

.tech-column, .story-column {
  padding: 2.5rem;
  border-radius: 12px;
  background: rgba(14, 20, 36, 0.7);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.tech-column {
  border-top: 3px solid var(--accent-cyan);
}

.story-column {
  border-top: 3px solid var(--accent-amber);
}

.tech-story-pillar-badge {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tech-column .tech-story-pillar-badge {
  color: var(--accent-cyan);
}

.story-column .tech-story-pillar-badge {
  color: var(--accent-amber);
}

.tech-story-pillar-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.tech-story-pillar-desc {
  font-size: 0.9375rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-story-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-story-point {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tech-story-point::before {
  content: '—';
  color: var(--border-glow);
}

.tech-story-nexus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

@media (min-width: 992px) {
  .tech-story-nexus {
    padding: 0 1rem;
  }
}

.nexus-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: rgba(14, 20, 36, 0.7);
  border: 1px solid var(--border-subtle);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.6875rem;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.contact-detail-val {
  font-size: 0.9375rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

a.contact-detail-val:hover {
  color: var(--accent-cyan);
}

.contact-form-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: rgba(14, 20, 36, 0.7);
  border: 1px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CBD5E1;
  margin-bottom: 0.4rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(5, 7, 13, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all 0.2s var(--ease-smooth);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

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

.form-status-msg {
  display: none;
  padding: 0.85rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-status-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
}

/* ==========================================================================
   Final Dramatic CTA
   ========================================================================== */
.final-cta-section {
  position: relative;
  text-align: center;
  padding: 8rem 0;
  background: radial-gradient(circle at center, rgba(14, 20, 36, 0.85) 0%, #05070D 100%);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15), rgba(56, 189, 248, 0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.final-cta-desc {
  font-size: 1.125rem;
  color: #CBD5E1;
  margin-bottom: 2.5rem;
  text-wrap: balance;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #020408;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 320px;
  margin-top: 0.75rem;
}

.footer-col-title {
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

.footer-link:hover {
  color: var(--accent-cyan);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

.footer-contact-list a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   Fullscreen Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-dialog {
  max-width: 1080px;
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  position: relative;
}

.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s var(--ease-smooth);
}

.lightbox-close-btn:hover {
  background: var(--accent-cyan);
  color: #000;
}

.lightbox-img-wrap {
  width: 100%;
  height: 500px;
  background: #000;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-details {
  padding: 1.5rem;
  background: var(--bg-surface);
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.lightbox-caption {
  font-size: 0.875rem;
  color: var(--text-muted);
}
