@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=JetBrains+Mono:wght@400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, #0a0a0f, #111122);
    color: #e6e6e6;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(145deg, rgba(0,0,0,0.7), rgba(20,20,40,0.8));
    backdrop-filter: blur(8px);
}

header.small { padding: 60px 20px; }
.logo { width: 130px; filter: drop-shadow(0 0 10px #00ffff); }
.logo-small { width: 80px; }

h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #00ffff, #a020f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 15px 0;
}

.tagline { font-size: 1rem; opacity: 0.8; }
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #00ffff, #a020f0);
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 10px #00ffff55;
    transition: all 0.3s ease;
}
.btn:hover { box-shadow: 0 0 20px #00ffffaa; transform: translateY(-3px); }
.btn.small { padding: 10px 20px; font-size: 0.9rem; }
.btn.back { background: none; color: #00ffff; border: 1px solid #00ffff; }

.about {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}
.about h2 { font-size: 2rem; margin-bottom: 20px; }
.about p { opacity: 0.85; line-height: 1.6; }

.plugins {
    padding: 60px 40px;
    background: rgba(10,10,20,0.9);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}
.card:hover {
    border-color: #00ffff;
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,255,255,0.2);
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    background: rgba(0,0,0,0.4);
}
footer p { opacity: 0.7; font-size: 0.9rem; }

/* NAVBAR */
nav {
    width: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    display: flex;
    justify-content: center;
    gap: 45px;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(0,255,255,0.15);
    animation: fadeDown 0.6s ease forwards;
    opacity: 0;
}

nav a {
    font-family: 'JetBrains Mono', monospace;
    color: #d9ffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: 0.3s ease;
}

/* Active page highlight */
nav a.active {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 12px #00ffffaa;
}

/* Make the underline stay for the active link */
nav a.active::after {
    width: 100%;
}

/* Neon gradient hover underline */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #00ffff, #a020f0);
    box-shadow: 0 0 12px #00ffffaa;
    transition: 0.35s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00ffffaa;
    transform: translateY(-2px);
}

/* Fade-down animation */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 12px;
        padding: 14px 0;
    }
}
