/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700; /* 金黄色 */
    --secondary-color: #FFA500; /* 橙色 */
    --accent-color: #FF8C00; /* 深橙色 */
    --text-color: #000000; /* 纯黑色文字 */
    --text-color-light: #333333; /* 次要文字颜色 */
    --text-color-dark: #000000; /* 主要文字颜色 */
    --background-color: #FFF8E1; /* 浅黄色背景 */
    --header-bg: #FFE082; /* 头部背景色 */
    --footer-bg: #FFE082; /* 页脚背景色 */
}

body {
    font-family: 'Fredoka One', cursive;
    background-color: var(--background-color);
    color: #000000;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: var(--header-bg);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    text-align: center;
}

.game-logo {
    font-size: 2.5rem;
    color: var(--text-color-dark);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin: 0;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--text-color-dark);
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Fredoka One', cursive;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.lang-btn.active {
    background-color: var(--accent-color);
    color: white;
}

/* Main Content Layout */
main {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 1rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Sidebar - Game Links */
.game-links, .mini-games {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.game-links h2, .mini-games h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.game-links ul {
    list-style: none;
}

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

.game-links a {
    color: var(--text-color-dark);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.game-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Main Game Section */
.main-game {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.game-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 宽高比 */
    margin-bottom: 1rem;
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

.fullscreen-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Fredoka One', cursive;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background-color: var(--secondary-color);
}

/* Game Information Section */
.game-info {
    padding: 1rem;
}

.game-info h2 {
    color: var(--text-color-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.game-info h3 {
    color: var(--text-color-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

/* 游戏截图展示样式 */
.game-screenshots {
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 10px;
    text-align: center;
}

.game-screenshots h3 {
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap; /* 防止换行 */
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto; /* 允许横向滚动 */
    padding: 0.5rem;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--accent-color) var(--background-color); /* Firefox */
}

/* 自定义滚动条样式 */
.screenshots-grid::-webkit-scrollbar {
    height: 8px;
}

.screenshots-grid::-webkit-scrollbar-track {
    background: var(--background-color);
    border-radius: 4px;
}

.screenshots-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.screenshot-item {
    flex: 0 0 300px; /* 固定宽度，不伸缩 */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    width: 100%;
    height: 200px; /* 固定高度 */
    display: block;
    object-fit: cover;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .screenshot-item {
        flex: 0 0 250px; /* 在平板端稍微缩小宽度 */
    }
    
    .screenshot-item img {
        height: 150px; /* 在平板端稍微缩小高度 */
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        flex: 0 0 200px; /* 在手机端进一步缩小宽度 */
    }
    
    .screenshot-item img {
        height: 120px; /* 在手机端进一步缩小高度 */
    }
}

.game-features, .how-to-play, .player-reviews, .faq {
    margin-bottom: 2rem;
    background-color: #221a36;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.game-features h3, .how-to-play h3, .player-reviews h3, .faq h3 {
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
}

.game-features ul, .how-to-play ul {
    list-style: none;
    padding-left: 1rem;
}

.game-features li, .how-to-play li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.game-features li:before, .how-to-play li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.review {
    background-color: #2d2346;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.review p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.review span {
    color: #666;
    font-size: 0.9rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: #34495e;
    margin-bottom: 0.5rem;
}

/* Right Sidebar - Mini Games */
.mini-games {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mini-games h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.mini-game-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.mini-game {
    width: calc(50% - 0.5rem); /* 两列布局，减去间距的一半 */
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.mini-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.game-cover {
    position: relative;
    padding-top: 75%; /* 4:3 比例 */
    background-color: #f5f5f5;
}

.game-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-title {
    padding: 0.8rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color-dark);
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-content a {
    color: var(--text-color-dark);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    main {
        grid-template-columns: 200px 1fr 200px;
    }
    
    .mini-game {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 992px) {
    main {
        grid-template-columns: 1fr;
    }
    
    .game-links, .mini-games {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-logo {
        font-size: 2rem;
    }
    
    .language-selector {
        width: 100%;
        justify-content: center;
    }
    
    .game-screenshots {
        flex-direction: column;
    }
    
    .game-screenshots img {
        width: 100%;
        height: auto;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .game-links, .mini-games {
        background-color: var(--background-color);
    }
    
    .game-links {
        font-size: 0.95rem;
    }
    
    .game-links a {
        font-size: 1rem;
        padding: 0.4rem 0.5rem;
    }
    
    .mini-game {
        width: calc(50% - 0.4rem);
    }
    
    .game-title {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .game-logo {
        font-size: 1.5rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .mini-game {
        width: calc(50% - 0.3rem);
    }
    
    .game-title {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
}

/* Game Description Section */
.game-description {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.game-description p {
    line-height: 1.8;
    color: var(--text-color-dark);
}

/* Game Tips Section */
.game-tips {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.game-tips ul {
    list-style-type: none;
    padding-left: 0;
}

.game-tips li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Game Updates Section */
.game-updates {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.game-updates ul {
    list-style-type: none;
    padding-left: 0;
}

.game-updates li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-updates li:before {
    content: "🔄";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

/* Enhanced How to Play Section */
.how-to-play ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.how-to-play li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.how-to-play li:before {
    content: "🎮";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Enhanced FAQ Section */
.faq-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.faq-item h4:before {
    content: "❓";
    margin-right: 0.5rem;
    color: #e74c3c;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Section Styles */
.why-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.why-section h3 {
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-item h4 {
    color: var(--text-color-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-item p {
    color: var(--text-color-dark);
    line-height: 1.6;
}

/* Game Container Loading State */
.game-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.game-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" fill="none" stroke="%23e74c3c" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"/></circle></svg>') center center no-repeat;
    background-size: 50px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-container.loading::after {
    opacity: 1;
}

/* Mini Game Active State */
.mini-game.active {
    border: 2px solid #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.mini-game.active .game-cover {
    opacity: 0;
}

.mini-game.active iframe {
    opacity: 1;
}

/* Game Title Transition */
.game-info h2 {
    transition: opacity 0.3s ease;
}

.game-info h2.updating {
    opacity: 0;
}

/* 导航栏新字体和图标样式 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

/* 移除主要区域和内容块的边框 */
.game-links,
.mini-games,
.main-game,
.game-features,
.how-to-play,
.player-reviews,
.faq,
.why-section,
.why-item {
    border: none !important;
}

/* 移除标题下划线边框 */
.game-links h2,
.mini-games h2,
.game-info h2,
.why-section h3 {
    border-bottom: none !important;
}

/* 自动检测背景色并适配文字颜色 */
/* 深色背景内容区 */
.game-features,
.how-to-play,
.player-reviews,
.faq,
.why-section {
    color: #f8f8ff !important; /* 浅色文字 */
    background-color: var(--background-color); /* 深色背景 */
}

/* 浅色背景内容区 */
.game-description,
.game-tips,
.game-updates,
.faq-item {
    color: #22223b !important; /* 深色文字 */
    background-color: #f8f9fa; /* 浅色背景 */
}

/* 确保所有标题可见 */
.game-features h3,
.how-to-play h3,
.player-reviews h3,
.faq h3,
.why-section h3 {
    color: #a259f7 !important; /* 亮紫色标题 */
}

.game-description h3,
.game-tips h3,
.game-updates h3 {
    color: #7c3aed !important; /* 深紫色标题，适合浅色背景 */
}

/* 确保FAQ项内容可见 */
.faq-item p {
    color: #22223b !important; /* 深色文字 */
}

/* 确保评论文字可见 */
.review {
    background-color: #2d2346; /* 深色背景 */
}
.review p, .review span {
    color: #f8f8ff !important; /* 浅色文字 */
}

/* Why区域项目内容可见 */
.why-item {
    background-color: white; /* 浅色背景 */
}
.why-item p {
    color: #22223b !important; /* 深色文字 */
}

/* 深色背景内容区用浅色字 */
.dark-block {
    color: #f8f8ff !important;
}

/* 浅色背景内容区用深色字 */
.light-block {
    color: #22223b !important;
}

/* 游戏评分系统样式 */
.game-rating {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
    text-align: center;
}

.rating-stars {
    font-size: 2rem;
    margin: 1rem 0;
}

.star {
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0 0.2rem;
}

.star:hover,
.star.active {
    color: var(--accent-color);
}

.rating-count {
    font-size: 1.2rem;
    color: var(--text-color-dark);
}

.average-rating {
    font-weight: bold;
    color: var(--accent-color);
}

.total-ratings {
    color: var(--text-color-light);
    margin-left: 0.5rem;
}

/* 游戏评论系统样式 */
.game-reviews {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.review-form {
    margin-bottom: 2rem;
}

.review-input {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
}

.submit-review {
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Fredoka One', cursive;
    transition: all 0.3s ease;
}

.submit-review:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.reviews-list {
    margin-top: 2rem;
}

.review-item {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.review-author {
    font-weight: bold;
    color: var(--text-color-dark);
}

.review-date {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.review-content {
    color: var(--text-color-dark);
    line-height: 1.6;
}

.review-rating {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .rating-stars {
        font-size: 1.5rem;
    }
    
    .review-input {
        min-height: 80px;
    }
    
    .submit-review {
        width: 100%;
    }
}

/* 游戏特点样式优化 */
.game-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.game-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.game-features li {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.game-features li:hover {
    transform: translateY(-3px);
}

/* 游戏操作指南样式优化 */
.how-to-play {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.controls-section, .gameplay-tips {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.controls-section h4, .gameplay-tips h4 {
    color: var(--text-color-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.controls-section ul, .gameplay-tips ul {
    list-style: none;
    padding: 0;
}

.controls-section li, .gameplay-tips li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--background-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.controls-section li:hover, .gameplay-tips li:hover {
    background: var(--primary-color);
    color: white;
}

/* 玩家评价样式优化 */
.player-reviews {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

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

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.review-info {
    flex: 1;
}

.player-name {
    font-weight: bold;
    color: var(--text-color-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.rating {
    color: var(--primary-color);
}

.review-text {
    color: var(--text-color-dark);
    line-height: 1.6;
    font-style: italic;
}

/* 为什么玩家喜欢样式 */
.why-players-love {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.love-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.love-point {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.love-point:hover {
    transform: translateY(-5px);
}

.love-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.love-point h4 {
    color: var(--text-color-dark);
    margin-bottom: 0.8rem;
}

.love-point p {
    color: var(--text-color-dark);
    line-height: 1.6;
}

/* FAQ样式优化 */
.faq-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 10px;
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background-color);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-color-dark);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-color-dark);
    line-height: 1.6;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .game-features ul {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .love-points {
        grid-template-columns: 1fr;
    }
    
    .screenshot-container img {
        height: 200px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* 更新所有文字颜色为黑色 */
.game-logo,
.lang-btn,
.game-info h2,
.game-info h3,
.game-description p,
.game-features h3,
.game-features li,
.how-to-play h3,
.controls-section h4,
.gameplay-tips h4,
.controls-section li,
.gameplay-tips li,
.player-reviews h3,
.player-name,
.review-text,
.why-players-love h3,
.love-point h4,
.love-point p,
.faq-section h3,
.faq-question h4,
.faq-answer p,
.game-screenshots h3,
.loading-text,
footer,
.footer-content a,
.rating-count,
.average-rating,
.review-author,
.review-content,
.error-message {
    color: #000000 !important;
}

/* 次要文字使用深灰色 */
.total-ratings,
.review-date {
    color: #333333 !important;
} 