/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* iOS页面专用样式 */
.ios-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
}

.ios-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.ios-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ios-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
}

.ios-download-section {
    margin-bottom: 2rem;
}

.ios-download-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.ios-single-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.ios-btn {
    background: linear-gradient(135deg, #007AFF, #0056b3);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 250px;
    justify-content: center;
}

.ios-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.ios-btn:active {
    transform: translateY(0);
}

.ios-btn .btn-icon {
    font-size: 1.5rem;
}

.ios-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ios-info .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ios-info .info-item:last-child {
    border-bottom: none;
}

.ios-info .info-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.ios-info .info-item strong {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.ios-features {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ios-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.ios-features .feature-list {
    display: grid;
    gap: 1rem;
}

.ios-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ios-features .feature-icon {
    font-size: 1.25rem;
    color: #007AFF;
    width: 24px;
    text-align: center;
}

.ios-features .feature-text {
    flex: 1;
}

.ios-features .feature-text span {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.ios-features .feature-text small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* iOS页面移动端优化 */
@media (max-width: 480px) {
    .ios-container {
        padding: 1rem 0.5rem;
    }
    
    .ios-btn {
        width: 90%;
        max-width: 300px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .ios-info,
    .ios-features {
        margin: 0 0.5rem 1.5rem;
    }
}

/* iOS页面通知样式 */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 122, 255, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 自动安装通知样式 */
.auto-install-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    animation: slideInRight 0.3s ease;
}

.install-notification-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.notification-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-content p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.install-now-btn {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.install-now-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

/* 动画效果 */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 移动端适配 */
@media (max-width: 480px) {
    .auto-install-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .install-notification-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}


.notification.show {
    opacity: 1;
}

:root {
    /* 主题色彩 - 固定暗色主题 */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* 背景色彩 - 固定暗色主题 */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: rgba(30, 41, 59, 0.8);
    
    /* 文本色彩 - 固定暗色主题 */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* 边框色彩 - 固定暗色主题 */
    --border-color: #475569;
    --border-light: #64748b;
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* 动画 */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* 容器样式 */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* 背景动画 */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.gradient-sphere:nth-child(1) {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.gradient-sphere:nth-child(2) {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    top: 50%;
    right: -200px;
    animation-delay: -7s;
}

.gradient-sphere:nth-child(3) {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    bottom: -150px;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

/* 粒子画布 */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* 应用头部 */
.app-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.app-icon img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.app-name {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
    width: 100%;
}

.app-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

/* 版本信息 */
.version-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.version-badge {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.version-number {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* 下载区域 */
.download-section {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.download-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* 下载按钮 */
.download-btn {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
    overflow: hidden;
    font-family: inherit;
}

.download-btn:last-child {
    margin-bottom: 0;
}

.download-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.download-btn.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.download-btn.secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        position: relative;
        z-index: 2;
        text-align: center;
        width: 100%;
    }

.btn-content i {
        font-size: 1.5rem;
        width: 24px;
        text-align: center;
        flex-shrink: 0;
    }

.btn-text {
        text-align: center;
        line-height: 1.2;
    }

    .btn-title {
        display: block;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.125rem;
        text-align: center;
        line-height: 1.2;
    }

    .btn-subtitle {
        display: block;
        font-size: 0.875rem;
        opacity: 0.8;
        text-align: center;
        line-height: 1.2;
    }

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* 文件信息 */
.file-info {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-color);
    width: 16px;
}

/* 进度条 */
.progress-container {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width var(--transition-normal);
    width: 0%;
}

.progress-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* 语言切换器 */
.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}



/* 页脚 */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}



/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0.75rem;
    }
    
    .app-name {
        font-size: 1.5rem; /* 减小标题字号 */
        margin-bottom: 0.5rem;
        text-align: center;
        width: 100%;
    }
    
    .app-subtitle {
        font-size: 0.875rem; /* 减小副标题字号 */
        text-align: center;
        width: 100%;
    }
    
    .download-section {
        padding: 1rem;
        margin: 0 -0.25rem 1.5rem -0.25rem;
    }
    
    .download-btn {
        padding: 0.75rem; /* 减小按钮内边距 */
        min-height: 48px; /* 减小按钮高度 */
    }
    
    .btn-content i {
        font-size: 1.1rem; /* 减小图标尺寸 */
        min-width: 20px;
    }
    
    .btn-title {
        font-size: 0.875rem; /* 减小标题字号 */
    }
    
    .btn-subtitle {
        font-size: 0.75rem; /* 减小副标题字号 */
    }
    
    /* 修复语言切换器位置和大小 */
    .language-switcher {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        gap: 0.25rem;
        z-index: 100;
    }
    
    .lang-btn {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem; /* 减小语言按钮字号 */
        border-radius: 6px;
    }
    
    /* 调整主容器内边距避免遮盖 */
    .main-container {
        padding-top: 2rem; /* 为语言切换器留出空间 */
    }
}

/* 移动端Font Awesome图标优化 */
@media (max-width: 480px) {
    /* 确保Font Awesome图标在移动端显示 */
    .download-btn .btn-content i {
        font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif !important;
        font-weight: 900;
        font-style: normal;
        display: inline-block;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .download-btn .btn-content .fab.fa-apple {
        font-family: 'Font Awesome 6 Brands' !important;
        font-weight: 400;
    }
    
    .download-btn .btn-content .fab.fa-google-play {
        font-family: 'Font Awesome 6 Brands' !important;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    /* 优化整体布局 */
    body {
        font-size: 14px; /* 基础字体大小 */
    }
    
    .app-icon img {
        width: 60px; /* 减小图标尺寸 */
        height: 60px;
        border-radius: 15px;
    }
    
    .icon-glow {
        width: 80px;
        height: 80px;
    }
    
    .app-name {
        font-size: 1.25rem; /* 进一步减小标题 */
        margin-bottom: 0.25rem;
    }
    
    .app-subtitle {
        font-size: 0.8125rem; /* 减小副标题 */
    }
    
    .version-badge {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
    
    .download-section {
        padding: 0.75rem;
        margin: 0 -0.5rem 1rem -0.5rem;
    }
    
    .download-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .file-info {
        padding: 0.75rem;
    }
    
    .file-info h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .info-item {
        font-size: 0.8125rem;
    }
    
    /* 修复：确保所有下载按钮在移动端显示 */
    .download-options {
        display: flex;
        flex-direction: column;
        gap: 0.5rem; /* 减小间距 */
        width: 100%;
    }
    
    .download-btn {
        min-height: 44px; /* 标准触摸目标大小 */
        padding: 0.5rem;
        font-size: 0.8125rem;
        border-radius: 10px; /* 减小圆角 */
    }
    
    .btn-content i {
        font-size: 1rem; /* 标准图标大小 */
        min-width: 18px;
        margin-right: 0.5rem;
    }
    
    .btn-title {
        font-size: 0.8125rem;
        font-weight: 600;
    }
    
    .btn-subtitle {
        font-size: 0.6875rem;
    }
    
    /* 强制显示所有按钮 */
    .download-btn.hidden {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* 确保所有按钮在移动端可见 */
    #appStoreBtn,
    #googlePlayBtn,
    #directDownloadBtn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* 设备不兼容按钮样式 */
    .download-btn[style*="opacity: 0.5"] {
        opacity: 0.6 !important;
        cursor: not-allowed;
        background: var(--bg-secondary) !important;
        border-color: var(--border-color) !important;
    }
    
    .download-btn[style*="pointer-events: none"] .btn-subtitle::after {
        content: " (不可用)";
        font-size: 0.6875rem;
        color: var(--text-muted);
    }
    
    /* 语言切换器移动端优化 */
    .language-switcher {
        position: absolute;
        top: 0.25rem;
        right: 0.25rem;
        gap: 0.125rem;
        display: flex;
        align-items: center;
        z-index: 1000;
    }

    .refresh-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 0.4rem;
        border-radius: 50%;
        cursor: pointer;
        font-size: 0.7rem;
        transition: all 0.3s ease;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .refresh-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(180deg);
    }
    
    .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.6875rem;
        min-width: 2rem;
    }
    
    /* 调整主容器避免遮盖 */
    .main-container {
        padding-top: 1.5rem;
    }
    
    .main-content {
        padding: 0.75rem 0.5rem;
    }
    
    .footer {
        font-size: 0.6875rem;
        padding: 1rem 0.5rem;
    }
}

/* 暗色模式优化 
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
    }
}
*/
/* 动画优化 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .download-btn:hover {
        transform: none;
    }
    
    .download-btn:active {
        transform: scale(0.98);
    }
}

/* 强制浅色主题 - 覆盖深色模式 
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light !important;
    }
    
    html {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    }
    
    body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        color-scheme: light !important;
    }
    
    * {
        background-color: transparent !important;
    }
    
    .force-light-theme {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
    }
    
    .container {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .download-btn {
        background: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
    }
    
    .download-btn:hover {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .lang-btn {
        background: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
    }
    
    .refresh-btn {
        background: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
    }
}*/

/* 微信浏览器专用修复 */
@media (max-width: 480px) {
    .wechat-fix {
        text-align: center !important;
    }
    
    .wechat-fix .container {
        margin: 0 auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .wechat-fix .download-options {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }
    
    .wechat-fix .download-btn {
        width: 90% !important;
        max-width: 320px !important;
        min-width: 280px !important;
        margin: 0.75rem auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    .wechat-fix .app-icon {
        margin: 0 auto 1.5rem !important;
        display: block !important;
    }
    
    .wechat-fix h1,
    .wechat-fix .subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}