/*
╔══════════════════════════════════════════════════════════════════════════════╗
║               UDOS COUNTRY WESTERN RADIO PLAYER - MAIN STYLESHEET            ║
║                      Modern Glasmorphism Design System                       ║
╠══════════════════════════════════════════════════════════════════════════════╣
║                                                                              ║
║  🎵 Entwickelt für: Udos Country Western Radio                               ║
║  📻 Website: https://udos-country-western-radio.de                           ║
║  🎧 Stream: https://laut.fm/udoscountrywesternradio                          ║
║                                                                              ║
║  👨‍💻 Entwicklung & Design: datOnkel                                           ║
║  📧 E-Mail: datonkel@radio-lisa.de                                           ║
║  🌐 Web: https://radio-lisa.de                                               ║
║                                                                              ║
║  📅 Entwickelt: Oktober 2025                                                 ║
║  🎨 Design-Stil: Glasmorphism, Purple/Violet Theme                          ║
║  📱 Responsive: Mobile-First, Adaptive Layout                               ║
║  🔧 Technologie: CSS3, CSS Grid, Flexbox, CSS Animations                    ║
║                                                                              ║
║  🎨 Design Features:                                                         ║
║  • Glasmorphism Effects (backdrop-filter, transparency)                     ║
║  • Purple/Violet Gradient Color Scheme                                      ║
║  • Smooth Animations & Transitions                                          ║
║  • Responsive Breakpoints (Mobile, Tablet, Desktop)                         ║
║  • Modern CSS3 Properties & Effects                                         ║
║  • Accessibility-Friendly Contrast Ratios                                   ║
║                                                                              ║
║  🎯 Components:                                                              ║
║  • Main Player Container (.player)                                          ║
║  • Track Info Display (.track-info)                                         ║
║  • Control Buttons (.play-btn, .control-btn)                               ║
║  • Volume Controls (.volume-control)                                        ║
║  • Social Integration (.facebook-btn, .wishbox-btn)                         ║
║  • Popup Systems (.wishbox-popup, .developer-info)                          ║
║  • Vinyl Animation Effects (.vinyl-effect)                                  ║
║                                                                              ║
║  📱 Responsive Design:                                                       ║
║  • Mobile: < 768px (Stacked Layout)                                         ║
║  • Tablet: 768px - 1024px (Optimized)                                       ║
║  • Desktop: > 1024px (Full Layout)                                          ║
║                                                                              ║
║  ⚖️ Copyright (c) 2025 datOnkel - Alle Rechte vorbehalten                    ║
║  📄 Lizenz: Proprietär - Nur für Udos Country Western Radio                 ║
║  🚫 Design-Kopie oder -Verwendung ohne Genehmigung untersagt                ║
║                                                                              ║
╚══════════════════════════════════════════════════════════════════════════════╝
*/

/* ================== GLOBAL RESET & BASE STYLES ================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #3e2573 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(147, 107, 216, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(196, 181, 253, 0.1) 0%, transparent 50%);
    animation: floatingParticles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatingParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    33% { transform: translateY(-20px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(-10px) rotate(240deg); opacity: 0.8; }
}

.player {
    background: rgba(30, 20, 50, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 28px;
    padding: 30px;
    width: 800px;
    height: 370px;
    box-shadow: 
        0 30px 60px rgba(88, 28, 135, 0.4),
        0 0 0 1px rgba(196, 181, 253, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 50px rgba(147, 107, 216, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 30px;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Glow effect on hover */
.player:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(88, 28, 135, 0.6),
        0 0 0 1px rgba(196, 181, 253, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 80px rgba(147, 107, 216, 0.4);
}

/* Animated gradient overlay */
.player::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cover-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cover-section img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(88, 28, 135, 0.4),
        0 0 30px rgba(147, 107, 216, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.cover-section img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 25px 50px rgba(88, 28, 135, 0.6),
        0 0 40px rgba(147, 107, 216, 0.5);
}

