/* ==========================================================================
   Temel Sıfırlama ve Font Ayarları
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #05080f;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 40px 0;
}

/* ==========================================================================
   RADAR ARKA PLAN EFEKTİ
   ========================================================================== */
.radar-container {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(229, 169, 19, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.c1 { width: 200px; height: 200px; }
.c2 { width: 400px; height: 400px; }
.c3 { width: 600px; height: 600px; }

.radar-line {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform-origin: 0% 0%; 
    background: conic-gradient(from 0deg, rgba(229, 169, 19, 0.15) 0deg, transparent 90deg);
    animation: radar-sweep 6s linear infinite;
}

@keyframes radar-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   ANA İÇERİK YAPISI
   ========================================================================== */
.container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 90%;
    text-align: center;
    padding: 20px;
}

/* Üst Başlık Elemanları */
.badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #e5a913;
    border: 1px solid rgba(229, 169, 19, 0.3);
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(229, 169, 19, 0.03);
    margin-bottom: 25px;
    font-weight: 600;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==========================================================================
   DURUM KUTUSU (KURUMSAL METİN ALANI)
   ========================================================================== */
.status-box {
    background: rgba(10, 15, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 40px;
}

.status-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Yanıp Sönen Canlı Sinyal Işığı */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #e5a913;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.4; box-shadow: 0 0 0 0 rgba(229, 169, 19, 0.7); }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px 4px rgba(229, 169, 19, 0.5); }
    100% { transform: scale(0.9); opacity: 0.4; box-shadow: 0 0 0 0 rgba(229, 169, 19, 0); }
}

.status-content p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.status-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   LOKASYON / HARİTA TASARIMI
   ========================================================================== */
.map-container {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    max-width: 600px;
    height: 280px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.map-container iframe:hover {
    opacity: 1;
}

/* ==========================================================================
   ALT BİLGİ (FOOTER)
   ========================================================================== */
.contact-info {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #e5a913;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.15);
}

.copyright {
    font-size: 12px;
    color: #64748b;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 480px) {
    body { padding: 20px 0; }
    h1 { font-size: 24px; }
    .status-box { padding: 25px 20px; }
    .contact-info span { display: block; margin-bottom: 8px; }
    .separator { display: none; }
    .radar-container { transform: translate(-50%, -50%) scale(0.7); }
}