body, .usp-dashboard-bg {
    background: #181818 !important;
    color: #fff;
}

/* Box utente */
.user-subscription-info {
    background: #232323;
    border-radius: 24px;
    padding: 24px 32px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 1.15em;
    min-width: 340px;
    max-width: 480px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.12);
}
.user-subscription-info strong {
    color: #ffe94d;
    font-weight: 700;
}

/* Header dashboard */
.usp-horizontal-dashboard-header {
    margin: 32px 0 18px 0;
}
.usp-dashboard-title {
    color: #ffe94d;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -1px;
}
.usp-show-all-link {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    margin-left: 12px;
    font-size: 1em;
    transition: color 0.2s;
}
.usp-show-all-link:hover {
    color: #ffe94d;
}

/* Box stats */
.usp-dashboard-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}
.usp-dashboard-stat-box {
    background: #1ecfcf;
    color: #181818;
    border-radius: 24px;
    padding: 24px 36px;
    min-width: 180px;
    text-align: center;
    font-size: 1.6em;
    font-weight: 700;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.usp-dashboard-stat-box .usp-stat-label {
    font-size: 0.9em;
    font-weight: 400;
    margin-top: 6px;
    color: #222;
    opacity: 0.85;
}

/* Scroller cards */
.usp-horizontal-scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 32px;
}
.usp-card {
    background: #232323;
    border-radius: 18px;
    min-width: 220px;
    max-width: 220px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s;
}
.usp-card:hover {
    transform: translateY(-4px) scale(1.03);
}
.usp-thumb-link {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #222;
}
.usp-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0 0 0 0;
    display: block;
}
.usp-thumb-placeholder {
    width: 100%;
    height: 180px;
    background: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.usp-card-content {
    padding: 16px 14px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.usp-date {
    color: #ffe94d;
    font-size: 0.95em;
    font-weight: 600;
    opacity: 0.85;
}
.usp-title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
.usp-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.usp-title a:hover {
    color: #ffe94d;
}

/* Responsive: tablet */
@media (max-width: 900px) {
    .usp-card {
        min-width: 180px;
        max-width: 180px;
        height: 340px;
    }

    .usp-thumb,
    .usp-thumb-placeholder {
        height: 140px;
    }

    .usp-card-content {
        padding: 12px 8px 10px 8px;
    }
}

/* Responsive: mobile */
@media (max-width: 600px) {
    .usp-horizontal-scroller {
        gap: 10px;
        padding-bottom: 4px;
    }

    .usp-card {
        min-width: 92vw;
        max-width: 92vw;
        height: 260px;
        border-radius: 12px;
    }

    .usp-thumb-link {
        border-radius: 12px 12px 0 0;
    }

    .usp-thumb,
    .usp-thumb-placeholder {
        height: 90px;
        border-radius: 12px 12px 0 0;
    }

    .usp-card-content {
        padding: 8px 6px 8px 6px;
    }

    .usp-title {
        font-size: 1em;
    }
}