/* --- Custom Scrollbar for Dark Mode --- */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #555 #222;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #222;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 3px;
    border: 1px solid #222;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}

/* --- View More Trends Button Polish --- */
.view-more-trends-btn {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.5);
    color: #a3bffa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.view-more-trends-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: #667eea;
    color: #fff;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}