body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    font-family: 'Impact', sans-serif;
}

#game-container {
    width: 100vw;
    height: 100vh;
}

#ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#health-bars {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    align-items: flex-start;
}

.fighter-hud {
    width: 400px;
}

.name {
    color: white;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0 #000;
}

.bar-container {
    width: 100%;
    height: 25px;
    background: #222;
    border: 2px solid #555;
    position: relative;
}

.bar {
    width: 100%;
    height: 100%;
    background: #00ff44; /* Bright Green */
    box-shadow: 0 0 10px #00ff44;
    transition: width 0.1s;
}

.right .bar {
    background: #00ff44;
    float: right;
}

.right .name {
    text-align: right;
}

/* Center Timer Box */
#timer-box {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00;
    color: black;
    padding: 5px 20px;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid white;
}

#controls-hint {
    text-align: center;
    color: #444;
    padding-bottom: 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}
