:root {
  --bg-color: #060606;
  --accent-color: #00e87a;
  --accent-glow: rgba(0, 232, 122, 0.3);
  --glass-bg: rgba(18, 18, 18, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-main: #f0f0f0;
  --text-muted: #888;
  --font-family: 'Outfit', sans-serif;
  --neon-shadow: 0 0 20px rgba(0, 232, 122, 0.15);
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.glow-bg {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 232, 122, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.glow-bg::after {
  content: '';
  position: absolute;
  top: 80%;
  left: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 232, 122, 0.05) 0%, transparent 70%);
  filter: blur(80px);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--neon-shadow);
}

.gradient-text {
  background: linear-gradient(135deg, #00e87a 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-width);
  padding: 15px 30px;
  border-radius: 20px;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.badge {
  font-size: 0.7rem;
  background: rgba(0, 232, 122, 0.1);
  color: var(--accent-color);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 232, 122, 0.2);
  margin-left: 5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.btn-discord {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 200px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.rotate-container {
  height: 1.25em;
  overflow: hidden;
  position: relative;
}

.rotate-item {
  display: block;
  animation: rotateBig 9s infinite ease-in-out;
  height: 1.25em;
}

@keyframes rotateBig {
  0%, 25% { transform: translateY(0); }
  33%, 58% { transform: translateY(-1.25em); }
  66%, 91% { transform: translateY(-2.5em); }
  100% { transform: translateY(0); }
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.6;
}

.rotate-wrap-inline {
  display: inline-flex;
  flex-direction: column;
  height: 1.2em;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 5px;
  font-weight: 700;
}

.rotate-inline-item {
  display: block;
  height: 1.2em;
  animation: rotateSmall 9s infinite ease-in-out;
}

@keyframes rotateSmall {
  0%, 25% { transform: translateY(0); }
  33%, 58% { transform: translateY(-1.2em); }
  66%, 91% { transform: translateY(-2.4em); }
  100% { transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: var(--accent-color);
  color: #000;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 232, 122, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 232, 122, 0.3);
}

.btn-outline {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, border 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 232, 122, 0.3);
}

.mockup-container {
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px;
  border-radius: 24px;
  transition: transform 0.3s, border 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 232, 122, 0.2);
}

.feature-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 232, 122, 0.02), transparent);
}

.pricing-grid-extended {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-start;
}

.pricing-card {
  padding: 40px 25px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.pricing-list i {
  color: var(--accent-color);
  flex-shrink: 0;
}

.pricing-list i.muted {
  color: #555;
}

.featured {
  border: 1px solid rgba(0, 232, 122, 0.4);
  background: rgba(0, 232, 122, 0.03);
  transform: scale(1.03);
}

.badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-featured.gold {
  background: #ffe033;
  box-shadow: 0 0 10px rgba(255, 224, 51, 0.3);
}

.full-width {
  width: 100%;
  padding: 12px 0;
  text-align: center;
}

/* Footer */
.footer {
  padding: 60px 0;
  margin-top: 100px;
  border-top: 1px solid var(--glass-border);
  border-radius: 40px 40px 0 0;
}

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

.footer-logo .logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.footer-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Animations & Mobile */
.reveal-text {
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes reveal {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1100px) {
  .pricing-grid-extended {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 3rem; align-items: center; }
  .hero-description { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid-extended { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .navbar { width: 95%; }
}

