:root {
  --bg: #07080b;
  --card-bg: rgba(18, 20, 29, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --accent-pink: #f472b6;
  --accent-blue: #38bdf8;
  --discord: #5865f2;
  --text: #f8fafc;
  --text-muted: #8e9bb0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Radial Glows */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.glow-top {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-pink), var(--accent-blue));
}

.glow-bottom {
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-blue), transparent);
}

/* Header Navbar */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 10%;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 2.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn-discord-login {
  background: var(--card-bg) !important;
  border: 1px solid var(--border);
  color: var(--text) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-discord-login:hover {
  border-color: var(--discord);
  background: rgba(88, 101, 242, 0.15) !important;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.badge-wrapper {
  margin-bottom: 1.5rem;
}

.badge {
  background: rgba(244, 114, 182, 0.08);
  color: var(--accent-pink);
  border: 1px solid rgba(244, 114, 182, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-pink) 20%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  padding: 0.95rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.95rem 2.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

/* Features */
.features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1050px;
  margin: 3rem auto 6rem;
  padding: 0 1.5rem;
  width: 100%;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.2rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Pricing Page Specific */
.pricing-hero {
  padding-top: 2rem;
}

.pricing-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  max-width: 420px;
  margin: 2.5rem auto 0;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: var(--accent-pink);
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
}

.pricing-card h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 1.5rem 0 2rem;
  letter-spacing: -1px;
}

.pricing-card .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-features li {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.check {
  color: var(--accent-pink);
  font-weight: 700;
}

.full-width {
  display: block;
  width: 100%;
  text-align: center;
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}