.reklam-ozel-alan {
    /* KONUM: Sayfanın sağ üstüne çivili (Body'ye eklediğimiz için) */
    position: fixed; 
    top: 18px;
    right: 36px;
    
    /* LİNK AYARLARI */
    text-decoration: none;
    cursor: pointer;
    
    /* GÖRÜNÜM & BOYUT (Biraz büyütüldü) */
    width: 230px; /* Genişlik arttı */
    padding: 14px 18px;
    
    /* RENK: Koyu Kırmızı / Siyah Gradyan */
    background: linear-gradient(135deg, rgba(40, 10, 10, 0.92), rgba(20, 20, 20, 0.98));
    
    /* GLASS & BORDER */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Sol tarafa kalın kırmızı bir çizgi */
    border-left: 3px solid #bd0000; 
    border-radius: 6px;
    border-top: 1px solid rgba(255, 50, 50, 0.15);
    border-bottom: 1px solid rgba(255, 50, 50, 0.15);
    border-right: 1px solid rgba(255, 50, 50, 0.15);
    
    /* GÖLGE */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(150, 0, 0, 0.15);
    
    /* İÇERİK DÜZENİ */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    
    z-index: 4590;
    transition: all 0.3s ease;
}

/* Hover Efekti */
.reklam-ozel-alan:hover {
    background: linear-gradient(135deg, rgba(70, 15, 15, 0.98), rgba(35, 35, 35, 0.98));
    box-shadow: 0 5px 25px rgba(220, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* İKON VE NABIZ ALANI */
.reklam-ikon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* İkon alanı sabitlendi */
    height: 30px;
}

/* Nabız Animasyonu */
.nabiz-efekti {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    70% { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(0.8); opacity: 0; }
}

/* METİN ALANI */
.reklam-metin {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.baslik {
    font-family: 'Inter', sans-serif;
    font-size: 11px; /* Büyütüldü */
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ff5555;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.aciklama {
    font-family: 'Inter', sans-serif;
    font-size: 10px; /* Büyütüldü */
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
}

.aciklama b {
    color: #fff;
    font-weight: 600;
}

/* OK İKONU */
.ok-ikon {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.reklam-ozel-alan:hover .ok-ikon {
    transform: translateX(4px);
    color: #fff;
}

/* MOBİL AYARLARI */
@media (max-width: 768px) {
    .reklam-ozel-alan {
        /* KONUM DÜZELTME: Daha yukarı ve sağa */
        position: fixed; /* Mobilde ekranı takip etmesi için şart */
        top: 11px;        /* 15px'den 5px'e çektik (Yukarı çıktı) */
        right: 15px;      /* Kenara daha iyi yapışsın */
        left: auto;      /* Sol tarafı serbest bırak */
        
        width: 145px;       /* Genişlik azıcık kısıldı */
        padding: 8px 10px;  /* İç boşluk daraltıldı, daha kompakt */
        border-left: 3px solid #bd0000;
        
        /* Mobilde diğer öğelerin (header vs) altında kalmaması için */
        z-index: 4590; 
    }
    
    .reklam-ikon img { width: 18px !important; height: 18px !important; }
    .baslik { font-size: 9px; margin-bottom: 0; }
    .aciklama { font-size: 8px; line-height: 1.1; }
    .ok-ikon { display: none; }
}