/* --- ÜST DUYURU MENÜSÜ STİLLERİ --- */
.top-announcement-wrapper {
    /* KANKACIM: Ekranı sağdan ve soldan tam kaplamasını sağlayan sihirli kod */
    width: 100vw; 
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-announcement-item {
    display: none; 
    width: 100%;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

.top-announcement-item.active {
    display: block;
    animation: fadeBanner 0.6s ease-in-out;
}

.top-announcement-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

/* Metin Duyurusu */
.top-text-content {
    padding: 10px 15px;
    /* KANKACIM: Gilroy Bold Eklendi */
    font-family: 'Gilroy', sans-serif;
    font-size: 0.95rem;
    font-weight: 400; /* 800 = Extra Bold/Bold */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

/* Resim (Banner) Duyurusu */
.top-image-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.top-image-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: cover;
    object-position: center;
}

@keyframes fadeBanner {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .top-text-content {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    .top-image-content img {
        max-height: 60px;
    }
}