:root {
  --bg-dark: #0f0a15;
  --bg-card: #1c1326;
  --text-main: #e2d8ee;
  --text-muted: #a395b5;
  --accent-pink: #ff2a85;
  --accent-purple: #9d2aff;
  --neon-glow: 0 0 10px rgba(255, 42, 133, 0.7), 0 0 20px rgba(255, 42, 133, 0.5);
  --glass-bg: rgba(28, 19, 38, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-pink);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: var(--accent-pink);
  text-shadow: var(--neon-glow);
}

.neon-text {
  color: var(--accent-pink);
  text-shadow: var(--neon-glow);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

/* Age Warning Banner */
.age-warning {
  background: linear-gradient(90deg, #500 0%, #a00 50%, #500 100%);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  z-index: 1000;
  position: relative;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navlinks {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navlinks a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 5px 0;
}

.navlinks a.active {
  color: var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
}

.nav-cta {
  background: transparent;
  border: 2px solid var(--accent-pink);
  color: var(--accent-pink);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: var(--neon-glow);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 42, 133, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 42, 133, 0.5);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--glass-border);
}

.btn-ghost:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 133, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 42, 133, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 133, 0); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: url('https://images.unsplash.com/photo-1542385311-2ebf461e72e1?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 10, 21, 0.7), rgba(15, 10, 21, 1));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.eyebrow {
  display: block;
  color: var(--accent-pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero .lede {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.quick-stats .stat {
  font-size: 16px;
  font-weight: 600;
}

.quick-stats .stat span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}

/* Sections */
.features-section, .gallery-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 30px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-pink);
  box-shadow: 0 10px 30px rgba(255, 42, 133, 0.1);
}

.feature-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  background: #2a1c38;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  background: #362248;
}

.cover-item {
  grid-column: span 2;
  height: 300px;
}

/* Download Page Specifics */
.download-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.download-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.download-hero .lede {
  font-size: 18px;
  color: var(--text-muted);
}

.instructions-section {
  padding: 60px 0;
}

.instructions-card, .sys-req-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
}

.instructions-card h2, .sys-req-card h2 {
  font-size: 32px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 42, 133, 0.3);
}

.step-list {
  list-style: none;
  counter-reset: my-counter;
  margin-bottom: 40px;
}

.step-list li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  font-size: 18px;
  min-height: 40px;
  padding-top: 8px;
}

.step-list li::before {
  content: "0" counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-pink);
  background: rgba(255, 42, 133, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 42, 133, 0.3);
}

.step-list li strong {
  color: #fff;
  margin-right: 8px;
}

.download-box {
  background: rgba(0,0,0,0.3);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px dashed var(--accent-pink);
}

.download-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.download-box p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.req-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.req-list li {
  background: rgba(0,0,0,0.2);
  padding: 15px 20px;
  border-radius: 6px;
  border-left: 3px solid var(--accent-purple);
}

.req-list li strong {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mt-4 {
  margin-top: 40px;
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  margin-top: 60px;
}

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

.footer-left p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 10px;
}

.footer-links-grid {
  display: flex;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .navlinks {
    display: none; /* simple mobile menu handling */
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .quick-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .step-list li {
    font-size: 16px;
    padding-left: 50px;
  }
  
  .step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .cover-item {
    grid-column: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--bg-dark); border: 1px solid var(--glass-border); border-radius: 8px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; color: var(--text-main); font-family: "Oswald", sans-serif; font-size: 20px; text-transform: uppercase; padding: 20px 25px; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.faq-q:hover { color: var(--accent-pink); }
.faq-q .plus { color: var(--accent-pink); font-size: 24px; transition: transform 0.3s ease; }
.faq-a { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-muted); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-item.open .faq-a { padding: 0 25px 25px 25px; max-height: 300px; }
.reviews-section { padding: 80px 0; }

