/* Reset */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    touch-action: none; /* Needed for iPhone multi-touch */
    -webkit-user-select: none;   /* Safari/iOS */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
    user-select: none;           /* Standard */
    -webkit-touch-callout: none; /* Disable long-press callout on iOS */
    -webkit-tap-highlight-color: transparent; /* Optional: remove tap highlight */
}

.center-text {
    color: rgba(165,144,121,0.3);
    font-size: 48px;       /* adjust size */
    font-family: 'Courier New', Courier, monospace;
    user-select: none;     /* prevents text selection */
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100vh;
}
  
  /* Player touch marker (optional) */
.player-dot {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;
    mix-blend-mode: screen;
}
  
/* Winner highlight */
.winner-glow {
    animation: winnerGlow 0.45s infinite alternate;
}
  
@keyframes winnerGlow {
    0% { transform: scale(0.92); opacity: 0.4; }
    100% { transform: scale(1.12); opacity: 1; }
}
  
/* Winner dot scale-up */
.winner-final {
    animation: winnerFinal 1s forwards ease-out;
}

@keyframes winnerFinal {
    0% { transform: scale(1); }
    100% { transform: scale(4); opacity: 1; }
}
  