/* PREMIUM HEADER MENU - ELEGANT PILLS (NEON GREEN EDITION) */

.juuvix-premium-dropdown {
    background: rgba(10, 11, 16, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
    border-radius: 24px !important;
    width: 320px !important;
    right: 15px !important;
    top: 70px !important;
    padding: 15px 5px !important;
    animation: premiumMenuSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes premiumMenuSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* User Profile Card - Integrated as a Top Pill */
.juuvix-premium-dropdown .i_u_details {
    padding: 15px 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(57, 255, 20, 0.2) !important;
    border-radius: 20px !important;
    margin: 0 10px 15px 10px !important;
    transition: all 0.3s ease !important;
}

.juuvix-premium-dropdown .i_u_details:hover {
    background: rgba(57, 255, 20, 0.05) !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1) !important;
}

.juuvix-premium-dropdown .iu_avatar {
    width: 50px !important;
    height: 50px !important;
    border: 2px solid #39ff14 !important;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4) !important;
}

/* ELEGANT PILLS - The Menu Items */
.juuvix-premium-dropdown .i_header_others_item {
    display: flex !important;
    align-items: center !important;
    padding: 14px 20px !important;
    margin: 8px 10px !important;
    border-radius: 18px !important;
    /* Elegant Pill Shape */
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #efeff1 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.juuvix-premium-dropdown .i_header_others_item:hover {
    background: rgba(57, 255, 20, 0.08) !important;
    border-color: rgba(57, 255, 20, 0.5) !important;
    color: #fff !important;
    transform: translateX(5px) !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15) !important;
}

/* Icon Box - Stylized inside the Pill */
.juuvix-premium-dropdown .i_header_item_icon_box {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin-right: 18px !important;
    border-radius: 0 !important;
    border: none !important;
}

.juuvix-premium-dropdown .i_header_item_icon_box svg {
    fill: #39ff14 !important;
    /* Neon Green */
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.6)) !important;
    transition: transform 0.3s ease !important;
}

.juuvix-premium-dropdown .i_header_others_item:hover .i_header_item_icon_box svg {
    transform: scale(1.2) rotate(-5deg) !important;
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.8)) !important;
}

/* Dividers - Hidden for Cleanliness */
.juuvix-premium-dropdown .arrow {
    display: none !important;
}

/* Footer (Logout Button or small links) */
.juuvix-premium-dropdown .footer_container {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 10px !important;
    margin-top: 5px !important;
    text-align: center;
}

/* Become Creator Module - Premium Pill */
.juuvix-premium-dropdown .become_creator_premium {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, rgba(0, 219, 222, 0.1) 100%) !important;
    border: 1px dashed rgba(57, 255, 20, 0.4) !important;
    margin: 10px !important;
    border-radius: 20px !important;
    padding: 15px !important;
    transition: all 0.3s ease !important;
}

.juuvix-premium-dropdown .become_creator_premium:hover {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15) 0%, rgba(0, 219, 222, 0.15) 100%) !important;
    border-style: solid !important;
    transform: scale(1.02) !important;
}