:root {
  /* Main Accent Color Theme */
  --primary: #7BDFF2;
  --primary-glow: rgba(123, 223, 242, 0.35);
  
  /* Dark Premium Theme Palette */
  --bg-dark: #0a0d14;
  --bg-card: rgba(18, 24, 38, 0.7);
  --border-card: rgba(123, 223, 242, 0.15);
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --accent-gradient: linear-gradient(135deg, #7BDFF2 0%, #3a86ff 100%);
  --admin-accent: #f72585;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(123, 223, 242, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(58, 134, 255, 0.08) 0%, transparent 40%);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
}

.logo .highlight {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-invite {
  background: var(--accent-gradient);
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-invite:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 223, 242, 0.5);
}

/* Hamburger Icon */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.hamburger .bar {
  width: 24px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  flex-direction: column;
  background: rgba(18, 24, 38, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 1rem 2rem;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-menu a {
  color: var(--text-main);
  text-decoration: none;
  padding: 0.8rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}

.dropdown-menu a i {
  color: var(--primary);
}

.dropdown-menu a:hover {
  color: var(--primary);
}

/* PAGE MANAGEMENT */
.page {
  display: none;
  flex: 1;
  padding: 3rem 0;
}

.page.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 5rem 1rem;
}

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

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(123, 223, 242, 0.1);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(123, 223, 242, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

/* FEATURES SECTION */
.features {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-50px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(123, 223, 242, 0.15);
}

.card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

/* COMMANDS PAGE */
.back-bar {
  margin-bottom: 2rem;
}

.btn-back {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: var(--primary);
  color: #000;
}

.commands-header {
  text-align: center;
  margin-bottom: 3rem;
}

.commands-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.commands-header p {
  color: var(--text-muted);
}

.command-group {
  margin-bottom: 3.5rem;
}

.group-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
}

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

.command-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.command-card.admin {
  border-left-color: var(--admin-accent);
}

.command-card:hover {
  transform: translateX(4px);
}

.command-syntax {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.command-card.admin .command-syntax {
  color: var(--admin-accent);
}

.command-args {
  font-family: monospace;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.command-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

