body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.ab-demo-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 1rem;
}

.ab-subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.ab-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 1rem;
}

.ab-cta-primary {
    background-color: #007bff;
    color: white;
}

.ab-cta-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.ab-cta-success {
    background-color: #28a745;
    color: white;
}

.ab-cta-success:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
}