/* --- FONTS & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-glow: rgba(0, 100, 255, 0.15);
    --glass-border: rgba(0, 100, 255, 0.08);
    --glass-bg: rgba(0, 100, 255, 0.03);
    --accent-purple: #0064ff;
    --status-green: #00ff88;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif !important; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* --- DYNAMIC MOUSE GLOW --- */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    width: 90%; max-width: 1200px; margin: 20px auto; padding: 15px 30px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); border-radius: 16px;
    position: sticky; top: 20px; z-index: 100;
}
.logo { font-weight: 800; color: #fff; text-decoration: none; font-size: 1.2rem; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-muted); transition: 0.3s; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-btn { background: #fff; color: #000; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.nav-btn:hover { background: var(--accent-purple); color: #fff; transform: scale(1.05); }

/* --- HERO & STATUS --- */
.hero { padding: 100px 20px 20px; text-align: center; }
h1 { font-size: 4rem; margin-bottom: 20px; font-weight: 900; letter-spacing: -2px; }
.subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--status-green);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 136, 0.1);
    
    /* Pushes it down further from the Products/Discord buttons */
    margin-top: 40px; 
    margin-bottom: 60px;
}
.dot { width: 8px; height: 8px; background: var(--status-green); border-radius: 50%; box-shadow: 0 0 12px var(--status-green); }

/* --- PREMIUM CARD HOVER (FOR ALL CARDS) --- */
.card, .team-card, .product-card, .review-card-modern {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.card:hover, .team-card:hover, .product-card:hover, .review-card-modern:hover {
    border-color: var(--accent-purple);
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(199, 125, 255, 0.1);
}

/* --- HOME PAGE BOXES (FIXED SIZE) --- */
.features .grid { 
    display: flex; flex-direction: column; align-items: center; 
    gap: 20px; margin-bottom: 60px; 
}

.card {
    width: 90%; 
    max-width: 650px; /* Reduced from 900px to fix the "too big" look */
    padding: 30px 40px; border-radius: 16px;
}

/* --- TEAM & REVIEWS GRIDS --- */
.team-grid, .reviews-container {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 30px; width: 90%; max-width: 1200px; margin: 0 auto 60px;
}

.team-card { flex: 0 1 320px; padding: 40px 20px; border-radius: 20px; text-align: center; }
.team-card img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 2px solid var(--accent-purple); }

.review-card-modern { flex: 0 1 350px; height: 250px; border-radius: 20px; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; text-decoration: none; }
.review-img { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.play-btn-overlay { position: relative; z-index: 2; background: #fff; color: #000; padding: 12px 24px; border-radius: 50px; font-weight: 800; }

/* --- PRODUCTS --- */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    width: 100%;
}

.product-card { flex: 0 1 400px; padding: 40px; border-radius: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.product-card .btn, .product-card .nav-btn { margin-top: 30px; width: 100%; padding: 14px; }

.product-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;   
    
    border: 1px solid var(--glass-border); 
    background: rgba(255, 255, 255, 0.02);
    
    box-shadow: 0 0 15px rgba(199, 125, 255, 0.1); 
    
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
    border-color: var(--accent-purple);
}

/* --- BUTTONS --- */
.btn { padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: var(--accent-purple); color: #fff; }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--glass-border); }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .grid, .team-grid, .product-grid, .reviews-container {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .card, .team-card, .product-card, .review-card-modern {
        width: 100% !important;
        max-width: 90% !important;
        flex: unset !important;
    }

    .hero .btn, .hero .btn-secondary {
        width: 80%;
        margin-bottom: 10px;
    }

    .glow-bg {
        width: 300px;
        height: 300px;
    }
}

/* --- FOOTER & ANIMATIONS --- */
.fade-in { animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
footer { text-align: center; padding: 60px; color: #444; font-size: 0.8rem; margin-top: auto; }
