.error-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.error-box {
    text-align: center;
    max-width: 500px;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.error-code {
    font-size: 80px;
    font-weight: 700;
    color: #564434;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.error-box h1 {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-box p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.error-btn.primary {
    background: #292929;
    color: #e6e1ca;
}

.error-btn.primary:hover {
    background: #564434;
}

.error-btn.secondary {
    background: transparent;
    color: #564434;
    border: 2px solid #564434;
}

.error-btn.secondary:hover {
    background: #564434;
    color: #e6e1ca;
}

@media (max-width: 768px) {
    .error-box {
        padding: 40px 25px;
    }

    .error-code {
        font-size: 60px;
    }

    .error-box h1 {
        font-size: 18px;
    }
}