body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

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

.score-board {
    margin-bottom: 20px;
    font-size: 24px;
}

.arena {
    width: 400px;
    height: 300px;
    border: 4px solid #333;
    position: relative;
    background-color: #fff;
    margin: 0 auto 20px;
}

.character {
    width: 32px;
    height: 48px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    transform: scale(1.5);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myy {
    background-color: pink;
    border: 2px solid #ff69b4;
    border-radius: 4px;
}

.myy::after {
    content: '👧';
}

.zpp {
    background-color: lightblue;
    border: 2px solid #4169e1;
    border-radius: 4px;
}

.zpp::after {
    content: '👦';
}

.punch {
    position: absolute;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.punch::after {
    content: '👊';
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.direction-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horizontal-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    border: 2px solid #333;
    border-radius: 8px;
    cursor: pointer;
    background-color: white;
}

.attack-button {
    width: 60px;
    height: 60px;
    font-size: 32px;
    align-self: center;
}

button:active {
    background-color: #ddd;
}

@keyframes float-up {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.keyboard-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.key-row {
    display: flex;
    gap: 5px;
}

.key-row button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    background-color: #f0f0f0;
    border: 2px solid #333;
    border-radius: 8px;
    cursor: pointer;
}

.key-row button:active {
    background-color: #ddd;
}

.keyboard-hint {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.attack-button {
    width: 60px;
    height: 60px;
    font-size: 32px;
    align-self: center;
    margin-left: 20px;
} 