:root {
    --primary: #00D1FF;
    --primary-glow: rgba(0, 209, 255, 0.5);
    --secondary: #00FF90;
    --bg-dark: #030508;
    --bg-nav: rgba(3, 5, 8, 0.85);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 209, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 144, 0.04) 0%, transparent 40%);
    z-index: -1;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
}

span {
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Navbar */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    background: var(--primary);
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero */
.hero-section {
    padding: 8rem 0;
    position: relative;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.tagline {
    background: rgba(0, 209, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    padding: 1rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px var(--primary-glow);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 209, 255, 0.05);
}

/* Floating Bot Card */
.hero-visual {
    position: relative;
}

.bot-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.bot-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    margin-bottom: 1.5rem;
}

.badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    background: rgba(0, 255, 144, 0.1);
    color: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 800;
    border: 1px solid rgba(0, 255, 144, 0.2);
}

/* Stats Strip */
.bot-stats-strip {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Features */
.features {
    padding: 8rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 24px;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    border-color: var(--primary);
}

.f-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Page Headers */
.page-header {
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Command List */
.search-container {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 1rem;
}

.search-container i {
    color: var(--primary);
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 8rem;
}

.command-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
}

.cmd-name {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cmd-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Status Page */
.status-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 8rem;
}

.status-card-large {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 30px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bot-pfp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.status-pill-large {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
    font-weight: 700;
}

.status-orb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
}

.status-orb.online {
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

.status-orb.dnd {
    background: #ef4444;
}

.status-orb.idle {
    background: #f59e0b;
}

.technical-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.stat-card h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    padding: 6rem 0;
    background: #010203;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-left p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 250px;
}

.footer-center p {
    margin-bottom: 0.5rem;
}

.powered {
    font-weight: 700;
    font-size: 0.9rem;
}

.powered a {
    color: var(--primary);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-nav a {
    font-weight: 600;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--primary);
}

/* Mobile Menu Implementation */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 2rem auto;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    h1 {
        font-size: 3rem;
    }

    .feature-grid,
    .technical-stats,
    .command-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-left,
    .footer-nav,
    .footer-center {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .bot-card {
        padding: 2rem 1rem;
    }

    .hero-section {
        padding: 5rem 0;
    }
}