        body {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            height: 100vh;
            background: linear-gradient(135deg, #fdd835, #ff9800);
            overflow: hidden;
            text-align: center;
            padding-bottom: 80px; /* Prevents content from hiding behind player */
        }

        .title {
            font-size: 4rem;
            font-weight: bold;
            color: #000;
            text-transform: uppercase;
            text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.9),
                         6px 6px 20px rgba(255, 165, 0, 0.8);
            animation: textGlow 2s infinite alternate;
            max-width: 90%;
            word-wrap: break-word;
        }

        @media screen and (max-width: 768px) {
            .title {
                font-size: 2.5rem;
            }
        }

        @keyframes textGlow {
            0% {
                text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.9),
                             6px 6px 20px rgba(255, 165, 0, 0.8);
            }
            50% {
                text-shadow: 6px 6px 15px rgba(255, 255, 255, 1),
                             8px 8px 25px rgba(255, 69, 0, 1);
            }
            100% {
                text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.9),
                             6px 6px 20px rgba(255, 165, 0, 0.8);
            }
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .logo {
            max-width: 80%;
            height: auto;
            filter: drop-shadow(0px 0px 20px rgba(255, 200, 0, 0.6));
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            0% {
                filter: drop-shadow(0px 0px 10px rgba(255, 200, 0, 0.8)) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
            }
            25% {
                filter: drop-shadow(0px 0px 20px rgba(255, 140, 0, 0.8)) drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
            }
            50% {
                filter: drop-shadow(0px 0px 30px rgba(255, 0, 0, 1)) drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.8));
            }
            75% {
                filter: drop-shadow(0px 0px 20px rgba(255, 140, 0, 0.8)) drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
            }
            100% {
                filter: drop-shadow(0px 0px 10px rgba(255, 200, 0, 0.8)) drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
            }
        }

        /* Sticky Music Player */
        #custom-music-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #222;
            padding: 15px;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        #stationName {
            font-size: 18px;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
        }

	button {
	    background: #ff6600;
	    color: white;
	    border: none;
	    padding: 5px 20px;
	    font-size: 18px;
	    cursor: pointer;
	    border-radius: 5px;
	    transition: 0.3s ease;
	    height: 24px; /* Fixed height */
	    display: flex;
	    align-items: center; /* Centers text vertically */
	    justify-content: center; /* Centers text horizontally */
	}

        button:hover {
            background: #ff4500;
        }

        #trackInfo {
            color: white;
            font-size: 16px;
            font-family: Arial, sans-serif;
        }
