/* 超级马里奥游戏特有样式 - 基于统一标准 */

/* 马里奥游戏特色标题 */
.game-container h1 {
    background: linear-gradient(45deg, #e17055, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 平台跳跃游戏背景 */
.game-canvas {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border: 3px solid #fdcb6e;
}

/* 马里奥游戏特有的状态显示 */
.mario-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.mario-stats .status-item {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-left: 4px solid #e17055;
}

.mario-stats .status-value {
    color: #e17055;
}

/* 游戏控制提示 */
.game-tips {
    background: linear-gradient(135deg, #a8e6cf 0%, #7fcdcd 100%);
    border-left: 4px solid #00b894;
}

.game-tips h3 {
    color: #00695c;
}

.game-tips li {
    color: #00695c;
}

.game-tips li::before {
    color: #00b894;
}