/* ===== ROOT VARIABLES ===== */
:root {
  --neon-purple: #8b5cf6;
  --neon-purple-glow: rgba(139, 92, 246, 0.35);
  --neon-blue: #3b82f6;
  --neon-blue-glow: rgba(59, 130, 246, 0.3);
  --neon-gold: #f59e0b;
  --neon-gold-glow: rgba(245, 158, 11, 0.3);
  --discord-dark: #0f0f1a;
  --discord-darker: #080810;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --card-bg: rgba(15, 15, 30, 0.7);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--neon-purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #a78bfa;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--discord-dark);
}

::-webkit-scrollbar-thumb {
  background: #1e1e3a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2d2d5a;
}

/* ===== GLASSMORPHISM BASE ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.08);
  transform: translateY(-2px);
}

/* ===== NEON ELEMENTS ===== */
.neon-text {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.neon-border {
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(var(--card-bg), var(--card-bg)), linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-gold));
}

.neon-glow-purple {
  box-shadow: 0 0 30px var(--neon-purple-glow);
}

.neon-glow-blue {
  box-shadow: 0 0 30px var(--neon-blue-glow);
}

.neon-glow-gold {
  box-shadow: 0 0 30px var(--neon-gold-glow);
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), #7c3aed);
  color: #fff;
  box-shadow: 0 4px 20px var(--neon-purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--neon-purple-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  border-color: var(--neon-purple);
  background: rgba(139, 92, 246, 0.08);
}

.btn-gold {
  background: linear-gradient(135deg, var(--neon-gold), #d97706);
  color: #1a1a2e;
  box-shadow: 0 4px 20px var(--neon-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--neon-gold-glow);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg .floating-shape {
  position: absolute;
  border-radius: 24px;
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.hero-bg .shape-1 {
  width: 320px;
  height: 320px;
  background: var(--neon-purple);
  top: 10%;
  left: -5%;
  border-radius: 40%;
  animation-delay: 0s;
}

.hero-bg .shape-2 {
  width: 200px;
  height: 200px;
  background: var(--neon-blue);
  bottom: 10%;
  right: 5%;
  border-radius: 30% 70% 70% 30%;
  animation-delay: -5s;
}

.hero-bg .shape-3 {
  width: 150px;
  height: 150px;
  background: var(--neon-gold);
  top: 50%;
  right: 20%;
  border-radius: 50%;
  animation-delay: -10s;
  opacity: 0.05;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(2deg);
  }
  66% {
    transform: translateY(15px) rotate(-1deg);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neon-purple);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .neon-text {
  display: inline-block;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--discord-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-purple);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.06);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feature-tags span {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--neon-purple);
}

/* ===== COMMANDS ===== */
#commands {
  background: var(--discord-dark);
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.command-card {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.command-card:hover {
  border-color: rgba(139, 92, 246, 0.15);
  background: rgba(139, 92, 246, 0.03);
}

.command-prefix {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--neon-gold);
  font-size: 0.9rem;
  min-width: 80px;
  padding: 4px 8px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 6px;
  text-align: center;
}

.command-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.command-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== ANNOUNCEMENTS ===== */
.announcement-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--neon-purple);
  margin-bottom: 20px;
}

.announcement-card .embed-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.announcement-card .embed-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.announcement-card .embed-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.announcement-card .embed-badge {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.12);
  color: var(--neon-purple);
}

/* ===== DASHBOARD ===== */
#dashboard {
  background: var(--discord-dark);
}

.dashboard-preview {
  background: var(--discord-darker);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.dash-sidebar {
  display: flex;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.dash-sidebar span {
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: transparent;
}

.dash-sidebar span.active {
  background: rgba(139, 92, 246, 0.12);
  color: var(--neon-purple);
}

.dash-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.dash-widget {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--glass-border);
}

.dash-widget .dw-num {
  font-size: 1.6rem;
  font-weight: 700;
}

.dash-widget .dw-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
}

.testimonial-card .stars {
  color: var(--neon-gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card .author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== SUPPORT ===== */
#support {
  background: var(--discord-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.discord-widget {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  padding: 32px;
  text-align: center;
}

.discord-widget .widget-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.discord-widget .widget-online {
  color: #22c55e;
  font-weight: 600;
}

.discord-widget .widget-count {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.discord-widget .widget-label {
  color: var(--text-muted);
  margin-bottom: 24px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-question .faq-toggle {
  font-size: 1.4rem;
  color: var(--neon-purple);
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

/* ===== PRIVACY ===== */
#privacy {
  background: var(--discord-dark);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.privacy-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-content ul li {
  color: var(--text-secondary);
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--discord-darker);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  margin-top: 16px;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== BOT LOGO ===== */
.bot-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
  transition: 0.3s ease;
}

.bot-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.35);
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px;
}

.gap-12 {
  gap: 12px;
}

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

/* ===== AOS-LIKE FADE CLASSES ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .commands-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .dash-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }
}/