/* ==========================================================================
   THE WAY THE RAIN POURS — Movie Promotion Website
   Design System & Styles
   ========================================================================== */

/* ---------- Design Tokens ---------- */
/*
Theme Name: The Way The Rain Pours
Theme URI: https://thewaytherainpours.com
Author: Julius Stukes Jr.
Author URI: https://thewaytherainpours.com
Description: Custom WordPress theme for The Way The Rain Pours film.
Version: 1.0.0
Text Domain: twtrp
*/
/* ==========================================================================
   THE WAY THE RAIN POURS — Movie Promotion Website
   Design System & Styles
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --bg-primary: #060b18;
  --bg-secondary: #0a1628;
  --bg-section-alt: #0d1f3c;
  --bg-hero-overlay: linear-gradient(
    180deg,
    rgba(6, 11, 24, 0.6) 0%,
    rgba(6, 11, 24, 0.85) 60%,
    rgba(6, 11, 24, 1) 100%
  );

  --accent-cyan: #66fcf1;
  --accent-teal: #4ecdc4;
  --accent-blue: #2196f3;
  --accent-gradient: linear-gradient(135deg, #66fcf1, #4ecdc4);
  --accent-glow: rgba(102, 252, 241, 0.35);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);

  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --section-padding: clamp(5rem, 10vw, 9rem);
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  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: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  border-radius: 3px;
}

::selection {
  background: rgba(102, 252, 241, 0.3);
  color: #fff;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 11, 24, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-gradient) !important;
  color: var(--bg-primary) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  font-size: 0.75rem !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 11, 24, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--accent-cyan);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-cyan);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent-cyan);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(102, 252, 241, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 252, 241, 0.15);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: var(--bg-section-alt);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-title .accent {
  color: var(--accent-cyan);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Water Divider */
.water-divider {
  position: relative;
  height: 80px;
  margin-top: -1px;
  overflow: hidden;
}

.water-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

#rain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-hero-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-tagline {
  display: inline-block;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInDown 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.2s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  opacity: 0;
  animation: bounce 2s 2s infinite, fadeIn 1s 2s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-cyan);
  stroke-width: 2;
  fill: none;
}

/* ==========================================================================
   TRAILER SECTION
   ========================================================================== */
.trailer-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(102, 252, 241, 0.05);
  border: 1px solid var(--glass-border);
}

.trailer-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(102, 252, 241, 0.15),
    transparent 40%,
    transparent 60%,
    rgba(78, 205, 196, 0.1)
  );
  border-radius: var(--radius-lg);
  z-index: -1;
}

.trailer-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* ==========================================================================
   SYNOPSIS SECTION
   ========================================================================== */
.synopsis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.synopsis-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.synopsis-text p {
  margin-bottom: 1.5rem;
}

.synopsis-quote {
  border-left: 3px solid var(--accent-cyan);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--accent-cyan);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
}

.synopsis-mission {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 1px;
}

.synopsis-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.synopsis-poster {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 350px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.synopsis-poster:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(102, 252, 241, 0.08);
}

.synopsis-poster img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(6, 11, 24, 0.9), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

/* Poster row */
.poster-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.poster-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 500px;
}

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

.poster-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   GAME SECTION
   ========================================================================== */
.game-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.game-wrapper {
  position: relative;
  width: 100%;
}

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

.game-info {
  padding: 2rem;
  text-align: center;
}

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

