
<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;*/
}

#voteBox {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

#scoreGlowFrame {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

#scoreGlowClip {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    overflow: visible;
    white-space: nowrap;
    pointer-events: none;
}

#scoreGlowInner,
#voteStars {
    font-size: 37px;
    line-height: 1;
    letter-spacing: 0;
    font-family: inherit;
    white-space: nowrap;
}

#scoreGlowInner {
    position: relative;
    left: -1px;
    top: -4px;
    color: transparent;
    -webkit-text-stroke: 1px #ff00ea;
    text-shadow: 0 0 8px #ff00ea, 0 0 16px #ff00ea;
    clip-path: inset(0 0 0 0);
}

#voteStars {
    position: relative;
    z-index: 2;
}

#voteBox span {
    cursor: pointer;
    color: #e0e0e0;
    text-shadow:
        0 0 2px #ffffff,
        0 0 5px #d8d8d8;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}


/* 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 */

#displayScrollBox {
    width: 90%;
    max-width: 440px;
    height: min(72vh, 900px);
    margin: 20px auto;
    overflow-y: auto;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: touch;

    background-color: darkgrey;
    border: 2px solid #00ffea;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
}

#display {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;

    font-size: 11px;
    word-break: break-word;
    word-wrap: break-word;
}

/* 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 */
}

.customAudioBar {
    width: 440px;
    max-width: 90%;
    height: 42px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #f1f3f4;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px #c8c8c8;
}

.audioBtn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #202124;
    font-size: 16px;
    cursor: pointer;
}

.audioBtn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.mainAudioBtn {
    font-size: 18px;
}
    
</style>