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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0F0A1E;
  color: #FFFFFF;
  line-height: 1.6;
}

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

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}

.logo-text .pink {
  color: #E8609A;
}

nav a {
  color: #C4B8D8;
  text-decoration: none;
  margin-left: 32px;
  font-size: 14px;
}

nav a:hover {
  color: #FFFFFF;
}

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

.hero img {
  max-width: 240px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #6C3CE1, #E8609A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: #C4B8D8;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #6C3CE1;
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #C06BE0;
  border: 1.5px solid #6C3CE1;
}

/* Features */
.features {
  padding: 60px 0;
}

.features h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #1A1232;
  border: 1px solid #2A1E4A;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.feature-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.feature-card p {
  font-size: 14px;
  color: #8B7BA8;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #2A1E4A;
  margin-top: 60px;
}

footer a {
  color: #8B7BA8;
  text-decoration: none;
  margin: 0 12px;
  font-size: 13px;
}

footer a:hover {
  color: #C06BE0;
}

footer .copyright {
  color: #5C4D7A;
  font-size: 12px;
  margin-top: 16px;
}

/* Legal pages */
.legal-content {
  padding: 40px 0 80px;
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.legal-content .date {
  color: #5C4D7A;
  font-size: 13px;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #C06BE0;
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  color: #C4B8D8;
  font-size: 15px;
  margin-bottom: 12px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #6C3CE1;
  text-decoration: none;
  font-size: 14px;
}