
<style>
    /* General Body Styling - Dark and Electrified */
    body {
        background-color: #0a0a0a; /* Deep black background */
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        font-family: "Arial Black", Helvetica, sans-serif;
        color: black; /* Light gray for text */
        margin: 0;
        padding: 0;
        text-align: center;
        overflow: auto;
    }

    /* Electrified Glow Effect */
    @keyframes electricGlow {
        0% { text-shadow: 0 0 5px #00ffea, 0 0 10px #00ffea, 0 0 20px #00ffea; }
        50% { text-shadow: 0 0 10px #ff00ea, 0 0 20px #ff00ea, 0 0 30px #ff00ea; }
        100% { text-shadow: 0 0 5px #00ffea, 0 0 10px #00ffea, 0 0 20px #00ffea; }
    }

    /* Logo Styling - Electrified Pterodactyl */
    #compulogo {
        width: 200px; /* Slightly smaller for mobile */
        height: auto;
        margin: 20px auto;
        display: block;
        filter: drop-shadow(0 0 10px #00ffea) brightness(1.2); /* Electric glow */
        animation: electricGlow 3s infinite;
    }


    /* Album Covers Styling - Uniform Size and Horizontal Grid Layout */
    #Albums {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 10px; /* Space between covers */
        margin: 0px auto;
    }

    #Albums img {
        width: 60px; /* Uniform size for all album covers */
        height: 60px;
        border: 2px solid #00ffea; /* Electric blue border */
        border-radius: 10px; /* Slightly rounded corners */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #Albums img:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px #00ffea, 0 0 30px #ff00ea; /* Dual-color glow */
    }

    /* Navigation Buttons Styling - Electrified Text */
    #RankButton, #FavorButton {
        cursor: pointer;
        font-size: 19px; /* Smaller font for mobile */
        margin: 0 5px; /* Reduced margin */
        color: #00ffea; /* Electric blue */
        text-decoration: none;
        text-shadow: 0 0 5px #00ffea;
        transition: text-shadow 0.3s ease, color 0.3s ease;
    }

    #Direction, #ShuffleToggle, #CreatedButton, #UpdatedButton, #VersionButton, #AlphaButton, #RandomButton {
        cursor: pointer;
        font-size: 14px; /* Smaller font for mobile */
        margin: 0 5px; /* Reduced margin */
        color: #00ffea; /* Electric blue */
        text-decoration: none;
        text-shadow: 0 0 5px #00ffea;
        transition: text-shadow 0.3s ease, color 0.3s ease;
    }

    #RankButton:hover, #BestButton:hover, #FavorButton:hover, #CreatedButton:hover, #UpdatedButton:hover, #VersionButton:hover, #AlphaButton:hover, #RandomButton:hover {
/*      color: #ff00ea; /* Electric pink */
        color: #00ffea; /* Electric blue */
        text-shadow: 0 0 10px #ff00ea, 0 0 20px #ff00ea;
    }

    /* Track Info Styling - Brighter Glowing Text */
    #trackInfo {
        font-size: 18px; /* Smaller font for mobile */
        margin: 20px 0;
        color: #ffffff; /* Bright white for better visibility */
/*        text-shadow: 0 0 15px #00ffea, 0 0 20px #00ffea, 0 0 30px #00ffea;*/
        text-shadow: 0 0 15px #ff00ea, 0 0 20px #00ffea, 0 0 30px #00ffea;
    }

    /* Star Rating Styling - Electrified Stars */
    #voteBox span {
        cursor: pointer;
        font-size: 30px; /* Smaller stars for mobile */
        color: #00ffea; /* Electric blue */
        margin: 0 3px; /* Reduced margin */
        text-shadow: 0 0 5px #00ffea;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    #voteBox span:hover {
/*        color: #ff00ea; /* Electric pink */
/*        color: #00ffea; /* Electric blue */
/*        text-shadow: 0 0 10px #ff00ea, 0 0 20px #ff00ea;*/
/*        text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;*/
    }

    /* Audio Player Styling - Dark with Electric Glow */
    audio {
        width: 90%; /* Slightly smaller for mobile */
        max-width: 440px;
        margin: 20px auto;
        display: block;
        background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark background */
        border: 2px solid #00ffea;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
    }

    /* Tracklist and Lyrics Styling - Brighter Glowing Links */
    #displayType {
        font-size: 12px; /* Smaller font for mobile */
        color: #ffffff; /* Bright white for better visibility */
        text-decoration: none;
/*        text-shadow: 0 0 5px #00ffea, 0 0 10px #00ffea;*/
/*        transition: color 0.3s ease, text-shadow 0.3s ease;*/
    }

    #tracklist:hover, #lyrics:hover {
        color: #ffffff; /* Bright white for better visibility */
        text-shadow: 0 0 10px #ff00ea, 0 0 20px #ff00ea;
    }

    /* Display Box Styling - Dark with Electric Border */
    #display {
        width: 90%; /* Slightly smaller for mobile */
        max-width: 400px;
        margin: 20px auto;
        font-size: 11px; /* Smaller font for mobile */
        word-break: break-word;
        word-wrap: break-word;
/*      background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark background */
        background-color: darkgrey; /* Semi-transparent dark background */
        border: 2px solid #00ffea;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
/*        color: #ffffff; /* Bright white for better visibility */
    }

    /* Highlighted Track Styling - Visible Highlight */
    .highlight {
        color: #00ffea; /* Electric blue text */
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
        text-shadow: 0 0 5px #00ffea, 0 0 10px #00ffea;
    }

    /* Color-Coded Track Data Based on Score */
    .score-5 { color: #00ff00; } /* Green */
    .score-4 { color: #ffff00; } /* Yellow */
    .score-3 { color: #ffd700; } /* Gold */
    .score-2 { color: #ffa500; } /* Orange */
    .score-1 { color: #ff0000; } /* Red */

    /* Responsive Design */
    @media (max-width: 768px) {
        img {
            width: 150px; /* Even smaller for mobile */
        }

        #Albums img {
            width: 50px;
        }

        #trackInfo {
            font-size: 16px; /* Adjusted for mobile */
        }

        #voteBox span {
            font-size: 25px; /* Smaller stars for mobile */
        }

        audio {
            width: 95%; /* Full width on mobile */
        }

        #display {
            width: 95%; /* Full width on mobile */
        }
    }
    
    .list_arrow {
        /*display: flex; /* Use a flexbox layout */

    
        flex-direction: row; /* Make a horizontal flexbox (the default) */

    
        align-items: center; /* The important part: vertically center the items */
    }
</style>