.vinyl-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(147, 107, 216, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 8s linear infinite paused;
    box-shadow: 
        0 0 30px rgba(147, 107, 216, 0.3),
        inset 0 0 20px rgba(196, 181, 253, 0.2);
    background: radial-gradient(circle at center, 
        transparent 60%, 
        rgba(147, 107, 216, 0.1) 70%, 
        rgba(196, 181, 253, 0.05) 100%);
}

.playing .vinyl-effect {
    animation-play-state: running;
    border-color: rgba(167, 139, 250, 0.8);
    box-shadow: 
        0 0 50px rgba(147, 107, 216, 0.6),
        inset 0 0 30px rgba(196, 181, 253, 0.4),
        0 0 100px rgba(167, 139, 250, 0.3);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
}

.station-name {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 10px;
    position: relative;
    gap: 8px;
}

.homepage-icon {
    width: 18px;
    height: 18px;
    fill: rgba(167, 139, 250, 0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@keyframes homeIconPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.25); }
}

.station-name:hover {
    color: rgba(167, 139, 250, 1);
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.5);
    background: rgba(167, 139, 250, 0.15);
    transform: translateY(-1px) scale(1.02);
    text-decoration: none;
}

.station-name:hover .homepage-icon {
    fill: rgba(167, 139, 250, 1);
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.4));
    animation: homeIconPulse 1.5s ease-in-out infinite;
}

.station-name:hover .homepage-icon {
    fill: rgba(167, 139, 250, 1);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.4));
}

.station-name:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}



.station-header {
    margin-bottom: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(147, 107, 216, 0.1) 0%, rgba(196, 181, 253, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(196, 181, 253, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.station-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.5), transparent);
}

.stream-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.stream-url, .stream-format {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stream-url {
    color: rgba(167, 139, 250, 0.9);
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.3);
}

.stream-format {
    color: rgba(196, 181, 253, 0.8);
    text-shadow: 0 0 8px rgba(196, 181, 253, 0.2);
}

.track-info {
    margin-bottom: 20px;
    min-height: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.title {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.3;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 25px;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(196, 181, 253, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(167, 139, 250, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-btn:hover::before {
    width: 120%;
    height: 120%;
}

.play-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.6),
        0 0 0 2px rgba(196, 181, 253, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 40px rgba(167, 139, 250, 0.5);
    background: linear-gradient(135deg, #9333ea 0%, #8b5cf6 50%, #a855f7 100%);
}

.play-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.play-btn:active {
    transform: scale(0.95);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 250px;
}

.volume-icon {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.volume-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.volume-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--value, 75%);
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #9333ea);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    cursor: pointer;
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.4),
        0 0 0 2px rgba(196, 181, 253, 0.3),
        0 0 15px rgba(167, 139, 250, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 
        0 6px 16px rgba(139, 92, 246, 0.6),
        0 0 0 3px rgba(196, 181, 253, 0.5),
        0 0 25px rgba(167, 139, 250, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    cursor: pointer;
    border: none;
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.4),
        0 0 15px rgba(167, 139, 250, 0.3);
}

.volume-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 35px;
    text-align: right;
}

.action-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-group {
    flex: 1;
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
    line-height: 1.2;
    position: absolute;
    bottom: 8px;
    right: 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.copyright:hover {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(167, 139, 250, 0.1);
    transform: scale(1.05);
}

.copyright .brand {
    color: rgba(167, 139, 250, 0.6);
    font-weight: 500;
    text-shadow: 0 0 6px rgba(167, 139, 250, 0.2);
    transition: color 0.3s ease;
}

.copyright:hover .brand {
    color: rgba(167, 139, 250, 0.8);
}

.copyright .powered {
    color: rgba(196, 181, 253, 0.5);
    font-style: italic;
    text-shadow: 0 0 4px rgba(196, 181, 253, 0.1);
    transition: color 0.3s ease;
}

.copyright:hover .powered {
    color: rgba(196, 181, 253, 0.7);
}

/* Versteckte Entwickler-Info */
.developer-info {
    position: absolute;
    bottom: 35px;
    right: 20px;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.95) 0%, rgba(45, 27, 78, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(88, 28, 135, 0.4),
        0 0 0 1px rgba(196, 181, 253, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.developer-info.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.info-content {
    text-align: center;
    position: relative;
}

.info-header {
    font-size: 11px;
    color: rgba(196, 181, 253, 0.8);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.developer-name {
    font-size: 14px;
    color: rgba(167, 139, 250, 0.9);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}

.developer-name:hover {
    color: rgba(196, 181, 253, 1);
    background: rgba(167, 139, 250, 0.1);
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

.email-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.95) 0%, rgba(147, 107, 216, 0.95) 100%);
    color: white;
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 181, 253, 0.3);
    box-shadow: 0 8px 20px rgba(88, 28, 135, 0.4);
    z-index: 1001;
}

.email-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(88, 28, 135, 0.95);
}

.developer-name:hover .email-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(196, 181, 253, 0.3);
    background: linear-gradient(135deg, rgba(147, 107, 216, 0.15) 0%, rgba(196, 181, 253, 0.08) 100%);
    color: rgba(196, 181, 253, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.control-btn.facebook-btn {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(66, 103, 178, 0.1) 100%);
    border-color: rgba(24, 119, 242, 0.4);
    color: rgba(24, 119, 242, 1);
}

.control-btn.wishbox-btn {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 235, 59, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.4);
    color: rgba(255, 193, 7, 1);
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.facebook-btn::before {
    background: radial-gradient(circle, rgba(24, 119, 242, 0.3) 0%, transparent 70%);
}

.wishbox-btn::before {
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
}

.control-btn:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3) 0%, rgba(196, 181, 253, 0.2) 100%);
    color: rgba(196, 181, 253, 1);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(167, 139, 250, 0.2);
}

