body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif, Tahoma;
    overflow: hidden;
}
    
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 200px;
}
    
canvas {
    width: 99.5svw;
    width: 99.5vw;
    display: block;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.05), 0 50px 100px rgba(0,0,0,0.9);
    }
    
.footer-text {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.6;
}
    
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3px;
    min-height: 80px;
}
    
.button-play-pause {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.05) !important;
    border: 2px solid rgba(0, 255, 255, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
    
.button-play-pause img {
    height: 14px;
    width: 14px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
}
    
.button-play-pause:hover:not(:disabled) {
    transform: scale(1.1);
    border-color: #00ffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}
    
.button-play-pause:disabled {
    cursor: not-allowed;
}
    
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 150px;
    padding-bottom: 10px;
}
    
#stream-select {
    width: 100%;
    padding: 12px 35px 12px 16px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    color: #C0C0C0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    box-sizing: border-box;
}
    
#stream-select:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.1);
}
    
#stream-select:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2);
}
    
#stream-select option {
    background-color: #111111;
    color: #FFFFFF;
}
    
.custom-select-wrapper::after {
    content: '▼';
    font-size: 10px;
    color: #FFFFFF;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}