/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

/* Language Switcher */
.language-switcher { position: relative; }
.lang-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lang-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: #050505;
    border: 1px solid rgba(220,20,60,0.3);
    border-radius: 12px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 200;
}
.lang-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown div { padding: 10px 15px; cursor: pointer; display: flex; align-items: center; gap: 10px; }
.lang-dropdown div:hover { background: rgba(220,20,60,0.15); color: #DC143C; }

/* Support Button */
.support-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 8px 16px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.support-btn:hover { background: rgba(220,20,60,0.2); border-color: #DC143C; }

/* Notification Bell */
.notification-bell {
    position: relative;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #DC143C;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Circle */
.profile-circle { cursor: pointer; }
.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(220,20,60,0.5);
}
.profile-img:hover { border-color: #DC143C; transform: scale(1.05); }

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 280px;
    background: #050505;
    border: 1px solid rgba(220,20,60,0.3);
    border-radius: 16px;
    z-index: 200;
    display: none;
}
.profile-dropdown.show { display: block; }
.profile-dropdown-header {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}
.profile-dropdown-img { width: 50px; height: 50px; border-radius: 50%; }
.profile-dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-dropdown-item:hover { background: rgba(220,20,60,0.1); color: #DC143C; }

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: 70px;
    right: 80px;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    background: #050505;
    border: 1px solid rgba(220,20,60,0.3);
    border-radius: 16px;
    z-index: 200;
    display: none;
}
.notification-dropdown.show { display: block; }
.notification-header { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 600; }
.notification-item { padding: 12px 15px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.notification-item:hover { background: rgba(220,20,60,0.1); }
.notification-item.unread { background: rgba(220,20,60,0.05); }
.notification-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; }
.notification-message { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.notification-time { font-size: 0.6rem; color: rgba(255,255,255,0.4); }

/* Support Floating Widget */
.support-fab { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.support-fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #DC143C;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(220,20,60,0.4);
    position: relative;
}
.support-fab-label {
    position: absolute;
    right: 70px;
    background: #050505;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.support-fab-btn:hover .support-fab-label { opacity: 1; }
.support-fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #050505;
    border: 1px solid rgba(220,20,60,0.3);
    border-radius: 16px;
    width: 220px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}
.support-fab-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.support-fab-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.support-fab-item:hover { background: rgba(220,20,60,0.15); color: #DC143C; }

/* Upload Modal */
.upload-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.upload-modal.active { visibility: visible; opacity: 1; }
.upload-modal-content {
    background: #050505;
    border: 1px solid rgba(220,20,60,0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}
.upload-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto;
    border: 3px solid #DC143C;
}
.upload-input { display: none; }
.upload-label {
    background: #0071e3;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}
.btn-primary-sm {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-right { gap: 8px; }
    .lang-btn span:not(.fa) { display: none; }
    .lang-btn { padding: 8px 10px; }
    .support-text { display: none; }
    .support-btn { padding: 8px 10px; }
    .profile-img { width: 35px; height: 35px; }
    .notification-bell { width: 35px; height: 35px; }
    .notification-dropdown { right: 10px; width: 320px; }
    .profile-dropdown { right: 10px; width: 260px; }
    .support-fab { bottom: 20px; right: 20px; }
    .support-fab-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}