* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1200px;
    padding: 1rem;
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.deck-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.deck {
    flex: 1;
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deck-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.deck-header h2 {
    color: #ffd700;
    margin: 0;
    font-size: 1.5rem;
}

.current-track {
    background: #3a3a3a;
    padding: 0.3rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #ffd700;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    height: 2rem;
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.button-row {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.control-btn {
    background: #3a3a3a;
    border: none;
    color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 0;
}

.control-btn:hover {
    background: #4a4a4a;
    transform: scale(1.02);
}

.seek-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto;
}

.seek-container input[type="range"] {
    flex: 1;
    width: 100%;
    height: 4px;
    background: #4a4a4a;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    touch-action: none;
}

/* Einheitliche Schieberegler-Styles */
input[type="range"] {
    height: 4px;
    background: #4a4a4a;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    touch-action: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: none;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Firefox-spezifische Styles */
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #4a4a4a;
    border-radius: 2px;
}

input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

audio {
    width: 100%;
    margin-top: 0.5rem;
    height: 30px;
}

.search-container {
    margin-bottom: 0.5rem;
}

.search-input {
    width: 100%;
    padding: 0.3rem;
    border: none;
    border-radius: 3px;
    background: #2a2a2a;
    color: #fff;
    font-size: 0.8rem;
}

.search-input::placeholder {
    color: #666;
}

.search-input:focus {
    outline: none;
    background: #4a4a4a;
}

.playlist-overview {
    margin-top: 1rem;
    background: #3a3a3a;
    border-radius: 5px;
    padding: 0.5rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.playlist-overview h3 {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: sticky;
    top: 0;
    background: #3a3a3a;
    padding: 0.3rem;
    z-index: 1;
}

.track-list {
    flex: 1;
    overflow-y: auto;
    font-size: 0.8rem;
    padding-right: 0.3rem;
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #2a2a2a;
}

.track-list::-webkit-scrollbar {
    width: 6px;
}

.track-list::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 3px;
}

.track-list::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 3px;
}

.track-item {
    padding: 0.3rem;
    margin: 0.2rem 0;
    background: #2a2a2a;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px;
    display: flex;
    align-items: center;
}

.track-item:hover {
    background: #4a4a4a;
}

.track-item.current {
    background: #4a4a4a;
    border-left: 3px solid #ffd700;
}

.track-display {
    background: #1a1a1a;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    text-align: center;
}

.bpm-display {
    font-size: 0.8rem;
    color: #00ff00;
    margin-top: 0.3rem;
}

.bpm-label {
    color: #666;
    margin-right: 0.3rem;
}

.volume-display {
    text-align: center;
    color: #ffd700;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-weight: bold;
}

.crossfader-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    width: 100%;
    max-width: 300px;
}

.crossfader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.crossfader-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.crossfader-slider {
    width: 100%;
    max-width: 300px;
}

.crossfader-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    color: #00ff00;
    font-size: 12px;
    font-weight: 500;
}

.deck-label {
    color: #00ff00;
    font-size: 12px;
    font-weight: 500;
    width: 80px;
    text-align: center;
    transition: color 0.3s ease;
}

.deck-label-left {
    text-align: left;
}

.deck-label-right {
    text-align: right;
}

/* Neue Styles für den Farbwechsel-Effekt */
.crossfader-section[data-position="left"] .deck-label-right {
    color: #ff0000;
}

.crossfader-section[data-position="right"] .deck-label-left {
    color: #ff0000;
}

.crossfader-section[data-position="center"] .deck-label {
    color: #00ff00;
}

.equalizer-container {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
    text-align: center;
}

.equalizer-label {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.equalizer-controls {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0 0.5rem;
    height: 200px;
    position: relative;
    overflow: visible;
}

.eq-control {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    height: 100%;
    padding-top: 20px;
    overflow: visible;
}

.eq-control label {
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #2a2a2a;
    padding: 2px 0;
    z-index: 1;
}

.eq-slider {
    width: 200px;
    height: 6px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: rotate(-90deg);
    transform-origin: left;
}

.eq-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #4a4a4a;
    border-radius: 3px;
    border: 1px solid #666;
}

.eq-slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
}

.eq-value {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 0.7rem;
    background: #2a2a2a;
    padding: 8px 4px;
    border-radius: 3px;
    min-width: 2rem;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.treble-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.3rem;
    background: #3a3a3a;
    border-radius: 3px;
}

.treble-control label {
    color: #fff;
    font-size: 0.8rem;
    min-width: 3rem;
}

.treble-slider {
    flex: 1;
    height: 4px;
    background: #4a4a4a;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.treble-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.treble-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.treble-value {
    color: #ffd700;
    font-size: 0.7rem;
    min-width: 3rem;
    text-align: right;
}

.mid-control, .bass-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.3rem;
    background: #3a3a3a;
    border-radius: 3px;
}

.mid-control label, .bass-control label {
    color: #fff;
    font-size: 0.8rem;
    min-width: 3rem;
}

