/* Koyso游戏平台 - 主样式文件 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.hdr-9x2k {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-7m3p {
    padding: 0 2rem;
}

.nav-container-4k8j {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-section-2n5q {
    display: flex;
    align-items: center;
}


.site-title-6p9m {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu-5t7w {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link-3x8k {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-3x8k:hover {
    color: var(--text-primary);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.mobile-toggle-1q4z {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-toggle-1q4z:hover {
    background: rgba(37, 99, 235, 0.1);
}

.main-content-9r5t {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.hero-section-8k2m {
    padding: 4rem 2rem;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%),
        url('../images/1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-section-8k2m::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(1px);
}

.hero-container-7j3n {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.game-info-panel-4w6x {
    space-y: 2rem;
    width: 100%;
    max-width: 1000px;
}

.game-header-5z8p {
    margin-bottom: 2rem;
}


.game-title-info-3n9k {
    flex: 1;
}

.game-title-1x5r {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-icon-inline-8h2m {
    color: var(--accent-color);
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.game-tags-6p4w {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item-9k3j {
    background: rgba(124, 58, 237, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-description-7m2x {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.desc-text-4k9p {
    color: #f1f5f9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.download-section-3x7k {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.button-group-4k8j {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}

.download-btn-primary-8m4q {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    height: 56px;
}

.download-btn-primary-8m4q:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.explore-btn-secondary-7m3k {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    min-width: 180px;
    height: 56px;
}

.explore-btn-secondary-7m3k:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-info-5n2w {
    display: flex;
    gap: 2rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    justify-content: center;
    margin-top: 1rem;
}


.content-section-4k7m {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.content-container-8j5n {
    max-width: 1000px;
    margin: 0 auto;
}

.game-article-3x9p {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.section-title-7m2k {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title-7m2k i {
    color: var(--accent-color);
}

.article-content-5w8j {
    space-y: 1.5rem;
}

.content-paragraph-9k4x {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-image-container-2n7m {
    margin: 2rem 0;
    text-align: center;
}

.feature-image-6k3p {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.sub-title-4m8x {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list-7j2k {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-item-5n9w {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-item-5n9w:last-child {
    border-bottom: none;
}

.feature-item-5n9w strong {
    color: var(--accent-color);
}

.reviews-section-5k9m {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.guides-section-6m9k,
.news-section-3x8k {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.section-container-4j7x {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid-8j4p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guides-grid-8k3p,
.news-grid-7m4p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card-3m7k {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.review-card-3m7k:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.review-header-9n5x {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar-2k8j {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-info-6p3w {
    flex: 1;
}

.user-name-7m2k {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.review-rating-4k9j {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-filled {
    color: var(--accent-color);
    font-size: 1rem;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.review-content-8j5n {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date-3k7m {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: right;
}

.guide-card-5n7w,
.news-card-9k6x {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.guide-card-5n7w:hover,
.news-card-9k6x:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.guide-title-2m9x,
.news-title-5j8n {
    margin-bottom: 1rem;
}

.guide-link-4k8j,
.news-link-2m7q {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guide-link-4k8j:hover,
.news-link-2m7q:hover {
    color: var(--accent-color);
}

.guide-excerpt-7j3n,
.news-excerpt-4k9p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-meta-9p5x,
.news-meta-8j3x {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.news-category-7k5m {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.reviews-stats-7k3m {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stats-container-9j5n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item-2m8k {
    background: var(--bg-card);
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item-2m8k:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-number-6p4w {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-3k7j {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.footer-8k3m {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('../images/2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1rem;
    position: relative;
}

.footer-container-5j7n {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content-9p4x {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section-2m8k {
    space-y: 1rem;
}

.footer-left-section-7k3m {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-title-6j3n {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-text-4k7m {
    color: #e2e8f0;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.footer-list-3k7m {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-3k7m li {
    color: #cbd5e1;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-list-3k7m li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.contact-info-8j4k {
    margin-top: 0.5rem;
}

.contact-item-5m3k {
    color: #cbd5e1;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-download-btn-7k3m {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-download-btn-7k3m:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}


.footer-bottom-8j5k {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.copyright-text-4m7x {
    color: #94a3b8;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
    .footer-content-9p4x {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-left-section-7k3m {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu-5t7w {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu-5t7w.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-toggle-1q4z {
        display: block;
    }
    
    .hero-container-7j3n {
        text-align: center;
        padding: 0 1rem;
    }
    
    .game-description-7m2x {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-title-1x5r {
        font-size: 2rem;
    }
    
    .game-header-5z8p {
        text-align: center;
    }
    
    .game-tags-6p4w {
        justify-content: center;
    }
    
    .reviews-grid-8j4p,
    .guides-grid-8k3p,
    .news-grid-7m4p {
        grid-template-columns: 1fr;
    }
    
    .stats-container-9j5n {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number-6p4w {
        font-size: 2rem;
    }
    
    
    .game-article-3x9p {
        padding: 2rem;
    }
    
    .nav-7m3p {
        padding: 0 1rem;
    }
    
    .hero-section-8k2m {
        padding: 2rem 1rem;
        background-attachment: scroll;
    }
    
    
    .content-section-4k7m,
    .guides-section-6m9k,
    .news-section-3x8k {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .game-title-1x5r {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    
    .button-group-4k8j {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .download-btn-primary-8m4q,
    .explore-btn-secondary-7m3k {
        width: 100%;
        min-width: auto;
        justify-content: center;
    }
    
    .download-info-5n2w {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-content-9p4x {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-left-section-7k3m {
        gap: 1.5rem;
    }
    
    .footer-download-btn-7k3m {
        width: 100%;
        justify-content: center;
    }
    
    .footer-8k3m {
        background-attachment: scroll;
    }
    
    .section-title-7m2k {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .stats-container-9j5n {
        grid-template-columns: 1fr;
    }
    
    .stat-number-6p4w {
        font-size: 1.8rem;
    }
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
