/* Channel Player Styles */
.channel-player-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.channel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.channel-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.channel-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.channel-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Player Container */
.player-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Audio Player Specific */
.audio-player-wrapper {
    padding: 3rem;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.audio-visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 80px;
    gap: 6px;
    margin-bottom: 2rem;
}

.audio-visualizer .bar {
    width: 8px;
    background: linear-gradient(to top, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.audio-visualizer .bar:nth-child(1) {
    height: 40%;
    animation: audioBar1 1s infinite;
}

.audio-visualizer .bar:nth-child(2) {
    height: 70%;
    animation: audioBar2 1.2s infinite;
}

.audio-visualizer .bar:nth-child(3) {
    height: 100%;
    animation: audioBar3 0.8s infinite;
}

.audio-visualizer .bar:nth-child(4) {
    height: 60%;
    animation: audioBar4 1.1s infinite;
}

.audio-visualizer .bar:nth-child(5) {
    height: 80%;
    animation: audioBar5 0.9s infinite;
}

.audio-visualizer .bar:nth-child(6) {
    height: 50%;
    animation: audioBar6 1.3s infinite;
}

.audio-visualizer .bar:nth-child(7) {
    height: 90%;
    animation: audioBar7 0.7s infinite;
}

@keyframes audioBar1 {
    0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes audioBar2 {
    0%, 100% { transform: scaleY(0.6); opacity: 0.8; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes audioBar3 {
    0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes audioBar4 {
    0%, 100% { transform: scaleY(0.7); opacity: 0.9; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes audioBar5 {
    0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes audioBar6 {
    0%, 100% { transform: scaleY(0.6); opacity: 0.8; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes audioBar7 {
    0%, 100% { transform: scaleY(0.8); opacity: 0.9; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Channel Info Cards */
.channel-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.channel-info h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.channel-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Action Buttons */
.channel-actions {
    margin-top: 3rem;
    text-align: center;
}

.channel-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.channel-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Plyr Customizations */
.plyr {
    --plyr-color-main: #667eea;
}

.plyr--audio .plyr__controls {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
}

.plyr--video .plyr__controls {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.75));
}

/* Responsive */
@media (max-width: 768px) {
    .channel-title {
        font-size: 2rem;
    }
    
    .channel-logo {
        width: 100px;
        height: 100px;
    }
    
    .audio-player-wrapper {
        padding: 2rem 1.5rem;
    }
}
