:root {
    --primary-gold: #FFD700;
    --secondary-teal: #008080;
    --glass-bg: rgba(0, 0, 0, 0.85);
    /* Darker, less transparent for better visibility without overlay */
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: #111;
}

/* Dynamic Background - CLEAN without blur/brightness filters */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;
}

/* Dark Overlay REMOVED/HIDDEN as requested */
.overlay {
    display: none;
}

/* Player Bar - Horizontal Layout */
.player-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    /* Horizontal alignment */
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 90px;
}

/* Album Art / Disk - Small Thumbnail */
.img-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 15px 0 0;
    flex-shrink: 0;
}

.disk {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    animation: rotate 10s linear infinite;
    animation-play-state: paused;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.player-container.play .disk {
    animation-play-state: running;
}

/* Glow effect simplified for small size */
.glow {
    display: none;
    /* Removed for cleaner bar look */
}

/* Music Info - Horizontal Layout */
.music-info {
    text-align: left;
    margin: 0;
    color: var(--text-color);
    flex-grow: 1;
    /* Take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.music-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    margin: 0;
    letter-spacing: 1px;
    color: var(--primary-gold);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-info h3 {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
    margin: 3px 0 0 0;
}

/* Controls - Centered or Right Aligned */
.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-right: 20px;
}

.action-btn {
    background-color: transparent;
    border: 0;
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    margin: 0 5px;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.action-btn:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.action-btn-big {
    color: var(--text-color);
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn-big:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px var(--primary-gold);
}

/* Progress Bar - Top of the bar style */
.progress-container {
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.progress {
    background: var(--primary-gold);
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

.time-info {
    position: absolute;
    right: 20px;
    bottom: 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    display: none;
    /* Optional: hide time to save space or show on hover */
}

/* Playlist Indicator */
.playlist-indicator {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
    /* Hidden for minimal look */
}

/* Keyframes */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}