* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka One', cursive;
    color: #fdd835;
    text-shadow: 2px 2px 4px #000;
    background: linear-gradient(to bottom right, #1e3c72, #2a5298);
    text-align: center;
}

/* -------------------------------------------- Loading Page Styles ----------------------------------- */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e2f; /* Match your theme */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-container .logo img {
    width: 60vw;
    height: auto;
    margin-bottom: 40px;
}

.loading-bar-container {
    width: 75%;
}

.loading-bar {
    width: 100%;
    height: 20px;
    background: #444;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loading-bar .progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    transition: width 0.2s;
}

.loading-text {
    color: #fff;
    font-size: 52px;
}

/* Hide elements until loading is done */
.hidden {
    display: none;
}

/* --------------------------------------- CONTENT ---------------------------------- */
.top-text{
    margin-top: 40px;
    font-size: 52px;
    font-weight: bold;
    text-align: center;
}

.doors{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.doors img {
    width: 60vw;
    margin: 20px;
    cursor: pointer;
    animation: zoomEffect .8s infinite; 
}

.doors img.hidden {
    display: none;
}

@keyframes zoomEffect {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    font-size: 38px;
    margin-bottom: 30px;
}

.privacy-link {
    text-decoration: none;
    color: #fdd835;
}

/* ------------------------------- pop up ---------------------------------- */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background: #2a5298;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px #000;
    color: #fff;
    max-width: 500px;
}

.popup-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 36px;
    margin-bottom: 10px;
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 24px;
    color: #2a5298;
    background-color: #fdd835;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-content button:hover {
    background-color: #ffc107;
}






