body, html {
    font-family: 'Exo 2', 'Trebuchet MS', Tahoma, sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.launch-to-hyper-space-btn {
    max-width: 3.6rem;
    max-height: 3.6rem;
    border-radius: 50px;
    padding: 0.7rem;
    background-color: rgba(58, 131, 255, 0.9);
    border: 2px solid #2e7d32;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease-in-out;
}

.launch-to-hyper-space-btn:hover {
    background-color: rgba(58, 131, 255, 0.9);
    transform: translateY(-1.6px);
}

.disabled-launch-to-hyper-space-btn {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(46, 125, 255, 0.5);
    pointer-events: none;
    cursor: not-allowed;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

#stars {
    width: 100vw;
    height: 100vh;
}

#metal-platform {
    height: 90vh;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#window {
    width: 90vw;
    height: 32vh;
    background: linear-gradient(135deg, rgba(182, 220, 255, 0.7) 0%, rgba(130, 190, 255, 0.7) 40%, rgba(100, 170, 255, 0.7) 85%, rgba(100, 220, 200, 0.7) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 
        inset 5px 5px 10px rgba(0, 0, 0, 0.25),
        inset -5px -5px 10px rgba(0, 0, 0, 0.25),
        inset -5px 5px 10px rgba(0, 0, 0, 0.25),
        inset 5px -5px 10px rgba(0, 0, 0, 0.25),
        0px 0px 15px rgba(100, 150, 255, 0.3);
    padding: 1rem;
}

/* For medium screens (tablets) */
@media (min-width: 768px) {
    #window {
        width: 70vw;
        height: 31vh;
    }
}

/* For large screens (desktops) */
@media (min-width: 1024px) {
    #window {
        width: 40vw;
        height: 30vh;
    }
}


#window-text {
    text-shadow: none;
    font-family: 'Ubuntu Mono', 'Trebuchet MS', Tahoma, sans-serif !important;
    font-size: 1.73rem;
    color: #FFFFFF;
}
