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

:root {
    --primary-purple: #2D1B69;
    --primary-gold: #FFD700;
    --dark-blue: #0A1929;
    --accent-purple: #6B46C1;
    --text-light: #F7FAFC;
    --text-gray: #A0AEC0;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-purple) 100%);
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* 容器布局 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 - 非sticky设计 */
header {
    background: rgba(10, 25, 41, 0.95);
    border-bottom: 2px solid var(--primary-gold);
    padding: 20px 0;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

nav a:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
    color: var(--dark-blue);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-gray);
    margin: 0 8px;
}

/* 主横幅区域 */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    margin: 30px 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 25, 41, 0.9) 0%, rgba(45, 27, 105, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 30px;
}

/* 视频模块 */
.video-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-title {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button::after {
    content: '▶';
    font-size: 32px;
    color: var(--dark-blue);
    margin-left: 5px;
}

/* 游戏卡片网格 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
}

.game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.game-content {
    padding: 25px;
}

.game-title {
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.game-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.game-button:hover {
    transform: scale(1.05);
}

/* 文章列表 */
.articles-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.article-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.article-meta {
    color: var(--text-gray);
    font-size: 14px;
}

.article-title {
    font-size: 20px;
    color: var(--primary-gold);
    margin: 10px 0;
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.7;
}

/* 下载模块 */
.download-section {
    margin: 50px 0;
    padding: 50px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.3) 0%, rgba(45, 27, 105, 0.3) 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.qr-code-wrapper {
    text-align: center;
}

.qr-code-image {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.download-platforms {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.platform-icon {
    font-size: 48px;
}

.platform-info h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 8px;
}

/* 关于我们 */
.about-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.about-content {
    font-size: 17px;
    line-height: 2;
    color: var(--text-light);
}

.about-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.about-content h3 {
    color: var(--primary-gold);
    font-size: 24px;
    margin: 30px 0 15px 0;
}

/* 支付方式 */
.payment-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.payment-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

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

.payment-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-item h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* 牌照信息 */
.license-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-align: center;
}

.license-badge {
    width: 200px;
    height: 200px;
    margin: 30px auto;
    display: block;
}

.license-info {
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ部分 */
.faq-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

details {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-gold);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 用户评论 */
.reviews-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-name {
    font-weight: bold;
    color: var(--primary-gold);
}

.reviewer-level {
    background: rgba(255, 215, 0, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
}

.rating {
    color: var(--primary-gold);
    font-size: 18px;
}

.review-content {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.review-date {
    color: var(--text-gray);
    font-size: 14px;
}

/* 充值活动模块 */
.promotion-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.promotion-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-title {
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.promotion-amount {
    font-size: 36px;
    color: #FFA500;
    font-weight: bold;
    margin: 20px 0;
}

/* 页脚 */
footer {
    background: rgba(10, 25, 41, 0.95);
    padding: 50px 0 20px 0;
    margin-top: 80px;
    border-top: 2px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.age-restriction {
    display: inline-block;
    background: #DC2626;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin: 20px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-overlay {
        padding: 0 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
}

/* 内页样式 */
.page-header {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 30px 0;
}

.page-title {
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.content-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.content-section h2 {
    color: var(--primary-gold);
    font-size: 28px;
    margin: 30px 0 20px 0;
}

.content-section h3 {
    color: var(--primary-gold);
    font-size: 22px;
    margin: 25px 0 15px 0;
}

.content-section p {
    line-height: 2;
    margin-bottom: 20px;
    text-indent: 2em;
}

.content-section ul {
    margin: 20px 0 20px 40px;
    line-height: 2;
}

.content-section li {
    margin-bottom: 10px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-card h4 {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 12px;
}

.content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 客户支持 */
.support-section {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.support-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border: 1px solid var(--primary-gold);
}

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

.support-card h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}
