body {
    background: radial-gradient(circle, #050505, #000000);
    color: #00ffcc;
    font-family: monospace;
    margin: 0;
}

.container {
    padding: 20px;
    text-align: center;
}

h1 {
    text-shadow: 0 0 20px #00ffcc;
}

#clock {
    color: #aaa;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.card {
    border: 1px solid #00ffcc;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 15px #00ffcc33;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.03);
}

#map {
    height: 320px;
    margin-top: 20px;
    border: 1px solid #00ffcc;
}

.meter {
    height: 20px;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

#riskBar {
    height: 100%;
    width: 0%;
    transition: width 1s ease;
}
