/* 基礎樣式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #231a2c;
    color: #f0f0f0;
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
}

/* 頁面頂部橫幅 */
.radio-wrapper .radio-header-banner {
    background: linear-gradient(45deg, #121212, #2a1f3d);
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.radio-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/musica/images/pattern.png') repeat;
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.radio-wrapper .radio-header-banner .radio-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.radio-header-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.radio-header-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.radio-header-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(170, 60, 255, 0.2), rgba(170, 60, 255, 0.8));
}

.radio-header-dot {
    width: 6px;
    height: 6px;
    background: #aa3cff;
    border-radius: 50%;
    margin: 0 10px;
}

/* 容器樣式 */
.radio-wrapper .radio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}



.radio-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #231a2c;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

/* 麵包屑導航 */
.radio-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(170, 60, 255, 0.2);
}

.radio-breadcrumb a {
    color: #aa3cff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.radio-breadcrumb a:hover {
    color: #bf6fff;
}

/* 區塊標題 */
.radio-section-title {
    margin: 40px 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.radio-section-title h2 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    padding-left: 15px;
    position: relative;
}

.radio-section-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #aa3cff;
    border-radius: 2px;
}

.radio-section-title .subtitle {
    color: #aa3cff;
    font-size: 14px;
    margin-left: 10px;
}

/* 卡片網格 */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* 卡片樣式 */
.radio-card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(170, 60, 255, 0.15);
}

.radio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(170, 60, 255, 0.4);
}

/* 卡片圖片 */
.radio-card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    z-index: 1;
}

.radio-card-image .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    z-index: 3;
    cursor: pointer;
}

.radio-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.radio-card:hover .radio-card-image::before {
    opacity: 1;
}

.radio-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.radio-card:hover .radio-card-image img {
    transform: scale(1.1);
}

/* 懸停提示 */
.radio-hover-tip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    background: rgba(170, 60, 255, 0.9);
    padding: 12px 24px;
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.radio-hover-tip i {
    font-size: 18px;
}

.radio-card:hover .radio-hover-tip {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.radio-hover-tip span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* 卡片內容 */
.radio-card-content {
    padding: 20px;
}

/* 卡片標題 */
.radio-card-title {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.4;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.radio-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, rgba(170, 60, 255, 0.2), rgba(170, 60, 255, 0.8), rgba(170, 60, 255, 0.2));
    transition: width 0.3s ease;
}

.radio-card:hover .radio-card-title::after {
    width: 80px;
}

.radio-card-title a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
}

.radio-card-title a:hover {
    color: #aa3cff;
    transform: translateY(-2px);
}

/* 卡片元數據 */
.radio-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(170, 60, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0;
    border: 1px solid rgba(170, 60, 255, 0.2);
    backdrop-filter: blur(5px);
}

.radio-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0 12px;
}

.radio-meta-item:first-child {
    padding-left: 0;
}

.radio-meta-item:last-child {
    padding-right: 0;
}

.radio-meta-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(170, 60, 255, 0.3);
}

.radio-meta-item i {
    color: #aa3cff;
    font-size: 16px;
}

.radio-meta-item span {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

/* 卡片操作按鈕 */
.radio-card-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-action-btn {
    color: #999;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.radio-action-btn:hover {
    color: #aa3cff;
    transform: translateY(-2px);
}

/* 篩選器 */
.radio-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(170, 60, 255, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 99999;
}

.radio-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.radio-filter-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(170, 60, 255, 0.1);
    border: 1px solid rgba(170, 60, 255, 0.3);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.radio-filter-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.radio-filter-btn:hover {
    background: rgba(170, 60, 255, 0.2);
    border-color: rgba(170, 60, 255, 0.5);
    transform: translateY(-2px);
}

.radio-filter-btn.active {
    background: #aa3cff;
    border-color: #aa3cff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(170, 60, 255, 0.3);
}

/* 下拉選項 */
.radio-filter-dropdown {
    position: relative;
}

.radio-filter-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 300px;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
    overflow: hidden;
}

.radio-quick-dates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
}

.quick-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(170, 60, 255, 0.1);
    border: 1px solid transparent;
}

.quick-date i {
    font-size: 16px;
    color: #aa3cff;
}

.quick-date:hover {
    background: rgba(170, 60, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.quick-date.active {
    background: #aa3cff;
    color: #fff;
}

.quick-date.active i {
    color: #fff;
}

.radio-date-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(170, 60, 255, 0.3), transparent);
    margin: 5px 15px;
}

