/* Welcome Promo Styles */
.welcome-promo-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.welcome-promo-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.welcome-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-icon {
    font-size: 3rem;
    color: #000;
    background: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.promo-text h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #000;
}

.promo-text .highlight {
    color: #000; 
    font-weight: 700;
}

.promo-text p {
    margin: 5px 0 0;
    color: #666;
    font-size: 1rem;
}

.coupon-box {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px dashed #000;
    position: relative;
}

.code-label {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    font-weight: 600;
}

.code-display {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.code-display:hover {
    color: #000;
}

.copy-feedback {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    .promo-text h3 {
        font-size: 1.5rem;
    }
}