/* Confirmation Modal Styles */
.confirmation-modal {
    background: linear-gradient(135deg, #6a3bc2 0%, #e94e1b 100%);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .confirmation-modal {
    transform: scale(1);
}

.confirmation-modal .modal-logo {
    text-align: center;
    margin-bottom: 40px;
}

.confirmation-modal .modal-logo img {
    max-width: 200px;
    height: auto;
}

.confirmation-message {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
}

.consent-section {
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.consent-checkbox {
    position: relative;
    min-width: 24px;
    height: 24px;
    margin-top: 2px;
}

.consent-checkbox input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.consent-checkbox input[type="checkbox"]:checked {
    background: white;
    border-color: white;
}

.consent-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6a3bc2;
    font-weight: bold;
    font-size: 16px;
}

.consent-checkbox input[type="checkbox"]:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.consent-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.confirmation-submit-btn {
    background: #ff6a33;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
}

.confirmation-submit-btn:hover {
    background: #e94e1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.confirmation-submit-btn:disabled {
    background: rgba(255, 106, 51, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.confirmation-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.confirmation-terms {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

.confirmation-terms a {
    color: white;
    text-decoration: underline;
}

.confirmation-terms a:hover {
    color: #ff6a33;
}

/* Error state for checkbox */
.consent-checkbox.error input[type="checkbox"] {
    border-color: #ff4444;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.consent-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .confirmation-modal {
        padding: 40px 30px;
        margin: 20px;
        border-radius: 16px;
    }
    
    .confirmation-modal .modal-logo img {
        max-width: 160px;
    }
    
    .confirmation-message {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .consent-section {
        margin: 30px 0;
        gap: 12px;
    }
    
    .consent-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .confirmation-modal {
        padding: 30px 20px;
        width: 95%;
    }
    
    .confirmation-modal .modal-logo {
        margin-bottom: 30px;
    }
    
    .confirmation-message {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .consent-section {
        margin: 25px 0;
    }
    
    .confirmation-submit-btn {
        padding: 16px 28px;
        font-size: 15px;
    }
}
