:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --accent: #6C63FF;
    --accent-hover: #5a52e0;
    --accent-glow: rgba(108, 99, 255, 0.3);
    --green: #00FF88;
    --red: #FF4444;
    --orange: #FFA500;
    --pink: #FF69B4;
    --border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* BG Effects */
.bg-effects {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.orb-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: var(--pink); bottom: -200px; right: -100px; }
.orb-3 { width: 400px; height: 400px; background: var(--green); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.05; }

.grid-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-btn {
    background: var(--accent);
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

.nav-renew {
    color: var(--orange) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    font-weight: 600;
    transition: all 0.3s;
    animation: pulse 2s ease infinite;
}

.nav-renew:hover { background: rgba(255, 165, 0, 0.2); transform: translateY(-2px); }

.mobile-menu { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 600px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--pink), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #8B5CF6);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

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

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

.btn-secondary:hover { background: var(--bg-card-hover); transform: translateY(-3px); }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Bot Card */
.hero-visual {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.bot-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    width: 280px;
}

.bot-avatar { position: relative; margin-bottom: 1rem; }

.avatar-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

.avatar-inner {
    width: 90px;
    height: 90px;
    background: var(--bg-card);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    z-index: 1;
}

.bot-card h3 { font-size: 1.3rem; margin: 1rem 0 0.5rem; }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--green);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s ease infinite;
}

.bot-activity {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.feature-icon.moderation { background: rgba(255, 68, 68, 0.15); color: var(--red); }
.feature-icon.fun { background: rgba(255, 105, 180, 0.15); color: var(--pink); }
.feature-icon.utility { background: rgba(0, 191, 255, 0.15); color: #00BFFF; }
.feature-icon.admin { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
.feature-icon.latex { background: rgba(108, 99, 255, 0.15); color: var(--accent); }
.feature-icon.buttons { background: rgba(0, 255, 136, 0.15); color: var(--green); }

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Commands */
.commands {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.commands-filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

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

.command-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    transition: all 0.3s;
}

.command-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-2px);
}

.command-name {
    font-weight: 600;
    color: var(--accent);
    font-family: monospace;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.command-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.command-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.cat-moderation { background: rgba(255, 68, 68, 0.15); color: var(--red); }
.cat-utility { background: rgba(0, 191, 255, 0.15); color: #00BFFF; }
.cat-fun { background: rgba(255, 105, 180, 0.15); color: var(--pink); }
.cat-admin { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
.cat-info { background: rgba(155, 89, 182, 0.15); color: #9B59B6; }
.cat-owner { background: rgba(255, 215, 0, 0.15); color: #FFD700; }

/* Stats */
.stats {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover { transform: translateY(-5px); border-color: rgba(108, 99, 255, 0.3); }

.stat-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card span:last-child { color: var(--text-muted); font-size: 0.9rem; }

/* CTA */
.cta {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(255, 105, 180, 0.1));
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}

.cta-card h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-card p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; }

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

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col p { color: var(--text-muted); line-height: 1.6; }

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .cta-card { padding: 2rem; }
    .cta-card h2 { font-size: 1.8rem; }
}
