    .custom-modal .modal-content {
      background-color: rgba(144, 238, 144, 0.8); /* Light green with 80% opacity */
      color: white;
    }
        /* Your existing CSS styles */
        body {
            background-image: url('../Lunarcade-background-copyright.png');
            background-repeat: no-repeat;
            background-size: cover;
            background-color: black;
            font-family: Arial, sans-serif;
            text-align: left;
            margin: 0;
            display: flex;
            flex-direction: column;
            height: 100vh;
        }
.footer-content {
	        font-size: 1.5em; 
            margin: 10px 0; 
            color: #00FF00; 
            cursor: pointer; 
            transition: color 0.3s; 
            font-family: 'Orbitron', sans-serif; 

}
		
ul#trackList {
    list-style: none; /* Remove bullets */
    margin: 0; /* Remove extra margins */
    padding: 0; /* Remove extra padding */
}

ul#trackList li {
    margin: 5px 0; /* Adjust this to control spacing */
    padding: 5px; /* Add padding for better clickability */
    color: #64f6ee; /* Your existing color */
    cursor: pointer; /* Ensure it looks clickable */
    transition: color 0.3s; /* Smooth hover effect */
    font-family: 'Orbitron', sans-serif; /* Your font style */
}

ul#trackList li.active {
    color: #ff3ce8; /* Your active track color */
    font-weight: bold; /* Highlight active track */
}

/* Active Track Glow */
.active-track {
    color: #fd21e0; /* Active track color */
    animation: glow 1s ease-in-out infinite alternate;
    font-weight: bold; /* Highlight active track */
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fd21e0, 0 0 10px #fd21e0, 0 0 20px #fd21e0, 0 0 30px #fd21e0;
    }
    100% {
        text-shadow: 0 0 2px #fd21e0, 0 0 5px #fd21e0, 0 0 15px #fd21e0, 0 0 25px #fd21e0;
    }
}

/* Active Track Marquee */
.active-track .track-title {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    animation: marquee 8s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Active Track Glow */
.active-track {
    color: #fd21e0 !important;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fd21e0;
    }
    to {
        text-shadow: 0 0 20px #ff6eff;
    }
}

/* Active Track Marquee */
.active-track .track-title {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    animation: marquee 8s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.lyrics {
    color: #64f6ee; /* Inactive track color */
    cursor: pointer;
	font-family: 'Orbitron', sans-serif; 
}

        .container {
            max-width: 800px;
            margin: 0;
            position: relative;
            top: 10px;
            padding-left: 20px;
            flex: 1;
        }
        /* Media query for mobile devices */
        @media (max-width: 600px) {
            .container {
                padding-left: 10px;
                padding-right: 10px;
                padding-top: 20px;
                padding-bottom: 20px;
            }
        }
        .album-cover {
            width: 300px;
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border: 2px solid white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }
        h1 { font-size: 2.5em; }
        h2 { font-size: 1em; }
        ul {
            list-style-type: none;
            padding: 0;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        li { 
            font-size: 1.5em; 
            margin: 10px 0; 
            color: #00FF00; 
            cursor: pointer; 
            transition: color 0.3s; 
            font-family: 'Orbitron', sans-serif; 
        }
        li:hover {
            color: #f1c40f; 
        }
        footer {
            background-color: #000; 
            color: white; 
            text-align: center;
            padding: 20px;
            width: 100%;
        }
        a {
            font-size: 1.5em; 
            margin: 10px 0; 
            color: #00FF00; 
            cursor: pointer; 
            transition: color 0.3s; 
            font-family: 'Orbitron', sans-serif; 
        }
        .audio-player {
            border: 2px solid #fff;
            border-radius: 10px;
            padding: 20px;
            background-color: #222;
            display: inline-block;
            position: relative;
            margin-bottom: 20px;
        }
        .equalizer {
            height: 50px; 
            margin: 10px 0;
            display: flex; 
            justify-content: space-between; 
            position: relative; 
            overflow: hidden; 
        }
        .bar {
            height: 20px; 
            width: 4%; 
            opacity: 0; 
            transition: height 0.1s, opacity 5s; 
            position: relative; 
            background-color: black; 
        }
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            position: relative;
            height: 30px; 
        }
        .marquee-title {
            display: inline-block;
            animation: marquee 10s linear infinite; 
            color: white; 
            font-family: 'Orbitron', sans-serif; 
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .volume-display {
            margin-top: 10px;
            font-size: 1em;
            color: white; 
        }
        .controls {
            display: block; 
            margin-top: 10px;
            text-align: center;
        }
        .control-button {
            background-color: #444; /* Dark background for buttons */
            border: none; /* No border */
            color: #00FF00; /* Light green color */
            font-size: 2em; /* Increase size of icons */
            padding: 10px 15px; /* Add padding */
            margin: 0 5px; /* Space between buttons */
            border-radius: 5px; /* Rounded corners */
            cursor: pointer; /* Change cursor to pointer */
            transition: background-color 0.3s, transform 0.2s; /* Transition effects */
        }
        .control-button:hover {
            background-color: #555; /* Slightly lighter on hover */
            transform: scale(1.1); /* Slight scale effect on hover */
        }
        #volumeSlider {
            width: 100px;
            margin-left: 10px;
            vertical-align: middle;
        }
        .spotify-icon {
            width: 20px;
            height: 20px;
            margin-left: 10px;
            vertical-align: middle;
        }
        /* Cookie consent styles */
        #cookieConsent {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            text-align: center;
            padding: 10px;
            display: none;
            z-index: 1000;
        }
        #cookieConsent button {
            background-color: #f1c40f;
            border: none;
            padding: 5px 10px;
            margin-left: 10px;
            cursor: pointer;
            border-radius: 5px;
        }
		.nav-link {
  color: blue; /* Inactive link color */
  text-decoration: none;
}

.nav-link.active {
  color: red; /* Active link color */
  font-weight: bold;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

#loadingSpinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}