* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #111;
    color: #eee;
}

.page_title {
    padding: 10px;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: white;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00ff88;
}

.nav a.active {
    color: #00ff88;
}

/* 📱 Адаптив */
@media (max-width: 700px) {
    .nav ul {
        flex-direction: column;
        background-color: #1a1a1a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
        padding: 20px;
    }

    .nav.active ul {
        display: flex;
    }

    .header {
        position: relative;
    }
}

.page_title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

#player_panel_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#player_container {
    display: flex;
    justify-content: center;
}

#enemy_container {
    display: flex;
    justify-content: center;
}

#player_field {
    border: 3px solid yellowgreen;
    border-radius: 5px;
}

#enemy_field {
    border: 3px solid red;
    border-radius: 5px;
}