body {
    margin: 0;
    overflow-x: hidden;
    background-color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #eee;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dashboard {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(100, 200, 255, 0.8), 0 0 40px rgba(100, 200, 255, 0.4);
    background: linear-gradient(to right, #4df, #a0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.panel-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4df;
    text-shadow: 0 0 10px rgba(68, 221, 255, 0.5);
}

.control-group {
    margin-bottom: 20px;
    display: flow-root;
}

.control-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.value-display {
    font-family: 'Courier New', monospace;
    color: #f0f;
    font-weight: bold;
    float: right;
}

.chart-container {
    height: 300px;
    width: 100%;
    margin-top: 20px;
}

.viz-container {
    height: 300px;
    width: 100%;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

footer {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}
