:root {
    --bg-dark: #050508;
    --bg-card: #0f1016;
    --primary: #5865F2; /* Discord Blurple */
    --accent: #00d4ff; /* Furina Cyan */
    --accent-glow: rgba(0, 212, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --font: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 8, 0.8);
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--accent); }

.nav-links a {
    margin-left: 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.nav-links a:hover { color: var(--text-main); }
.nav-links .nav-btn {
    background: var(--glass);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: -1;
    animation: pulse 5s infinite alternate;
}

.badge {
    background: rgba(88, 101, 242, 0.2);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

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

.btn:hover { transform: translateY(-3px); }
.btn-primary:hover { box-shadow: 0 6px 30px rgba(88, 101, 242, 0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Sections */
.section { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.icon-box {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Command Interface */
.command-interface {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 500px;
}

.cmd-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(0,0,0,0.2);
}

#cmdSearch {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    outline: none;
}

#cmdSearch:focus { border-color: var(--accent); }

.cmd-tabs { display: flex; gap: 10px; flex-wrap: wrap; }

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--glass);
    color: var(--accent);
}

.cmd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
}

.cmd-item {
    background: var(--bg-dark);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: default;
    transition: 0.2s;
}

.cmd-item:hover { border-color: var(--primary); }
.cmd-item span { display: block; font-weight: 700; color: var(--text-main); margin-bottom: 5px; }
.cmd-item small { color: var(--text-muted); font-size: 0.8rem; }

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h3 { font-size: 3.5rem; color: var(--text-main); }
.stat-item p { color: var(--accent); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-top: 10px; }

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 5% 20px;
    background: #020203;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 { font-size: 1.5rem; margin-bottom: 10px; }
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { color: var(--text-muted); }

.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--text-muted); transition: 0.3s; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom { text-align: center; color: #444; font-size: 0.8rem; }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; gap: 30px; text-align: center; }
    .stats-grid { flex-direction: column; }
    .nav-links { display: none; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.1); opacity: 0.25; }
}
/* --- Paste this AFTER your existing CSS --- */

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0; /* Hidden by default */
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Page Styles */
.legal-container {
    padding: 150px 5% 50px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.legal-box h2 { color: var(--accent); margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.legal-box h3 { color: var(--text-main); margin-top: 20px; margin-bottom: 10px; }
.legal-box p, .legal-box ul { color: var(--text-muted); margin-bottom: 15px; }
.legal-box ul { padding-left: 20px; list-style: disc; }

/* Vote Page Styles */
.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vote-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.vote-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.vote-card h3 { margin: 15px 0; font-size: 1.5rem; }
.vote-card .btn { width: 100%; display: block; margin-top: 20px; }

/* Navbar Active State */
.nav-links a.current {
    color: var(--accent);
    font-weight: 600;
}
/* --- FAQ Section --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
}

.faq-question i {
    transition: 0.3s;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px; /* Adjust if answer is very long */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- Meet the Dev Section --- */
.dev-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dev-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(20, 20, 30, 0.8));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.dev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.dev-img-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.dev-img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.dev-tag {
    background: var(--accent-glow);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.dev-socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dev-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--text-main);
}

.dev-socials a:hover {
    background: var(--accent);
    color: #000;
}
