.temu-promo {
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    padding: 25px;
    border-radius: 16px;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.temu-promo h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.temu-promo ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.temu-promo ul li {
    background: #ffffff;
    color: #ff6a00;
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.temu-promo ul li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.temu-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background-color: #ff6a00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.temu-btn:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

.temu-urgent {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 8px;
}