.facebook-btn:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.4) 0%, rgba(66, 103, 178, 0.25) 100%);
    color: rgba(24, 119, 242, 1);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(24, 119, 242, 0.7);
    box-shadow: 
        0 8px 25px rgba(24, 119, 242, 0.4),
        0 0 30px rgba(24, 119, 242, 0.3);
}

.wishbox-btn:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4) 0%, rgba(255, 235, 59, 0.25) 100%);
    color: rgba(255, 193, 7, 1);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 193, 7, 0.7);
    box-shadow: 
        0 8px 25px rgba(255, 193, 7, 0.4),
        0 0 30px rgba(255, 193, 7, 0.3);
}

.control-btn:hover::before {
    width: 100%;
    height: 100%;
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.control-btn:hover svg {
    transform: scale(1.1);
}

/* Wunschbox Popup */
.wishbox-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishbox-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 20, 50, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    height: 80%;
    max-height: 600px;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.95) 0%, rgba(45, 27, 78, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(196, 181, 253, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(88, 28, 135, 0.5),
        0 0 0 1px rgba(196, 181, 253, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wishbox-popup.show .popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(196, 181, 253, 0.2);
    background: linear-gradient(135deg, rgba(147, 107, 216, 0.1) 0%, rgba(196, 181, 253, 0.05) 100%);
}

.popup-header h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.popup-close {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(239, 83, 80, 0.1) 100%);
    color: rgba(244, 67, 54, 0.9);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.4) 0%, rgba(239, 83, 80, 0.2) 100%);
    color: rgba(244, 67, 54, 1);
    transform: scale(1.1);
}

.popup-close svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.popup-iframe-container {
    width: 100%;
    height: calc(100% - 80px);
    padding: 0;
}

.popup-iframe-container iframe {
    border: none;
    border-radius: 0 0 20px 20px;
}

.status {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(147, 107, 216, 0.15) 0%, rgba(196, 181, 253, 0.08) 100%);
    display: inline-block;
    min-width: 180px;
    text-align: center;
    border: 1px solid rgba(196, 181, 253, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.1), transparent);
    animation: statusShimmer 2s ease-in-out infinite;
}

