/* Command Center Layout & Core Styles */
/* Large Panel Base */
.large-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--glow-blue), 0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
.sidebar-icon:hover .large-panel {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}
/* Main Content Layout */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}
.main-glass-panel {
    text-align: left;
    background: linear-gradient(180deg, #101624 80%, #181f2e 100%);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(80, 120, 200, 0.10);
    padding: 2em;
    display: inline-block;
    margin-left: 2em;
    box-sizing: border-box;
}
/* Typography */
.main-desc {
    font-size: 1.25em;
    color: #c3c8d1;
    max-width: 540px;
    text-align: left;
    margin-bottom: 0;
}
.title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(var(--glow-blue), 0.3);
    animation: beaconGlow 4s ease-in-out infinite alternate;
    text-align: left;
}
/* Responsive Design */
@media (max-width: 900px) {
    body {
        flex-direction: column;
    }
    .sidebar {
        flex-direction: row;
        width: 100vw;
        height: auto;
    }
    .main-content {
        align-items: center;
    }
    .main-glass-panel {
        margin: 0 auto;
    }
}
