html, body {
    height: 100%;
    margin: 0;
}

body {
    background: #f8fafc;
    color: #333;
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* убираем скролл */
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(-5%); /* поднимаем всю конструкцию чуть выше центра */
}

.error-code {
    font-size: 200px;
    font-weight: 900;
    color: #e53e3e;
    line-height: 1;
    margin: 0 0 15px;
}

.error-code i {
    color: #3182ce;
    font-size: 0.85em;
}

.error-message {
    font-size: 26px;
    margin: 10px auto 35px;
    color: #555;
    max-width: 700px;
}

a.btn-back {
    display: inline-block;
    text-decoration: none;
    background: #3182ce;
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    transition: background 0.2s;
    font-size: 18px;
}
a.btn-back:hover {
    background: #2b6cb0;
}
