        :root {
            --bg-color: #121212;
            --card-color: #1e1e1e;
            --text-color: #ffffff;
            --accent-color: #00ff88; /* Neon Green */
            --secondary-text: #b3b3b3;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        /* Header Area */
        header {
            text-align: center;
            padding: 40px 20px;
        }

        h1 {
            margin: 0;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        p.subtitle {
            color: var(--accent-color);
            margin-top: 10px;
            font-weight: bold;
        }

        /* Main Container */
        .container {
            width: 90%;
            max-width: 600px;
            background: var(--card-color);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Player Section */
        .player-ui {
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
            margin-bottom: 20px;
        }

	/* Logo container */
	.cover-art {
	    width: 200px;       /* Fixed size for the player */
	    height: 200px;
	    background: #000;   /* Black background for transparent logos */
	    border-radius: 10px; /* Keep consistent with design */
	    margin: 0 auto 20px;
	    border: 2px solid var(--accent-color);
    	    overflow: hidden; 
    	    position: relative;
	}

	/* Make the link fill the entire container */
	.logo-link {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    width: 100%;
	    height: 100%;
	    text-decoration: none; /* Removes underline */
	    cursor: pointer;
	}

	/* Logo Image Styling */
	.logo-link img {
	    width: 100%;
	    height: 100%;
	    object-fit: contain; /* Keeps logo proportional */
	    padding: 10px;       /* Adds breathing room */
	    display: block;
	}

	/* Hover effect */
	.cover-art:hover {
	    border-color: #fff; /* White border on hover */
	    box-shadow: 0 0 15px var(--accent-color); /* Glow effect */
	}

	.cover-art img {
    	    width: 100%;
            height: 100%;
    	    object-fit: contain; /* Ensures logo is never cut off */
    	    padding: 10px;       /* Gives the logo some breathing room */
    	    display: block;
	}

        .now-playing-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        /* Audio Controls */
        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 15px;
        }

        button.btn-control {
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }

        button.btn-control:hover {
            color: var(--accent-color);
        }

        button.play-btn {
            font-size: 3rem;
        }

        /* Progress Bar */
	.progress-wrapper {
	    display: flex;
	    align-items: center;
	    gap: 15px;
	    font-family: monospace;
	    font-size: 0.9rem;
	    color: var(--accent-color);
	    margin: 15px 0;
	}
	
	/* The Slider */
	input[type="range"] {
	    -webkit-appearance: none;
	    width: 100%;
	    height: 6px;
	    background: #333; /* Fallback */
	    border-radius: 5px;
	    outline: none;
	    cursor: pointer;
	    /* This gradient is the magic part */
	    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-color) var(--progress), #333 var(--progress), #333 100%);
	    transition: background 0.1s;
	}
	
	/* Chrome/Safari Thumb */
	input[type="range"]::-webkit-slider-thumb {
	    -webkit-appearance: none;
	    width: 15px;
	    height: 15px;
	    background: #fff; /* White handle stands out against neon */
	    border-radius: 50%;
	    box-shadow: 0 0 10px var(--accent-color); /* Glow effect */
	    cursor: pointer;
	    transition: transform 0.1s;
	}
	
	input[type="range"]::-webkit-slider-thumb:hover {
	    transform: scale(1.3);
	}

	/* The "Thumb" (the handle you drag) - Webkit (Chrome, Safari, Edge) */
	input[type="range"]::-webkit-slider-thumb {
	    -webkit-appearance: none;
	    appearance: none;
	    width: 15px;
	    height: 15px;
	    background: var(--accent-color); /* Neon Green */
	    border-radius: 50%;
	    cursor: pointer;
	    transition: transform 0.1s;
	}
	
	/* Hover effect for the handle */
	input[type="range"]::-webkit-slider-thumb:hover {
	    transform: scale(1.2);
	}
	
	/* Firefox support */
	input[type="range"]::-moz-range-thumb {
	    width: 15px;
	    height: 15px;
	    background: var(--accent-color);
	    border: none;
	    border-radius: 50%;
	    cursor: pointer;
	}

        /* Playlist */
        .playlist {
            list-style: none;
            padding: 0;
            max-height: 300px;
            overflow-y: auto;
        }

        .track-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: background 0.2s;
        }

        .track-item:hover {
            background-color: #2a2a2a;
        }

        .track-item.active {
            color: var(--accent-color);
            border-left: 3px solid var(--accent-color);
        }

        .track-info {
            display: flex;
            flex-direction: column;
        }

        .track-date {
            font-size: 0.8rem;
            color: var(--secondary-text);
        }

        .download-link {
            text-decoration: none;
            color: var(--secondary-text);
            font-size: 0.9rem;
            border: 1px solid #555;
            padding: 5px 10px;
            border-radius: 4px;
        }

        .download-link:hover {
            background: white;
            color: black;
        }
