/* Promo Modal Styles */
.promo-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}
.promo-modal-overlay.active { opacity: 1; }
.promo-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
    border: 1px solid rgba(139,92,246,0.3);
}
.promo-modal-overlay.active .promo-modal { transform: scale(1); }
.promo-modal-header { margin-bottom: 15px; }
.promo-icon { font-size: 48px; display: block; margin-bottom: 10px; }
.promo-modal h2 { color: #fff; font-size: 22px; margin: 0; }
.promo-text { color: #a0a0a0; font-size: 14px; margin-bottom: 20px; }
.promo-input-wrap { margin-bottom: 20px; }
.promo-input-wrap input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid rgba(139,92,246,0.3);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.promo-input-wrap input:focus {
    outline: none;
    border-color: #8B5CF6;
}
.promo-buttons { display: flex; gap: 10px; margin-bottom: 15px; }
.promo-btn-apply {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.promo-btn-skip {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #a0a0a0;
    font-size: 16px;
    cursor: pointer;
}
.promo-hint { color: #666; font-size: 12px; margin: 0; }
