:root {
    --cyan: #7dcfff;
    --purple: #bb9af7;
    --neon-green: #00ff89;
    --bg-dark: #0f111a;
    --card-bg: #1a1b26;
    --border-dim: #3b4261;
}

html, body {
    width: 100%;
    margin: 0; padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: #a9b1d6;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 10px;
    box-sizing: border-box;
}

.grid-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 243, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 243, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px; z-index: -1;
}

.dashboard-container { 
    display: flex; 
    flex-direction: row;
    width: 100%; 
    max-width: 1200px;
    gap: 20px; 
}

.main-content {
    flex: 2; 
    background: var(--card-bg); 
    padding: 20px;
    border-radius: 8px; 
    border: 1px solid var(--border-dim);
    display: flex; 
    flex-direction: column;
}

.slider-container {
    position: relative; 
    height: 180px; 
    border: 1px solid var(--purple);
    margin-bottom: 20px; 
    overflow: hidden; 
    background: rgba(0,0,0,0.2);
}

.slide {
    position: absolute; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transition: 0.6s; text-align: center; padding: 15px; box-sizing: border-box;
}

.slide.active { opacity: 1; }

.slider-dots {
    position: absolute; bottom: 10px; width: 100%;
    display: flex; justify-content: center; gap: 8px;
}

.dot {
    width: 6px; height: 6px;
    background: var(--border-dim);
    border-radius: 50%; transition: 0.3s;
}

.dot.active {
    background: var(--purple);
    box-shadow: 0 0 5px var(--purple);
}

.info-output-area {
    border-top: 1px solid var(--border-dim);
    min-height: 130px; 
    padding: 15px 0; 
    color: var(--cyan);
    transition: opacity 0.3s;
}

.quick-nav { 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px; 
    margin-top: auto;
}

.nav-btn {
    background: rgba(0,0,0,0.4); 
    border: 1px solid var(--border-dim);
    color: var(--purple); 
    padding: 10px 15px; 
    cursor: pointer; 
    font-size: 0.8rem;
    font-family: inherit;
    transition: 0.3s;
}

.nav-btn:hover { border-color: var(--cyan); color: white; }
.btn-highlight { border-color: var(--neon-green); color: var(--neon-green); }

/* SKILL BARS */
.skill-bar-container { margin-bottom: 10px; width: 100%; }
.skill-label { font-size: 0.75rem; margin-bottom: 4px; display: block; }
.skill-track { background: #000; height: 6px; border-radius: 3px; overflow: hidden; }
.skill-fill { 
    background: var(--neon-green); 
    height: 100%; 
    width: 0; 
    transition: width 1s ease-out; 
    box-shadow: 0 0 8px var(--neon-green);
}

.status-sidebar { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.status-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border-dim); padding: 15px; }
.project-link { color: white; text-decoration: none; font-weight: bold; }
.project-details { max-height: 0; opacity: 0; transition: 0.3s ease; overflow: hidden; }
.status-item.active .project-details { max-height: 150px; opacity: 1; padding-top: 10px; }
.status-tag { color: var(--neon-green); font-size: 0.65rem; border: 1px solid var(--neon-green); padding: 2px 5px; }

/* RESPONSIVE */
@media (min-width: 769px) { body { align-items: center; padding: 0; } .dashboard-container { height: 85vh; } }
@media (max-width: 768px) {
    .dashboard-container { flex-direction: column; }
    .slider-container { height: 160px; }
    .nav-btn { flex: 1 1 40%; }
}