/* ═══════════════════════════════════════════ VARIABLES ═══════════════════════════════════════════ */
:root {
  --primary: #ffcc00;
  --accent: #f5c518;
  --accent-gold: #ffcc00;
  --dark: #0a0a0a;
  --card: #141414;
  --text: #ffffff;
  --text-light: #d1d5db;
  --text-mute: #9ca3af;
  --text-dim: #6b7280;
  --font: "Inter", sans-serif;
  --speed: 0.3s;
}

/* ═══════════════════════════════════════════ BASE STYLES ═══════════════════════════════════════════ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--speed);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════ UTILITIES ═══════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.text-primary {
  color: var(--primary);
}
.fill-current {
  fill: currentColor;
}
.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}
.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ═══════════════════════════════════════════ NAVBAR ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  padding: 1rem 1.5rem;
  transition: all var(--speed);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 1;
  text-decoration: none;
  transition: opacity var(--speed);
}
.nav-logo:hover {
  opacity: 0.8;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-logo-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
}
.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  z-index: 50;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(24px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--speed);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
  .nav-links {
    display: flex;
  }
  .nav-actions {
    display: flex;
  }
}

/* Mobile nav logo scaling */
@media (max-width: 479px) {
  .nav-logo-img {
    height: 28px;
  }
  .nav-logo-sep {
    font-size: 0.85rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .nav-logo-img {
    height: 36px;
  }
  .nav-logo-sep {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════ BUTTONS ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  transition:
    background var(--speed),
    transform var(--speed);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--primary);
  color: #000;
}
.btn-primary:hover {
  background: #e6b800;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 0.75rem;
  color: var(--text);
}
.btn-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════ HERO SECTION ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}
.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    black,
    rgba(0, 0, 0, 1.5) 15%,
    transparent
  );
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  padding: 0 1rem;
}
.hero-subtitle {
  color: var(--text-mute);
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5ch;
  flex-wrap: wrap;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #ffd24d, #ff9500, #ffd966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-1 {
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  margin: 0;
  transform-origin: center center;
  will-change: font-size, transform;
  transition: font-size 0.5s ease, letter-spacing 0.5s ease;
}
.hero-title-1 .highlight {
  color: var(--accent-gold);
}

.nav-logo-wrap .hero-title-1 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: -0.5px;
  line-height: 1;
  transition: font-size 0.35s ease, letter-spacing 0.35s ease;
}

@media (max-width: 479px) {
  .hero-title-1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    letter-spacing: -1px;
  }
  .nav-logo-wrap .hero-title-1,
  .hero-logos--hidden .hero-title-1 {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    letter-spacing: -0.25px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hero-title-1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -1.5px;
  }
  .nav-logo-wrap .hero-title-1,
  .hero-logos--hidden .hero-title-1 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    letter-spacing: -0.4px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title-1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
  }
  .nav-logo-wrap .hero-title-1,
  .hero-logos--hidden .hero-title-1 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.hero-logos--hidden {
  opacity: 0;
  transform: translateY(-16px) scale(0.95);
  pointer-events: none;
}
.hero-logos--hidden .hero-title-1 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: -0.5px;
}
.hero-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6)) brightness(1.05);
}
.hero-logo-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 2rem;
  line-height: 1;
}

