/* General Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

/* Body Styling */
body {
    background-color: #383838;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Case Container */
.case-container {
    perspective: 5000px; /* Depth for the 3D effect */
    position: absolute;
    width: 900px; /* Twice the width of a single case face */
    height: 800px;
    margin-top: 2%;
    /* background: white; */
    transform: translateX(-450px);
    /* translate: 0%; */
    transition: transform 0.8s ease-in-out;
    /* visibility: hidden; */
}



/* Bottom Image Wrapper */
.bottom-image-wrapper {
    position: fixed; /* Fixed to the bottom */
    bottom: 0; /* Align to bottom */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5; /* Lower z-index */
    background: transparent;
}

/* Bottom Centered Image */
.bottom-centered-image {
    max-width: 100%; /* Keeps image responsive */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Optional spacing from the edge */
}
