
/* Page-specific styles for stripe-express-prompt.html */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

h1 {
    color: #1a202c;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.subtitle {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.info-box {
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin-bottom: 32px;
    text-align: left;
    border-radius: 4px;
}

.info-box h3 {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-box p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.benefits {
    text-align: left;
    margin-bottom: 32px;
}

.benefits h3 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.benefit-icon {
    background: #e6fffa;
    color: #38b2ac;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
}

.benefit-text {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.5;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #f7fafc;
}

.legal-notice {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
}

.loading {
    display: none;
    margin-top: 16px;
    color: #667eea;
    font-size: 14px;
}

.loading.active {
    display: block;
}

.error {
    display: none;
    margin-top: 16px;
    padding: 12px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 6px;
    color: #c33;
    font-size: 14px;
}

.error.active {
    display: block;
}

.already-connected {
    background: #d4edda;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    display: none;
}

.already-connected.active {
    display: block;
}

.already-connected h3 {
    color: #155724;
    margin-bottom: 10px;
}

@media (max-width: 640px) {
    .container {
        padding: 32px 24px;
    }

    h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 15px;
    }
}
   .back-button {
position: absolute;
top: 20px;
left: 20px;
background: white;
color: #667eea;
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
    }

    .back-button:hover {
background: #f7fafc;
transform: translateY(-2px);
    }
    