/* ==========================================================================
   VIDEOS PAGE STYLES - VIDEO CAROUSEL & GALLERY
   PlayMaker Group - Video Portfolio
   ========================================================================== */

/* ==========================================================================
   NAVBAR - ENSURE TRANSPARENT ON LOAD
   ========================================================================== */

.navbar-stadium {
  background: transparent !important;
}

.navbar-stadium.scrolled {
  background: rgba(26, 29, 41, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

/* ==========================================================================
   HERO INTRO ANIMATION - HIDE ELEMENTS INITIALLY
   ========================================================================== */

.page-badge,
.hero-main-title,
.hero-subtitle,
.hero-swiper,
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev,
.btn-explore-work {
  opacity: 0;
}

/* ==========================================================================
   HERO SECTION - VIDEO CAROUSEL
   ========================================================================== */

.video-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg);
}

/* Video Background - Same as Graphics */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: 0;
}

.video-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

/* Spotlights - Optimized for performance */
.spotlight {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 208, 63, 0.12) 0%,
    rgba(244, 208, 63, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  /* GPU acceleration */
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Simplified animation - opacity only */
  animation: pulse-spotlight 8s ease-in-out infinite;
}

.spotlight-1 {
  width: 800px;
  height: 800px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  animation-delay: 0s;
}

.spotlight-2 {
  width: 600px;
  height: 600px;
  top: 40%;
  left: 20%;
  animation-delay: 2.5s;
}

.spotlight-3 {
  width: 700px;
  height: 700px;
  top: 50%;
  right: 15%;
  animation-delay: 5s;
}

/* Optimized animation - opacity only, no scale */
@keyframes pulse-spotlight {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

/* Hero Header */
.hero-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(244, 208, 63, 0.1);
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  font-family: var(--font-subhead);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--stadium-gold);
  margin-bottom: var(--space-md);
}

.hero-main-title {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   HERO VIDEO SWIPER
   ========================================================================== */

.hero-swiper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.hero-swiper .swiper-wrapper {
  align-items: center;
}

.hero-swiper .swiper-slide {
  width: 280px;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
  opacity: 0.5;
  /* REMOVED blur filter for 50%+ better performance */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

/* Video Container - 9:16 Vertical Format */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(244, 208, 63, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(244, 208, 63, 0.1);
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
  /* GPU acceleration */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-swiper .swiper-slide-active .video-container {
  border-color: rgba(244, 208, 63, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(244, 208, 63, 0.3);
}

.video-thumbnail,
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* GPU acceleration for images */
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Optimize image rendering */
  image-rendering: -webkit-optimize-contrast;
}

.video-player iframe,
.video-player video {
  width: 100%;
  height: 100%;
  /* Force GPU rendering for smooth playback */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Hero Fullscreen Button */
.hero-fullscreen-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(244, 208, 63, 0.5);
  color: var(--stadium-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.hero-fullscreen-btn:hover {
  background: var(--stadium-gold);
  color: var(--pregame-darkness);
  border-color: var(--stadium-gold);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.hero-fullscreen-btn i {
  font-size: 16px;
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(244, 208, 63, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--stadium-gold);
  box-shadow: 0 12px 32px rgba(244, 208, 63, 0.6);
}

.play-button i {
  font-size: 28px;
  color: var(--pregame-darkness);
  margin-left: 4px;
}

.video-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Navigation Buttons */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(26, 29, 41, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(244, 208, 63, 0.4);
  color: var(--stadium-gold);
  transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
  color: var(--stadium-gold);
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(244, 208, 63, 0.1);
  border-color: var(--stadium-gold);
  transform: scale(1.1);
}

.hero-swiper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Explore Button */
.btn-explore-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-explore-work {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--money-gradient);
  color: var(--pregame-darkness);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.3);
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.btn-explore-work:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 208, 63, 0.5);
  color: var(--pregame-darkness);
}

.btn-explore-work i {
  transition: transform 0.3s ease;
}

.btn-explore-work:hover i {
  transform: translateY(4px);
}

/* ==========================================================================
   PRODUCTION PHILOSOPHY SECTION
   ========================================================================== */

.production-philosophy-section {
  position: relative;
  padding: var(--space-5xl) var(--space-lg);
  overflow: hidden;
}

.philosophy-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Stadium Grid Background */
.philosophy-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(244, 208, 63, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(244, 208, 63, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-move 20s linear infinite;
  z-index: 1;
}

@keyframes grid-move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

/* Vignette Overlay */
.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 2;
}

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

.philosophy-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(244, 208, 63, 0.1);
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  font-family: var(--font-subhead);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--stadium-gold);
  margin-bottom: var(--space-lg);
}

.philosophy-badge i {
  font-size: 16px;
}

.philosophy-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-2xl);
  /* NO uppercase for philosophy title */
}

