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

:root {
  --gold:        #D4943A;
  --gold-light:  #F5C842;
  --gold-dark:   #8B5A10;
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #1a1a1a;
  --bg4:         #222222;
  --text:        #ffffff;
  --text2:       rgba(255,255,255,0.70);
  --text3:       rgba(255,255,255,0.40);
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(212,148,58,0.30);
  --radius:      12px;
  --radius-lg:   18px;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --nav-h:       70px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Utility ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #1a0a00;
  font-weight: 700; font-size: 14px; padding: 11px 24px;
  border-radius: 9px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold.btn-lg { font-size: 16px; padding: 14px 32px; border-radius: 11px; }
.btn-gold.btn-block { display: flex; justify-content: center; width: 100%; margin-top: 24px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--text2); font-weight: 500; font-size: 14px;
  padding: 11px 18px; border-radius: 9px; border: none;
  background: none; cursor: pointer; transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,0.2); background: none;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline.btn-lg { }

.btn-outline-gold {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: 9px;
  border: 1.5px solid var(--border-gold); background: rgba(212,148,58,0.06);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  width: 100%; margin-top: 24px;
}
.btn-outline-gold:hover { background: rgba(212,148,58,0.12); border-color: var(--gold); }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
}
.logo {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 26px; color: #fff; letter-spacing: -0.5px; flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo--footer { font-size: 28px; }

.nav-links {
  display: flex; gap: 6px; flex: 1;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text3);
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; gap: 8px; align-items: center; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 20px 20px; border-top: 0.5px solid var(--border);
  background: rgba(10,10,10,0.98);
}
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--text2);
  padding: 12px 14px; border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-menu .btn-gold { margin-top: 8px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,148,58,0.12) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px 120px;
  max-width: 620px; padding-left: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,148,58,0.12); border: 0.5px solid var(--border-gold);
  color: var(--gold); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text2);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 12px; color: var(--text3); }

/* Hero floating film cards */
.hero-films {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 1; display: flex; flex-direction: column; gap: 16px;
}
.film-float {
  width: 160px; border-radius: 14px; overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.1);
  animation: floatCard 4s ease-in-out infinite;
}
.film-float--2 { animation-delay: 1.3s; transform: translateX(30px); }
.film-float--3 { animation-delay: 2.6s; }
.film-float-thumb { height: 100px; }
.film-float-info { display: flex; gap: 5px; padding: 8px 10px 4px; background: var(--bg2); }
.film-float-title { font-size: 11px; font-weight: 600; padding: 0 10px 10px; background: var(--bg2); color: rgba(255,255,255,0.85); }
.film-badge-new { font-size: 9px; font-weight: 700; background: var(--gold); color: #1a0a00; padding: 2px 6px; border-radius: 3px; }
.film-badge-hd  { font-size: 9px; font-weight: 600; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); padding: 2px 6px; border-radius: 3px; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.film-float--2 { }
@keyframes floatCard2 {
  0%, 100% { transform: translateX(30px) translateY(0); }
  50%       { transform: translateX(30px) translateY(-10px); }
}

/* ── Stats bar ───────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 48px; }
.stat-num {
  font-family: var(--font-display); font-size: 36px; font-style: italic;
  font-weight: 700; color: var(--gold); display: inline;
}
.stat-plus { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text3); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* ── Sections ────────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section-header.center { flex-direction: column; text-align: center; gap: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); font-style: italic; font-weight: 700; }
.section-desc { font-size: 16px; color: var(--text3); }
.section-link { font-size: 14px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ── Films grid ──────────────────────────────────────────────────────────────── */
.films-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px;
}
.film-card { cursor: pointer; transition: transform 0.2s; }
.film-card:hover { transform: translateY(-4px); }
.film-card-thumb {
  border-radius: 12px; height: 260px; position: relative; overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.08);
}
.film-card-thumb-bg { width: 100%; height: 100%; }
.film-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.film-card-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; }
.film-card-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; letter-spacing: 0.4px; }
.film-card-badge--new { background: var(--gold); color: #1a0a00; }
.film-card-badge--hd  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 0.5px solid rgba(255,255,255,0.2); }
.film-card-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.film-card:hover .film-card-play { opacity: 1; }
.film-card-play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212,148,58,0.9); display: flex; align-items: center; justify-content: center;
}
.film-card-play-btn svg { width: 16px; height: 16px; fill: #1a0a00; margin-left: 2px; }
.film-card-title { font-size: 13px; font-weight: 600; margin-top: 10px; color: rgba(255,255,255,0.9); line-height: 1.3; }
.film-card-meta  { font-size: 11px; color: var(--text3); margin-top: 3px; }

/* ── How it works ────────────────────────────────────────────────────────────── */
.how-section { background: var(--bg2); }
.steps-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-top: 48px;
}
.step {
  text-align: center; max-width: 240px; padding: 32px 24px;
  background: var(--bg3); border-radius: var(--radius-lg);
  border: 0.5px solid var(--border); flex: 1; min-width: 200px;
}
.step-num { font-family: var(--font-display); font-size: 48px; font-style: italic; font-weight: 700; color: rgba(212,148,58,0.15); margin-bottom: 16px; line-height: 1; }
.step-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(212,148,58,0.1); border: 0.5px solid var(--border-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon svg { width: 24px; height: 24px; color: var(--gold); }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--text3); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--border-gold); padding: 0 16px; flex-shrink: 0; }

