/* 404 Error Page Styles - Simple Version */

/* Main container */
.error-404-container {
    min-height: 100vh;
    /* background: #1a1a1a; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Circular container for image */
.error-404-circle {
    width: 557px;
    height: 557px;
    border-radius: 50%;
    background: var(--color-primary-violet);
    /* border: 3px solid #9800F5; */
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

/* Ghost image - absolute positioned */
.ghost-image {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    /* height: 200px; */
    object-fit: contain;
}

/* Navigation buttons container */
.error-404-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Button styles */
.btn-return-main,
.btn-return-previous {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

/* Main page button */
.btn-return-main {
    background: var(--color-primary-violet);
    color: rgba(179, 173, 205, 1);
}

.btn-return-main:hover {
    /* background: #B366FF; */
    transform: translateY(-2px);
}

/* Previous page button */
.btn-return-previous {
    background: rgba(179, 173, 205, 1);
    color: var(--color-primary-violet);
    /* border: 2px solid #9800F5; */
}

.btn-return-previous:hover {
    /* background: #444; */
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .error-404-container {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .error-404-circle {
        width: 270px;
        height: 270px;
    }
    
    .ghost-image {
        width: 200px;
        height: 200px;
        top: 20%;
    }
    
    .error-404-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-return-main,
    .btn-return-previous {
        min-width: 200px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .error-404-container {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .error-404-circle {
        width: 270px;
        height: 270px;
    }
    
    .ghost-image {
        width: 200px;
        height: 200px;
        top: 20%;
    }
}
