/* ==================== 通用页面样式（用于thethao, songbai等页面）- VN11 模板 ==================== */

/* 导入文章页样式，让所有页面都能使用 minimal-layout 的样式 */
@import url('article.css');
.page-hero {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

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

.page-hero p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.content-box {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.content-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #a78bfa;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
}

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

.features-list li {
    padding: 18px 20px;
    margin-bottom: 15px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.6;
}

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

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

.game-item {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-item:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    background: rgba(30, 41, 59, 0.8);
}

.game-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #a78bfa;
}

.game-item p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}

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

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: 16px;
    padding: 50px 30px;
    margin: 40px 20px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #a78bfa;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e2e8f0;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.7);
}

.ad-banner {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 20px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.ad-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ad-text {
    font-size: 18px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 20px;
}

.ad-btn {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
}

.ad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.5);
}

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

@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: 0 0 30px 0;
    margin-bottom: 0;
}

.download-top-btn .btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-top-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.7);
}

.download-hero {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.3);
}


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

.download-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.download-hero p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.rating-section {
    text-align: center;
    padding: 40px 25px;
    margin: 40px 0;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.rating-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #a78bfa;
}

.rating-stars {
    font-size: 36px;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 20px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 12px;
}

.rating-count {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    background: rgba(30, 41, 59, 0.8);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #a78bfa;
}

.feature-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}

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

.app-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.download-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.7);
}

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

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