@keyframes statusShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.status.playing {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(129, 199, 132, 0.1) 100%);
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 
        0 0 20px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(129, 199, 132, 0.2);
}

.status.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(239, 83, 80, 0.1) 100%);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.4);
    box-shadow: 
        0 0 20px rgba(244, 67, 54, 0.3),
        inset 0 1px 0 rgba(239, 83, 80, 0.2);
}

.status.loading {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 202, 40, 0.1) 100%);
    color: #FFC107;
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 
        0 0 20px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 202, 40, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 850px) {
    .player {
        width: 95%;
        max-width: 750px;
        height: auto;
        min-height: 350px;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .cover-section img {
        width: 200px;
        height: 200px;
    }
    
    .vinyl-effect {
        width: 220px;
        height: 220px;
    }
    
    .content-section {
        width: 100%;
        min-height: auto;
    }
    
    .controls {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .volume-control {
        max-width: 200px;
    }
    
    .action-controls {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .control-group {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .status-group {
        order: -1;
        margin-bottom: 10px;
    }
    
    .copyright {
        font-size: 8px;
        bottom: 6px;
        right: 15px;
    }
    
    .developer-info {
        bottom: 28px;
        right: 15px;
        min-width: 180px;
        padding: 10px 12px;
    }
    
    .info-header {
        font-size: 10px;
    }
    
    .developer-name {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .player {
        padding: 20px;
        margin: 10px;
    }
    
    .cover-section img {
        width: 160px;
        height: 160px;
    }
    
    .vinyl-effect {
        width: 180px;
        height: 180px;
    }
    
    .artist {
        font-size: 20px;
    }
    
    .title {
        font-size: 16px;
    }
    
    .station-name {
        font-size: 14px;
        padding: 5px 10px;
        gap: 6px;
        letter-spacing: 1px;
    }
    
    .homepage-icon {
        width: 16px;
        height: 16px;
    }
    
    .station-header {
        padding: 12px;
    }
    
    .stream-info {
        gap: 4px;
    }
    
    .stream-url, .stream-format {
        font-size: 13px;
    }
    
    .controls {
        gap: 15px;
    }
    
    .volume-control {
        max-width: 150px;
    }
    
    .copyright {
        font-size: 7px;
        bottom: 4px;
        right: 10px;
    }
    
    .developer-info {
        bottom: 22px;
        right: 10px;
        min-width: 160px;
        padding: 8px 10px;
    }
    
    .info-header {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .developer-name {
        font-size: 11px;
    }
    
    .email-tooltip {
        font-size: 9px;
        padding: 4px 6px;
    }
    
    .popup-content {
        width: 95%;
        height: 85%;
        max-height: none;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-header h3 {
        font-size: 16px;
    }
    
    .popup-close {
        width: 30px;
        height: 30px;
    }
    
    .popup-close svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================
   🔒 SCHUTZ VOR KOPIEREN
   ============================ */

/* Text-Auswahl deaktivieren */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Drag & Drop deaktivieren */
img, audio, video {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Buttons und Controls wieder aktivieren */
button, input, select, textarea {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

/* Copyright-Hinweis bei Auswahl-Versuchen */
::selection {
    background: rgba(255, 0, 0, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(255, 0, 0, 0.3);
    color: white;
}

/* ============================
   🛡️ ZUSÄTZLICHER SCHUTZ
   ============================ */

/* Print-Styles verhindern */
@media print {
    * {
        display: none !important;
    }
    
    body:before {
        content: "Diese Seite kann nicht gedruckt werden. © 2025 datOnkel - Alle Rechte vorbehalten";
        display: block !important;
        text-align: center;
        padding: 50px;
        font-size: 18px;
        color: red;
    }
}

/* Screenshot-Warnung für Entwickler */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    body:before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="8" fill="rgba(255,0,0,0.1)" text-anchor="middle" x="50">© datOnkel</text></svg>') repeat;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.05;
    }
}