/* =============== RESET =============== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============== BASE =============== */

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top, #0f1f3d, #050c18);
    color: #e2e8f0;
    overflow-x: hidden;
}

/* =============== PAGE =============== */

.page {
    padding: 28px;
}

/* =============== GRID =============== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* =============== CARD =============== */

.card {
    background: linear-gradient(145deg, #13294b, #0c1a33);
    border: 1px solid rgba(96,165,250,0.12);

    padding: 20px;
    border-radius: 14px;

    box-shadow: 0 10px 28px rgba(0,0,0,0.6);

    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, #17345c, #0d1d3a);
    box-shadow:
        0 14px 35px rgba(0,0,0,0.7),
        0 0 12px rgba(59,130,246,0.2);
}

.card.full {
    grid-column: span 4;
}

/* =============== INPUT =============== */

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;

    background: #0b1a33;
    border: 1px solid rgba(96,165,250,0.2);

    color: #e2e8f0;
    border-radius: 10px;

    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59,130,246,0.3);
}

/* =============== BUTTON =============== */

.btn {
    margin-top: 14px;
    padding: 10px 18px;

    border-radius: 8px;
    border: none;

    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: white;

    cursor: pointer;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37,99,235,0.45);
}

.btn.secondary {
    background: rgba(255,255,255,0.08);
}

/* =============== STATUS =============== */

.status.high {
    color: #ef4444;
    font-weight: 600;
}

/* =============== MAP =============== */

.map-placeholder {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}