* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 120px;
}

.container {
    display: flex;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(229, 46, 113, 0.5);
}

.tagline {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 10px;
}

.search-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: #e52e71;
    box-shadow: 0 0 10px rgba(229, 46, 113, 0.5);
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.filter-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
}

select:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
}

option {
    background: #302b63;
}

.custom-select {
    position: relative;
    flex: 1;
    min-width: 120px;
}

.select-selected {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-selected:after {
    content: "▼";
    font-size: 0.7rem;
    transition: all 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

.select-selected:hover {
    border-color: #ff8a00;
}

.select-items {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 500px;
    overflow-y: auto;
    display: none;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.select-items.active {
    display: block;
}

.select-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.select-header .select-item {
    background: rgba(255, 138, 0, 0.15) !important;
    border: 1px solid rgba(255, 138, 0, 0.3) !important;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 10px 12px;
}

.select-hot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 15px;
}

.select-hot-grid .select-item {
    background: rgba(229, 46, 113, 0.1);
    border: 1px solid rgba(229, 46, 113, 0.2);
    text-align: center;
    padding: 8px 4px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.select-hot-grid .select-item:hover {
    background: rgba(229, 46, 113, 0.2);
    transform: translateY(-1px);
}

.select-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.select-category {
    margin-bottom: 0;
}

.category-title {
    font-size: 0.85rem;
    color: #ff8a00;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.select-item {
    padding: 4px 5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.8rem;
    color: #ddd;
    margin-bottom: 0px;
}

.select-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.select-item.active {
    background: rgba(255, 138, 0, 0.2);
    color: #ff8a00;
    font-weight: 500;
}

.hot-genre::after {
    content: " 🔥";
    font-size: 0.7rem;
}

.sidebar {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 10px 20px 0px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 200px);
    overflow: hidden;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 10px 20px 20px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff8a00;
}

.radio-list {
    flex: 1;
    overflow-y: auto;
    margin-top: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 138, 0, 0.5) rgba(255, 255, 255, 0.1);
}

.radio-list::-webkit-scrollbar {
    width: 6px;
}

.radio-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.radio-list::-webkit-scrollbar-thumb {
    background: rgba(255, 138, 0, 0.5);
    border-radius: 3px;
}

.radio-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 138, 0, 0.7);
}

.radio-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.radio-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 138, 0, 0.3);
}

.radio-item.active {
    background: rgba(229, 46, 113, 0.2);
    border-color: rgba(229, 46, 113, 0.5);
}

.radio-flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 1.2rem;
    text-align: center;
}

.radio-info {
    flex: 1;
    min-width: 0;
}

