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

body {
    font-family: 'Courier New', monospace;
    background-color: #1a1a1a;
    color: #fff;
    overflow: hidden;
}

#game-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 10px;
    position: relative;
}

#win-tally {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    background-color: rgba(42, 42, 42, 0.9);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

#win-tally div {
    margin: 5px 0;
}

#ninja-wins {
    color: #9b59b6;
}

#cowboy-wins {
    color: #c0392b;
}

#alive-count {
    font-size: 14px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #555;
}

#ninjas-alive {
    color: #9b59b6;
}

#cowboys-alive {
    color: #c0392b;
}

#toggle-controls-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background-color: #333;
    padding: 8px 16px;
    font-size: 14px;
}

#controls {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

#controls.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0 15px;
    margin-bottom: 0;
}

h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: #ff6b6b;
}

#config-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.config-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.config-group label {
    font-size: 14px;
    color: #aaa;
    white-space: nowrap;
}

.config-group input[type="number"] {
    width: 70px;
    padding: 5px 8px;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #357abd;
}

#reset-btn {
    background-color: #e24a4a;
    margin-left: 10px;
}

#reset-btn:hover {
    background-color: #c93a3a;
}

#status {
    margin-top: 15px;
    text-align: center;
}

#game-status {
    font-size: 18px;
    font-weight: bold;
    color: #4af;
}

#score {
    margin-top: 5px;
    font-size: 16px;
}

#ninjas-alive {
    color: #9b59b6;
    font-weight: bold;
}

#cowboys-alive {
    color: #e67e22;
    font-weight: bold;
}

#game-canvas {
    flex: 1;
    background-color: #e8d4b0;
    border: 3px solid #4a4a4a;
    border-radius: 8px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
