/* 卡片组容器 */
.game-info-card-group {
    margin: 20px 0;
}

/* 卡片网格（电脑版2列，手机版1列） */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 单个卡片 */
.game-card {
    background: #e6e6e6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.game-card:hover {
    transform: translateY(-2px);
}

/* 卡片标签 */
.card-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

/* 卡片内容 */
.card-value {
    font-size: 16px;
    font-weight: 800;
}

/* 可折叠卡片：触发按钮 - 已移除下划线 */
.collapsible-card .card-toggle {
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
    /* 移除下划线 */
    text-decoration: none;
    transition: color 0.2s ease;
}

/* 可折叠内容样式 */
.collapsible-card .card-content {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* 内容中的HTML元素样式 */
.card-content p {
    margin: 0 0 10px 0;
}

.card-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 4px;
}

.card-content ul, .card-content ol {
    margin: 10px 0;
    padding-left: 20px;
}

/* 包含图片的卡片调整 */
.game-card.has-image {
    padding-bottom: 20px;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .game-cards-grid {
        grid-template-columns: 1fr;
    }
}
    