@media (min-width: 480px) {
  .hero-logo-img {
    height: 80px;
  }
  .hero-buttons {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-desc {
    font-size: 1.25rem;
  }
  .hero-logo-img {
    height: 100px;
  }
  .hero-logo-sep {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-logo-img {
    height: 120px;
  }
}

/* ═══════════════════════════════════════════ CAROUSEL & CARDS ═══════════════════════════════════════════ */
.main-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  margin-top: 3rem;
  padding-bottom: 5rem;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.carousel-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.movie-card {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.movie-card:hover {
  z-index: 10;
  transform: translateY(-6px);
}
.movie-rank {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  z-index: 5;
  color: rgba(255, 255, 255, 0.22);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}
.movie-card:hover .movie-rank {
  color: rgba(255, 204, 0, 0.9);
  text-shadow: 0 0 16px rgba(255, 204, 0, 0.5);
  transform: scale(1.1);
}
.card-image-container {
  position: relative;
  aspect-ratio: 2/3;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  background: #111;
  transition: box-shadow 0.3s ease;
}
.movie-card:hover .card-image-container {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8);
}
.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.movie-card:hover .card-image-container img {
  transform: scale(1.06);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.card-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .carousel-container {
    padding-left: 2rem;
    gap: 1.25rem;
  }
  .movie-card {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
  }
  .movie-rank {
    font-size: 4rem;
  }
}

/* ═══════════════════════════════════════════ ACCESS PASS / PRICING ═══════════════════════════════════════════ */
.access-pass-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.access-pass-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255, 204, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.access-pass-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
.ap-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.ap-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.ap-headline-gold {
  background: linear-gradient(135deg, #ffd24d, #ff9500, #ffd966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ap-body {
  font-size: 1rem;
  color: var(--text-mute);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.ap-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ap-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}
.ap-features li svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.ap-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ap-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255, 204, 0, 0.15);
}
.ap-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.35),
    transparent 40%,
    transparent 60%,
    rgba(255, 153, 0, 0.2)
  );
  pointer-events: none;
  opacity: 0.7;
}
.ap-card-body {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2rem;
  text-align: center;
}
.ap-card-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.ap-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(217, 119, 6, 0.4);
}
.ap-original-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.ap-original-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
}
.ap-original-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}
.ap-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.ap-currency {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  padding-top: 0.5rem;
}
.ap-amount {
  font-size: 5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ap-price-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.ap-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 0 1.5rem;
}
.ap-value-line {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.ap-value-line strong {
  color: var(--text-light);
  font-weight: 700;
}
.ap-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--primary);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(255, 204, 0, 0.25);
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
  margin-bottom: 1rem;
  flex-direction: row;
  flex-wrap: nowrap;
}
.ap-cta-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.ap-cta-btn:hover {
  background: #e6b800;
  box-shadow: 0 0 36px rgba(255, 204, 0, 0.45);
  transform: translateY(-2px);
}
.ap-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.ap-trust svg {
  width: 0.9rem;
  height: 0.9rem;
}
.ap-devices {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}
.ap-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.ap-device:hover {
  opacity: 0.85;
}
.ap-device svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: var(--text);
}
.ap-device span {
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

@media (min-width: 900px) {
  .access-pass-inner {
    grid-template-columns: 1fr 420px;
    gap: 5rem;
  }
}
@media (max-width: 640px) {
  .access-pass-section {
    padding: 3.5rem 1rem;
  }
  .ap-headline {
    font-size: 1.75rem;
  }
  .ap-amount {
    font-size: 3.75rem;
  }
  .ap-card-body {
    padding: 1.75rem 1.25rem;
  }
}


/* ═══════════════════════════════════════════ REFER A FRIEND ═══════════════════════════════════════════ */
.refer-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0c00 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.refer-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,204,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.refer-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.refer-header {
  text-align: center;
  margin-bottom: 3rem;
}
.refer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,204,0,0.08);
  border: 1px solid rgba(255,204,0,0.2);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.refer-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.refer-headline-gold {
  background: linear-gradient(135deg, #ffd24d, #ff9500, #ffd966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.refer-subtext {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Steps row ── */
.refer-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,204,0,0.12);
}
.refer-step {
  background: #111;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: background 0.25s;
}
.refer-step:hover { background: #161200; }
.refer-step-num {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,204,0,0.1);
  border: 1.5px solid rgba(255,204,0,0.3);
  color: var(--primary);
  font-size: 0.78rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.refer-step-body h4 { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 0.25rem; }
.refer-step-body p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; }

/* ── Card ── */
.refer-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255,204,0,0.18);
  border-radius: 20px;
  overflow: hidden;
}
.refer-card-glow {
  position: absolute; inset: -1px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,204,0,0.25), transparent 45%, transparent 55%, rgba(255,153,0,0.15));
  pointer-events: none;
}
.refer-card-body {
  position: relative; z-index: 1;
  padding: 2rem;
}

