body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 50vw;
}

.code-snippet-container {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    display: none;
}

p {
    padding: 2rem;
    text-align: left;
}

h1 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

button {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
