* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #635bff 0%, #0a2540 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.content {
    text-align: center;
}

.title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-button {
    background-color: #ffffff;
    color: #635bff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #f6f9fc;
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .title {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}