/* ── LOCKED TEASER (shown when logged out) ── */
.refer-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0 0.5rem;
  gap: 1.25rem;
}
.refer-teaser-reward {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, rgba(255,204,0,0.1), rgba(255,153,0,0.07));
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 14px;
  padding: 1rem 1.5rem;
}
.refer-teaser-reward svg { color: var(--primary); width: 1.6rem; height: 1.6rem; flex-shrink: 0; }
.refer-teaser-reward-text strong {
  display: block; font-size: 1.1rem; font-weight: 900; color: var(--primary); line-height: 1.1;
}
.refer-teaser-reward-text span {
  font-size: 0.72rem; color: var(--text-dim); font-weight: 500;
}

/* Blurred preview strip */
.refer-teaser-preview {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.refer-teaser-preview-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
.refer-teaser-bar {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,204,0,0.4), rgba(255,153,0,0.2));
  width: 60%;
}
.refer-teaser-input-mock {
  height: 42px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center;
  padding: 0 1rem; gap: 0.5rem;
}
.refer-teaser-input-mock span {
  display: block; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.15);
}
.refer-teaser-input-mock span:first-child { width: 55%; }
.refer-teaser-input-mock span:last-child {
  width: 20%; background: rgba(255,204,0,0.35);
  margin-left: auto; border-radius: 6px;
}
.refer-teaser-btns-mock { display: flex; gap: 0.5rem; }
.refer-teaser-btns-mock span {
  height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  flex: 1;
}

/* Lock overlay */
.refer-teaser-lock {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem;
  background: radial-gradient(ellipse at center, rgba(13,12,0,0.7) 0%, rgba(13,12,0,0.92) 100%);
  border-radius: 12px;
}
.refer-teaser-lock-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,204,0,0.1);
  border: 1.5px solid rgba(255,204,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.refer-teaser-lock-icon svg { width: 1.1rem; height: 1.1rem; }
.refer-teaser-lock p {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-dim); letter-spacing: 0.04em;
}

.refer-teaser-login-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #000;
  font-weight: 800; font-size: 0.88rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px; border: none; cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(255,204,0,0.25);
  transition: background 0.2s, box-shadow 0.3s, transform 0.15s;
  font-family: inherit;
}
.refer-teaser-login-btn:hover {
  background: #e6b800;
  box-shadow: 0 0 40px rgba(255,204,0,0.45);
  transform: translateY(-2px);
}
.refer-teaser-login-btn svg { width: 0.95rem; height: 0.95rem; flex-shrink: 0; }

/* ── FULL CONTENT (shown when logged in) ── */
.refer-full { display: none; }
.refer-full.refer-visible { display: block; }
.refer-teaser.refer-hidden { display: none; }

/* Cashback banner */
.refer-cashback-banner {
  display: flex; flex-direction: row;
  align-items: flex-start; gap: 0.85rem;
  background: linear-gradient(135deg, rgba(255,204,0,0.08), rgba(255,153,0,0.05));
  border: 1px solid rgba(255,204,0,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.refer-cashback-icon {
  width: 2.25rem; height: 2.25rem; min-width: 2.25rem;
  border-radius: 50%;
  background: rgba(255,204,0,0.1);
  border: 1.5px solid rgba(255,204,0,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem;
}
.refer-cashback-text { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.refer-cashback-text strong {
  display: block; font-size: 0.88rem; font-weight: 900;
  color: var(--primary); line-height: 1.3;
}
.refer-cashback-text span {
  display: block; font-size: 0.75rem; color: var(--text-dim); line-height: 1.55;
}
.refer-cashback-banner.unlocked {
  background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(16,185,129,0.05));
  border-color: rgba(22,163,74,0.3);
  animation: cashback-pulse 2s ease infinite;
}
.refer-cashback-banner.unlocked .refer-cashback-icon {
  background: rgba(22,163,74,0.15);
  border-color: rgba(22,163,74,0.4);
}
.refer-cashback-banner.unlocked .refer-cashback-text strong { color: #4ade80; }
@keyframes cashback-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0.08); }
}

/* Progress */
.refer-progress-wrap { margin-bottom: 1.75rem; }
.refer-progress-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 0.65rem; flex-wrap: wrap; gap: 0.25rem;
}
.refer-progress-title { font-size: 0.78rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.02em; }
.refer-progress-count { font-size: 0.72rem; color: var(--text-dim); }
.refer-progress-count strong { color: var(--primary); font-weight: 900; }
.refer-progress-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.refer-progress-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #ff9500, #ffcc00, #ffd966);
  box-shadow: 0 0 12px rgba(255,204,0,0.4);
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
}
.refer-progress-dots {
  display: flex; flex-wrap: nowrap; justify-content: space-between;
  align-items: flex-start; margin-top: 0.6rem; padding: 0 2px; width: 100%;
}
.refer-progress-dot {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; flex: 0 0 auto; min-width: 0;
}
.refer-progress-dot-circle {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  display: block; flex-shrink: 0;
}
.refer-progress-dot.reached .refer-progress-dot-circle {
  background: var(--primary); border-color: var(--primary);
  box-shadow: 0 0 6px rgba(255,204,0,0.5); transform: scale(1.25);
}
.refer-progress-dot-label {
  font-size: 0.58rem; color: var(--text-dim); font-weight: 600;
  white-space: nowrap; line-height: 1;
}
.refer-progress-dot.reached .refer-progress-dot-label { color: var(--primary); }