.philosophy-text {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.philosophy-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.philosophy-text p:last-child {
  margin-bottom: 0;
}

/* Philosophy YouTube Videos Grid */
.philosophy-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-video-card {
  background: rgba(26, 29, 41, 0.6);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.philosophy-video-card:hover {
  background: rgba(26, 29, 41, 0.8);
  border-color: rgba(244, 208, 63, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(244, 208, 63, 0.2);
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 70%; /* Taller for bigger video display */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

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

/* Legacy stat styles */
.stat-number {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--stadium-gold);
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* ==========================================================================
   VIDEO GALLERY SECTION
   ========================================================================== */

.videos-gallery-section {
  padding: var(--space-5xl) var(--space-lg);
  position: relative;
  background: var(--pregame-darkness);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  line-height: 1.2;
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-3xl);
}

/* Video Gallery Grid - Optimized for 9:16 vertical videos - 3 columns layout */
.videos-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for centered layout */
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  justify-items: center;
}

.video-gallery-item {
  position: relative;
  opacity: 1;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 350px; /* Limit width for better vertical video display */
}

.video-gallery-item.video-item-hidden {
  display: none;
}

.video-gallery-item.filter-hidden {
  display: none;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 Aspect Ratio (vertical) */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-thumbnail-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 24px rgba(244, 208, 63, 0.2);
}

.video-thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.5s ease;
}

/* Skeleton Loading for images without src */
.video-thumbnail-wrapper img:not([src]),
.video-thumbnail-wrapper img[src=""] {
  background: linear-gradient(90deg, #1a1d29 25%, #2a2d39 50%, #1a1d29 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  opacity: 1;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Thumbnail loaded state */
.video-thumbnail-wrapper img[src]:not([src=""]) {
  opacity: 1;
}

.video-thumbnail-wrapper:hover img {
  transform: scale(1.05);
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244, 208, 63, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.video-play-btn:hover {
  transform: scale(1.15);
  background: var(--stadium-gold);
  box-shadow: 0 12px 32px rgba(244, 208, 63, 0.6);
}

.video-play-btn i {
  font-size: 20px;
  color: var(--pregame-darkness);
  margin-left: 3px;
}

.video-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* Video Info */
.video-info {
  margin-top: var(--space-md);
}

.video-title {
  font-family: var(--font-subhead);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.video-category {
  font-size: 14px;
  color: var(--stadium-gold);
  font-weight: 500;
}

/* See More Button */
.videos-see-more-container {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
}

.btn-videos-see-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 40px;
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  color: var(--stadium-gold);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-videos-see-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 208, 63, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-videos-see-more:hover::before {
  left: 100%;
}

.btn-videos-see-more:hover {
  background: var(--money-gradient);
  border-color: var(--stadium-gold);
  color: var(--pregame-darkness);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.3);
}

.btn-videos-see-more i {
  transition: transform 0.3s ease;
}

.btn-videos-see-more:hover i {
  transform: translateY(4px);
}

.btn-videos-see-more.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

/* ==========================================================================
   FILM ROOM FAQ SECTION
   ========================================================================== */

.film-room-section {
  position: relative;
  padding: var(--space-5xl) var(--space-lg);
  overflow: hidden;
  background: var(--pregame-darkness);
}

.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Stadium Grid */
.faq-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(244, 208, 63, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(244, 208, 63, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-move 20s linear infinite;
  z-index: 1;
}

/* Vignette Overlay */
.faq-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 2;
}

.faq-header {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.film-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(244, 208, 63, 0.1);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  margin-bottom: var(--space-lg);
}

.film-badge i {
  font-size: 20px;
  color: var(--stadium-gold);
}

.replay-indicator {
  padding: 4px 12px;
  background: rgba(244, 208, 63, 0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--stadium-gold);
  animation: pulse-replay 2s ease-in-out infinite;
}

@keyframes pulse-replay {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* FAQ Accordion */
.faq-accordion {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: rgba(26, 29, 41, 0.6);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(244, 208, 63, 0.4);
}

.faq-item.active {
  background: rgba(26, 29, 41, 0.8);
  border-color: rgba(244, 208, 63, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(244, 208, 63, 0.05);
}

.question-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--money-gradient);
  border-radius: 12px;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  color: var(--pregame-darkness);
}

.question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stadium-gold);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .question-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  opacity: 1;
  padding: 0 var(--space-xl) var(--space-xl)
    calc(var(--space-xl) + 50px + var(--space-lg));
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  background: var(--pregame-darkness);
  overflow: hidden;
}

/* Diagonal Stripe Background - Same as intro section */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(244, 208, 63, 0.02) 35px,
    rgba(244, 208, 63, 0.02) 70px
  );
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-headline);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.cta-text {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT SECTION - ALWAYS VISIBLE
   ========================================================================== */

.contact-section {
  opacity: 1;
  padding: var(--space-3xl) 0;
}

/* ==========================================================================
   VIDEO LIGHTBOX
   ========================================================================== */

.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.video-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10000;
}

