/* Pagination */
.header-nav-oscar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}
.nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: #fbbf24;
    color: #000;
    border-color: #fbbf24;
}
.nav-btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
.nav-arrow {
    margin: 0 5px;
    font-weight: bold;
}

/* Cards */
.card_oscar{
    overflow: visible;
    background: none;
}
.actor-note{
    font-size: 14px;
    color: #94a3b8;
}

/* Mobile */
@media (max-width: 600px) {
    .header-nav-oscar {
        flex-wrap: wrap;
        justify-content: center;
    }
    .page-title {
        order: -1;
        width: 100%;
        text-align: center;
    }
}