/* === TOGGLE WRAPPER === */
#season-toggle-wrapper {
  position: fixed;
  top: 70px;
  left: 6px;
  z-index: 99997;
}

#season-toggle {
  width: 33px;
  height: 33px;
  cursor: pointer;
  position: relative;
  z-index: 99999;
  display: inline-block;
}

#season-icons {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

#season-icons.visible {
  display: flex;
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.season-icon {
  font-size: 19px;
  cursor: pointer;
}

#season-strike {
  position: absolute;
  top: 43%;
  left: 49%;
  width: 21px;
  height: 2px;
  background-color: red;
  transform: translate(-50%, -60%) rotate(45deg);
  transform-origin: center;
  z-index: 100000;
  border-radius: 4px;
  pointer-events: none;
}

#season-strike.hidden {
  display: none !important;
}

/* === GLOBAL CANVAS LAYER === */
#season-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99998;
  display: block;
}

/* === UNIVERZALNA KOMPATIBILNOST ZA ANIMACIJE === */
html, body {
  overflow-x: hidden;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

@media (max-width: 480px) {
  #season-toggle {
    width: 28px;
    height: 28px;
  }
  .season-icon {
    font-size: 16px;
  }
}
