/* NnekaTV Website Styles — Modern Rewrite */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #FF1493;
  --purple: #6A1B9A;
  --gold: #D4AF37;
  --bg: #0a0a1a;
  --bg-alt: #0d0d2b;
  --card: rgba(17, 17, 51, 0.6);
  --card-solid: #111133;
  --text: #f0f0f0;
  --muted: #aaa;
  --max-w: 1100px;
  --radius: 16px;
  --glow-pink: 0 0 30px rgba(255, 20, 147, 0.15);
  --glow-purple: 0 0 30px rgba(106, 27, 154, 0.15);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: #ff5cbf; text-decoration: none; }

/* ─── Gradient Text Utility ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--purple), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-header .header-brand .logo {
  height: 55px;
  transition: transform 0.3s;
}

.site-header .header-brand .logo:hover {
  transform: scale(1.05);
}

.site-header .header-brand span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.site-header nav .btn-subscribe {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #e91280);
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.site-header nav .btn-subscribe:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
  color: #fff;
}

/* Full-width header backdrop */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── Footer ─── */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: linear-gradient(180deg, transparent, rgba(10, 10, 26, 0.95));
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.site-footer nav a {
  color: var(--muted);
  transition: color 0.2s;
}

.site-footer nav a:hover { color: var(--primary); }

/* ─── Main ─── */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

/* ─── Section ─── */
section {
  margin-bottom: 4rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 550px;
}

.section-center {
  text-align: center;
}

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Section gradient separator */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--purple), var(--gold), transparent);
  margin: 3rem auto;
  max-width: 400px;
  border: none;
  opacity: 0.5;
}

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 20, 147, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(106, 27, 154, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero .logo-lg {
  height: 130px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(255, 20, 147, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 700px;
}

.hero p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #d4127e);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.35);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 20, 147, 0.1);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.15);
  color: var(--primary);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Cards Grid ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card.nnekatv::before { background: linear-gradient(90deg, var(--primary), #ff69b4); }
.card.nnekatv:hover { box-shadow: var(--glow-pink); }
.card.nnekatv h3 { color: var(--primary); }

.card.faithflow::before { background: linear-gradient(90deg, var(--purple), #9c27b0); }
.card.faithflow:hover { box-shadow: var(--glow-purple); }
.card.faithflow h3 { color: #b366d4; }

.card.amara::before { background: linear-gradient(90deg, var(--gold), #e6c84b); }
.card.amara:hover { box-shadow: var(--glow-gold); }
.card.amara h3 { color: var(--gold); }

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 20, 147, 0.2);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.12), rgba(106, 27, 154, 0.12), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 20, 147, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-section p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ─── Coming Soon Section ─── */
.coming-soon {
  text-align: center;
  padding: 5rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.coming-soon .tagline {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.coming-soon .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #c99a2e);
  color: #0a0a1a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  background: var(--card-solid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.notify-form input[type="email"]:focus {
  border-color: var(--gold);
}

.notify-form button {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), #c99a2e);
  color: #0a0a1a;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.notify-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ─── Policy / Legal Pages ─── */
.policy { max-width: 800px; }
.policy h1 { font-size: 2rem; margin-bottom: 0.25rem; font-weight: 700; }
.policy .effective { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.policy h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 0.5rem; color: var(--primary); }
.policy h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.policy p, .policy li { margin-bottom: 0.5rem; }
.policy ul, .policy ol { margin-left: 1.25rem; margin-bottom: 1rem; }

/* ─── Forms ─── */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.95rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: var(--card-solid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

/* ─── FAQ ─── */
.faq-item {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255, 20, 147, 0.15);
}

.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 600; }
.faq-item p { color: var(--muted); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* ─── Deletion / Option Boxes ─── */
.option-box {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}

.option-box:hover { border-color: rgba(255, 20, 147, 0.15); }
.option-box h3 { color: var(--primary); margin-bottom: 0.5rem; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .site-header nav {
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .hero {
    padding: 4rem 1rem 3rem;
    min-height: 70vh;
  }
  .hero .logo-lg { height: 100px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
  main { padding: 1.5rem 1rem; }
  section h2 { font-size: 1.6rem; }
  .cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 3rem 1.5rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .coming-soon h1 { font-size: 2rem; }
  .notify-form { flex-direction: column; align-items: center; }
  .notify-form input[type="email"] { width: 100%; min-width: unset; }
}
