/* MoziPlay.com - Shared CSS | Dark theme inspired by EliteVieuw.nl */
/* Colors: #000 bg, #22c55e green accent, #ff006e CTA pink, #0b0f1a dark nav */

:root {
  --bg: #000000;
  --bg-card: #0b0f1a;
  --bg-card-alt: #111827;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --text-secondary: #d1d5db;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --cta: #ff006e;
  --cta-hover: #e00061;
  --border: #1f2937;
  --radius: 12px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --font: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── HEADER / NAV ── */
.site-header {
  background: rgba(11, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  padding: 0 20px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--cta); color: #fff !important;
  padding: 8px 20px; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-cta:hover { background: var(--cta-hover); color: #fff !important; }

.lang-switch { display: flex; gap: 8px; align-items: center; margin-left: 16px; }
.lang-switch a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.lang-switch a.active, .lang-switch a:hover { color: var(--accent); }

.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #000 0%, #0b0f1a 50%, #0d1117 100%);
}
.hero h1 { margin-bottom: 16px; }
.hero .subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto 32px; }
.hero .stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero .stat { text-align: center; }
.hero .stat-value { font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.hero .stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 28px;
  border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer;
  text-decoration: none; border: none;
  transition: all .2s; text-align: center;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); color: #fff; }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #000; }
.btn-green { background: var(--accent); color: #000; }
.btn-green:hover { background: var(--accent-hover); color: #fff; }

.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 80px 20px; }
.section-dark { background: var(--bg); }
.section-darker { background: var(--bg-card); }
.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 700px; margin: 0 auto 48px; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-card .icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex; flex-direction: column;
  color: #111;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.price-card.popular { border: 3px solid var(--cta); }
.price-card .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: #fff;
  padding: 4px 16px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.price-card .duration { font-size: 0.95rem; font-weight: 500; color: #666; margin-bottom: 4px; }
.price-card .price { font-size: 2rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.price-card .plan-name { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: #333; }
.price-card ul { list-style: none; margin-bottom: 20px; flex: 1; }
.price-card ul li { padding: 4px 0; font-size: 0.9rem; color: #444; }
.price-card ul li::before { content: "\2713 "; color: var(--accent); font-weight: 700; }
.price-card .btn-price {
  width: 100%; display: block; text-align: center;
  padding: 12px; border-radius: 999px;
  background: var(--cta); color: #fff;
  font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  text-decoration: none;
}
.price-card .btn-price:hover { background: var(--cta-hover); color: #fff; }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px auto; max-width: 900px; }
.comparison-table th, .comparison-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table th { color: var(--accent); font-weight: 600; background: var(--bg-card); }
.comparison-table td { color: var(--text-secondary); }
.comparison-table tr:hover td { background: rgba(34,197,94,.05); }

/* ── FAQ / ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-size: 1rem; font-weight: 600; padding: 20px 0;
  cursor: pointer; text-align: left; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--font);
}
.faq-question::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .3s; }
.faq-item.open .faq-question::after { content: "-"; }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.testimonial-card .stars { color: #fbbf24; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; font-style: italic; }
.testimonial-card .author { font-weight: 600; font-size: 0.85rem; }
.testimonial-card .role { color: var(--text-muted); font-size: 0.8rem; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; max-width: var(--max-w); margin: 0 auto; }
.step { text-align: center; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #000;
  font-weight: 700; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* ── CHANNEL LIST ── */
.channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; max-width: var(--max-w); margin: 0 auto; }
.channel-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px; text-align: center;
  font-size: 0.85rem; color: var(--text-secondary);
}

/* ── FORMS ── */
.form-section { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: var(--font); font-size: 0.95rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; }

/* ── CHECKOUT ── */
.checkout-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 32px;
}
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }

/* ── RESELLER ── */
.reseller-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; max-width: var(--max-w); margin: 32px auto; }
.reseller-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.reseller-card h3 { color: var(--accent); margin-bottom: 8px; }
.reseller-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── LEGAL / ABOUT PAGES ── */
.legal-content, .about-content { max-width: 800px; margin: 0 auto; }
.legal-content h1, .about-content h1 { margin-bottom: 16px; }
.legal-content h2, .about-content h2 { margin-top: 32px; margin-bottom: 12px; color: var(--accent); }
.legal-content h3, .about-content h3 { margin-top: 24px; margin-bottom: 8px; }
.legal-content p, .about-content p { color: var(--text-secondary); margin-bottom: 16px; }
.legal-content ul, .about-content ul { color: var(--text-secondary); margin: 12px 0 16px 24px; }
.legal-content ul li, .about-content ul li { margin-bottom: 6px; }
.legal-content a, .about-content a { color: var(--accent); }

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center; padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0d1117 100%);
  border-top: 1px solid var(--border);
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 24px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}
.footer-col h4 { margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--text); }
.footer-col p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom {
  text-align: center; padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto;
  color: var(--text-muted); font-size: 0.8rem;
}

/* ── BRAND LOGOS CAROUSEL ── */
.brand-logos { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 32px 0; }
.brand-logos img { height: 40px; width: auto; opacity: 0.7; filter: grayscale(0.3); transition: opacity .2s; }
.brand-logos img:hover { opacity: 1; }

/* ── SETUP GUIDE ── */
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content h2 { margin-top: 40px; margin-bottom: 16px; color: var(--accent); }
.guide-content h3 { margin-top: 24px; margin-bottom: 12px; }
.guide-content p { color: var(--text-secondary); margin-bottom: 16px; }
.guide-content ul, .guide-content ol { color: var(--text-secondary); margin: 12px 0 16px 24px; }
.guide-content ul li, .guide-content ol li { margin-bottom: 8px; }
.guide-content img { border-radius: 8px; margin: 16px 0; }

/* ── IMAGE SECTIONS ── */
.img-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.img-text-section img { border-radius: var(--radius-lg); }
.img-text-section .text h2 { margin-bottom: 12px; }
.img-text-section .text p { color: var(--text-muted); margin-bottom: 16px; }

/* ── UPTIME WIDGET ── */
.uptime-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  text-align: center; max-width: 500px; margin: 32px auto;
}
.uptime-value { font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.uptime-label { color: var(--text-muted); font-size: 0.9rem; }

/* ── MOVIE POSTERS SCROLL ── */
.poster-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 16px 0; scroll-snap-type: x mandatory; }
.poster-scroll img { width: 160px; height: 240px; object-fit: cover; border-radius: 8px; scroll-snap-align: start; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .img-text-section { grid-template-columns: 1fr; text-align: center; }
  .checkout-grid { grid-template-columns: 1fr; }

  .container { padding: 0 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg-card); padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .menu-toggle { display: block; }
  .hero { padding: 48px 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  section { padding: 48px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }
  .lang-switch { margin-left: 0; }

  .hero { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero .stats { gap: 20px; }
  .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
@media (max-width: 360px) {
  .hero h1 { font-size: 1.25rem; }

/* ─── TOUCH & INTERACTION ─── */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, a, button { min-height: 44px; min-width: 44px; }
  .nav-links a { padding: 12px 8px; }
  .faq-question { padding: 16px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── PRINT ─── */
@media print {
  .site-header, .site-footer, .nav-toggle, .whatsapp-btn, .skip-link, footer, header, nav { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: none; padding: 20px 0; }
}
