/* 全新的CSS设计 - 采用完全不同的布局和配色方案 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C41E3A;
    --primary-gold: #FFD700;
    --dark-burgundy: #5C0A1F;
    --light-cream: #FFF8E7;
    --accent-purple: #8B4789;
    --text-dark: #2C1810;
    --text-light: #F5F5F5;
    --gradient-main: linear-gradient(135deg, #C41E3A 0%, #8B4789 50%, #5C0A1F 100%);
    --shadow-soft: 0 8px 32px rgba(92, 10, 31, 0.15);
    --shadow-strong: 0 12px 48px rgba(92, 10, 31, 0.3);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

/* 独特的容器布局 */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 全新的导航设计 - 非sticky */
.site-header {
    background: var(--gradient-main);
    padding: 25px 0;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* 独特的导航菜单设计 */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav a {
    display: block;
    padding: 12px 24px;
    color: var(--text-light);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.main-nav a:hover {
    background: var(--primary-gold);
    color: var(--dark-burgundy);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-dark);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin: 20px 0;
    padding-left: 20px;
}

.breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Hero区域 - 全新设计 */
.hero-section {
    position: relative;
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(92, 10, 31, 0.9), transparent);
    padding: 40px;
    color: var(--text-light);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

/* 内容区域 - 采用卡片式布局 */
.content-section {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin: 30px 0;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--primary-gold);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-purple);
    margin: 30px 0 20px;
}

.content-text {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

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

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-gold);
}

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

.game-info {
    padding: 25px;
}

.game-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.game-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.game-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-main);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4);
}

/* 特色图片展示 */
.feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    margin: 30px auto;
    display: block;
    box-shadow: var(--shadow-soft);
}

/* 列表样式 */
.styled-list {
    list-style: none;
    margin: 25px 0;
}

.styled-list li {
    padding: 15px 20px;
    margin: 12px 0;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.15), transparent);
    border-left: 5px solid var(--primary-gold);
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.styled-list li:hover {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.25), transparent);
    transform: translateX(8px);
}

/* FAQ区域 */
.faq-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE4B5 100%);
    border-radius: 16px;
    padding: 50px;
    margin: 40px 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-purple);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
}

/* 评论区域 */
.reviews-section {
    margin: 40px 0;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-gold);
}

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

.reviewer-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

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

.review-location {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.review-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.review-date {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* 支付方式展示 */
.payment-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #2C1810 0%, #5C0A1F 100%);
    border-radius: 16px;
    margin: 40px 0;
}

.payment-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* 牌照展示 */
.license-section {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: var(--shadow-soft);
}

.license-badge {
    width: 250px;
    height: auto;
    margin: 20px auto;
    display: block;
}

/* CTA按钮 */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gradient-main);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.3);
    border: 3px solid var(--primary-gold);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 36px rgba(196, 30, 58, 0.5);
}

/* 页脚设计 */
.site-footer {
    background: linear-gradient(135deg, #2C1810 0%, #5C0A1F 100%);
    color: var(--text-light);
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

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

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

.footer-section li {
    margin: 12px 0;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 15px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.footer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* 加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* 强调文本 */
.highlight-text {
    color: var(--primary-red);
    font-weight: 700;
}

.gold-text {
    color: var(--primary-gold);
    font-weight: 700;
}

/* 信息框 */
.info-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 71, 137, 0.1));
    border-left: 5px solid var(--primary-red);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-left: 5px solid #FF8C00;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}
