/* 逮喵喵玩法介绍页面特定样式 */

/* 游戏规则部分 */
.game-rules {
    padding: 60px 0;
    background-color: #fff;
}

/* 上部分：游戏故事情节和主界面截图 */
.game-top-section {
    margin-bottom: 50px;
}

.game-story {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.game-story h3 {
    font-size: 1.8rem;
    color: #0078d4;
    margin-bottom: 20px;
}

.game-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.game-main-screenshot {
    text-align: center;
    margin: 0 auto;
}

.game-main-screenshot img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.game-main-screenshot img:hover {
    transform: scale(1.02);
}

/* 中间部分：猫的品种展示 */
.cat-breeds-section {
    margin-bottom: 50px;
}

.cat-breeds-section h3 {
    font-size: 1.8rem;
    color: #0078d4;
    margin-bottom: 30px;
    text-align: center;
}

.cat-breeds-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.cat-breed-item {
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.cat-breed-image {
    height: 200px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cat-breed-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

/* 下部分：我的家乡和排名截图 */
.game-bottom-section {
    margin-bottom: 50px;
}

.game-bottom-section h3 {
    font-size: 1.8rem;
    color: #0078d4;
    margin-bottom: 30px;
    text-align: center;
}

.game-features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.feature-item {
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-image {
    height: 200px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cat-breeds-container, .game-features-container {
        gap: 20px;
    }
    
    .cat-breed-item, .feature-item {
        width: 160px;
    }
    
    .cat-breed-image, .feature-image {
        height: 160px;
    }
    
    .game-main-screenshot img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .cat-breeds-container, .game-features-container {
        gap: 15px;
    }
    
    .cat-breed-item, .feature-item {
        width: 140px;
    }
    
    .cat-breed-image, .feature-image {
        height: 140px;
    }
    
    .game-main-screenshot img {
        width: 200px;
        height: 200px;
    }
}