.radio-date-range {
    padding: 15px;
}

.date-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.date-input-group {
    flex: 1;
    position: relative;
}

.date-input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aa3cff;
    font-size: 16px;
}

.custom-date-input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid rgba(170, 60, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-date-input:focus {
    outline: none;
    border-color: #aa3cff;
    background: rgba(0, 0, 0, 0.3);
}

.custom-date-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.date-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.confirm-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: #aa3cff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.confirm-btn:hover {
    background: #bf6fff;
    transform: translateY(-2px);
}

.confirm-btn i {
    font-size: 18px;
}

/* Layui 日期選擇器樣式覆蓋 */
.layui-laydate {
    z-index: 999999 !important;
    background-color: rgba(30, 30, 30, 0.95) !important;
    border: 1px solid rgba(170, 60, 255, 0.2) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
    border-radius: 16px !important;
    color: #fff !important;
}

.layui-laydate-header {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(170, 60, 255, 0.2) !important;
}

.layui-laydate-content {
    background-color: transparent !important;
}

.layui-laydate-header i {
    color: rgba(255, 255, 255, 0.8) !important;
}

.layui-laydate-header i:hover {
    color: #aa3cff !important;
}

.layui-laydate .layui-this {
    background-color: #aa3cff !important;
    color: #fff !important;
}

.layui-laydate-content td:hover {
    background-color: rgba(170, 60, 255, 0.2) !important;
}

.layui-laydate-content td {
    color: rgba(255, 255, 255, 0.8) !important;
}

.layui-laydate .layui-laydate-content .laydate-disabled {
    color: rgba(255, 255, 255, 0.3) !important;
}

.layui-laydate-footer {
    border-top: 1px solid rgba(170, 60, 255, 0.2) !important;
    background-color: transparent !important;
}

.layui-laydate-footer span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.layui-laydate-footer span:hover {
    color: #aa3cff !important;
}

