.shoutcast-player-container {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 20px auto;
}

.shoutcast-play-button {
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 100px;
    min-height: 100px;
}

.shoutcast-play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(238, 90, 111, 0.6);
}

.shoutcast-play-button:active {
    transform: scale(0.95);
}

.shoutcast-play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    transform: translate(-40%, -50%);
    transition: all 0.3s ease;
}

.shoutcast-play-button.playing::before {
    border: none;
    width: 8px;
    height: 30px;
    background: white;
    box-shadow: 12px 0 0 white;
    transform: translate(-50%, -50%);
}

.shoutcast-play-button.loading {
    opacity: 0.7;
}

.song-info {
    flex: 1;
    color: white;
    min-width: 0;
}

.song-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.song-artist {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.stream-status {
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9e9e9e;
    animation: pulse 2s infinite;
}

.status-dot.connected {
    background: #4CAF50;
}

.status-dot.loading {
    background: #ff9800;
}

.status-dot.error {
    background: #f44336;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .shoutcast-player-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    
    .song-title {
        font-size: 20px;
    }
    
    .song-artist {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .shoutcast-player-container {
        padding: 15px;
    }
    
    .song-title {
        font-size: 18px;
    }
    
    .song-artist {
        font-size: 14px;
    }
}
