:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --neon-green: #00ff00;
    --neon-blue: #00d4ff;
    --neon-pink: #ff00ff;
    --text-color: #e0e0e0;
    --font-main: 'Courier New', Courier, monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.banner-image {
    width: 100%;
    max-width: 1200px;
    max-height: 200px;
    object-fit: cover;
    object-position: top;
    height: auto;
    border-radius: 4px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.15);
}

.header {
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-bar {
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
}

.neon-green { color: var(--neon-green); }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border: 1px solid #333;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-blue);
}

h2 {
    font-size: 1rem;
    margin-top: 0;
    color: var(--neon-blue);
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.chart-container {
    min-height: 300px;
}

.stats-row {
    grid-column: span 2;
    display: flex;
    gap: 20px;
}

.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h3 {
    font-size: 0.8rem;
    margin: 0 0 10px 0;
    color: var(--neon-pink);
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
}

.stat-value.small {
    font-size: 1rem;
}

.ram-bar-bg {
    width: 100%;
    height: 10px;
    background: #111;
    border: 1px solid #444;
    margin-bottom: 10px;
}

.ram-bar-fill {
    height: 100%;
    background: var(--neon-pink);
    width: 0%;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 0 10px var(--neon-pink);
}

canvas {
    width: 100% !important;
    height: 250px !important;
}
