.nor-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,20,0.95));
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(0,212,255,0.3);
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}

.nor-live-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.8) 50%, transparent 100%);
    animation: nor-pulse 2s ease-in-out infinite;
}

@keyframes nor-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.nor-player-content {
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.nor-cover-displays {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.nor-cover-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nor-cover-display img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(0,212,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.nor-cover-display.nor-cover-main img {
    width: 70px;
    height: 70px;
    border-color: rgba(0,212,255,0.6);
    box-shadow: 0 6px 20px rgba(0,212,255,0.4);
}

.nor-cover-display:hover img {
    transform: translateY(-2px);
    border-color: rgba(0,212,255,0.6);
}

.nor-cover-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nor-info {
    flex: 1;
    min-width: 0;
}

.nor-text {
    min-width: 0;
}

.nor-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(255,0,0,0.2);
    border: 1px solid rgba(255,0,0,0.4);
    border-radius: 12px;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nor-live-dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    animation: nor-blink 1.5s ease-in-out infinite;
}

@keyframes nor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

#nor-track-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#nor-track-artist {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nor-next-track {
    margin: 4px 0 0 0;
    font-size: 11px;
    color: rgba(0,212,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nor-next-track:empty {
    display: none;
}

.nor-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,212,255,0.4);
    flex-shrink: 0;
}

.nor-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,212,255,0.6);
}

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

.nor-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 140px;
    flex-shrink: 0;
}

.nor-mute-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nor-mute-btn:hover {
    color: white;
}

.nor-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    outline: none;
    -webkit-appearance: none;
}

.nor-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00d4ff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(0,212,255,0.5);
}

.nor-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(0,212,255,0.8);
}

.nor-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00d4ff;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(0,212,255,0.5);
}

.nor-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(0,212,255,0.8);
}

.nor-ad-banner {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .nor-player-content {
        gap: 12px;
        padding: 0 15px;
    }
    
    .nor-cover-displays {
        gap: 8px;
    }
    
    .nor-cover-display img {
        width: 50px;
        height: 50px;
    }
    
    .nor-cover-display.nor-cover-main img {
        width: 60px;
        height: 60px;
    }
    
    .nor-cover-label {
        font-size: 8px;
    }
    
    .nor-volume {
        display: none;
    }
    
    #nor-track-title {
        font-size: 13px;
    }
    
    #nor-track-artist,
    .nor-next-track {
        font-size: 11px;
    }
}
