
/* Promo Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, #fae59f, #c4933f);
    color: #242424;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(196, 147, 63, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
    color: #d32f2f;
}

.promo-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #242424;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.time-box {
    background: #242424;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
    border: 1px solid #fff;
}

.time-value {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-claim {
    background: #28a745;
    color: #fff;
    font-weight: 900;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s transform;
    animation: pulse-btn 1.5s infinite;
}

.btn-claim:hover {
    transform: scale(1.05);
    background: #218838;
    color: #fff;
}

@keyframes pulse-btn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
