:root {
  --blue: #3b82f6;
  --bg: #000;
  --text-muted: #9ca3af;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, sans-serif; background: var(--bg); color: white; }

header {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.logo-text { font-weight: 800; font-size: 1.3rem; }
.logo-ro { color: var(--blue); }

.nav-link, .discord-button {
  margin-left: 1.5rem;
  color: white;
  text-decoration: none;
}

.hero-section {
  padding: 6rem 2rem;
  text-align: center;
}

.hero-text { font-size: 3rem; }
.highlight { color: var(--blue); }

.primary-btn, .download-btn {
  background: var(--blue);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  color: white;
  text-decoration: none;
}

.section {
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: var(--blue);
  margin-bottom: 2rem;
}

.video-box {
  border: 1px solid var(--blue);
  padding: 4rem;
  border-radius: 12px;
}

.testimonials {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  animation: scroll 35s linear infinite;
}

.testimonial-card {
  background: #111;
  padding: 2rem;
  min-width: 280px;
  border-radius: 12px;
}

.avatar {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

footer {
  background: #020617;
  margin-top: 6rem;
}

.wave path {
  fill: var(--blue);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  flex-wrap: wrap;
}

footer a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}
