:root {
    --neon-pink: #ff0055;
    --neon-blue: #00f2ff;
    --dark-void: #0a0a0b;
    --cyber-font: 'Rajdhani', sans-serif;
}

/* Sayfa genelini siyaha kilitle */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background-color: var(--dark-void) !important; width: 100vw; height: 100vh; overflow: hidden; }

.cyber-header {
    height: 90px;
    background: #000;
    border-bottom: 2px solid var(--neon-pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

.glitch { font-family: 'Orbitron', sans-serif; font-size: 24px; color: #fff; text-shadow: 2px 2px var(--neon-blue); }
.sub-text { font-size: 11px; color: var(--neon-blue); letter-spacing: 2px; }

/* MENÜNÜN İÇİNİ SİYAHA BOYAYAN KISIM */
.selector-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--neon-blue);
    padding: 5px 15px;
    background: rgba(0, 242, 255, 0.1);
}

#site-select {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    font-family: var(--cyber-font);
}

/* Bu satır açılan menü listesini düzeltir */
#site-select option {
    background-color: #111 !important; /* Menü içi simsiyah */
    color: var(--neon-blue) !important; /* Yazılar elektrik mavisi */
    padding: 10px;
}

.cyber-btn-wa {
    background: var(--neon-pink);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 800;
    clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
}

/* KAYMAYI ÖNLEYEN MERKEZ KİLİDİ */
.iframe-view-area {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#preview-frame {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
    display: block;
}

.status-blink { width: 8px; height: 8px; background: var(--neon-blue); border-radius: 50%; margin-right: 10px; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Masaüstü: Tanıtım Yazısını Görünür Kıl */
.promo-static {
    background: #000;
    border-bottom: 2px solid var(--neon-pink);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    position: relative; /* Üstte kalmasını sağlar */
    z-index: 1002;
}

.promo-text {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

/* KRİTİK AYAR: Iframe'i aşağı kaydır ki yazı görünsün */
.iframe-view-area {
    position: absolute;
    top: 140px !important; /* Header (90px) + Promo (50px) */
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

/* MOBİL AYARLARI: WhatsApp Butonunu Kurtar */
@media (max-width: 768px) {
    .cyber-header {
        height: auto;
        flex-wrap: wrap; /* Elemanları sığmazsa alt satıra at */
        padding: 10px;
        justify-content: center;
    }

    .header-right {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .cyber-btn-wa {
        width: 90%; /* Mobilde butonu genişlet ki rahat basılsın */
        justify-content: center;
    }

    .promo-text {
        font-size: 10px;
        text-align: center;
    }

    /* Mobilde Iframe daha da aşağı inmeli */
    .iframe-view-area {
        top: 210px !important; 
    }
}