/* PayPal Payment Styles */

#payment-modal {
    padding: 2rem;
}

.payment-processing,
.payment-success {
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--accent-lime);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-processing h3,
.payment-success h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-processing p,
.payment-success p {
    color: var(--text-light);
    margin-bottom: 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-lime);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.access-code-display {
    background: rgba(0,255,136,0.1);
    border: 2px solid var(--accent-lime);
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-lime);
    letter-spacing: 2px;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem !important;
}

/* PayPal Button Container */
#paypal-button-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hover effect for code option button */
button[onclick*="showCodeRequest"]:hover {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.3) !important;
}
