body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #00001a; /* Malenkost temnejše ozadje za boljši kontrast */
  background-image: radial-gradient(circle at center, #001133 0%, #000000 100%);
  color: white;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

.container {
  text-align: center;
  padding-top: 20px;
  max-width: 900px;
  width: 100%;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #00ccff;
  font-size: 3em;
  letter-spacing: 2px;
}

/* Nadzorna plošča zgoraj */
.dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.2);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 204, 255, 0.2);
}
.gumbi{
	
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.2);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 204, 255, 0.2);
}

.stats {
  display: flex;
  gap: 30px;
  font-size: 18px;
}

.stats span {
  font-size: 24px;
  color: #00ccff;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.controls {
  display: flex;
  gap: 15px;
}

select, button {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #00ccff;
  font-family: inherit;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #00ccff;
  outline: none;
}

button {
  background: #00ccff;
  color: black;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

button:hover {
  background: #ffffff;
  box-shadow: 0 0 15px #00ccff;
  transform: translateY(-2px);
}





/* Platno za igro */
canvas {
  background: #020205; /* Zelo temno modra za iluzijo globine */
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.4);
  border: 2px solid rgba(0, 204, 255, 0.3);
  display: block;
  margin: 0 auto;
  max-width: 100%; /* Da ne gre preko zaslona na manjših monitorjih */
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #0a0a1a;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 50px #00ccff;
  border: 2px solid #00ccff;
}

.popup-content h2 {
  font-size: 2.5em;
  margin-top: 0;
  color: #00ccff;
  text-shadow: 0 0 10px #00ccff;
}

.popup-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.hidden {
  display: none !important;
}