/* 歌單詳情卡片 */
.radio-wrapper .radio-detail-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(170, 60, 255, 0.15);
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.radio-detail-cover {
    width: 280px;
    height: 280px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.radio-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.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: rgba(170, 60, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.radio-detail-cover:hover .radio-detail-play-btn {
    opacity: 1;
}

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

.radio-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.radio-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.radio-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.radio-meta-item i {
    color: #aa3cff;
    font-size: 20px;
}

.radio-meta-item a {
    color: #aa3cff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.radio-meta-item a:hover {
    color: #bf6fff;
}

.radio-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-detail-tags i {
    color: #aa3cff;
    font-size: 20px;
}

.radio-detail-tags a {
    padding: 6px 12px;
    background: rgba(170, 60, 255, 0.1);
    border: 1px solid rgba(170, 60, 255, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.radio-detail-tags a:hover {
    background: rgba(170, 60, 255, 0.2);
    border-color: rgba(170, 60, 255, 0.5);
    transform: translateY(-2px);
}

.radio-detail-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.radio-action-btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(170, 60, 255, 0.3);
    background: rgba(170, 60, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.radio-action-btn i {
    font-size: 18px;
}

.radio-action-btn:hover {
    background: rgba(170, 60, 255, 0.2);
    border-color: rgba(170, 60, 255, 0.5);
    transform: translateY(-2px);
}

.radio-action-btn.primary {
    background: #aa3cff;
    border-color: #aa3cff;
}

.radio-action-btn.primary:hover {
    background: #bf6fff;
    border-color: #bf6fff;
}

/* 歌曲列表樣式 */
.radio-wrapper .radio-container .radio-songs-section {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(170, 60, 255, 0.15);
    padding: 30px;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.radio-wrapper .radio-songs-section .radio-songs-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 100px 100px 120px 150px;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid rgba(170, 60, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.radio-wrapper .radio-songs-section .radio-song-item {
    display: grid;
    grid-template-columns: 80px 1fr 100px 100px 100px 120px 150px;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    margin: 0;
    align-items: center;
}

.radio-song-item:hover {
    background: rgba(170, 60, 255, 0.05);
}

.song-index {
    display: flex;
    align-items: center;
    gap: 10px;
}

.song-number {
    width: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.song-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(170, 60, 255, 0.1);
    color: #aa3cff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.radio-song-item:hover .song-play-btn {
    opacity: 1;
}

.song-play-btn:hover {
    background: #aa3cff;
    color: #fff;
    transform: scale(1.1);
}

.song-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-wrapper .song-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.radio-wrapper .song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.radio-wrapper .song-cover:hover img {
    transform: scale(1.1);
}

.radio-wrapper .song-cover-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(170, 60, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-wrapper .song-cover:hover .song-cover-play {
    opacity: 1;
}

.radio-wrapper .song-cover-play i {
    color: #fff;
    font-size: 24px;
}

.radio-wrapper .song-title-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.radio-wrapper .song-title-link:hover {
    color: #fff;
}

.radio-wrapper .playing-icon {
    display: none;
    color: #aa3cff;
    animation: pulse 1.5s infinite;
}

.radio-wrapper .song-title-link.playing {
    color: #aa3cff;
}

.radio-wrapper .song-title-link.playing .playing-icon {
    display: block;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.song-details {
    flex: 1;
    min-width: 0;
}

.song-title {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
}

.song-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.song-title a:hover {
    color: #aa3cff;
}

.radio-wrapper .song-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    margin-top: 8px;
}

.radio-wrapper .song-meta > div {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.radio-wrapper .song-meta > div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.radio-wrapper .song-meta i {
    font-size: 16px;
    opacity: 0.7;
}

.radio-wrapper .song-genre {
    color: #39c1de;
}

.radio-wrapper .song-genre i {
    color: #39c1de;
}

.radio-wrapper .song-genre a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.radio-wrapper .song-genre a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.radio-wrapper .song-genre a:hover::after {
    width: 100%;
}

.radio-wrapper .song-artist {
    color: #ff53b4;
}

.radio-wrapper .song-artist i {
    color: #ff53b4;
}

.radio-wrapper .artist-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255, 83, 180, 0.1);
}

.radio-wrapper .artist-link:hover {
    background: rgba(255, 83, 180, 0.2);
    transform: translateY(-1px);
}

.radio-wrapper .song-date {
    color: rgba(255, 255, 255, 0.5);
}

.radio-wrapper .song-date i {
    color: rgba(255, 255, 255, 0.5);
}

.song-bpm, .song-key {
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-bpm a, .song-key a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.song-bpm a:hover, .song-key a:hover {
    color: #aa3cff;
}

.song-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.song-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffd800;
}

.price-amount {
    font-size: 16px;
    font-weight: 500;
}

.price-currency {
    font-size: 13px;
}

.song-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(170, 60, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #aa3cff;
    color: #fff;
    transform: scale(1.1);
}

.action-btn i {
    font-size: 18px;
}

/* 分頁 */
.radio-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.radio-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1e1e1e;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(170, 60, 255, 0.3);
}

.radio-pagination a:hover,
.radio-pagination a.active {
    background: #aa3cff;
    border-color: #aa3cff;
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .radio-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .radio-header-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .radio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .radio-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .radio-filter-group {
        flex-wrap: wrap;
    }
    
    .radio-header-title {
        font-size: 28px;
    }
    
    .radio-header-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .radio-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .radio-card-content {
        padding: 15px;
    }
    
    .radio-play-btn {
        width: 36px;
        height: 36px;
    }
    
    .radio-section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .radio-header-banner {
        padding: 40px 0;
    }
    
    .radio-header-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .radio-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .radio-card-title {
        font-size: 14px;
    }
    
    .radio-card-meta {
        font-size: 12px;
    }
    
    .radio-filter-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .radio-header-title {
        font-size: 20px;
    }
    
    .radio-header-subtitle {
        font-size: 14px;
    }
}

/* 電台列表分頁樣式 */
.radio-index-pagination .radio-pagination {
    padding: 30px 0 !important;
    text-align: center !important;
    background: rgba(30, 30, 30, 0.8) !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
}

.radio-index-pagination .radio-pagination ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.radio-index-pagination .radio-pagination li {
    display: inline-block !important;
    margin: 0 5px !important;
}

.radio-index-pagination .radio-pagination a {
    display: inline-block !important;
    padding: 8px 12px !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    min-width: 40px !important;
    text-align: center !important;
}

/* JavaScript 分頁高亮樣式 */
.radio-index-pagination .current-page {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #ffffff !important;
    border: 2px solid #ff6b35 !important;
    font-weight: bold !important;
    padding: 10px 16px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: auto !important;
    height: auto !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5) !important;
    transform: translateY(-2px) !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.radio-index-pagination .page-number {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #cccccc !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 10px 16px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: auto !important;
    height: auto !important;
    margin: 0 5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    font-size: 14px !important;
}

.radio-index-pagination .page-number:hover {
    background: rgba(255, 107, 53, 0.2) !important;
    border-color: rgba(255, 107, 53, 0.6) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}