body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.dashboard-container {
    max-width: 800px;
    width: 100%;
    background-color: #161616;
    border: 1px solid #333;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 2px;
    color: #ffffff;
}

.subtitle {
    color: #888;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.gauge-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.chart-container {
    width: 50%;
    height: 200px;
    position: relative;
}

.readouts {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric {
    background-color: #000;
    padding: 15px;
    border-left: 4px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-live { border-color: #555; }
.box-ema { border-color: #ff3333; }
.box-sma { border-color: #888; }

.label { font-size: 14px; color: #aaa; }
.value { font-size: 20px; font-weight: bold; color: #fff; }

.narrative-section {
    background-color: #0a0a0a;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}