.error-404 {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
}

.error-404__content {
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.error-404__content::before,
.error-404__content::after {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #EE2424;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.error-404__content::before {
    top: -40px;
}

.error-404__content::after {
    bottom: -40px;
}

.error-404__title {
    font-family: 'Roboto', sans-serif;
    font-size: 350px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.error-404__text {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    margin: 20px 0 10px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.error-404__subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin: 0 0 40px;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.error-404__button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.error-404__button-wrapper::before,
.error-404__button-wrapper::after {
    content: '';
    height: 1px;
    background-color: #000000;
    width: 300px;
}

.error-404__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #EE2424;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.error-404__button:hover {
    background-color: #D41F1F;
} 