:root {
  --bg: #1e1e1e;
  --text: #f1f1f1;
  --accent: #ffcc00;
  --accent-light: #ffd26a;
  --card: #2a2a2a;
  --highlight: #f39c12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

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

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent-light);
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: radial-gradient(ellipse at center, #1e1e1e 0%, #2a2a2a 100%);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  background: var(--highlight);
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 204, 0, 0.8);
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--accent);
}

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

.card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.card.highlight {
  border: 2px solid var(--highlight);
}

.card ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style-type: "⭐ ";
}

.card a.cta-button {
  margin-top: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.faq details {
  background: var(--card);
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq details:hover {
  background: #333;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  font-size: 0.9rem;
  color: #aaa;
}

video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