/* Card top */
.refer-card-top {
  display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem;
}
.refer-reward-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255,204,0,0.12), rgba(255,153,0,0.08));
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 12px; padding: 0.85rem 1.25rem; align-self: flex-start;
}
.refer-reward-badge svg { width: 1.4rem; height: 1.4rem; color: var(--primary); flex-shrink: 0; }
.refer-reward-badge-text strong {
  display: block; font-size: 1rem; font-weight: 900; color: var(--primary); line-height: 1.1;
}
.refer-reward-badge-text span { font-size: 0.72rem; color: var(--text-dim); font-weight: 500; }

/* Link box */
.refer-link-box { display: flex; flex-direction: column; gap: 0.75rem; }
.refer-link-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
}
.refer-link-row { display: flex; gap: 0.5rem; align-items: stretch; }
.refer-link-input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.75rem 1rem;
  font-size: 0.82rem; font-family: "Courier New", monospace;
  color: var(--text-light); outline: none; cursor: text; min-width: 0;
  transition: border-color 0.2s;
}
.refer-link-input:focus { border-color: rgba(255,204,0,0.35); }
.refer-copy-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--primary); color: #000;
  font-weight: 800; font-size: 0.8rem;
  padding: 0.75rem 1.1rem; border-radius: 8px; border: none;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 0 20px rgba(255,204,0,0.2); flex-shrink: 0;
}
.refer-copy-btn:hover { background: #e6b800; transform: translateY(-1px); box-shadow: 0 0 32px rgba(255,204,0,0.4); }
.refer-copy-btn.copied { background: #16a34a; color: #fff; box-shadow: 0 0 20px rgba(22,163,74,0.3); }
.refer-copy-btn svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }

/* Share buttons — outline theme */
.refer-share-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.6rem;
}
.refer-share-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.refer-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-light);
  background: transparent;
  border: 1.5px solid rgba(255,204,0,0.22);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.refer-share-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,204,0,0.06);
  transform: translateY(-1px);
}
.refer-share-btn svg {
  width: 1rem; height: 1rem; flex-shrink: 0;
  color: rgba(255,204,0,0.55);
  transition: color 0.2s;
}
.refer-share-btn:hover svg { color: var(--primary); }

/* Divider */
.refer-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 1.5rem 0; }

