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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars */
    font-family: Arial, sans-serif;
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

canvas {
    display: block; /* Removes inline gap */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.info {
    display: none !important; /* Hide the info panel completely */
}

.crosshair {
    /* Keep crosshair styling */
}

/* Hide all tutorial and instruction elements */
.weapon-guide,
.instructions,
.tutorial,
.info-panel,
.help-text,
.window-status,
.status-display .window-status {
    display: none !important;
}

.info h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info p {
    font-size: 16px;
}

/* Spectator mode styles */
.spectate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1000;
}

.spectate-overlay .spectator-header {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 10px 0;
  text-align: center;
  pointer-events: auto;
}

.spectate-overlay .spectator-footer {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 10px 0;
  text-align: center;
  pointer-events: auto;
}

.spectate-text {
  color: #ff3333;
  font-family: 'Impact', fantasy;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
  margin: 0;
}

.spectate-message {
  color: #ffffff;
  font-family: monospace;
  margin: 5px 0 0 0;
}

/* Pulsating effect for spectator mode */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.spectate-text {
  animation: pulse 2s infinite;
} 
 
 
 
 
 