body {
            background-color: #000;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .main-container {
            max-width: 1100px;
            width: 100%;
            padding: 20px;
        }
        /* Mobilde okunmayan başlık için düzeltme */
        .status-header {
            text-align: center;
            font-size: clamp(1.2rem, 5vw, 2.5rem); /* Minimum 1.2rem, ekranla büyüyen, max 2.5rem */
            letter-spacing: 3px;
            margin-bottom: 40px;
            text-transform: uppercase;
            border-bottom: 2px solid #333;
            padding-bottom: 15px;
            font-weight: 700;
        }
        .img-wrapper {
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            border: 1px solid #222;
        }
        .img-fluid {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .img-wrapper:hover .img-fluid {
            transform: scale(1.05);
            filter: brightness(1.2);
        }
        /* Masaüstü Yükseklik Ayarları */
        .logo-box { height: 420px; }
        .grid-box { height: 200px; }

        /* Mobil Ayarlar */
        @media (max-width: 768px) {
            .logo-box { height: 300px; }
            .grid-box { height: 150px; }
            .status-header { margin-bottom: 20px; letter-spacing: 1px; }
        }

/* Harita Filtresi: Siyah temaya uyması için haritayı koyulaştırır */
.map-container iframe {
    filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.8);
    display: block;
}

/* Mobilde yazıların ortalanması için opsiyonel */
@media (max-width: 768px) {
    .col-md-5 {
        text-align: center !important;
    }
    .col-md-5 div {
        justify-content: center !important;
    }
}