
    html, body {
        margin: 0;
        padding: 0;
        background-color: black;
        overflow: hidden;
        height: 100%;
        font-family: Arial, sans-serif;
        color: white;
        font-size: 20pt;
    }

    /* INTRO TEXT */
    .intro-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        text-align: center;
        padding: 40px;
    }

    .intro-text {
        width: 800px;
        padding: 20px;
        background-color: black;
        opacity: 0.8;
        text-align: center;
    }

    
    .scene {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: black;
        display: none;  
    }

    .scene-container {
        width: 90vw;        
        max-width: 1600px;  
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
        }

        .spider {
        position: absolute;
        width: 90px;      /* adjust size */
        left: 5%;        /* adjust position */
        top: 2%;         /* adjust position */
        pointer-events: none; /* prevents blocking clicks */
        transform: rotate(180deg);
        transition: opacity 0.5s ease;
        }

        .scene-img {
        width: 100%;
        height: auto;
        display: block;
         animation: fadeIn 1s ease;
        }

    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }

    .scene-img.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease;
    }


    .arrow-container {
    margin-top: 10px;   
    text-align: center;  
    z-index: 10;         
    display: flex;
    justify-content: center; 
    gap: 400px;   
    }

    .arrow-img {
    width: 180px;
    height: 40px;
    display: inline-block;
    transition: transform 0.2s ease; 
    }

    .arrow-img:hover {
    transform: scale(1.1); 
    cursor: pointer;       
    }

    .ending-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
        color: #212121
    }

    .ending-box {
    background: rgba(255, 255, 255, 0.55);
    padding: 30px;
    width: 60%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
    }

    .ending-box h1 {
    margin-top: 0;
    color: #212121
    }

    .ending-buttons {
    margin-top: 20px;
        
    }

    .ending-buttons button {
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
    }

    .blocked-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 22px;
    text-align: center;
    z-index: 9999;
    display: none;
    }

    .popup-msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    display: none;
    z-index: 9999;
    }

    .popup-prompt {
    display: none;            
    position: fixed;
    inset: 0;                  
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.7);
    color: white;
    font-size: 24px;
    text-align: center;
    flex-direction: column;
    z-index: 9999;
    }

    .popup-prompt .prompt-buttons {
    margin-top: 20px;
    display: flex;
    gap: 30px;                 
    justify-content: center;
    }

    .popup-prompt.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease;
    }

    #phone {
    display: none;              
    position: fixed;
    bottom: 10%;
    left: 80%;
    transform: translateX(-50%);
    width: 220px;
    z-index: 9999;
    } 

    #phone.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease;
    }