/* =========================================
   Private Streaming Portal – Final CSS
   Clean Premium 2026 Style
========================================= */

:root {
  --bg: #0b101b;
  --surface: #121a2b;
  --surface-soft: #161f33;
  --text: #e6edf6;
  --text-muted: #9fb0c8;
  --accent: #5eead4;
  --accent-soft: rgba(94, 234, 212, 0.08);
  --border: rgba(94, 234, 212, 0.14);
  --radius: 14px;
  --max-width: 1100px;
  --transition: all 0.25s ease;
}

/* ===== Reset ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #0b101b 0%, #0e1626 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

/* ===== Layout ===== */

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

.main {
  padding: 80px 0 120px;
}

/* ===== Header ===== */

.header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(11,16,27,0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header h1 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 20px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
}

/* ===== Hero ===== */

.hero {
  text-align: center;
  padding-bottom: 60px;
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--accent);
}

.lead {
  max-width: 750px;
  margin: 0 auto 48px;
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* ===== Sections ===== */

.hook-section {
  margin: 80px 0;
}

.hook-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.hook-text {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== Feature List ===== */

.feature-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.feature-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ===== Grid ===== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--surface-soft);
  transform: translateY(-4px);
}

.feature-card h4 {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.2rem;
}

/* ===== Highlight (Only For Formuler) ===== */

.highlight {
  border: 2px solid var(--accent);
  background: var(--accent-soft);
}

/* ===== CTA ===== */

.cta-button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 42px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== Verification Box ===== */

.verification-tease {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin: 80px auto;
  max-width: 850px;
  text-align: center;
}

.verification-tease h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

/* ===== Footer ===== */

.footer {
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .hero h2 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .nav {
    gap: 18px;
  }

  .main {
    padding: 60px 0 100px;
  }
}