body {
    background-color: #05050a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    color: #4ade80; /* neon green */
    overflow: hidden;
}

/* 3D WebGL Canvas Position */
#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Let clicks pass through to the UI */
}

/* Sleek Glass Chassis */
.glass-chassis {
    width: 900px;
    height: 600px;
    /* Frosted glass effect */
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.8),
        inset 0 1px 1px rgba(255,255,255,0.1),
        0 0 20px rgba(56, 189, 248, 0.1);
    
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.4);
    padding: 8px 20px;
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.brand {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8), 0 0 20px rgba(56, 189, 248, 0.4);
}

.status-indicator {
    display: flex;
    align-items: center;
}

.status-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #222;
}

.status-led.online {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
}

.main-display {
    display: flex;
    gap: 15px;
    flex: 1;
}

.screen-bezel {
    flex: 1;
    background: rgba(0,0,0,0.2);
    padding: 2px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.glass-panel {
    background: rgba(2, 22, 13, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.screen {
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Subtle holographic scanline */
.screen::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    background: linear-gradient(90deg, rgba(74, 222, 128, 0.05), rgba(56, 189, 248, 0.05));
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    font-size: 0.75rem;
    z-index: 3;
    position: relative;
    letter-spacing: 1px;
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.content-area {
    padding: 20px;
    z-index: 3;
    position: relative;
    height: calc(100% - 35px);
    overflow-y: auto;
    box-sizing: border-box;
}

/* Minimalist scrollbar */
.content-area::-webkit-scrollbar {
    width: 4px;
}
.content-area::-webkit-scrollbar-track {
    background: transparent;
}
.content-area::-webkit-scrollbar-thumb {
    background: rgba(74, 222, 128, 0.5);
    border-radius: 4px;
}

.side-panel {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-card {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

h3 {
    margin: 0 0 15px 0;
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.75rem;
}
.bar-container label {
    width: 50px;
    color: #666;
}

.bar-bg {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.track-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    word-break: break-all;
    font-family: 'Orbitron', sans-serif;
}

.track-info {
    color: #666;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.control-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 15px;
}

.media-controls {
    display: flex;
    gap: 10px;
}

.btn-glass {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.05);
    color: #38bdf8;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    color: #fff;
}

.btn-glass:active {
    transform: scale(0.95);
}

.eq-visualizer {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
}

.eq-bar {
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.eq-fill {
    width: 100%;
    background: #4ade80;
    transition: height 0.1s ease;
}

/* Project Lists */
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-item {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
}

.project-item:hover {
    background: rgba(74, 222, 128, 0.05);
    padding-left: 20px;
    border-bottom-color: rgba(74, 222, 128, 0.3);
}

.project-name {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

.project-item:hover .project-name {
    color: #4ade80;
}

.project-meta {
    color: #666;
    font-size: 0.75rem;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