.mid-slider, .bass-slider {
    flex: 1;
    height: 4px;
    background: #4a4a4a;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.mid-slider::-webkit-slider-thumb,
.bass-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mid-slider::-webkit-slider-thumb:hover,
.bass-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.mid-value, .bass-value {
    color: #ffd700;
    font-size: 0.7rem;
    min-width: 3rem;
    text-align: right;
}

.gain-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
}

.gain-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.gain-slider {
    width: 100%;
    max-width: 300px;
}

.gain-value {
    color: #00ff00;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
    transition: color 0.3s ease;
}

.gain-container[data-value="0"] .gain-value {
    color: #ff0000;
}

.deck-volume-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
    padding: 5px;
    background: #2a2a2a;
    border-radius: 4px;
}

.deck-volume-label {
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: bold;
}

.deck-volume-slider {
    width: 100%;
    max-width: 200px;
}

.deck-volume-value {
    color: #ffd700;
    font-size: 0.7rem;
    font-weight: bold;
}

.deck-cover {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 10px auto;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.deck-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deck-cover img:hover {
    transform: scale(1.05);
}

.cover-switch-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #ffd700;
    color: #ffd700;
    font-size: 16px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.deck-cover:hover .cover-switch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-switch-btn:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .deck-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .deck {
        width: 100%;
        padding: 0.5rem;
    }

    .deck-header h2 {
        font-size: 1.2rem;
    }

    .current-track {
        height: 2.2rem;
        font-size: 0.7rem;
        padding: 0.2rem;
        margin: 0.4rem 0;
    }

    .button-row {
        gap: 0.2rem;
    }

    .control-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1.2rem;
        min-width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .deck-cover {
        width: 150px;
        height: 150px;
    }

    .equalizer {
        max-width: 100%;
        padding: 5px;
    }

    .eq-band input[type="range"] {
        height: 6px;
    }

    .eq-band input[type="range"]::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

    .eq-band input[type="range"]::-moz-range-thumb {
        width: 16px;
        height: 16px;
    }

    .crossfader-section {
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
        padding: 10px;
    }

    .crossfader-container {
        width: 100%;
        max-width: 100%;
    }

    .crossfader-slider,
    .gain-slider {
        width: 100%;
        max-width: 100%;
    }

    .gain-container {
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
        padding: 10px;
    }

    .deck-volume-slider {
        height: 6px;
    }

    .deck-volume-slider::-webkit-slider-thumb {
        width: 12px;
        height: 12px;
    }

    .deck-volume-slider::-moz-range-thumb {
        width: 12px;
        height: 12px;
    }

    .playlist-overview {
        height: 200px;
    }

    .track-item {
        height: 32px;
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .search-input {
        font-size: 0.8rem;
        padding: 0.4rem;
        height: 36px;
    }

    .volume-display {
        font-size: 0.8rem;
    }

    .bpm-display {
        font-size: 0.8rem;
    }

    .cover-switch-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .crossfader-slider,
    .gain-slider {
        max-width: 250px;
    }

    .deck-volume-slider {
        max-width: 180px;
    }

    .seek-container {
        margin-top: 1.2rem;
        margin: 1.2rem auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.3rem;
    }

    h1 {
        font-size: 1.2rem;
    }

    .deck-header h2 {
        font-size: 1rem;
    }

    .control-btn {
        font-size: 1rem;
        padding: 0.3rem 0.4rem;
        min-width: 40px;
        height: 40px;
    }

    .deck-cover {
        width: 120px;
        height: 120px;
    }

    .eq-band label {
        font-size: 12px;
    }

    .eq-band span {
        font-size: 12px;
    }

    .crossfader-label {
        font-size: 14px;
    }

    .deck-label {
        font-size: 12px;
    }

    .gain-label {
        font-size: 14px;
    }

    .gain-value {
        font-size: 12px;
    }

    .deck-volume-label {
        font-size: 0.8rem;
    }

    .deck-volume-value {
        font-size: 0.7rem;
    }

    .track-item {
        height: 36px;
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .search-input {
        height: 40px;
        font-size: 0.9rem;
    }

    .cover-switch-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .seek-container {
        margin-top: 1rem;
        margin: 1rem auto;
    }

    .seek-container input[type="range"] {
        height: 8px;
    }

    .seek-container input[type="range"]::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

    .seek-container input[type="range"]::-moz-range-thumb {
        width: 16px;
        height: 16px;
    }

    .time-display {
        font-size: 0.8rem;
        min-width: 80px;
    }

    .deck-volume-container {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    .equalizer {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    .eq-band {
        margin: 0.3rem 0;
    }

    .eq-slider {
        width: 120px;
        height: 10px;
    }

    .eq-slider::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

    .eq-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
    }

    .crossfader-slider,
    .gain-slider {
        max-width: 200px;
    }

    .deck-volume-slider {
        max-width: 160px;
    }

    .current-track {
        height: 2.4rem;
        font-size: 0.8rem;
        padding: 0.3rem;
        margin: 0.3rem 0;
    }

    .crossfader-section {
        padding: 8px;
        margin: 8px 0;
    }

    .gain-container {
        padding: 8px;
        margin: 8px 0;
    }

    .crossfader-slider,
    .gain-slider {
        max-width: 100%;
    }
}

/* Verbesserte Touch-Bereiche für Labels und Werte */
.eq-band label,
.gain-label,
.deck-volume-label,
.crossfader-label {
    padding: 8px 4px;
    display: block;
    touch-action: manipulation;
}

.eq-value,
.gain-value,
.deck-volume-value {
    padding: 8px 4px;
    display: block;
    touch-action: manipulation;
}

/* Verbesserte Container-Abstände */
.equalizer,
.gain-container,
.deck-volume-container,
.crossfader-section {
    padding: 15px;
    margin: 10px 0;
    touch-action: manipulation;
}

.equalizer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.eq-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.eq-band label {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.eq-band input[type="range"] {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: #444;
    border-radius: 2px;
    outline: none;
    margin: 0;
}

.eq-band input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffd700;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eq-band input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.eq-band span {
    color: #ffd700;
    font-size: 12px;
    min-width: 50px;
    text-align: center;
    width: 100%;
}

/* Theme Switcher Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.theme-toggle {
    background: #2a2a2a;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: scale(1.05);
}

.theme-icon {
    font-size: 1.2rem;
}

/* Light Mode Styles */
body.light-mode {
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    color: #333;
}

body.light-mode .deck-container {
    background: #e0e0e0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .deck {
    background: #ffffff;
}

body.light-mode .current-track {
    background: #f0f0f0;
    color: #333;
}

body.light-mode .control-btn {
    background: #f0f0f0;
    color: #333;
}

body.light-mode .control-btn:hover {
    background: #e0e0e0;
}

body.light-mode .search-input {
    background: #ffffff;
    color: #333;
    border: 1px solid #ddd;
}

body.light-mode .search-input::placeholder {
    color: #999;
}

body.light-mode .search-input:focus {
    background: #ffffff;
    border-color: #ffd700;
}

body.light-mode .playlist-overview {
    background: #f0f0f0;
}

body.light-mode .playlist-overview h3 {
    background: #f0f0f0;
    color: #333;
}

body.light-mode .track-item {
    background: #ffffff;
    border: 1px solid #ddd;
    color: #333;
}

body.light-mode .track-item:hover {
    background: #e0e0e0;
}

body.light-mode .track-item.current {
    background: #e0e0e0;
    border-left: 3px solid #ffd700;
}

body.light-mode .track-display {
    background: #ffffff;
}

body.light-mode .crossfader-section {
    background: #ffffff;
}

body.light-mode .equalizer-container {
    background: #e0e0e0;
}

body.light-mode .equalizer-label {
    color: #333;
}

body.light-mode .eq-control label {
    color: #333;
    background: #e0e0e0;
}

body.light-mode .treble-control,
body.light-mode .mid-control,
body.light-mode .bass-control {
    background: #f0f0f0;
}

body.light-mode .treble-control label,
body.light-mode .mid-control label,
body.light-mode .bass-control label {
    color: #333;
}

body.light-mode .deck-volume-container {
    background: #e0e0e0;
}

body.light-mode .deck-cover {
    background: #ffffff;
}

body.light-mode .theme-toggle {
    background: #ffffff;
    border-color: #333;
    color: #333;
}

body.light-mode .theme-toggle:hover {
    background: #333;
    color: #ffffff;
}

/* Anpassungen für die Schieberegler im Light Mode */
body.light-mode input[type="range"] {
    background: #ddd;
}

body.light-mode input[type="range"]::-webkit-slider-thumb {
    background: #ffd700;
    border: 2px solid #333;
}

body.light-mode input[type="range"]::-moz-range-track {
    background: #ddd;
}

body.light-mode input[type="range"]::-moz-range-thumb {
    background: #ffd700;
    border: 2px solid #333;
}

/* Textfarben im Light Mode */
body.light-mode h1 {
    color: #333;
}

body.light-mode h2 {
    color: #333;
}

body.light-mode .deck-header h2 {
    color: #333;
}

body.light-mode .volume-display {
    color: #333;
}

body.light-mode .bpm-display {
    color: #006400;
}

body.light-mode .bpm-label {
    color: #666;
}

body.light-mode .crossfader-label {
    color: #333;
}

body.light-mode .deck-label {
    color: #006400;
}

body.light-mode .gain-label {
    color: #333;
}

body.light-mode .gain-value {
    color: #006400;
}

body.light-mode .deck-volume-label {
    color: #333;
}

body.light-mode .deck-volume-value {
    color: #333;
}

body.light-mode .eq-band label {
    color: #333;
}

body.light-mode .eq-band span {
    color: #333;
}

body.light-mode .time-display {
    color: #333;
}

/* Hover-Effekte im Light Mode */
body.light-mode .control-btn:hover {
    background: #e0e0e0;
    color: #000;
}

body.light-mode .track-item:hover {
    background: #e0e0e0;
    color: #000;
}

body.light-mode input[type="range"]::-webkit-slider-thumb:hover {
    background: #ffed4a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

body.light-mode input[type="range"]::-moz-range-thumb:hover {
    background: #ffed4a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Media Queries für den Theme Switcher */
@media (max-width: 768px) {
    .theme-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .theme-text {
        display: none;
    }
} 