/* ==================== 通用页面样式（用于thethao, songbai等页面） ==================== */
.page-hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-radius: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-hero .icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.content-section {
    padding: 30px 20px;
}

.content-box {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.content-box h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffd700;
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    font-size: 16px;
    color: #fff;
}

.features-list li::before {
    content: '✓ ';
    color: #ffd700;
    font-weight: 900;
    margin-right: 10px;
}

.games-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 25px 0;
}

.game-item {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.game-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.game-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffd700;
}

.game-item p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.6;
}

.image-section {
    margin: 30px 0;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-radius: 25px;
    padding: 40px 25px;
    margin: 30px 20px;
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.4);
}

.cta-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffd700;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.7;
}

.cta-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #0a0e27;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.8);
}

.ad-banner {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 25px 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.ad-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.ad-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.ad-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
}

.ad-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* 移动端优化 */
@media (max-width: 767px) {
    .page-hero {
        padding: 30px 15px;
        margin: 15px 0;
    }
    
    .page-hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .page-hero .icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .page-hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .content-box h2 {
        font-size: 20px;
    }
    
    .cta-section {
        padding: 25px 15px;
        margin: 20px 15px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 48px;
    }
    
    .games-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== Download页面专用样式 ==================== */
.download-top-btn {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.download-top-btn .btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #0a0e27;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-top-btn .btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.8);
}

.download-hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-radius: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.download-hero .icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.download-hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.download-hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.rating-section {
    text-align: center;
    padding: 30px 20px;
    margin: 30px 0;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.rating-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffd700;
}

.rating-stars {
    font-size: 32px;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffd700;
}

.feature-desc {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.6;
}

.app-screenshot {
    text-align: center;
    margin: 30px 0;
}

.app-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.download-buttons {
    text-align: center;
    margin: 30px 0;
}

.download-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #0a0e27;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.8);
}

/* Download页面移动端优化 */
@media (max-width: 767px) {
    .download-hero {
        padding: 30px 15px;
        margin: 15px 0;
    }
    
    .download-hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .download-hero .icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .download-hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .rating-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .rating-title {
        font-size: 20px;
    }
    
    .download-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .download-hero h1 {
        font-size: 48px;
    }
    
    .app-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