.video-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(244, 208, 63, 0.2);
  border: 1px solid rgba(244, 208, 63, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.video-lightbox-close:hover {
  background: var(--stadium-gold);
  transform: scale(1.1);
}

.video-lightbox-close i {
  font-size: 20px;
  color: #fff;
}

.video-lightbox-player {
  position: relative;
  width: 100%;
  max-width: 600px; /* Limit width for vertical videos */
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox-player video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

.video-lightbox-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Hide back to top button when video lightbox is active */
.video-lightbox.active ~ .back-to-top,
body:has(.video-lightbox.active) .back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet Devices (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Explore Button - Tablet */
  .btn-explore-work {
    padding: 14px 32px;
    font-size: 14px;
  }

  /* Philosophy Videos - 2 columns with 3rd centered on tablet */
  .philosophy-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 100%;
  }

  .philosophy-video-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - var(--space-lg) / 2);
    margin: 0 auto;
  }

  /* Video Gallery - 3 columns on tablet for vertical videos */
  .videos-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .video-gallery-item {
    max-width: 280px; /* Smaller max-width on tablet */
  }

  /* CTA Section - Tablet Optimization */
  .cta-section {
    padding: var(--space-4xl) var(--space-lg);
  }

  .cta-content {
    max-width: 700px;
    padding: 0 var(--space-md);
  }

  .cta-title {
    font-size: 40px;
    margin-bottom: var(--space-md);
  }

  .cta-text {
    font-size: 18px;
    margin-bottom: var(--space-xl);
  }

  .cta-buttons {
    gap: var(--space-md);
  }
}

