 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Orbitron", Arial, sans-serif;
      color: white;
      background: url("ozadje.png") no-repeat center center fixed;
      background-size: cover;
      background-position: center center;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 25, 0.42);
      pointer-events: none;
      z-index: 0;
    }

    .wrapper {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 16px 20px 30px;
      text-align: center;
    }

    h1 {
      margin: 0 0 14px;
      font-family: "Orbitron", Arial, sans-serif;
      font-size: 46px;
      color: #35e0ff;
      letter-spacing: 2px;
      text-shadow:
        0 0 8px rgba(53, 224, 255, 0.7),
        0 0 18px rgba(53, 224, 255, 0.45);
    }

    .stage-shell {
      width: 700px;
      padding: 0;
      margin: 0 auto;
      background: transparent;
      border: none;
      box-shadow: none;
      border-radius: 0;
      backdrop-filter: none;
    }

    #mazeStage {
      position: relative;
      width: 700px;
      height: 700px;
      margin: 0 auto;
      overflow: hidden;
      background: transparent;
      border-radius: 0;
    }

    #mazeImg {
      position: absolute;
      top: 0;
      left: 0;
      width: 700px;
      height: 700px;
      display: block;
      background: transparent;
      opacity: 0.9;
    }

    #trailCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 700px;
      height: 700px;
      z-index: 2;
      pointer-events: none;
    }

    #runnerSprite,
    #godzillaSprite {
      position: absolute;
      width: 70px;
      height: 70px;
      transform: translate(-50%, -50%);
      pointer-events: none;
      display: none;
      image-rendering: pixelated;
      filter: none; /* odstranjena svetloba */
    }

    #runnerSprite {
      z-index: 3;
    }

    #godzillaSprite {
      z-index: 4;
    }

    .kaiju-panel {
      margin-top: 20px;
      text-align: center;
    }

    .kaiju-title {
      margin: 0 0 12px;
      font-size: 16px;
      color: #9ff4ff;
      letter-spacing: 1px;
      text-shadow: 0 0 10px rgba(53, 224, 255, 0.35);
    }

    .kaiju-options {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .kaiju-option {
      width: 150px;
      padding: 12px 8px;
      border-radius: 0; /* ni zaobljeno */
      border: 1px solid #35e0ff;
      background: linear-gradient(180deg, #05080d, #0a1018);
      cursor: pointer;
      transition: 0.2s ease;
      box-shadow:
        0 0 10px rgba(53, 224, 255, 0.15),
        inset 0 0 8px rgba(53, 224, 255, 0.08);
    }

    .kaiju-option:hover {
      transform: translateY(-3px);
      border-color: #6ff6ff;
      background: linear-gradient(180deg, #071019, #0a141d);
      box-shadow:
        0 0 12px rgba(53, 224, 255, 0.35),
        0 0 24px rgba(53, 224, 255, 0.18);
    }

    .kaiju-option.active {
      border-color: #35e0ff;
      background: linear-gradient(180deg, #07131d, #000000);
      box-shadow:
        0 0 12px rgba(53, 224, 255, 0.55),
        0 0 22px rgba(53, 224, 255, 0.22),
        inset 0 0 12px rgba(53, 224, 255, 0.08);
    }

    .kaiju-option img {
      width: 80px;   /* povečane slike */
      height: 80px;  /* povečane slike */
      object-fit: contain;
      image-rendering: pixelated;
      pointer-events: none;
    }

    .kaiju-option span {
      display: block;
      margin-top: 8px;
      font-family: "Orbitron", Arial, sans-serif;
      font-size: 11px;
      color: #dffbff;
      letter-spacing: 0.8px;
      pointer-events: none;
    }

    .buttons {
      margin-top: 22px;
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    button.main-btn {
      padding: 14px 30px;
      border: 1px solid #35e0ff;
      border-radius: 0; /* ni zaobljeno */
      background: linear-gradient(180deg, #020507, #000000);
      color: #8ff7ff;
      font-family: "Orbitron", Arial, sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      box-shadow:
        0 0 10px rgba(53, 224, 255, 0.45),
        0 0 18px rgba(53, 224, 255, 0.25),
        inset 0 0 10px rgba(53, 224, 255, 0.08);
      transition: 0.2s ease;
    }

    button.main-btn:hover {
      transform: translateY(-2px) scale(1.02);
      background: linear-gradient(180deg, #031018, #000000);
      color: #d9feff;
      box-shadow:
        0 0 14px rgba(53, 224, 255, 0.75),
        0 0 30px rgba(53, 224, 255, 0.35),
        inset 0 0 14px rgba(53, 224, 255, 0.12);
    }

    button.main-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    @media (max-width: 820px) {
      .stage-shell {
        width: 96vw;
      }

      #mazeStage {
        width: 90vw;
        height: 90vw;
        max-width: 700px;
        max-height: 700px;
      }

      #mazeImg,
      #trailCanvas {
        width: 100%;
        height: 100%;
      }

      h1 {
        font-size: 34px;
      }

      #runnerSprite,
      #godzillaSprite {
        width: 52px;
        height: 52px;
      }

      .kaiju-option img {
        width: 68px;
        height: 68px;
      }
    }

	.neon-popup {
	  border: 1px solid #35e0ff;
	  box-shadow:
		0 0 15px rgba(53, 224, 255, 0.4),
		0 0 40px rgba(53, 224, 255, 0.15);
	  border-radius: 0;
	  padding: 20px;
	}

	.neon-btn {
	  background: linear-gradient(180deg, #031018, #000000) !important;
	  color: #8ff7ff !important;
	  border: 1px solid #35e0ff !important;
	  border-radius: 0 !important;
	  font-family: Orbitron !important;
	  font-weight: 700;
	  letter-spacing: 1px;
	  padding: 10px 24px;
	  box-shadow:
		0 0 10px rgba(53, 224, 255, 0.5),
		inset 0 0 8px rgba(53, 224, 255, 0.1);
	  transition: 0.2s;
	}

	.neon-btn:hover {
	  transform: scale(1.05);
	  color: #ffffff !important;
	  box-shadow:
		0 0 18px rgba(53, 224, 255, 0.9),
		0 0 35px rgba(53, 224, 255, 0.4);
	}