/* ── Genres ──────────────────────────────────────────────────────────────────── */
.genres-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 16px; }
.genre-card {
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  border: 0.5px solid var(--border); cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}
.genre-card:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.genre-romance  { background: linear-gradient(135deg, rgba(180,30,80,0.15), rgba(180,30,80,0.05)); }
.genre-drama    { background: linear-gradient(135deg, rgba(212,148,58,0.15), rgba(212,148,58,0.05)); }
.genre-thriller { background: linear-gradient(135deg, rgba(200,30,30,0.15), rgba(200,30,30,0.05)); }
.genre-comedy   { background: linear-gradient(135deg, rgba(30,180,100,0.12), rgba(30,180,100,0.04)); }
.genre-action   { background: linear-gradient(135deg, rgba(30,100,200,0.12), rgba(30,100,200,0.04)); }
.genre-spiritual{ background: linear-gradient(135deg, rgba(130,30,200,0.12), rgba(130,30,200,0.04)); }
.genre-icon  { font-size: 32px; margin-bottom: 10px; }
.genre-name  { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.genre-count { font-size: 12px; color: var(--text3); }

/* ── Pricing ──────────────────────────────────────────────────────────────────── */
.pricing-section { background: var(--bg2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 700px; margin: 48px auto 0;
}
.pricing-card {
  border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1.5px solid var(--border); position: relative;
  background: var(--bg3);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(212,148,58,0.08) 0%, var(--bg3) 100%);
}
.pricing-best {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a0a00; font-size: 11px; font-weight: 700;
  padding: 3px 16px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.5px;
}
.pricing-name  { font-size: 14px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-size: 48px; font-style: italic; font-weight: 700; color: var(--gold); line-height: 1; }
.pricing-price span { font-size: 16px; color: var(--text3); font-style: normal; }
.pricing-period { font-size: 13px; color: var(--text3); margin: 8px 0 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--text2); }
.coming-soon { font-size: 10px; background: rgba(255,255,255,0.08); color: var(--text3); padding: 1px 6px; border-radius: 4px; margin-left: 4px; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text3); margin-top: 28px; line-height: 1.7; }
.pricing-note strong { color: var(--text2); }

/* ── Testimonials ────────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial {
  background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,148,58,0.15); border: 1.5px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: var(--gold); font-size: 16px; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 13px; font-weight: 700; }
.testimonial-author span  { font-size: 12px; color: var(--text3); }

/* ── Final CTA ───────────────────────────────────────────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(212,148,58,0.12) 0%, rgba(212,148,58,0.04) 100%);
  border: 1px solid var(--border-gold); border-radius: 24px;
  padding: 64px 40px; text-align: center;
}
.cta-box h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-style: italic; font-weight: 700; margin-bottom: 12px; }
.cta-box h2 em { color: var(--gold); }
.cta-box p  { font-size: 16px; color: var(--text3); margin-bottom: 32px; }
.cta-payment-logos {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-top: 20px; font-size: 13px; color: var(--text3);
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 0.5px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.7; margin: 14px 0 20px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.05); border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text3);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(212,148,58,0.1); color: var(--gold); border-color: var(--border-gold); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 14px; color: var(--text3); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 0.5px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }

/* ── Form pages shared styles ────────────────────────────────────────────────── */
.auth-page { min-height: 100vh; padding-top: var(--nav-h); display: flex; align-items: center; justify-content: center; padding-bottom: 60px; }
.auth-card {
  background: var(--bg2); border: 0.5px solid var(--border); border-radius: 20px;
  padding: 40px 36px; width: 100%; max-width: 440px; margin: 40px 24px;
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-family: var(--font-display); font-size: 26px; font-style: italic; font-weight: 700; margin-bottom: 6px; }
.auth-sub   { font-size: 14px; color: var(--text3); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 7px; }
.form-group input, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 9px;
  padding: 13px 14px; color: #fff; font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text3); }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }
.form-divider span { font-size: 12px; color: var(--text3); }
.social-btns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px; border-radius: 9px; border: 0.5px solid var(--border);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s;
  background: rgba(255,255,255,0.04); color: #fff; font-family: var(--font-body);
}
.social-btn:hover { background: rgba(255,255,255,0.08); }
.form-footer { text-align: center; font-size: 13px; color: var(--text3); margin-top: 20px; }
.form-footer a { color: var(--gold); font-weight: 600; }
.form-error {
  background: rgba(220,60,60,0.1); border: 0.5px solid rgba(220,60,60,0.3);
  border-radius: 9px; padding: 12px 14px; font-size: 13px; color: #e05555;
  margin-bottom: 16px; display: none;
}
.form-error.show { display: block; }
.btn-submit {
  width: 100%; background: var(--gold); color: #1a0a00; font-size: 15px; font-weight: 700;
  padding: 15px; border-radius: 11px; border: none; cursor: pointer; margin-top: 8px;
  font-family: var(--font-body); display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s;
}
.btn-submit:hover:not(:disabled) { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Animations ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
.spinner { animation: spin 0.7s linear infinite; display: inline-block; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-films { display: none; }
  .hero-content { padding-left: 24px; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { gap: 16px; }
  .step-arrow { display: none; }
}

@media (max-width: 680px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .navbar { height: auto; min-height: var(--nav-h); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { gap: 20px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
}
