body, html {
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-color: black;
            color: white;
            font-family: 'Press Start 2P', cursive; /* Pixel font */
        }

        canvas {
            display: block;
        }

        #score, #highscore {
            position: fixed;
            top: 50px;
            left: 50px;
            font-size: 14px;
            z-index: 10;
        }

        #highscore {
            top: 80px;
            left: 50px;
        }

        /* Restart Button Styles */
        #restartIcon {
            position: absolute;
            width: 50px;
            height: 50px;
            z-index: 10;
            display: none;
            cursor: pointer;
        }

        /* COMING SOON Text */
        #comingSoon {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            color: white;
            text-shadow: 
                0 0 10px #010c3d,  
                0 0 20px #0004ff,  
                0 0 30px #1613d4,  
                0 0 40px #21198f,  
                0 0 50px #000000,  
                0 0 75px #000000; 
            z-index: 1;
            font-family: 'Press Start 2P', cursive;
            text-align: center;
            line-height: 1.5;
        }

        /* Website Name - GameFusion Studio */
        #websiteName {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 36px;
            font-family: 'Press Start 2P', cursive;
            color: #ffdd00; /* Yellow-Orange color */
            text-shadow: 
                0 0 15px #ffdd00,  
                0 0 30px #ff9933, 
                0 0 45px #ff3300;  
            z-index: 2;
        }

                /* Our Games button */
        #ourGamesBtn {
            position: fixed;
            top: 160px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            font-family: 'Press Start 2P', cursive;
            font-size: 14px;
            color: #00ffd5;
            text-decoration: none;
            padding: 12px 20px;
            border: 2px solid #00ffd5;
            border-radius: 8px;
            background: rgba(0, 255, 213, 0.08);
            text-shadow: 0 0 8px #00ffd5;
            box-shadow: 0 0 12px rgba(0, 255, 213, 0.5);
            transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
        }

        #ourGamesBtn:hover {
            transform: translateX(-50%) scale(1.08);
            background: rgba(0, 255, 213, 0.18);
            box-shadow: 0 0 22px rgba(0, 255, 213, 0.9);
        }

        /* Social Media Icons */
        .social-icons {
            position: fixed;
            top: 50px;
            right: 75px;
            z-index: 10;
        }

        .social-icons img {
            width: 54px;
            height: 54px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .social-icons img:hover {
            transform: scale(1.2);
        }

/* Styling for the alphabet letters */
.alphabet {
    position: absolute;
    color: white;
    font-size: 10px; /* Small size for distant stars */
    font-family: 'Orbitron', sans-serif;
    opacity: 0;  /* Invisible at first */
    animation: glowPulse 2s ease-in-out infinite, fallDown linear infinite;
}

/* Glowing effect */
@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px #fff, 
            0 0 20px #fff, 
            0 0 40px #00f, 
            0 0 80px #00f, 
            0 0 120px #00f;
    }
    50% {
        text-shadow: 
            0 0 20px #fff, 
            0 0 40px #fff, 
            0 0 80px #00f, 
            0 0 150px #00f;
    }
}

/* Falling down effect with random duration and delay */
@keyframes fallDown {
    0% {
        top: -10%; /* Start from above the screen */
        opacity: 0;
        transform: scale(0.5) translateZ(300px); /* Smaller at start */
    }
    10% {
        opacity: 1; /* Fade in */
    }
    100% {
        top: 110%; /* Move past the screen */
        opacity: 0; /* Fade out */
        transform: scale(1) translateZ(0); /* Larger as it falls */
    }
}


/* Make the social icons responsive */
@media (max-width: 768px) {
    #websiteName {
        font-size: 24px; /* Smaller text for tablets */
        top: 5%; /* Adjust position for better mobile alignment */
    }

    #comingSoon {
        font-size: 30px; /* Slightly smaller font */
        top: 15%; /* Adjust top position */
    }

    /* Adjust for smaller screens */
    #score, #highscore {
        font-size: 18px;
    }

    .social-icons img {
        width: 32px; /* Smaller icons on mobile */
        height: 32px;
    }

    #ourGamesBtn {
        font-size: 11px;
        top: 110px;
        padding: 10px 16px;
    }
}

/* Further adjust for very small mobile screens */
@media (max-width: 480px) {
    #ourGamesBtn {
        font-size: 10px;
        top: 120px;
        padding: 9px 14px;
    }

    #websiteName {
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
        top: 20%;
    }

    #comingSoon {
        font-size: 32px;
        top: 40%;
        text-align: center;
        line-height: 1.5;
    }

    #score, #highscore {
        font-size: 16px;
        left: 10%;
    }

    .social-icons {
        top: 35px;
        right: 45px;
    }

    .social-icons img {
        width: 32px; /* Smaller icons on mobile */
        height: 32px;
    }
}