/* Tabs for movies/games list */
.list-tabs {
    display: flex;
    margin-bottom: 20px;
}

.list-tabs button {
    flex: 1;
    padding: 6px 0;
    background: none;
    border: none;
    border-radius: 6px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.list-tabs button:hover {
    background: #7a7a7a2f;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.list-tabs button.active {
    border-bottom: 2px solid var(--primary-color)
}

/* ---------------- Mobile Tabs ---------------- */
.mobile-tabs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.mobile-tabs button {
    flex: 1;
    padding: 12px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-tabs button.active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-tabs {
        display: flex;
    }

    .container {
        padding-bottom: 70px;
    }
}

