* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #1a1a1a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 20px;
}

.characterContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.characters {
    background: #2c2c2c;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 40%;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.characterContainer > div:nth-child(2) {
    text-align: center;
    margin: 20px 20px;
}

#moveTurn {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.health {
    font-weight: bold;
    margin-top: 10px;
    font-size: 18px;
}

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

.gameMenu button {
    background: #B53324;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.gameMenu button:hover {
    background: #e64c3c;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .characterContainer {
        flex-direction: column;
        align-items: center;
    }

    .characters, 
    .characterContainer > div:nth-child(2) {
        width: 80%;
        margin: 10px 0;
    }

    .gameMenu button {
        width: 100%;
        padding: 14px;
    }
}
