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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f4f5f7;
    color: #2c3e50;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 40px 48px;
    max-width: 520px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1d6cf8;
}

p {
    line-height: 1.8;
    margin-bottom: 8px;
}

code {
    background: #eef2f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 90%;
}

a {
    color: #1d6cf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}