/* Radio Show页面样式 */

/* 工具提示樣式 */
.action-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.98), rgba(20, 20, 30, 0.99));
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(170, 60, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(170, 60, 255, 0.2);
}

.action-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 播放動畫效果 */
@keyframes playing-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.playing .playing-icon i {
    animation: playing-animation 1s infinite;
    color: #aa3cff;
}

/* 電台詳情頁面專用樣式 */
.radio-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.95), rgba(20, 20, 30, 0.98));
    position: relative;
    overflow: hidden;
}

.radio-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(170, 60, 255, 0.05) 0%, 
        transparent 30%, 
        rgba(255, 83, 180, 0.05) 70%, 
        transparent 100%);
    animation: backgroundFlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.radio-header-banner {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.1) 0%, rgba(255, 83, 180, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(170, 60, 255, 0.1);
}

.radio-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/musica/images/radio-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.radio-header-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.radio-header-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.radio-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.radio-header-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #aa3cff, transparent);
}

.radio-header-dot {
    width: 8px;
    height: 8px;
    background: #aa3cff;
    border-radius: 50%;
    margin: 0 20px;
    box-shadow: 0 0 10px rgba(170, 60, 255, 0.5);
}

.radio-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

.radio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.radio-breadcrumb {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(40, 40, 50, 0.8), rgba(30, 30, 40, 0.9));
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(170, 60, 255, 0.1);
}

.radio-breadcrumb a {
    color: #aa3cff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.radio-breadcrumb a:hover {
    color: #ff53b4;
    text-shadow: 0 0 10px rgba(255, 83, 180, 0.5);
}

.radio-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

.radio-detail-card {
    display: flex;
    background: linear-gradient(135deg, rgba(40, 40, 50, 0.8), rgba(30, 30, 40, 0.9));
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(170, 60, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-detail-card:hover {
    border-color: rgba(170, 60, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(170, 60, 255, 0.2);
}

.radio-detail-cover {
    position: relative;
    width: 200px;
    height: 200px;
    margin-right: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(170, 60, 255, 0.2);
}

.radio-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-detail-cover:hover img {
    transform: scale(1.05);
}

.radio-detail-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(170, 60, 255, 0.9), rgba(170, 60, 255, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.4);
}

.radio-detail-cover:hover .radio-detail-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.radio-detail-play-btn i {
    font-size: 24px;
    color: #ffffff;
}

.radio-detail-info {
    flex: 1;
}

.radio-detail-info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(145deg, rgba(40, 40, 50, 0.6), rgba(30, 30, 40, 0.7));
    border-radius: 10px;
    border: 1px solid rgba(170, 60, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.info-item:hover {
    background: linear-gradient(145deg, rgba(170, 60, 255, 0.1), rgba(170, 60, 255, 0.05));
    border-color: rgba(170, 60, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.2);
}

.info-label {
    display: flex;
    align-items: center;
    margin-right: 15px;
    min-width: 100px;
}

.info-label i {
    font-size: 18px;
    color: #aa3cff;
    margin-right: 8px;
    text-shadow: 0 0 10px rgba(170, 60, 255, 0.5);
}

.info-label span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.info-content {
    color: #ffffff;
    font-weight: 500;
}

.info-content a {
    color: #aa3cff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.info-content a:hover {
    color: #ff53b4;
    text-shadow: 0 0 10px rgba(255, 83, 180, 0.5);
}

.song-list {
    background: linear-gradient(135deg, rgba(40, 40, 50, 0.8), rgba(30, 30, 40, 0.9));
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(170, 60, 255, 0.1);
}

.song-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: linear-gradient(145deg, rgba(40, 40, 50, 0.6), rgba(30, 30, 40, 0.7));
    border-radius: 10px;
    border: 1px solid rgba(170, 60, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.song-item:hover {
    background: linear-gradient(145deg, rgba(170, 60, 255, 0.2), rgba(170, 60, 255, 0.1));
    border-color: rgba(170, 60, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.3);
}

.song-cover {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(170, 60, 255, 0.2);
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.song-cover:hover img {
    transform: scale(1.05);
}

.song-cover-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(145deg, rgba(170, 60, 255, 0.9), rgba(170, 60, 255, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(170, 60, 255, 0.4);
}

.song-cover:hover .song-cover-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.song-cover-play i {
    font-size: 14px;
    color: #ffffff;
}

.song-info {
    flex: 1;
}

.song-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.song-title-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.song-title-link:hover {
    color: #aa3cff;
    text-shadow: 0 0 10px rgba(170, 60, 255, 0.5);
}

.song-title-link.playing {
    color: #aa3cff;
    text-shadow: 0 0 10px rgba(170, 60, 255, 0.5);
}

.song-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.song-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, rgba(40, 40, 50, 0.8), rgba(30, 30, 40, 0.9));
    border: 1px solid rgba(170, 60, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 60, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: linear-gradient(145deg, rgba(170, 60, 255, 0.3), rgba(170, 60, 255, 0.2));
    border-color: rgba(170, 60, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.3);
}

.action-btn i {
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.action-btn:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .radio-header-title {
        font-size: 2rem;
    }
    
    .radio-detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .radio-detail-cover {
        margin-right: 0;
        margin-bottom: 20px;
        align-self: center;
    }
    
    .radio-detail-info-list {
        grid-template-columns: 1fr;
    }
    
    .song-item {
        flex-direction: column;
        text-align: center;
    }
    
    .song-cover {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .song-actions {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .radio-container {
        padding: 20px 10px;
    }
    
    .radio-header-banner {
        height: 200px;
    }
    
    .radio-header-title {
        font-size: 1.5rem;
    }
    
    .radio-detail-card {
        padding: 20px;
    }
    
    .radio-detail-cover {
        width: 150px;
        height: 150px;
    }
} 