/* === 首頁極簡聲景按鈕專用樣式 === */
.minimal-controls .sound-btn {
    padding: 0 10px !important;
    min-width: 40px !important;
    height: 28px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(0, 0, 0, 0.3) !important; /* 黑色背景，30% 透明度 */
    color: #fff !important; /* 白色文字 */
    font-size: 0.75rem !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px) !important; /* 輕微模糊效果 */
}

.minimal-controls .sound-btn:hover,
.minimal-controls .sound-btn.active {
    background: rgba(0, 0, 0, 0.6) !important; /* Hover 時背景更深，60% 透明度 */
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important; /* 保持白色文字 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px) !important;
}
