.error-page {
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
}

.error-page h1 {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    text-shadow: 4px 4px 0px var(--background-light);
}

.error-page h2 {
    font-size: 28px;
    margin: 20px 0;
    color: var(--text-primary);
}

.error-page p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.error-page .btn-home {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.error-page .btn-home:hover {
    background-color: var(--primary-color-dark);
} 