/* Binance Heroes Dropdown Styles */
.binance-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.binance-dropdown .binance-icon {
    cursor: pointer;
}

.binance-dropdown .binance-icon img {
    transition: all 0.3s ease;
    filter: brightness(1);
}

.binance-dropdown .binance-icon:hover img,
.binance-dropdown.active .binance-icon img {
    filter: brightness(1.2) drop-shadow(0 0 10px #F3BA2F);
    transform: scale(1.1);
}

.binance-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00ff00;
    border-radius: 8px;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    margin-top: 5px;
}

/* Show dropdown on hover OR when active class is present */
.binance-dropdown:hover .binance-dropdown-menu,
.binance-dropdown.active .binance-dropdown-menu,
.binance-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.binance-dropdown-header {
    padding: 15px;
    border-bottom: 1px solid #00ff00;
    text-align: center;
}

.binance-dropdown-header h4 {
    color: #00ff00;
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.binance-hero-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.binance-hero-item:last-child {
    border-bottom: none;
}

.binance-hero-item:hover {
    background: rgba(0, 255, 0, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.binance-hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #00ff00;
    object-fit: cover;
}

.binance-hero-item:hover .binance-hero-avatar {
    border-color: var(--hero-color, #00ff00);
    box-shadow: 0 0 10px var(--hero-color, #00ff00);
}

.binance-hero-info {
    flex: 1;
}

.binance-hero-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
    color: #ffffff;
}

.binance-hero-text {
    font-size: 12px;
    color: #cccccc;
    font-family: 'Share Tech Mono', monospace;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .binance-dropdown {
        display: none;
    }
}

/* Custom scrollbar for dropdown */
.binance-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.binance-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.binance-dropdown-menu::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 3px;
}

.binance-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}

