/* Genel Kapsayıcı Tasarımı */
.yt-engagement-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
    font-family: Roboto, Arial, sans-serif;
    width: 100%;
}

.yt-channel-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.yt-avatar-wrapper { width: 40px; height: 40px; flex-shrink: 0; }
.yt-avatar-wrapper img { width: 100% !important; height: auto !important; border-radius: 50% !important; object-fit: cover; }
.yt-channel-meta { display: flex; flex-direction: column; justify-content: center; }
.yt-channel-title-row { display: flex; align-items: center; gap: 4px; }
.yt-channel-name { font-weight: 500; font-size: 15px; color: #0f0f0f; line-height: 1.4; }
.yt-verified-badge { color: #606060; display: inline-flex; }
.yt-follower-count { font-size: 12px; color: #606060; }
.yt-channel-avatar-link, .yt-channel-name-link { text-decoration: none !important; color: inherit !important; box-shadow: none !important; }

/* Buton ve Mörf Çerçevesi */
.yt-sub-interaction-frame {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.yt-subscribe-btn {
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 0 16px !important;
    height: 36px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Orijinal YouTube Bildirim Hapı Yapısı */
.yt-bell-pill-wrapper {
    position: relative;
    display: inline-flex;
}

.yt-bell-pill-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(128, 128, 128, 0.1) !important;
    color: #0f0f0f !important;
    border: none !important;
    border-radius: 18px !important;
    height: 36px !important;
    padding: 0 12px 0 14px !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.yt-bell-pill-trigger:hover {
    background: rgba(128, 128, 128, 0.2) !important;
}

/* Aktif Duruma Göre Zil İkonu Maskeleme */
.yt-bell-pill-trigger .bell-icon { display: none; }
.yt-bell-pill-trigger[data-active-status="all"] .icon-all { display: block; }
.yt-bell-pill-trigger[data-active-status="personalized"] .icon-personalized { display: block; }
.yt-bell-pill-trigger[data-active-status="none"] .icon-none { display: block; color: #606060; }

.yt-chevron-down {
    color: #0f0f0f;
    opacity: 0.8;
}

/* Screenshot 2026-06-02 at 16-09-09 Koyu YouTube Menüsü Stili */
.yt-bell-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: #212121;
    color: #f1f1f1;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    padding: 8px 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}
.yt-bell-dropdown.show {
    display: flex;
    animation: ytDropdownFade 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.yt-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.yt-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}
.yt-dropdown-item svg {
    flex-shrink: 0;
}
.yt-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}
.text-danger { color: #ff4d4d !important; }

/* Akıcı Animasyon Yapıları */
.yt-scale-out { transform: scale(0); opacity: 0; transition: all 0.2s ease-in; }
.yt-scale-in { transform: scale(1); opacity: 1; animation: ytScaleInAnim 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

@keyframes ytScaleInAnim {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes ytDropdownFade {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}
.yt-bell-bounce { animation: ytBellBounceAnim 0.4s ease; }
@keyframes ytBellBounceAnim {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* Sağ Taraf - Like/Dislike/Share Hap Blokları */
.yt-actions-block { display: flex; align-items: center; gap: 8px; }
.yt-like-dislike-pill, .yt-action-pill { display: flex; align-items: center; background: rgba(128, 128, 128, 0.1); border-radius: 18px; height: 36px; border: none; color: #0f0f0f; }
.yt-action-pill { padding: 0 14px; cursor: pointer; font-size: 13px; font-weight: 500; gap: 6px; }
.yt-action-pill.active { background: #0084ff; color: #fff; }
.yt-eng-btn { background: none; border: none; cursor: pointer; padding: 0 12px; height: 100%; display: flex; align-items: center; gap: 6px; color: #0f0f0f; font-size: 13px; font-weight: 500; }
.yt-pill-divider { width: 1px; height: 20px; background: rgba(128, 128, 128, 0.2); }
.yt-eng-btn.active { color: #0084ff; }

/* Bilgi Kutusu (Toast) */
.yt-toast-notification { position: fixed; bottom: -60px; left: 24px; background: #212121; color: #fff; padding: 12px 24px; border-radius: 4px; font-size: 14px; z-index: 99999; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: bottom 0.3s cubic-bezier(0, 0, 0.2, 1); }
.yt-toast-notification.show { bottom: 24px; }

/* Mobil Ekran Optimizasyonu */
@media (max-width: 768px) {
    .yt-engagement-container { flex-direction: column; align-items: flex-start; gap: 14px; }
    .yt-channel-block { width: 100%; justify-content: space-between; }
    .yt-sub-interaction-frame { margin-left: auto; }
    .yt-actions-block { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
    .yt-like-dislike-pill, .yt-action-pill { flex-shrink: 0; }
}