.radio-name {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-country, .radio-genre {
    font-size: 0.75rem;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.play-btn {
    background: #e52e71;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.play-btn:hover {
    background: #ff8a00;
    transform: scale(1.1);
}

#map {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.country-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.country-name {
    font-size: 1.2rem;
    color: #ff8a00;
    margin-bottom: 10px;
}

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.player-info {
    flex: 1;
    margin-left: 20px;
}

.player-station {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.player-country {
    color: #aaa;
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    color: #ff8a00;
}

.play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e52e71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.play-pause:hover {
    background: #ff8a00;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 100px;
}

.quality-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.quality-select {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

.quality-select:focus {
    border-color: #ff8a00;
}

.quality-indicator {
    font-size: 0.7rem;
    color: #aaa;
    margin-left: 5px;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    padding: 10px 15px;
    background: rgba(255, 138, 0, 0.2);
    border-radius: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 138, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

.now-playing i {
    color: #ff8a00;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #aaa;
}

.error {
    text-align: center;
    padding: 20px;
    color: #e52e71;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 0.8rem;
    color: #aaa;
}

.favorite-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1rem;
    cursor: pointer;
    margin-right: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.favorite-btn.active {
    color: #ff8a00;
}

.tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    font-size: 0.9rem;
}

.tab.active {
    color: #ff8a00;
    border-bottom: 2px solid #ff8a00;
}

.tab:hover {
    color: #ff8a00;
}

.tab-content {
    display: none;
    flex: 1;
    overflow-y: auto;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

.history-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.history-time {
    font-size: 0.65rem;
    color: #aaa;
    margin-top: 2px;
}

.share-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s;
    position: relative;
}

.share-btn:hover {
    color: #2196F3;
}

.share-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-menu.active {
    display: flex;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.share-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.share-option i {
    width: 20px;
    text-align: center;
}

.load-more {
    text-align: center;
    padding: 15px 10px 25px 10px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.load-more-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff8a00;
    transform: translateY(-2px);
}

.region-selector {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.region-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 6px 8px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.75rem;
    flex: 1;
    text-align: center;
}

.region-btn.active {
    background: rgba(255, 138, 0, 0.2);
    color: #ff8a00;
    border-color: rgba(255, 138, 0, 0.5);
}

.region-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.data-source-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-source {
    font-size: 0.7rem;
    color: #aaa;
    text-align: right;
    flex: 1;
}

.pulsing-marker {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.welcome-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 138, 0, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.5s ease-out;
    max-width: 500px;
    width: 90%;
}

@keyframes slideDown {
    from { top: -100px; opacity: 0; }
    to { top: 20px; opacity: 1; }
}

.welcome-notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
}

.welcome-content {
    flex: 1;
}

.welcome-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.welcome-details {
    font-size: 0.9rem;
    opacity: 0.9;
}

.share-success {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(33, 150, 243, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

.wechat-share-guide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
}

.wechat-share-guide > div {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player {
    /* 桌面端默认布局 */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.player-info {
    flex: 1;
    margin-left: 20px;
}

.player-station {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.player-country {
    color: #aaa;
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    color: #ff8a00;
}

.play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e52e71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.play-pause:hover {
    background: #ff8a00;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 100px;
}

.quality-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.quality-select {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

.quality-select:focus {
    border-color: #ff8a00;
}

.quality-indicator {
    font-size: 0.7rem;
    color: #aaa;
    margin-left: 5px;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    padding: 10px 15px;
    background: rgba(255, 138, 0, 0.2);
    border-radius: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 138, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

.now-playing i {
    color: #ff8a00;
}

@media (max-width: 1200px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        flex: 1;
        max-height: 65vh;
        min-height: 450px;
    }
    
    .map-container {
        min-height: 500px;
    }
    
    .select-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === 移动端布局修改 === */
@media (max-width: 768px) {
    /* 1. 直接隐藏顶部标题 - 保持这个 */
    header {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important;
    }
    
    /* 2. 调整容器上边距 */
    .container {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        margin-top: 0 !important;
    }
    
    /* 3. 增加电台列表区域高度 */
    .sidebar {
        max-height: calc(100vh - 110px) !important;
        min-height: 450px !important;
        margin-top: 0;
        padding: 12px 15px !important;
    }
    
    /* 4. 调整body边距 */
    body {
        padding-top: 0 !important;
        padding-bottom: 110px !important; /* 给播放器留空间 */
    }
    
    /* 5. 确保电台列表有足够滚动空间 */
    .radio-list {
        max-height: calc(100vh - 300px) !important;
        min-height: 350px !important;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
    
    /* 6. 调整其他元素间距 */
    .search-container {
        margin-bottom: 12px !important;
    }
    
    .region-selector {
        margin-bottom: 10px !important;
    }
    
    .filter-container {
        margin-bottom: 10px !important;
    }
    
    .tabs {
        margin-bottom: 10px !important;
    }
    
    /* 7. 调整加载更多按钮位置 */
    .load-more {
        padding: 10px 5px 20px 5px !important;
    }

	/* ===== 移动端分类选择器紧凑布局 ===== */
	/* 热门分类网格更紧凑 */
	.select-hot-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 3px !important;
		margin-bottom: 6px !important;
	}

	.select-hot-grid .select-item {
		padding: 5px 2px !important;
		margin: 0 !important;
		line-height: 1 !important;
		border-radius: 4px !important;
	}

	/* 三列分类布局更紧凑 */
	.select-columns {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 6px !important;
		margin-top: 3px !important;
	}

	/* 分类标题更紧凑 */
	.category-title {
		margin-bottom: 3px !important;
		padding-bottom: 2px !important;
		gap: 4px !important;
	}

	/* 分类选项更紧凑 */
	.select-item {
		padding: 3px 4px !important;
		margin-bottom: 0 !important;
		line-height: 1.2 !important;
		border-radius: 3px !important;
	}

	/* 选择器整体内边距减小 */
	.select-items {
		padding: 8px 6px !important;
	}

	/* 分类块间距减小 */
	.select-category {
		margin-bottom: 6px !important;
	}

	/* 调整"所有分类"标题间距 */
	.select-header .select-item {
		padding: 8px 10px !important;
		margin-bottom: 3px !important;
	}
    
    /* 原有的移动端样式保持不变 */
    /* 1. 隐藏地图容器 - 这个重复了，保留一个即可 */
    .map-container {
        display: none !important;
    }
    
    /* 2. 隐藏音量控制 - 这个重复了，保留一个即可 */
    .player .volume-container {
        display: none !important;
    }
    
    /* 3. 隐藏"正在收听"区域 */
    .player .now-playing {
        display: none !important;
    }
    
    /* 4. 隐藏音质相关所有元素 */
    .player-controls .quality-container {
        display: none !important;
    }
    
    /* 5. 删除这部分！因为header已经隐藏了 */
    /*
    header {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 1.6rem;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .tagline {
        font-size: 0.85rem;
        text-align: center;
    }
    */
    
    /* 6. 播放器布局优化 */
    .player {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 0;
        min-height: auto !important;
        height: auto;
        justify-content: center;
    }
    
    /* 7. 播放信息区域 - 居中显示 */
    .player-info {
        order: 1;
        margin-left: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .player-station {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 3px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        padding: 5px 0;
    }
    
    .player-country {
        font-size: 0.8rem;
        color: #aaa;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }
    
    /* 8. 播放控制区域调整 - 三个按钮：停止、播放、分享 */
    .player-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        width: 100%;
        order: 2;
        margin-top: 5px;
    }
    
    /* 9. 播放按钮（中间） - 最大 */
    .control-btn.play-pause {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #e52e71;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        order: 2;
        box-shadow: 0 4px 12px rgba(229, 46, 113, 0.3);
    }
    
    .control-btn.play-pause:hover {
        background: #ff8a00;
        transform: scale(1.05);
    }
    
    /* 10. 停止按钮（左侧） */
    .control-btn.stop-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        order: 1;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .control-btn.stop-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    /* 11. 分享按钮（右侧） */
    .player-controls .share-container {
        display: block !important;
        order: 3;
        position: relative;
    }
    
    .player-controls .share-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin: 0;
        color: white;
    }
    
    .player-controls .share-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        color: #ff8a00;
    }
    
    /* 12. 调整分享菜单位置 */
    .share-menu {
        position: absolute;
        bottom: 100%;
        right: 0;
        left: auto;
        background: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        padding: 10px;
        display: none;
        flex-direction: column;
        gap: 8px;
        min-width: 150px;
        z-index: 1001;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        margin-bottom: 5px;
    }
    
    .share-menu.active {
        display: flex;
    }
    
    /* 13. 调整body底部padding，防止播放器遮挡 */
    body {
        padding-bottom: 110px !important;
    }
}

/* 超小屏幕设备 (iPhone 5/SE 等) */
@media (max-width: 375px) {
    /* 删除这部分，因为header已经隐藏了 */
    /*
    header {
        padding: 10px 12px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    */
    
    .player {
        padding: 10px 12px;
    }
    
    .player-controls {
        gap: 20px;
    }
    
    .control-btn.play-pause {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }
    
    .control-btn.stop-btn,
    .player-controls .share-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    body {
        padding-bottom: 100px !important;
    }
}

/* 横屏模式优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .player {
        flex-wrap: nowrap;
        gap: 15px;
        padding: 8px 12px;
    }
    
    .player-info {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
        order: 1;
        width: auto;
    }
    
    .player-controls {
        width: auto;
        margin-top: 0;
        justify-content: flex-end;
        order: 2;
    }
    
    body {
        padding-bottom: 80px !important;
    }
}

/* 针对矮屏幕设备 */
@media (max-width: 768px) and (max-height: 600px) {
    /* 删除这部分，因为header已经隐藏了 */
    /*
    header {
        padding: 8px 10px;
        margin-bottom: 10px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    */
    
    .player {
        padding: 8px 10px;
    }
    
    .player-info {
        margin-bottom: 8px;
    }
    
    .player-station {
        font-size: 1rem;
        padding: 4px 0;
    }
    
    .player-country {
        font-size: 0.75rem;
    }
    
    .player-controls {
        gap: 15px;
        margin-top: 3px;
    }
    
    .control-btn.play-pause {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    
    .control-btn.stop-btn,
    .player-controls .share-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    body {
        padding-bottom: 90px !important;
    }
}