/* Temp17 模板 - 扩展网格布局 + 深蓝紫配色 */
/* 类名前缀: 随机后缀 */

/* CSS变量 */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #8b5cf6;
    --purple-color: #7c3aed;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --card-gap: 2rem;
    --nav-height: 80px;
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-size: 500px 500px;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 进度指示器 */
.progress-indicator-x1p8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--bg-gradient);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* 浮动导航栏 */
.floating-nav-x1p8 {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-nav-x1p8:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateX(-50%) translateY(-2px);
}

.nav-container-x1p8 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand-x1p8 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img-x1p8 {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.nav-logo-text-x1p8 {
    font-size: 1.125rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu-x1p8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item-x1p8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item-x1p8::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-item-x1p8:hover::before,
.nav-item-x1p8.active::before {
    left: 0;
}

.nav-item-x1p8:hover,
.nav-item-x1p8.active {
    color: var(--text-white);
    transform: translateY(-2px);
}

.nav-item-x1p8 i {
    font-size: 1rem;
}

/* 移动端导航按钮 */
.mobile-toggle-x1p8 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-line-x1p8 {
    width: 1.25rem;
    height: 2px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: all 0.3s ease;
}

.mobile-toggle-x1p8.active .toggle-line-x1p8:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle-x1p8.active .toggle-line-x1p8:nth-child(2) {
    opacity: 0;
}

.mobile-toggle-x1p8.active .toggle-line-x1p8:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端导航菜单 */
.mobile-nav-overlay-x1p8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay-x1p8.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content-x1p8 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 400px;
    background: var(--bg-secondary);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s ease;
}

.mobile-nav-overlay-x1p8.active .mobile-nav-content-x1p8 {
    transform: translate(-50%, -50%) scale(1);
}

.mobile-nav-header-x1p8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-title-x1p8 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-nav-close-x1p8 {
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-close-x1p8:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.mobile-nav-links-x1p8 {
    padding: 1rem;
}

.mobile-nav-link-x1p8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-link-x1p8:hover {
    background: var(--bg-gradient);
    color: var(--text-white);
}

.mobile-nav-link-x1p8 i {
    font-size: 1.125rem;
    width: 1.25rem;
}

/* 主要内容容器 */
.main-container-x1p8 {
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: var(--card-gap);
    grid-template-columns: 1fr;
}

/* 卡片通用样式 */
.hero-card-x1p8,
.intro-card-x1p8,
.guide-card-x1p8,
.download-card-x1p8 {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.hero-card-x1p8:hover,
.intro-card-x1p8:hover,
.guide-card-x1p8:hover,
.download-card-x1p8:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

/* 英雄卡片 */
.hero-card-x1p8 {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-hero);
    opacity: 0.1;
    z-index: 1;
}

.hero-mesh-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px, 200px 200px;
    animation: mesh-float 20s ease-in-out infinite;
}

@keyframes mesh-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-orbs-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    background-size: 150px 150px, 200px 200px, 100px 100px;
    animation: orbs-drift 15s ease-in-out infinite;
}

@keyframes orbs-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

.hero-content-x1p8 {
    position: relative;
    z-index: 2;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-info-x1p8 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-status-x1p8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.status-badge-x1p8 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.rating-stars-x1p8 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--warning-color);
    font-size: 0.875rem;
}

