body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #071827;
    color: white;
}

header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
    font-size: 42px;
}

header p {
    color: #b8d8e8;
    margin-top: 10px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #12344a;
}

.stats div {
    background: #0c2638;
    padding: 20px;
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 34px;
}

.stats span {
    color: #b8d8e8;
}

.progress-section {
    max-width: 1000px;
    margin: 25px auto;
    padding: 0 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    height: 20px;
    background: #0c2638;
    border-radius: 999px;
    overflow: hidden;
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.5s;
}

#progress-target {
    color: #b8d8e8;
    font-size: 14px;
}

main {
    max-width: 1200px;
    margin: auto;
    padding: 25px;
}

#map {
    height: 650px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.latest {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #0c2638;
    border-radius: 12px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card div {
    padding: 15px;
}

.card h3 {
    margin-top: 0;
}

.popup-img {
    width: 220px;
    border-radius: 8px;
    margin-top: 10px;
}

@media(max-width:700px) {

    .stats {
        grid-template-columns: 1fr;
    }

    #map {
        height: 450px;
    }

}