.game-info .controls {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.game-info .key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* ==========================================================================
   SOUNDTRACK SECTION
   ========================================================================== */
.soundtrack-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.soundtrack-card:hover {
  border-color: rgba(102, 252, 241, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.soundtrack-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.soundtrack-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.soundtrack-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
#newsletter {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-section-alt) 50%,
    var(--bg-secondary) 100%
  );
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-content h2 .accent {
  color: var(--accent-cyan);
}

.newsletter-content > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  border: 1px solid var(--glass-border);
  border-right: none;
  background: var(--glass-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent-cyan);
  background: rgba(102, 252, 241, 0.03);
}

.newsletter-form button {
  padding: 1rem 2rem;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.newsletter-form button:hover {
  box-shadow: 0 8px 25px var(--accent-glow);
}

.newsletter-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.newsletter-note a {
  color: var(--accent-cyan);
}

.newsletter-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 350px;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.35rem 0;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(102, 252, 241, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom a {
  color: var(--accent-cyan);
}

/* ==========================================================================
   GLASS CARD (Reusable)
   ========================================================================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(102, 252, 241, 0.15);
}

/* ==========================================================================
   CSS RAIN DROPS (Decorative)
   ========================================================================== */
.rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

@keyframes rainFall {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

.rain-drop {
  position: absolute;
  top: -20px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-cyan));
  opacity: 0;
  animation: rainFall linear infinite;
}

/* Generate 20 rain drops with varied properties */
.rain-drop:nth-child(1)  { left: 5%;  height: 18px; animation-duration: 1.2s; animation-delay: 0.1s; }
.rain-drop:nth-child(2)  { left: 12%; height: 22px; animation-duration: 0.9s; animation-delay: 0.5s; }
.rain-drop:nth-child(3)  { left: 18%; height: 15px; animation-duration: 1.5s; animation-delay: 0.3s; }
.rain-drop:nth-child(4)  { left: 25%; height: 28px; animation-duration: 0.8s; animation-delay: 0.7s; }
.rain-drop:nth-child(5)  { left: 30%; height: 12px; animation-duration: 1.8s; animation-delay: 0.2s; }
.rain-drop:nth-child(6)  { left: 37%; height: 20px; animation-duration: 1.1s; animation-delay: 0.9s; }
.rain-drop:nth-child(7)  { left: 42%; height: 25px; animation-duration: 0.7s; animation-delay: 0.4s; }
.rain-drop:nth-child(8)  { left: 50%; height: 16px; animation-duration: 1.4s; animation-delay: 0.6s; }
.rain-drop:nth-child(9)  { left: 55%; height: 30px; animation-duration: 0.85s; animation-delay: 0.15s; }
.rain-drop:nth-child(10) { left: 62%; height: 14px; animation-duration: 1.6s; animation-delay: 0.8s; }
.rain-drop:nth-child(11) { left: 68%; height: 22px; animation-duration: 1.0s; animation-delay: 0.35s; }
.rain-drop:nth-child(12) { left: 73%; height: 18px; animation-duration: 1.3s; animation-delay: 0.55s; }
.rain-drop:nth-child(13) { left: 78%; height: 26px; animation-duration: 0.75s; animation-delay: 0.25s; }
.rain-drop:nth-child(14) { left: 83%; height: 13px; animation-duration: 1.7s; animation-delay: 0.45s; }
.rain-drop:nth-child(15) { left: 88%; height: 20px; animation-duration: 1.05s; animation-delay: 0.65s; }
.rain-drop:nth-child(16) { left: 93%; height: 24px; animation-duration: 0.95s; animation-delay: 0.1s; }
.rain-drop:nth-child(17) { left: 8%;  height: 17px; animation-duration: 1.35s; animation-delay: 1.0s; }
.rain-drop:nth-child(18) { left: 45%; height: 21px; animation-duration: 1.15s; animation-delay: 0.75s; }
.rain-drop:nth-child(19) { left: 60%; height: 19px; animation-duration: 0.65s; animation-delay: 0.5s; }
.rain-drop:nth-child(20) { left: 35%; height: 27px; animation-duration: 1.25s; animation-delay: 0.95s; }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ==========================================================================
   PRODUCER'S STATEMENT SECTION
   ========================================================================== */
.producer-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.producer-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.producer-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-cyan);
}

.producer-author-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.producer-author-info p {
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.producer-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.producer-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

.producer-text em {
  font-style: italic;
  color: var(--text-primary);
}

.producer-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-cyan);
  text-align: center;
  margin: 3.5rem 0;
  padding: 2.5rem;
  border-top: 1px solid rgba(102, 252, 241, 0.2);
  border-bottom: 1px solid rgba(102, 252, 241, 0.2);
  line-height: 1.6;
}

.producer-mission {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-align: center;
  color: var(--text-primary);
  margin-top: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .synopsis-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    letter-spacing: -1px;
  }

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

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

  .synopsis-visual {
    order: -1;
  }

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

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

  .poster-item {
    max-height: 400px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .game-wrapper iframe {
    height: 600px;
  }

  .producer-container {
    padding: 2.5rem 2rem;
  }
  
  .producer-author {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form input[type="email"] {
    border-radius: var(--radius-pill);
    border-right: 1px solid var(--glass-border);
  }

  .newsletter-form button {
    border-radius: var(--radius-pill);
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .soundtrack-card {
    padding: 2rem 1.5rem;
  }

  .game-wrapper iframe {
    height: 600px;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .rain-drop {
    display: none;
  }
}

/* ========== VIEW SELECTOR MODAL ========== */
.view-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-modal-content {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 90%;
  width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.view-modal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

.view-modal-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.view-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.view-modal-buttons button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.view-modal-buttons .btn-primary {
  background: var(--accent-cyan);
  color: #000;
  border: none;
}

.view-modal-buttons .btn-primary:hover {
  background: var(--text);
  box-shadow: 0 0 15px var(--accent-cyan);
}

.view-modal-buttons .btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--surface-border);
}

.view-modal-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text);
}
