/* General Setup */
body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Arial Black', sans-serif;
    color: white;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Battle Container */
#parent {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

/* Player Sections */
#user1, #user2 {
    display: flex;
    flex-direction: column; /* Vertical stack for a "command console" look */
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Button Styling (The Game Items) */
button {
    height: 80px;
    width: 80px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0f3460;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Player 1 Colors (Blue Theme) */
#user1 button { border-color: #4ecca3; }
#user1 button:hover { 
    transform: scale(1.1) translateX(10px); 
    background-color: #4ecca3;
    box-shadow: 0 0 20px #4ecca3;
}

/* Player 2 Colors (Red Theme) */
#user2 button { border-color: #e94560; }
#user2 button:hover { 
    transform: scale(1.1) translateX(-10px); 
    background-color: #e94560;
    box-shadow: 0 0 20px #e94560;
}

/* Result Text */
#result {
    margin-top: 50px;
    font-size: 3.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    min-height: 100px;
    text-transform: uppercase;
    
}

/* Image Placeholder styling (if you add <img> tags inside buttons) */
button img {
    width: 60%;
    height: auto;
    pointer-events: none; /* Allows the button to click even if you hit the image */
}
h1{
    margin: 0px;
}
h2{
    margin: 8px;
}
.vs button { border-color: #e94560; }