.recommended-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.recommended-item {
    flex: 1;
}

/* =========================
   OVERLAY WRAPPER
========================= */

#recommend-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}


/* =========================
   CONTENT BLOCK
========================= */

.overlay-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}


/* =========================
   GRID LAYOUT
========================= */

.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    width: 100%;
}


/* Tablet */
@media (max-width: 768px) {
    .rec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .rec-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CARD STYLE
========================= */

.rec-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    color: white;
}

.rec-card:hover {
    transform: scale(1.05);
    background: #2c2c2c;
}


/* =========================
   BUTTON TEXT
========================= */

.rec-btn {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}


/* =========================
   COUNTDOWN CIRCLE
========================= */

.countdown-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 40px auto 0;
}

#countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: bold;
}