/* ============================================
   SUNSET LANDING PAGE - COMPLETE STYLES
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

/* ============================================
   RESET & BASE
   ============================================ */

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================
   FIXED BACKGROUND (Full page)
   ============================================ */

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("landing-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -3;
}

/* Subtle dark gradient overlay for readability */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  ); */
  pointer-events: none;
  z-index: 0;
}

/* Animated stars overlay (on top of background) */
/* .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(2px 2px at 60% 70%, #fff, transparent),
    radial-gradient(1px 1px at 50% 50%, #fff, transparent),
    radial-gradient(1px 1px at 80% 10%, #fff, transparent),
    radial-gradient(2px 2px at 90% 60%, #fff, transparent),
    radial-gradient(1px 1px at 33% 50%, #fff, transparent),
    radial-gradient(2px 2px at 79% 53%, #fff, transparent),
    radial-gradient(1px 1px at 11% 29%, #fff, transparent),
    radial-gradient(1px 1px at 45% 20%, #fff, transparent),
    radial-gradient(2px 2px at 25% 75%, #fff, transparent);
  background-size: 200px 200px;
  animation: stars 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
} */

@keyframes stars {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* ============================================
   HERO SECTION (Container)
   ============================================ */

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

/* ============================================
   LOGO & SUN ICON
   ============================================ */

.logo {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 100;
}

.logo img {
  height: 24px;
  opacity: 0.9;
}

.sun-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 100;
  animation: float 6s ease-in-out infinite;
}

.sun-icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.5));
}

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

/* ============================================
   CONTENT (Hero content)
   ============================================ */

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 13px;
  color: #a0a0a0;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.sparkle {
  width: 14px;
  height: 14px;
  color: #ff6b6b;
  animation: sparkle 2s ease-in-out infinite;
}

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

/* Headline */
h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.italic-text {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.striked-text {
  text-decoration: line-through;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 48px;
}

/* ============================================
   EMAIL FORM
   ============================================ */

.email-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.email-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: #666;
}

.email-input:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.submit-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff006e 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

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

/* Message (success/error) */
.message {
  min-height: 24px;
  font-size: 14px;
  margin-top: 16px;
}

.message.success {
  color: #4caf50;
}

.message.error {
  color: #ff6b6b;
}

/* ============================================
   SCROLL INDICATOR - FINAL VERSION
   ============================================ */

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.scroll-indicator:hover {
  transform: scale(1.05);
}

/* Text */
.scroll-text {
  font-size: 13px;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 12px rgba(255, 107, 107, 0.4);
  font-weight: 500;
}

/* Circle container */
.scroll-circle {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main circle */
.scroll-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  backdrop-filter: blur(8px);
  border: 2px solid #ff6b6b;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5),
    inset 0 0 20px rgba(255, 107, 107, 0.1);
  animation: pulseCircle 2s ease-in-out infinite;
}

/* Outer glow circle */
.scroll-circle::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 50%;
  animation: expandCircle 2s ease-in-out infinite;
}

/* Arrow SVG */
.scroll-circle svg {
  padding-left: 3px;
  width: 24px;
  height: 24px;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  position: relative;
  z-index: 2;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes pulseCircle {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5),
      inset 0 0 20px rgba(255, 107, 107, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.8),
      inset 0 0 30px rgba(255, 107, 107, 0.2);
  }
}

@keyframes expandCircle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Hover effects */
.scroll-indicator:hover .scroll-circle::before {
  animation: pulseCircle 1s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-circle::after {
  animation: expandCircle 1s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-circle svg {
  animation: arrowBounce 0.8s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-indicator {
    margin-top: 40px;
    gap: 20px;
  }

  .scroll-text {
    font-size: 12px;
  }

  .scroll-circle {
    width: 50px;
    height: 50px;
  }

  .scroll-circle::before {
    width: 50px;
    height: 50px;
  }

  .scroll-circle::after {
    width: 60px;
    height: 60px;
  }

  .scroll-circle svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================
   FILM GRID SECTION
   ============================================ */

.film-grid {
  position: relative;
  padding: 120px 40px;
  /* background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%); */
  overflow: hidden;
}

/* Film grain texture overlay */
.film-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
  pointer-events: none;
  opacity: 0.3;
}
/*


/* ============================================
   GRID LAYOUT
   ============================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

/* Responsive grid */
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================================
   FILM CARD (Movie Poster)
   ============================================ */

.film-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a3e;
}

/* Aspect ratio 2:3 (standard movie poster) */
.film-card::before {
  content: "";
  display: block;
  padding-top: 150%; /* 2:3 ratio */
}

.film-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

/* ============================================
   HOVER EFFECTS (Neon Glow)
   ============================================ */

.film-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  overflow: visible; /* Changed from hidden to visible for glow */
  background: #2a2a3e;
}

.film-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 40px rgba(255, 0, 110, 0.6),
    0 0 60px rgba(131, 56, 236, 0.4), 0 0 80px rgba(255, 107, 107, 0.3),
    0 16px 40px rgba(0, 0, 0, 0.6);
  z-index: 10;
  border: 2px solid rgba(255, 107, 107, 0.6);
}

.film-card:hover img {
  filter: brightness(1.2) saturate(1.4) contrast(1.1);
}

/* Remove the ::before animation if causing issues */
/* Scanline effect (VHS vibe) */
.film-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.1) 0px,
    rgba(0, 0, 0, 0.1) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.film-card:hover::after {
  opacity: 0.2;
}

/* ============================================
   TAGLINE
   ============================================ */

.tagline {
  text-align: center;
  margin-top: 24px;
  font-size: 20px;
  font-style: italic;
  color: #ff6b6b;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 60px 40px 40px;
  background: #0a0a0f;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer p:first-child {
  /* font-style: italic; */
  color: #999;
  font-size: 15px;
  margin-bottom: 16px;
}

