/* style.css */
body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1000;
}

#teamSelection {
    background-color: rgba(0, 0, 0, 0.8);
}

.hidden {
    display: none;
}

.team-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.team-btn {
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.team-btn:hover {
    transform: scale(1.1);
}

.team-btn.red {
    background-color: #ff4444;
    color: white;
}

.team-btn.blue {
    background-color: #4444ff;
    color: white;
}

#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    pointer-events: none;
    z-index: 1000;
}

#hits {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-size: 1.2em;
    z-index: 1000;
}

.crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1000;
}

.crosshair-line {
    position: absolute;
    background-color: #00FF00;
}

.crosshair-horizontal {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.crosshair-vertical {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