/* Stats row */
.refer-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.refer-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.refer-stat-val { font-size: 1.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.refer-stat-label {
  font-size: 0.68rem; color: var(--text-dim); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.refer-stat-val.stat-complete { color: #4ade80; }

/* Fine print */
.refer-fine {
  text-align: center; font-size: 0.68rem; color: var(--text-dim);
  margin-top: 1.25rem; line-height: 1.7;
}

/* Responsive */
@media (min-width: 640px) {
  .refer-steps { grid-template-columns: repeat(3, 1fr); }
  .refer-step { flex-direction: column; align-items: flex-start; }
  .refer-card-top { flex-direction: row; align-items: flex-start; }
  .refer-link-box { flex: 1; }
}
@media (max-width: 480px) {
  .refer-section { padding: 3.5rem 1rem; }
  .refer-card-body { padding: 1.5rem 1.25rem; }
  .refer-link-row { flex-direction: column; }
  .refer-copy-btn { justify-content: center; }
}


/* ═══════════════════════════════════════════ VOICES / TESTIMONIALS ═══════════════════════════════════════════ */
.voices-section {
  padding: 6rem 1.5rem;
  background: #080808;
  position: relative;
  overflow: hidden;
}
.voices-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.voices-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.voices-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.18);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.voices-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.voices-headline-gold {
  background: linear-gradient(135deg, #ffd24d, #ff9500, #ffd966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.voices-subtext {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}
.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.voice-card {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  overflow: hidden;
}
.voice-card:hover {
  border-color: rgba(255, 204, 0, 0.2);
  transform: translateY(-4px);
}
.voice-card--featured {
  border-color: rgba(255, 204, 0, 0.18);
  background: linear-gradient(160deg, #161200 0%, #111 40%);
}
.voice-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.voice-quote-mark {
  font-size: 5rem;
  line-height: 0.6;
  font-family: Georgia, serif;
  color: rgba(255, 204, 0, 0.12);
  margin-bottom: 0.25rem;
}
.voice-card--featured .voice-quote-mark {
  color: rgba(255, 204, 0, 0.22);
}
.voice-message {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.voice-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.voice-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.voice-role {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
}

@media (min-width: 640px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .voices-section {
    padding: 3.5rem 1rem;
  }
  .voices-headline {
    font-size: 1.5rem;
  }
  .voice-card {
    padding: 1.5rem 1.25rem;
  }
  .voice-message {
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════ CTA SECTION ═══════════════════════════════════════════ */
.cta-section {
  padding: 5rem 1.5rem;
}
.cta-card {
  max-width: 72rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}
.cta-card:hover .cta-bg img {
  transform: scale(1.1);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.cta-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.cta-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cta-browse-link {
  color: var(--text-mute);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.5rem 0;
}
.cta-browse-link:hover {
  color: var(--primary);
}
.cta-footnote {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 2.5rem 1rem;
  }
  .cta-card {
    border-radius: 1rem;
    padding: 0.75rem;
  }
  .cta-content {
    padding: 2rem 0.5rem;
  }
  .cta-title {
    font-size: 1.75rem;
  }
  .cta-desc {
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════ FOOTER ═══════════════════════════════════════════ */
.footer {
  background: #000;
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 3rem;
  text-align: center;
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.copyright {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-top: 2rem;
  letter-spacing: 0.1em;
}

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 1rem;
  }
  .footer-logo-img {
    height: 22px;
  }
  .copyright {
    font-size: 0.65rem;
    line-height: 1.6;
  }
}

/* ═══════════════════════════════════════════ MOVIES PAGE ═══════════════════════════════════════════ */
.movies-hero {
  background: linear-gradient(
    170deg,
    #080808 0%,
    #0f0e00 60%,
    #0a0a0a 100%
  ) !important;
  padding: 7rem 1.5rem 3.5rem !important;
  position: relative;
  overflow: hidden;
}
.movies-hero::before {
  background: radial-gradient(
    ellipse 60% 55% at 50% 0%,
    rgba(255, 204, 0, 0.09),
    transparent
  ) !important;
}
.mh-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.mh-logos.hero-logos--hidden {
  opacity: 0;
  transform: translateY(-14px) scale(0.95);
  pointer-events: none;
}
.mh-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.5));
}
.mh-logo-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.6rem;
  line-height: 1;
}
.mh-subtitle {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.mh-tagline-text {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.mh-tagline-gold {
  background: linear-gradient(135deg, #ffd24d, #ff9500, #ffd966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mh-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto;
}
.mh-desc strong {
  color: var(--primary);
  font-weight: 800;
}

@media (min-width: 768px) {
  .mh-logo-img {
    height: 68px;
  }
}
@media (max-width: 480px) {
  .movies-hero {
    padding: 5.5rem 1rem 2.5rem !important;
  }
  .mh-logo-img {
    height: 38px;
  }
  .mh-tagline-text {
    font-size: 1.3rem;
  }
  .mh-desc {
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════════════ LOADERS & MISC ═══════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
.skeleton-card {
  min-width: 200px;
  aspect-ratio: 2/3;
  border-radius: 8px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.show-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 0 28px rgba(255, 204, 0, 0.3);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    background 0.2s;
}
.show-more-btn:hover {
  background: #e6b800;
  box-shadow: 0 0 44px rgba(255, 204, 0, 0.5);
  transform: translateY(-2px);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 1;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.nav-logo-wrap.nav-logo--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}
.nav-logo-part {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo-part:hover {
  opacity: 0.8;
}

/* ═══════════════════════════════════════════ LOGIN MODAL ═══════════════════════════════════════════ */
:root {
  --lm-gold:   #ffcc00;
  --lm-dark:   #0a0a0a;
  --lm-card:   #141414;
  --lm-border: rgba(255,204,0,0.18);
  --lm-text:   #ffffff;
  --lm-mute:   #9ca3af;
  --lm-dim:    #6b7280;
  --lm-err:    #f87171;
  --lm-speed:  0.3s;
}

.lm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lm-overlay.lm-open {
  opacity: 1;
  pointer-events: all;
}
.lm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lm-panel {
  position: relative;
  z-index: 1;
  background: var(--lm-card);
  border: 1px solid var(--lm-border);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 2.25rem 2rem 2rem;
  box-shadow:
    0 0 0 1px rgba(255,204,0,0.08),
    0 32px 64px rgba(0,0,0,0.7),
    0 0 80px rgba(255,204,0,0.06);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.lm-overlay.lm-open .lm-panel {
  transform: translateY(0) scale(1);
}
.lm-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lm-gold), #ff9500, var(--lm-gold), transparent);
  border-radius: 20px 20px 0 0;
}
.lm-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--lm-mute);
  transition: background var(--lm-speed), color var(--lm-speed);
}
.lm-close svg { width: 0.9rem; height: 0.9rem; }
.lm-close:hover { background: rgba(255,255,255,0.12); color: var(--lm-text); }
.lm-brand {
  text-align: center;
  margin-bottom: 1.75rem;
}
.lm-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.lm-logo { height: 32px; width: auto; object-fit: contain; }
.lm-brand-sep { color: rgba(255,255,255,0.2); font-size: 1rem; }
.lm-brand-indiego { font-size: 1.2rem; font-weight: 900; letter-spacing: -0.5px; color: var(--lm-text); }
.lm-gold { color: var(--lm-gold); }
.lm-brand-sub { font-size: 0.68rem; color: var(--lm-dim); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.lm-step { animation: lmFadeUp 0.3s ease forwards; }
.lm-hidden { display: none !important; }
@keyframes lmFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lm-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lm-text);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.lm-sub {
  font-size: 0.82rem;
  color: var(--lm-mute);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.lm-sub strong, .lm-gold-text { color: var(--lm-gold); font-weight: 700; }
.lm-back {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: none; border: none; cursor: pointer;
  color: var(--lm-dim); font-size: 0.78rem; font-weight: 600;
  margin-bottom: 1rem; padding: 0;
  transition: color var(--lm-speed);
}
.lm-back svg { width: 0.9rem; height: 0.9rem; }
.lm-back:hover { color: var(--lm-gold); }
.lm-field-wrap { margin-bottom: 1.1rem; }
.lm-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lm-dim);
  margin-bottom: 0.45rem;
}
.lm-input-row {
  position: relative;
  display: flex;
  align-items: center;
}
.lm-field-icon {
  position: absolute;
  left: 0.85rem;
  width: 1rem; height: 1rem;
  color: var(--lm-dim);
  pointer-events: none;
  flex-shrink: 0;
}
.lm-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 0.9rem 0.75rem 2.5rem;
  font-size: 0.9rem;
  color: var(--lm-text);
  outline: none;
  font-family: inherit;
  transition: border-color var(--lm-speed), box-shadow var(--lm-speed);
  -webkit-appearance: none;
}
.lm-input::placeholder { color: var(--lm-dim); }
.lm-input:focus {
  border-color: rgba(255,204,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,204,0,0.08);
}
.lm-input.lm-error { border-color: var(--lm-err); }
.lm-field-error {
  display: block;
  font-size: 0.7rem;
  color: var(--lm-err);
  margin-top: 0.35rem;
  min-height: 1em;
}
.lm-otp-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.lm-otp-box {
  width: 100%;
  max-width: 48px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lm-gold);
  text-align: center;
  outline: none;
  font-family: "Courier New", monospace;
  caret-color: var(--lm-gold);
  transition: border-color var(--lm-speed), box-shadow var(--lm-speed), background var(--lm-speed);
  -webkit-appearance: none;
}
.lm-otp-box:focus {
  border-color: rgba(255,204,0,0.55);
  box-shadow: 0 0 0 3px rgba(255,204,0,0.1);
  background: rgba(255,204,0,0.04);
}
.lm-otp-box.lm-otp-filled {
  border-color: rgba(255,204,0,0.3);
  background: rgba(255,204,0,0.05);
}
.lm-otp-box.lm-error { border-color: var(--lm-err); }
.lm-gender-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lm-gender-opt { cursor: pointer; }
.lm-gender-opt input[type="radio"] { display: none; }
.lm-gender-pill {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lm-mute);
  cursor: pointer;
  transition: border-color var(--lm-speed), background var(--lm-speed), color var(--lm-speed);
  user-select: none;
}
.lm-gender-opt input:checked + .lm-gender-pill {
  border-color: var(--lm-gold);
  background: rgba(255,204,0,0.1);
  color: var(--lm-gold);
}
.lm-gender-pill:hover {
  border-color: rgba(255,204,0,0.3);
  color: var(--lm-text);
}
.lm-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--lm-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
  box-shadow: 0 0 24px rgba(255,204,0,0.22);
  transition: background 0.2s, box-shadow 0.25s, transform 0.15s;
  font-family: inherit;
}
.lm-btn-primary:hover {
  background: #e6b800;
  box-shadow: 0 0 36px rgba(255,204,0,0.4);
  transform: translateY(-1px);
}
.lm-btn-primary:active { transform: translateY(0); }
.lm-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.lm-btn-arrow { width: 1rem; height: 1rem; flex-shrink: 0; }
.lm-resend-line {
  text-align: center;
  font-size: 0.75rem;
  color: var(--lm-dim);
  margin-top: 1rem;
}
.lm-resend-btn {
  background: none; border: none; cursor: pointer;
  color: var(--lm-gold); font-weight: 700; font-size: 0.75rem;
  font-family: inherit; padding: 0;
  transition: opacity 0.2s;
}
.lm-resend-btn:disabled { color: var(--lm-dim); cursor: default; opacity: 0.6; }
.lm-footnote {
  text-align: center;
  font-size: 0.65rem;
  color: var(--lm-dim);
  margin-top: 0.85rem;
  line-height: 1.6;
}
.lm-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
}
.lm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background 0.3s, width 0.3s;
}
.lm-dot--active {
  background: var(--lm-gold);
  width: 20px;
  border-radius: 3px;
}
.lm-success-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 0.75rem;
  animation: lmPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lmPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lm-spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: lmSpin 0.6s linear infinite;
  flex-shrink: 0;
}
@keyframes lmSpin { to { transform: rotate(360deg); } }
@media (max-width: 480px) {
  .lm-panel { padding: 2rem 1.25rem 1.5rem; border-radius: 16px; }
  .lm-heading { font-size: 1.3rem; }
  .lm-otp-box { max-width: 40px; font-size: 1.1rem; }
}
.lm-intent-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lm-gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.lm-intent-banner svg { flex-shrink: 0; }
.lm-pay-loading {
  text-align: center;
  padding: 1.5rem 0;
}
.lm-pay-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255, 204, 0, 0.15);
  border-top-color: var(--lm-gold);
  border-radius: 50%;
  animation: lmSpin 0.8s linear infinite;
  margin: 0 auto;
}
.lm-membership-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.lm-membership-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.3);
  animation: lmDotPulse 1.4s ease-in-out infinite;
}
.lm-membership-dots span:nth-child(2) { animation-delay: 0.2s; }
.lm-membership-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes lmDotPulse {
  0%, 80%, 100% { background: rgba(255,204,0,0.2); transform: scale(0.8); }
  40%           { background: rgba(255,204,0,0.9); transform: scale(1.1); }
}
.lm-label-note {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,204,0,0.6);
  font-size: 0.65rem;
}
.card-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: #ffcc00;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: 2px solid #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
  white-space: nowrap;
}
.movie-card:hover .card-view-more {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.card-view-more:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffcc00;
}