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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #0b0b0f;
}

/* BREADCRUMB */
nav.breadcrumb {
  position: static;
  background: #0d0d12;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  margin-top: 64px; /* height of fixed nav */
  width: 100%;
  z-index: auto;
  display: block;
}

nav.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  font-size: 0.82rem;
}

nav.breadcrumb li {
  color: #666;
}

nav.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.4rem;
  color: #444;
}

nav.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

nav.breadcrumb a:hover {
  color: #e50914;
}

nav.breadcrumb li[aria-current="page"] {
  color: #fff;
}

/* NAVBAR */
nav {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 2rem;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e50914;
  font-size: 1.4rem;
  font-weight: 600;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  width: auto;
  height: 40px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-cta {
  background: #e50914;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #c40812;
}

/* HERO */
header {
  background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('https://assets.nflxext.com/ffe/siteui/vlv3/fb5cb900-0cb6-4728-beb5-579b9af98fdd/web/IN-en-20250127-TRIFECTA-perspective_cf66f5a3-d894-4185-9106-5f45502fc387_medium.jpg') center/cover no-repeat;
  height: 75vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-content {
  max-width: 700px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

header p {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* BUTTON */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e50914;
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}

.download-btn:hover {
  background: #c40812;
  transform: translateY(-2px);
}

/* HERO EXTRAS */
.hero-badge {
  display: inline-block;
  background: rgba(229,9,20,0.15);
  color: #e50914;
  border: 1px solid rgba(229,9,20,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
}

.ghost-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.hero-sub {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #777;
  letter-spacing: 0.03em;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e50914;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* FAQ SECTION */
.faq-section {
  padding: 4rem 2rem;
  background: #0b0b0f;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: #aaa;
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item a {
  color: #e50914;
  text-decoration: underline;
}

/* FINAL CTA SECTION */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #16161d 0%, #1a0a0b 100%);
  border-top: 1px solid rgba(229,9,20,0.15);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: auto;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* FEATURES */
.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: #16161d;
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: #1c1c24;
}

.feature-card svg {
  color: #e50914;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: #aaa;
  font-size: 0.95rem;
}

/* BENEFITS */
.benefits {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit {
  padding: 1.5rem;
  background: #16161d;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s;
}

.benefit:hover {
  transform: translateY(-3px);
}

.benefit h3 {
  color: #e50914;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.benefit p {
  color: #aaa;
  font-size: 0.95rem;
}

/* DOWNLOAD PAGE */
.download-page {
  padding: 3rem 2rem 4rem;
  background: #111;
}

.download-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.download-container h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.subtitle {
  color: #aaa;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.download-options {
  display: grid;
  gap: 2rem;
}

.download-option {
  background: #16161d;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.download-option > svg {
  color: #e50914;
}

.download-option h2 {
  font-size: 1.4rem;
}

.download-option p {
  color: #aaa;
}

.requirements {
  list-style: none;
  color: #888;
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
  text-align: left;
}

.requirements li::before {
  content: "• ";
  color: #e50914;
}

/* INSTALL GUIDE */
.installation-guide {
  padding: 4rem 2rem;
  background: #0e0e14;
}

.installation-container {
  max-width: 700px;
  margin: auto;
}

.installation-guide h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #16161d;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: #e50914;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.step-content p {
  color: #aaa;
  font-size: 0.9rem;
}

/* POLICY PAGES */
.privacy-page {
  padding: 3rem 2rem 4rem;
  background: #111;
}

.privacy-container {
  max-width: 800px;
  margin: auto;
}

.privacy-container h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.privacy-section {
  margin-top: 2rem;
}

.privacy-section h2 {
  color: #e50914;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.privacy-section p,
.privacy-section li {
  color: #bbb;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.privacy-section ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

/* ERROR PAGE */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 4rem;
}

.error-container {
  max-width: 500px;
}

.error-code {
  font-size: 6rem;
  font-weight: 800;
  color: #e50914;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.error-container p {
  color: #aaa;
  margin-bottom: 2rem;
}

/* FOOTER */
.footer-options {
  padding: 2rem;
  background: #0b0b0f;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-options ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.footer-options a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-options a:hover {
  color: #e50914;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1.25rem 2rem;
  background: #000;
  color: #555;
  font-size: 0.875rem;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #e50914;
  border-radius: 10px;
}

/* ANIMATIONS */
.fade-in {
  animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .features {
    padding: 3rem 1rem;
  }

  nav {
    padding: 0 1rem;
    height: 100px;
  }

  .logo-img {
    height: 32px;
    max-width: 120px;
  }

  .download-page,
  .privacy-page {
    padding: 100px 1rem 3rem;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
  }
}