/* Özel Destek Widget'ı */
.custom-support-widget {
    position: fixed;
    bottom: 50px;
    left: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-menu.show {
    display: flex;
    opacity: 1;
}

.sup-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 15px;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-family: inherit;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    width: 150px;
    font-size: 13px;
    transition: transform 0.2s ease-in-out;
}

.sup-btn:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.sup-btn i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Marka Renkleri */
.sup-live { background-color: #f05a28; }
.sup-ticket { background-color: #1e2b5e; }
.sup-wa { background-color: #78c275; }
.sup-fb { background-color: #5c74b1; }
.sup-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sup-yt { background-color: #c4302b; }

/* --- YUKARI AŞAĞI SÜZÜLME ANİMASYONU --- */
@keyframes floatAvatar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-35px); } /* ESKİSİ: -12px idi. Hareketi uzatmak için 25 piksele çıkardık. */
    100% { transform: translateY(0px); }
}

.support-avatar {
    cursor: pointer;
    text-align: left;
    animation: floatAvatar 3s ease-in-out infinite; /* ESKİSİ: 3s idi. Hızlandırmak için süreyi 1.5 saniyeye düşürdük. */
}

/* MOBİL İÇİN VARSAYILAN GÖRÜNÜM */
.support-avatar img {
    width: 100px; 
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

.support-avatar:hover img {
    transform: scale(1.05); /* Üzerine gelince hafif büyüme */
}

/* ==================================================== */
/* --- MASAÜSTÜ İÇİN ÖZEL AYARLAR (768px ve üzeri) --- */
/* ==================================================== */
@media (min-width: 768px) {
    .support-avatar img {
        width: 160px; /* Masaüstünde görsel boyutu */
    }
    
    .sup-btn {
        width: 180px; 
        font-size: 14px; 
        padding: 12px 16px;
    }
    
    .custom-support-widget {
        bottom: 60px; 
        left: 30px; 
    }
}