/* Remove default margins & prevent scrollbars */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    touch-action: none;
    width: 100%;
    height: 100%;
}

/* Center the button */
#startButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
}

#shootButton {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    background-color: red;
    color: white;
    border: none;
    display: none; /* ✅ Hides the button */
}

/* 🚀 Game Thumbnail Styling */
#gameThumbnailContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* ✅ Ensures it scales properly on all screens */
    max-width: 1280px; /* ✅ Prevents it from getting too large */
    text-align: center;
}

#gameThumbnail {
    width: 100%; /* ✅ Makes it responsive */
    height: auto; /* ✅ Keeps aspect ratio */
    border-radius: 10px; /* ✅ Adds smooth edges */
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5); /* ✅ Sci-fi glow effect */
}

/* 🚀 Start Button Adjustments */
#startButton {
    position: absolute;
    top: 80%; /* ✅ Places the button below the thumbnail */
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    font-size: 24px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #ff4500;
    color: white;
    border: none;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.8);
}