.copyright {
  font-size: 12px !important;
  color: #444 !important;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
  .logo,
  .sun-icon {
    top: 24px;
  }

  .logo {
    left: 24px;
  }

  .sun-icon {
    right: 24px;
  }

  .logo img {
    height: 20px;
  }

  .sun-icon img {
    width: 32px;
    height: 32px;
  }

  h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }

  .email-form {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sparkle {
    width: 12px;
    height: 12px;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  position: relative;
  padding: 120px 40px;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #0a0a0f 100%); */
  overflow: hidden;
}

/* Subtle background pattern */
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 107, 107, 0.05) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.3;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features h2 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px; /* Réduit de 64px à 16px */
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Film Grid Section */
.film-grid h2 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px; /* Même espacement que features */
  letter-spacing: -0.02em;
  color: #fff;
}

.film-subtitle {
  font-size: 18px;
  color: #a0a0a0;
  text-align: center;
  margin-bottom: 64px; /* Même espacement que features */
  letter-spacing: 0.02em;
  font-weight: 400;
}
.features-subtitle {
  font-size: 18px;
  color: #a0a0a0;
  text-align: center;
  margin-bottom: 64px; /* Espace avant la grid */
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px; /* Espace avant la grid */
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ============================================
   FEATURES VISUAL GRID - 2x2 SIMPLE
   ============================================ */

.features-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

.feature-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Cache les images */
.feature-image {
  display: none;
}

/* Icon en haut */
.feature-icon-overlay {
  position: static;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.95) 0%,
    rgba(255, 0, 110, 0.95) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.feature-visual:hover .feature-icon-overlay {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.8),
    inset 0 0 40px rgba(255, 255, 255, 0.3);
}

.feature-icon-overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Feature Text */
.feature-text {
  max-width: 400px;
}

.feature-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #b0b0b0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .features-visual-grid {
    gap: 70px 80px;
    max-width: 800px;
  }

  .feature-icon-overlay {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon-overlay svg {
    width: 32px;
    height: 32px;
  }

  .feature-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .feature-text p {
    font-size: 14px;
  }
}

/* Responsive - Mobile (1 colonne) */
@media (max-width: 768px) {
  .features-visual-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 0 20px;
  }

  .feature-icon-overlay {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon-overlay svg {
    width: 32px;
    height: 32px;
  }

  .feature-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .feature-text p {
    font-size: 15px;
  }
}
/* Early Access CTA */
.early-access-cta {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 0, 110, 0.1) 100%
  );
  border: 2px solid rgba(255, 107, 107, 0.3);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.early-access-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.4);
  border-radius: 24px;
  font-size: 12px;
  color: #ff6b6b;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-badge .sparkle {
  width: 12px;
  height: 12px;
  animation: sparkle 2s ease-in-out infinite;
}

.early-access-cta h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.early-access-cta > p {
  font-size: 16px;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* Perks list */
.perks-list {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.perks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #e0e0e0;
}

.perks-list svg {
  width: 20px;
  height: 20px;
  color: #ff6b6b;
  flex-shrink: 0;
}

/* Stats */
.cta-stats {
  font-size: 14px;
  color: #a0a0a0;
  position: relative;
  z-index: 1;
}

.cta-stats span {
  font-weight: 700;
  color: #ff6b6b;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  /* ===== FEATURES SECTION ===== */

  .features {
    padding: 80px 20px;
  }

  .features h2 {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
    padding: 0 20px;
  }

  .features h2 .italic-text,
  .features h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
  }

  .features-subtitle {
    font-size: 15px;
    margin-bottom: 48px;
    padding: 0 20px;
    line-height: 1.5;
  }

  /* VISUAL GRID - Mobile */
  .features-visual-grid {
    gap: 60px;
    margin-bottom: 60px;
  }

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

  .feature-visual.right {
    direction: ltr;
  }

  .feature-image {
    aspect-ratio: 16/10;
  }

  .feature-icon-overlay {
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: -20px;
  }

  .feature-icon-overlay svg {
    width: 32px;
    height: 32px;
  }

  .feature-text h3 {
    font-size: 22px;
  }

  .feature-text p {
    font-size: 15px;
  }

  /* OLD GRID STYLES - For fallback */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Early Access CTA */
  .early-access-cta {
    padding: 40px 28px;
  }

  .early-access-cta h3 {
    font-size: 24px;
  }

  .early-access-cta > p {
    font-size: 14px;
  }

  .perks-list li {
    font-size: 14px;
    padding: 10px 0;
  }

  .cta-stats {
    font-size: 13px;
  }

  .cta-stats span {
    font-size: 16px;
  }

  /* ===== FILM GRID SECTION ===== */

  .film-grid {
    padding: 80px 20px;
  }

  .film-grid h2 {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
    padding: 0 20px;
  }

  .film-grid h2 .italic-text,
  .film-grid h2 em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
  }

  .film-subtitle {
    font-size: 15px;
    margin-bottom: 48px;
    padding: 0 20px;
    line-height: 1.5;
  }
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

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

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 0, 110, 0.1) 50%,
    rgba(131, 56, 236, 0.1) 100%
  );
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 0 60px rgba(255, 0, 110, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.4);
}

/* Scanlines effect */
.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 107, 107, 0.03) 0px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  opacity: 0.5;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.2) 0%,
    rgba(255, 0, 110, 0.2) 100%
  );
  border-radius: 16px;
  border: 2px solid rgba(255, 107, 107, 0.4);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
  border-color: #ff6b6b;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: #ff6b6b;
  filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.6));
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #b0b0b0;
  position: relative;
  z-index: 1;
}
