:root {
  --bg: #050508;
  --bg2: #0a0614;
  --bg3: #100c1c;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-glow: #c4b5fd;
  --lavender: #ddd6fe;
  --text: #ede9fe;
  --text2: #9f8ec8;
  --text3: #6b5f8a;
  --border: rgba(139,92,246,0.15);
  --glass: rgba(16,12,28,0.7);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--lavender), var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav { display: flex; align-items: center; justify-content: space-between; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav__logo img {
  width: 38px; height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(109,40,217,0.35);
}

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

.nav__link {
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--text2);
  border-radius: 10px;
  transition: 0.2s;
}

.nav__link:hover { color: var(--text); background: rgba(109,40,217,0.1); }

.nav__cta {
  padding: 9px 20px;
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(109,40,217,0.3);
  transition: 0.2s;
}

.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124,58,237,0.4); }

/* Hero */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(91,33,182,0.15), transparent);
  pointer-events: none;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(109,40,217,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-glow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.08rem;
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.25s;
}

.btn--primary {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
  box-shadow: 0 4px 20px rgba(109,40,217,0.3);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.45); }

.btn--outline {
  background: transparent;
  color: var(--text2);
  border: 1px solid rgba(124,58,237,0.35);
}

.btn--outline:hover { color: var(--text); border-color: var(--purple-light); background: rgba(109,40,217,0.08); }

/* Stats bar */
.stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px 0 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  overflow: hidden;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-glow);
  display: block;
}

.stat__label {
  font-size: 0.78rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Content grid */
.section { padding: 72px 0; }

.section__label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(109,40,217,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section__sub { color: var(--text2); font-size: 1rem; max-width: 560px; }

.section__head { margin-bottom: 40px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.card:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 0 24px rgba(109,40,217,0.2);
  transform: translateY(-3px);
}

.card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(109,40,217,0.2), rgba(59,21,120,0.1));
  border: 1px solid var(--border);
  border-radius: 13px;
  margin-bottom: 18px;
}

.card__icon svg { width: 24px; height: 24px; color: var(--purple-light); }

.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text2); font-size: 0.88rem; line-height: 1.6; }

/* Genre list */
.genres { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }

.genre {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: 0.25s;
}

.genre:hover { border-color: rgba(124,58,237,0.35); background: rgba(109,40,217,0.08); }

.genre__dot {
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(124,58,237,0.5);
  flex-shrink: 0;
}

.genre__name { font-size: 0.95rem; font-weight: 600; }
.genre__desc { font-size: 0.8rem; color: var(--text3); margin-top: 2px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(91,33,182,0.12), rgba(109,40,217,0.06));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  backdrop-filter: blur(16px);
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: var(--text2); margin-bottom: 32px; font-size: 1rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem;
}

.footer__brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer__copy { color: var(--text3); font-size: 0.82rem; }

.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--text2); font-size: 0.85rem; transition: 0.2s; }
.footer__links a:hover { color: var(--purple-light); }

/* Responsive */
@media (max-width: 768px) {
  .cards { grid-template-columns: 1fr; }
  .genres { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .cta-banner { padding: 36px 20px; }
  .page-hero { padding: 56px 0 40px; }
}