/* Variant 4 — Dark Cinema */

html { scroll-behavior: smooth; background: #050506; }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

.font-display { letter-spacing: -0.02em; }

html { scrollbar-width: thin; scrollbar-color: #22d3ee #0f0f11; }
::-webkit-scrollbar        { width: 10px; height: 10px; }
::-webkit-scrollbar-track  { background: #0f0f11; }
::-webkit-scrollbar-thumb  { background: linear-gradient(180deg, #22d3ee, #ec4899); border-radius: 8px; border: 2px solid #0f0f11; }

::selection { background: #22d3ee; color: #050506; }

.lang-option.is-active {
  background: rgba(34, 211, 238, 0.15) !important;
  color: #22d3ee !important;
}

/* Kinowe scanlines w tle hero */
.scanlines {
  background-image: repeating-linear-gradient(
    0deg,
    rgba(34, 211, 238, 0.04) 0px,
    rgba(34, 211, 238, 0.04) 1px,
    transparent 1px,
    transparent 4px
  );
}

/* Modal fade-in */
#bookingModal.flex > .relative { animation: cinemaIn .3s ease-out; }
@keyframes cinemaIn {
  from { opacity: 0; transform: scale(.96) translateY(12px); filter: blur(4px); }
  to   { opacity: 1; transform: none;                        filter: blur(0);  }
}

.border-white\/8 { border-color: rgba(255, 255, 255, 0.08); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.course-card img { will-change: transform, opacity; }

@media (max-width: 640px) {
  section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  h1, h2 { word-break: break-word; }
}
