/* GLOBAL STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #0f172a; 
    color: #f8fafc;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* 🟢 FUN UPGRADE 1: Matrix Green Text Selection */
::selection {
    background: #27c93f; 
    color: #000;
}

/* NAVBAR & LOGO */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 1px solid #1e293b;
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 1.5rem; 
    font-weight: bold; 
    letter-spacing: -1px; 
}
.site-logo {
    height: 36px; 
    width: auto;
    border-radius: 4px; 
}
.nav-links a { margin-left: 30px; color: #94a3b8; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

/* 🔵 FUN UPGRADE 2: Bouncy, Glowing Discord Button */
.btn-primary { 
    background: #3b82f6; 
    color: #fff !important; 
    padding: 8px 16px; 
    border-radius: 6px; 
    font-weight: bold; 
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover { 
    background: #2563eb; 
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.6);
}

/* HERO SECTION */
.hero { text-align: center; padding: 80px 20px 60px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero p { font-size: 1.2rem; color: #94a3b8; max-width: 600px; margin: 0 auto; }

/* MASSIVE HERO BUTTON */
.hero .btn-primary {
    display: inline-block;
    margin-top: 30px;
    font-size: 1.1rem;
    padding: 12px 28px;
}

/* HUB GRID */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

/* HUB CARDS */
.hub-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

/* 🔵 FUN UPGRADE 3: Neon Glow on Hover */
.hub-card.active-card:hover { 
    transform: translateY(-5px); 
    border-color: #3b82f6; 
    box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.3);
}
.hub-card.disabled { opacity: 0.6; cursor: not-allowed; }

.card-icon { font-size: 2.5rem; margin-bottom: 15px; }
.hub-card h2 { font-size: 1.4rem; margin-bottom: 10px; }
.hub-card p { color: #94a3b8; font-size: 0.95rem; margin-bottom: 20px; }

/* STATUS BADGES */
.status-badge {
    font-size: 0.8rem; font-weight: bold; padding: 4px 10px; border-radius: 20px;
}
.live { background-color: rgba(39, 201, 63, 0.2); color: #27c93f; }
.building { background-color: rgba(255, 189, 46, 0.2); color: #ffbd2e; }
.planned { background-color: rgba(148, 163, 184, 0.2); color: #94a3b8; }

/* FOOTER */
.site-footer {
    text-align: center; padding: 40px 20px; border-top: 1px solid #1e293b; color: #64748b;
}
.legal-links { margin-top: 10px; }
.legal-links a { margin: 0 10px; font-size: 0.9rem; transition: color 0.2s; }
.legal-links a:hover { color: #94a3b8; }




















/* 📱 MOBILE RESPONSIVENESS FIX */
/* 📱 MOBILE RESPONSIVENESS FIX */
@media (max-width: 768px) {
    /* 1. Center everything cleanly */
    .navbar {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }
    
    /* 2. Fix the Logo Background and Alignment */
    .logo {
        justify-content: center;
        width: 100%;
    }
    .site-logo {
        height: 45px; /* Made it slightly larger to command attention */
        /* MAGIC HACK: This blends the black background of your image perfectly into the dark blue navbar */
        mix-blend-mode: lighten; 
    }

    /* 3. The "Floating Pill" Link Menu */
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background-color: #1e293b; /* Creates a sleek container for the links */
        padding: 8px 15px;
        border-radius: 50px; /* Rounds the container perfectly */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links a {
        margin-left: 0;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* 4. Adjust the Join Button for the Pill */
    .nav-links .btn-primary {
        padding: 6px 16px;
        font-size: 0.9rem;
        margin-left: 5px;
    }

    /* 5. Scale down the Hero text so it reads well */
    .hero { 
        padding: 40px 15px; 
    }
    .hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.2;
    }
    .hero p { 
        font-size: 1.05rem; 
    }
}