@charset "UTF-8";
body {
  background-color: #0f0f0f;
  color: white;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.hero-gradient {
  background: linear-gradient(to top, #0f0f0f 10%, rgba(15, 15, 15, 0.8) 25%, rgba(15, 15, 15, 0) 100%);
}

.hover-trigger .hover-target {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hover-trigger:hover .hover-target {
  opacity: 1;
}

/* --- MAGICKÝ LIGHT THEME --- */
html.theme-light {
  /* Obrátí barvy, ale zachová jejich tón (modrá zůstane modrou) */
  filter: invert(1) hue-rotate(180deg);
  /* Zabrání problémům s výškou pozadí na krátkých stránkách */
  min-height: 100vh;
  background-color: #050505;
}

/* Těmto prvkům barvy vrátíme zpět do normálu (dvojitá inverze se vyruší) */
html.theme-light img,
html.theme-light video,
html.theme-light iframe,
html.theme-light canvas,
html.theme-light .no-invert {
  filter: invert(1) hue-rotate(180deg);
}

/*# sourceMappingURL=style.css.map */
