/* --- GOOGLE FONTS IMPORTS --- */
/* (We will link these in HTML, but setting up fonts here) */

:root {
    /* --- BACKGROUNDS (The Void) --- */
    /* Deepest black for footer/modals - Absorbs light */
    --bg-deep: #050505; 
    /* Main body background - Very dark slate for less eye strain than pure black */
    --bg-main: #0a0f14; 
    /* Card/Header background - Slightly lighter to float above body */
    --bg-card: #11161d; 

    /* --- TEXT COLOURS --- */
    /* Primary Text - Off-white (Pure white hurts eyes on dark mode) */
    --text-main: #e6f1ff; 
    /* Secondary Text - Cool grey for descriptions */
    --text-muted: #8892b0; 
    
    /* --- THE DOPAMINE TRIGGERS (Accents) --- */
    /* "Access Granted" Green - For success, primary buttons, active states */
    --accent-green: #00ff41; 
    /* "Cyber" Blue - For links, tech elements, borders */
    --accent-blue: #00f3ff; 
    /* "System Alert" Red - For your security warnings/blocks */
    --accent-alert: #ff3333;

    /* --- SPECIAL EFFECTS --- */
    --neon-glow: 0 0 10px rgba(0, 255, 65, 0.5);
    --glass-effect: rgba(17, 22, 29, 0.85); /* For see-through header */
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Courier New', 'Fira Code', monospace; /* The Hacker Font */
}

/* Custom Scrollbar (Chrome/Edge/Safari) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-green); /* Neon scrollbar handle */
    border-radius: 4px;
}
/* --- Hero Section --- */
.hero { 
    background-color: var(--primary-dark); 
    padding: 100px 5%; 
    text-align: center; 
    border-bottom: 3px solid var(--accent-blue); 
    animation: fadeIn 1s ease-out; 
    max-width: 100%;
    margin: 0 auto;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
    font-size: 2.5em; /* Increased size */
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-tagline {
    font-size: 1.4em; 
    color: var(--accent-blue); 
    margin-bottom: 30px;
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid var(--accent-blue); /* Thicker border */
    border-radius: 5px;
}

/* --- Content Grids (Stable Layout) --- */
.features, .wtd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-box, .wtd-card { 
    padding: 30px; /* Increased padding */
    border-radius: 10px; 
    background-color: var(--primary-dark); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.5); 
    transition: box-shadow var(--transition-speed), transform var(--transition-speed);
    text-align: left;
}
.feature-box:hover, .wtd-card:hover {
    transform: translateY(-5px); /* Stronger lift effect */
    box-shadow: 0 10px 25px rgba(102, 252, 241, 0.25);
}
.feature-box h3, .wtd-card h3 { color: var(--accent-blue); margin-top: 0; }
.wtd-card { border-left: 5px solid var(--text-white); }
.wtd-card:hover { border-left: 5px solid var(--accent-blue); }

/* --- Buttons --- */
.btn { 
    background-color: var(--accent-blue); 
    color: var(--primary-dark); 
    padding: 12px 30px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn:hover { 
    background-color: #45a29e; 
    transform: scale(1.05);
}
/* MATRIX BACKGROUND STYLE */
#matrix-bg {
    position: fixed; /* Stays in place when scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Puts it BEHIND everything else */
    opacity: 0.25; /* Transparency: Lower this (e.g., 0.1) if it's too distracting */
}




/* CSS to make the globe responsive on Mobile and Windows/Desktop */
    .user-globe-container {
        width: 100%;
        max-width: 600px; /* Prevents it from getting too massive on large monitors */
        height: 400px;    /* Default height */
        margin: 0 auto;   /* Centers the div */
        position: relative;
        background-color: transparent; /* Ensures the div itself is transparent */
    }

    /* Adjust height for smaller mobile screens */
    @media (max-width: 768px) {
        .user-globe-container {
            height: 300px;
        }
    }

