.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.error-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.error-container h1 {
    font-size: 120px;
    font-weight: 700;
    color: #b08d57; /* luxury gold */
    margin-bottom: 10px;
}

.error-container h2 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.error-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #b08d57;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s ease;
}

.error-btn:hover {
    background: #8f6f3e;
}