.rating-text-x1p8 {
    margin-left: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.game-title-x1p8 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-subtitle-x1p8 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.game-tags-x1p8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.game-tag-x1p8 {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-actions-x1p8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-x1p8 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-gradient);
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-x1p8::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-x1p8:hover::before {
    left: 100%;
}

.btn-primary-x1p8:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-secondary-x1p8 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary-x1p8:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-image-x1p8 {
    position: relative;
}

.image-container-x1p8 {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.image-container-x1p8:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.cover-image-x1p8 {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow-x1p8 {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--bg-gradient);
    border-radius: 1.5rem;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.image-container-x1p8:hover .image-glow-x1p8 {
    opacity: 0.3;
}

.image-frame-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: frame-shine 3s ease-in-out infinite;
}

@keyframes frame-shine {
    0% { background-position: -200% -200%; }
    50% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}


/* 卡片头部通用样式 */
.card-header-x1p8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.card-icon-x1p8 {
    width: 3rem;
    height: 3rem;
    background: var(--bg-gradient);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.card-title-x1p8 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-decoration-x1p8 {
    flex: 1;
    height: 2px;
    background: var(--bg-gradient);
    border-radius: 1px;
    margin-left: 1rem;
}

.card-content-x1p8 {
    padding: 0 2rem 2rem;
}

/* 介绍卡片 */
.intro-text-x1p8 {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 2rem;
}

.intro-highlights-x1p8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item-x1p8 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

.highlight-item-x1p8 i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.highlight-item-x1p8 span {
    color: var(--text-primary);
    font-weight: 500;
}

/* 攻略卡片 */
.guide-content-x1p8 {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.guide-content-x1p8 h1,
.guide-content-x1p8 h2,
.guide-content-x1p8 h3,
.guide-content-x1p8 h4,
.guide-content-x1p8 h5,
.guide-content-x1p8 h6 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-content-x1p8 h1 {
    font-size: 2rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-content-x1p8 h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.guide-content-x1p8 h3 {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.guide-content-x1p8 p {
    margin-bottom: 1rem;
}

.guide-content-x1p8 ul,
.guide-content-x1p8 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.guide-content-x1p8 li {
    margin-bottom: 0.5rem;
}

.guide-content-x1p8 blockquote {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.guide-content-x1p8 code {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.guide-content-x1p8 pre {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.guide-content-x1p8 pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.guide-content-x1p8 img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
}

/* 下载卡片 */
.download-card-x1p8 {
    position: relative;
    background: var(--bg-hero);
    color: var(--text-white);
    overflow: hidden;
}

.download-bg-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.download-waves-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(139, 92, 246, 0.1) 50%, transparent 60%);
    background-size: 200px 200px, 250px 250px;
    animation: waves-flow 10s ease-in-out infinite;
}

@keyframes waves-flow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

.download-sparkles-x1p8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 65% 85%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
    animation: sparkles-twinkle 8s ease-in-out infinite;
}

@keyframes sparkles-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.download-content-x1p8 {
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
}

.download-header-x1p8 {
    margin-bottom: 2.5rem;
}

.download-icon-x1p8 {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.download-title-x1p8 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-desc-x1p8 {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.download-action-x1p8 {
    margin-bottom: 2.5rem;
}

.btn-download-x1p8 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-download-x1p8::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-download-x1p8:hover::before {
    left: 100%;
}

.btn-download-x1p8:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-icon-x1p8 {
    font-size: 1.25rem;
}

.btn-text-x1p8 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text-x1p8 strong {
    font-size: 1.125rem;
}

.btn-text-x1p8 small {
    font-size: 0.875rem;
    opacity: 0.8;
}

.btn-arrow-x1p8 {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-download-x1p8:hover .btn-arrow-x1p8 {
    transform: translateX(5px);
}

.download-stats-x1p8 {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item-x1p8 {
    text-align: center;
}

.stat-number-x1p8 {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-x1p8 {
    font-size: 0.875rem;
    opacity: 0.8;
}

.download-badges-x1p8 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-item-x1p8 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item-x1p8 i {
    color: var(--warning-color);
}

/* 页脚 */
.footer-section-x1p8 {
    background: var(--bg-dark);
    color: var(--text-white);
    margin-top: 4rem;
}

.footer-container-x1p8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-brand-x1p8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-x1p8 {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    object-fit: cover;
}

.footer-title-x1p8 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle-x1p8 {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-social-x1p8 {
    display: flex;
    gap: 1rem;
}

.social-link-x1p8 {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-x1p8:hover {
    background: var(--bg-gradient);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-section-title-x1p8 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links-x1p8 {
    list-style: none;
}

.footer-links-x1p8 li {
    margin-bottom: 0.5rem;
}

.footer-link-x1p8 {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-x1p8:hover {
    color: var(--primary-color);
}

.friend-link-x1p8::before {
    content: "🔗";
    margin-right: 0.5rem;
}

.footer-bottom-x1p8 {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text-x1p8 {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-content-x1p8 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image-x1p8 {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .floating-nav-x1p8 {
        top: 0.5rem;
        left: 1rem;
        right: 1rem;
        transform: none;
        border-radius: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .nav-container-x1p8 {
        gap: 1rem;
        justify-content: space-between;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle-x1p8 {
        display: flex;
    }
    
    .main-container-x1p8 {
        padding: calc(var(--nav-height) + 1rem) 1rem 1rem;
        gap: 1.5rem;
    }
    
    .hero-content-x1p8 {
        padding: 2rem;
    }
    
    .game-title-x1p8 {
        font-size: 2.5rem;
    }
    
    .game-status-x1p8 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .card-header-x1p8 {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .card-content-x1p8 {
        padding: 0 1.5rem 1.5rem;
    }
    
    .download-content-x1p8 {
        padding: 2rem;
    }
    
    .download-stats-x1p8 {
        gap: 2rem;
    }
    
    .download-badges-x1p8 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content-x1p8 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .floating-nav-x1p8 {
        top: 0.25rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem;
    }
    
    .nav-brand-x1p8 {
        gap: 0.5rem;
    }
    
    .nav-logo-img-x1p8 {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .nav-logo-text-x1p8 {
        font-size: 1rem;
    }
    
    .main-container-x1p8 {
        padding: calc(var(--nav-height) + 0.5rem) 0.5rem 0.5rem;
        gap: 1rem;
    }
    
    .hero-content-x1p8 {
        padding: 1.5rem;
    }
    
    .game-title-x1p8 {
        font-size: 2rem;
    }
    
    .game-subtitle-x1p8 {
        font-size: 1.125rem;
    }
    
    .hero-actions-x1p8 {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-x1p8,
    .btn-secondary-x1p8 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .card-header-x1p8 {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .card-decoration-x1p8 {
        width: 4rem;
        margin: 0 auto;
    }
    
    .card-content-x1p8 {
        padding: 0 1rem 1rem;
    }
    
    .card-title-x1p8 {
        font-size: 1.5rem;
    }
    
    .download-content-x1p8 {
        padding: 1.5rem;
    }
    
    .download-title-x1p8 {
        font-size: 2rem;
    }
    
    .btn-download-x1p8 {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .download-stats-x1p8 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guide-content-x1p8 {
        font-size: 1rem;
    }
    
    .intro-highlights-x1p8 {
        gap: 0.75rem;
    }
    
    .highlight-item-x1p8 {
        padding: 0.75rem;
    }
}