/* Mobile Devices (below 767px) */
@media (max-width: 767px) {
  /* Hero Section */
  .video-hero {
    min-height: 100vh;
    padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-2xl);
  }

  .hero-content-wrapper {
    gap: var(--space-2xl);
  }

  .page-badge {
    font-size: 10px;
    padding: 6px 16px;
  }

  .hero-main-title {
    font-size: 36px;
  }

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

  /* Hero Swiper - Mobile */
  .hero-swiper {
    padding: var(--space-lg) 0;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 20px;
  }

  .video-duration {
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 12px;
  }

  /* Navigation Buttons */
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero-swiper .swiper-button-prev:after,
  .hero-swiper .swiper-button-next:after {
    font-size: 16px;
  }

  /* Philosophy Section */
  .production-philosophy-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .philosophy-content {
    max-width: 100%;
    padding: 0 var(--space-sm);
  }

  .philosophy-badge {
    font-size: 11px;
    padding: 8px 16px;
    gap: 6px;
  }

  .philosophy-badge i {
    font-size: 14px;
  }

  .philosophy-title {
    font-size: 28px;
    margin-bottom: var(--space-md);
    line-height: 1.3;
  }

  .philosophy-text {
    margin-bottom: var(--space-xl);
  }

  .philosophy-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }

  .philosophy-videos-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .philosophy-video-card {
    padding: 10px;
  }

  .philosophy-video-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  /* Video Gallery Section */
  .videos-gallery-section {
    padding: var(--space-4xl) var(--space-md);
  }

  .section-title {
    font-size: 32px;
    margin-bottom: var(--space-sm);
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: var(--space-2xl);
  }

  .videos-gallery-grid {
    grid-template-columns: 1fr; /* Single column on mobile - videos stacked vertically */
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    justify-items: center;
  }

  .video-gallery-item {
    max-width: 100%; /* Full width on mobile */
    width: 100%;
  }

  .video-play-btn {
    width: 48px;
    height: 48px;
  }

  .video-play-btn i {
    font-size: 16px;
  }

  .video-duration-badge {
    bottom: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .video-title {
    font-size: 16px;
  }

  .video-category {
    font-size: 12px;
  }

  /* Explore Button - Mobile */
  .btn-explore-work {
    padding: 12px 24px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  /* See More Button - Mobile */
  .btn-videos-see-more {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
    justify-content: center;
  }

  .btn-videos-see-more span {
    flex: 1;
    text-align: center;
  }

  .btn-videos-see-more i {
    flex-shrink: 0;
  }

  /* FAQ Section */
  .film-room-section {
    padding: var(--space-4xl) var(--space-md);
  }

  .faq-header {
    margin-bottom: var(--space-3xl);
  }

  .film-badge {
    font-size: 12px;
    padding: 10px 20px;
  }

  .faq-question {
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .question-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .question-text {
    font-size: 16px;
  }

  .question-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg)
      calc(var(--space-lg) + 40px + var(--space-md));
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-item:hover {
    transform: translateX(4px);
  }

  /* CTA Section */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  /* CTA Section - Mobile Optimization */
  .cta-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .cta-content {
    max-width: 100%;
    padding: 0 var(--space-sm);
  }

  .cta-title {
    font-size: 26px;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }

  .cta-text {
    font-size: 15px;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
  }

  .cta-buttons .btn-hero-primary,
  .cta-buttons .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  /* Lightbox */
  .video-lightbox-content {
    width: 95%;
    max-width: 100%;
  }

  .video-lightbox-player {
    max-width: 100%;
    border-radius: 8px;
  }

  .video-lightbox-player video {
    max-height: 70vh;
    border-radius: 8px;
  }

  .video-lightbox-close {
    top: -40px;
    width: 36px;
    height: 36px;
  }

  .video-lightbox-close i {
    font-size: 16px;
  }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS - MOBILE & TABLET
   ========================================================================== */

/* Mobile & Tablet - Reduce expensive effects */
@media (max-width: 1024px) {
  /* Disable blur filter for performance */
  .hero-swiper .swiper-slide {
    filter: none !important;
    opacity: 0.6;
  }

  .hero-swiper .swiper-slide-active {
    opacity: 1;
    filter: none !important;
    transform: scale(1) !important;
  }

  /* Simplify box shadows */
  .video-container {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
  }

  /* Faster transitions */
  .hero-swiper .swiper-slide,
  .video-container {
    transition: all 0.3s ease !important;
  }

  /* Optimize navigation buttons */
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    backdrop-filter: none;
    background: rgba(26, 29, 41, 0.98);
  }

  /* Disable spotlight animations for performance */
  .spotlight {
    animation: none !important;
  }

  .spotlight-1 {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }

  .spotlight-2,
  .spotlight-3 {
    opacity: 0.2;
  }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

/* Respect user's motion preferences - Disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .spotlight {
    animation: none !important;
  }
}

/* Disable expensive effects on low-end devices */
@media (max-width: 768px) and (hover: none) {
  /* Simplify spotlight animations on touch devices */
  .spotlight-2,
  .spotlight-3 {
    display: none; /* Hide extra spotlights on mobile for better performance */
  }

  .spotlight {
    animation-duration: 12s; /* Slower animation on mobile */
  }

  /* Disable hover effects on touch devices */
  .hero-swiper .swiper-slide:hover,
  .video-gallery-item:hover {
    transform: none;
  }
}
