/* --- 1. RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent: #00e5ff;
    --text: #e0fbfc;
    --glass: rgba(0, 50, 60, 0.4);
    --water-blue: #00d4ff;
    --dark-bg: #050505;
}

body {
    background-color: var(--dark-bg);
    color: var(--text);
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    overflow-x: hidden;
    width: 100vw;
}

.fixed-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('assets/background.jpg') center/cover no-repeat;
    z-index: -2;
    filter: brightness(0.4);
}

/* --- 2. FIXED HEADER --- */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--accent);
    z-index: 9999;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 50px;
}

.site-title {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--accent);
}

.hub-nav { text-align: right; padding-right: 10px; }
.hub-nav a {
    display: inline-block;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1.8;
    white-space: nowrap;
    transition: 0.3s;
}
.hub-nav a:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent); }

/* --- 3. MAIN WRAPPER (PREVENTS IMAGE OVERLAP) --- */
.dashboard-wrapper {
    padding-top: 150px; /* Forces content BELOW the header */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* --- 4. HERO SECTION --- */
.hero-container { text-align: center; margin-bottom: 50px; }
.hero-text-box { margin-bottom: 20px; }
.hero-text-box h1 { color: var(--accent); letter-spacing: 5px; margin-bottom: 10px; }
.hero-text-box p { color: var(--accent); letter-spacing: 2px; }

.base-image {
    display: block;
    margin: 0 auto;
    max-width: 100%; /* Prevents the image from blowing up the page */
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* --- 5. TERMINAL DASHBOARD GRID --- */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.data-block {
    background: linear-gradient(135deg, rgba(0, 50, 60, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 4px solid var(--water-blue);
    padding: 25px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.7);
}

.data-block:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.1), 0 10px 25px rgba(0, 229, 255, 0.2);
}

.block-header {
    color: var(--text);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 8px;
    text-shadow: 0 0 8px var(--accent);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, transparent 100%);
    padding-left: 10px;
}

.block-content p { font-size: 0.9rem; margin-bottom: 15px; line-height: 1.6;}

.data-list { list-style: none; padding-left: 0; }
.data-list li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 0.9rem; }
.data-list li::before { content: "►"; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; top: 2px; text-shadow: 0 0 5px var(--accent); }

.stat-bar { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 229, 255, 0.2); height: 10px; border-radius: 2px; margin: 10px 0; overflow: hidden; }
.stat-fill { background: var(--water-blue); height: 100%; box-shadow: 0 0 10px var(--water-blue); }
.stat-label { font-size: 0.8rem; color: #888; letter-spacing: 1px; }

.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.media-item { background: rgba(0, 0, 0, 0.8); border: 1px solid rgba(0, 229, 255, 0.3); padding: 10px; text-align: center; font-size: 0.8rem; transition: 0.3s; }
.media-item:hover { background: rgba(0, 229, 255, 0.2); border-color: var(--accent); color: #fff; }

.terminal-text { display: block; font-family: 'Courier New', monospace; font-size: 0.85rem; color: #00ff88; background: rgba(0, 255, 136, 0.05); padding: 8px 10px; margin-top: 8px; border-left: 2px solid #00ff88; }

.data-block a { color: var(--accent); text-decoration: none; display: inline-block; margin-top: 5px; font-size: 0.9rem; transition: 0.3s; }
.data-block a:hover { text-shadow: 0 0 10px var(--accent); transform: translateX(5px); }

/* --- 6. GLASS BOX / TERMINAL AREA --- */
.glass-box {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.terminal-section h2 { color: var(--accent); letter-spacing: 3px; margin-bottom: 10px; text-transform: uppercase; }
.terminal-section p { font-size: 0.8rem; color: #888; margin-bottom: 15px; }