/* style.css */

/* GLOBALNE STYLE */
body {
  background: linear-gradient(120deg, #10131a 0%, #232938 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0 14px 0;
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-bar {
  margin-bottom: 16px;
}

/* PRZYCISK KATEGORII */
.kategorie-btn {
  background: #e50914;
  color: #fff;
  font-size: 18px;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 4px 24px #e5091430;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  margin-bottom: 16px;
}
.kategorie-btn:hover {
  background: #b0060f;
  box-shadow: 0 8px 32px #e5091450;
}

/* PASEK WYSZUKIWANIA */
.search-bar {
  display: flex;
  justify-content: center;
  margin: 12px 0 18px 0;
}
#searchInput {
  padding: 10px 22px;
  font-size: 18px;
  border-radius: 28px;
  border: none;
  outline: none;
  width: 320px;
  background: #232323;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 2px 14px #0002;
}

/* === GRID DLA FILMÓW I SERIALI === */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 36px 0 60px 0;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
  }
}

/* KARTY FILMÓW I SERIALI */
.movie-card {
  position: relative;
  background: #232323;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0006;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  transition: transform 0.16s, box-shadow 0.15s;
  cursor: pointer;

  padding-bottom: 0 !important;
  margin-bottom: 0 !important;}
.movie-card:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow: 0 12px 44px #e5091428, 0 2px 18px #000a;
  z-index: 2;
}
.movie-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  background: #0002;
  transition: filter 0.2s;
  display: block;
}
.movie-title {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 12px 0 0 0;
  width: 95%;
  text-align: center;

  margin-bottom: 0 !important;
  padding-bottom: 0 !important;}
.movie-year {
  font-size: 0.97rem;
  color: #ccc;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-align: center;

  margin-bottom: 0 !important;
  padding-bottom: 0 !important;}
.movie-card .movie-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, #181818c0 90%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.28s;
  z-index: 2;
}
.movie-card:hover .movie-overlay {
  opacity: 1;
}
.movie-card .movie-play {
  width: 62px;
  height: 62px;
  background: rgba(0,0,0,0.61);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 22px #e5091440;
  opacity: 0.92;
  animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
  0% { box-shadow: 0 0 18px #e5091420; }
  100% { box-shadow: 0 0 30px #e5091450; }
}
.movie-card .movie-play svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  filter: drop-shadow(0 0 10px #e5091450);
}

/* KAFELKI KATEGORII */
.kafelki-kategorie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 36px;
  padding: 30px 10px 60px 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.kafelek-kategoria {
  position: relative;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px 0 rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.14);
  transition: transform 0.15s, box-shadow 0.2s;
  
  max-width: 230px;
  background: #232323;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.kafelek-kategoria:hover {
  transform: scale(1.045);
  box-shadow: 0 10px 34px 0 rgba(229,9,20,0.21), 0 3px 16px 0 rgba(0,0,0,0.22);
}
.plakat-kategoria {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  transition: filter 0.18s;
}
.nazwa-kategorii-dol {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
  height: 68px;
}
.nazwa-kategorii-dol span {
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 78%, rgba(10,10,10,0.22) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px 16px 28px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 3px 12px 0 rgba(0,0,0,0.18);
  text-shadow: 0 2px 14px rgba(0,0,0,0.25);
  width: 100%;
  text-align: center;
  opacity: 0.98;
  pointer-events: none;
}
.kafelek-kategoria .category-play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.13);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: auto;
  z-index: 4;
}
.kafelek-kategoria:hover .category-play-overlay {
  opacity: 1;
}
.kafelek-kategoria .category-play-btn {
  width: 58px;
  height: 58px;
  border: none;
  background: rgba(32,32,32,0.36);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px 4px #0007;
  cursor: pointer;
  transition: background 0.2s;
}
.kafelek-kategoria .category-play-btn:hover {
  background: rgba(229,9,20,0.89);
}
.kafelek-kategoria .category-play-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  opacity: 0.89;
}

/* RESPONSYWNOŚĆ DLA KAFEL I FILMÓW/SERIALI */
@media (max-width: 1200px) {
  .kafelki-kategorie {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    max-width: 99vw;
  }
  .kafelek-kategoria {
    
    max-width: 99vw;
  }
  .plakat-kategoria {
    height: 120px;
  }
  .nazwa-kategorii-dol {
    height: 32px;
  }
  .nazwa-kategorii-dol span {
    font-size: 0.89rem;
    padding: 6px 2px 7px 2px;
  }
  .movie-card img {
    height: 120px;
  }
}

/* SZCZEGÓŁY FILMU */
.film-info {
  max-width: 950px;
  margin: 36px auto 20px auto;
  background: #20212c;
  border-radius: 22px;
  box-shadow: 0 2px 16px #0005;
  display: flex;
  gap: 34px;
  padding: 28px 28px 26px 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.film-poster-lg {
  width: 240px;
  min-width: 140px;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 3px 18px #0008;
  background: #181818;
}
.film-meta {
  flex: 1;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.film-title {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: #fff;
}
.film-year {
  color: #e50914;
  font-size: 1.12rem;
  margin-bottom: 3px;
}
.film-rating {
  font-size: 1.18rem;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 7px;
  letter-spacing: 2px;
}
.film-description {
  margin-top: 7px;
  font-size: 1.09rem;
  color: #e5e5e5;
}
.trailer-container {
  max-width: 900px;
  margin: 34px auto 16px auto;
  text-align: center;
}
.trailer-container iframe {
  width: 100%;
  height: 420px;
  max-width: 700px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 3px 18px #0006;
}
.cast-container {
  max-width: 950px;
  margin: 40px auto 38px auto;
  background: #232338;
  border-radius: 22px;
  box-shadow: 0 2px 18px #0007;
  padding: 22px 16px 18px 16px;
}
.cast-title {
  font-size: 1.23rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  margin-left: 6px;
}
.cast-list {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cast-card {
  width: 110px;
  text-align: center;
}
.cast-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: #15151e;
  box-shadow: 0 2px 10px #0007;
  margin-bottom: 7px;
}
.cast-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-role {
  color: #ffc107;
  font-size: 0.93rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 950px) {
  .film-info, .cast-container, .trailer-container { max-width: 99vw; }
  .film-info { flex-direction: column; align-items: center; padding: 18px 4vw; gap: 17px; }
}

@media (max-width: 700px) {
  .film-info { padding: 8px 1vw; }
  .film-poster-lg { width: 96vw; height: 49vw; max-width: 340px; max-height: 410px; }
  .trailer-container iframe { height: 44vw;  }
}


/* NOWOCZESNY SLIDER WOW */
.top-slider {
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 390px;
  height: 37vw;
  max-height: 480px;
  overflow: hidden;
  margin: 0 0 36px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 18px 80px #18182848;
  background: #19191d;
  display: flex;
  align-items: stretch;
}
.slider-slide {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  opacity: 0; z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(.85,0,.15,1);
  display: flex;
  align-items: stretch;
}
.slider-slide.active {
  opacity: 1; z-index: 2;
  pointer-events: auto;
}
.slider-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2.2px) brightness(1); /* MNIEJSZE ROZMYCIE! */
  z-index: 1;
}
.slider-gradient {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #11131a 26%, #19191c80 70%, #19191c00 100%);
  z-index: 2;
}
.slider-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 64px 48px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.slider-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.13;
  color: #fff;
  text-shadow: 0 2px 30px #0e0e1e98;
  margin-bottom: 16px;
}
.slider-meta {
  font-size: 1.18rem;
  color: #fdcf4a;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: 1px;
}
.slider-desc {
  font-size: 1.11rem;
  color: #d9d9de;
  font-weight: 400;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px #18181844;
  max-width: 480px;
  min-height: 42px;
}
.slider-btn {
  background: #e50914;
  color: #fff;
  font-size: 1.26rem;
  font-weight: 800;
  padding: 16px 42px;
  border-radius: 32px;
  text-decoration: none;
  letter-spacing: 2px;
  box-shadow: 0 8px 32px #e5091428;
  margin-top: 18px;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
}
.slider-btn:hover {
  background: #b0060f;
  box-shadow: 0 14px 40px #e5091450;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #181828e0;
  color: #fff;
  font-size: 2.8rem;
  border: none;
  border-radius: 50%;
  width: 58px; height: 58px;
  box-shadow: 0 2px 22px #0004;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  opacity: 0.88;
}
.slider-arrow.left { left: 28px; }
.slider-arrow.right { right: 28px; }
.slider-arrow:hover { background: #e50914; color: #fff; }

@media (max-width: 900px) {
  .top-slider {
    min-height: 190px;
    height: 38vw;
    max-height: 220px;
    border-radius: 0 0 16px 16px;
  }
  .slider-content {
    padding: 22px 13px 20px 16px;
    max-width: 97vw;
  }
  .slider-title { font-size: 1.1rem; margin-bottom: 6px;}
  .slider-meta { font-size: 0.9rem; margin-bottom: 7px;}
  .slider-desc { font-size: 0.91rem; margin-bottom: 12px;}
  .slider-btn { font-size: 1.05rem; padding: 9px 20px; margin-top: 8px;}
  .slider-arrow {
    width: 36px; height: 36px; font-size: 1.5rem;
    left: 7px; right: 7px;
  }
}

  .slider-content {
    left: 12px;
    bottom: 17px;
    max-width: 80vw;
  }
  .slider-title {
    font-size: 1.16rem;
  }
  .slider-btn {
    font-size: 0.98rem;
    padding: 8px 22px;
  }
}

/* NAGŁÓWKI SEKCJI */
.section-title {
  font-size: 1.6rem;
  margin: 38px 0 18px 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}
.fake-player-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 28px;
}

.fake-player {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  background: #151515;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 #000c;
  overflow: hidden;
  border: 2px solid #222;
}

.fake-player iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  background: #151515;
}

/* POPRAWKA LOCKERA */
/* POPRAWKA LOCKERA */
.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,10,10, 0.96);
  color: #fff;
  display: none; /* Ukrycie domyślne */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Locker na wierzchu */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.fake-player-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 38px;
  margin-bottom: 40px;
  width: 100%;
}
.fake-player {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16/9;
  background: #151515;
  border-radius: 24px;
  box-shadow: 0 4px 28px #000b, 0 1.5px 7px #e5091420;
  overflow: hidden;
  border: 2px solid #232323;
  margin: 0 auto;
}
.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,10,10, 0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.player-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.overlay-content {
  text-align: center;
  max-width: 360px;
  padding: 20px 18px;
  background: rgba(18,18,18,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 18px #000a;
}
.overlay-content h2 {
  font-size: 1.18rem;
  margin-bottom: 13px;
  color: #ff3434;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.overlay-content p {
  font-size: 1rem;
  margin-bottom: 22px;
  color: #fff;
}
.premium-btn {
  background: #e50914;
  color: #fff;
  padding: 15px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.13rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 16px #0006;
  transition: background 0.18s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
}
.premium-btn:hover {
  background: #b00610;
  transform: scale(1.05);
}

.player-overlay.active {
  display: flex; /* Locker pojawia się po aktywacji */
  opacity: 1;
  pointer-events: all;
}



.overlay-content {
  text-align: center;
  max-width: 340px;
}

.overlay-content h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #e50914;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 26px;
}

.premium-btn {
  background: #e50914;
  color: #fff;
  padding: 15px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 16px #0006;
  transition: background 0.2s;
  cursor: pointer;
  display: inline-block;
}

.premium-btn:hover {
  background: #b00610;
}
/* --- UKŁAD SZCZEGÓŁY FILMU --- */
.film-top {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 44px auto 32px auto;
  background: rgba(25,27,33, 0.96);
  border-radius: 32px;
  box-shadow: 0 4px 28px #0004;
  padding: 42px 36px;
  flex-wrap: wrap;
}

.film-poster-lg {
  width: 330px;
  min-width: 180px;
  max-width: 98vw;
  height: 480px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 3px 20px #0008;
  background: #181818;
}

.film-maininfo {
  flex: 1 1 320px;
  min-width: 290px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  gap: 12px;
}

.film-title-row {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.film-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.1;
}

.film-year {
  color: #e50914;
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.film-rating {
  font-size: 1.28rem;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 9px;
  letter-spacing: 2px;
}
.film-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 5px;
}
.film-meta-badges span {
  background: #232323;
  color: #fff;
  padding: 7px 18px;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 4px #0006;
  font-weight: 600;
  letter-spacing: 1px;
}
.film-description {
  margin-top: 10px;
  font-size: 1.09rem;
  color: #e5e5e5;
  line-height: 1.58;
  max-width: 96%;
  text-shadow: 0 1px 4px #0004;
}

@media (max-width: 900px) {
  .film-top {
    flex-direction: column;
    gap: 24px;
    padding: 20px 7vw;
  }
  .film-poster-lg {
    width: 90vw;
    max-width: 320px;
    height: auto;
    aspect-ratio: 2/3;
    margin: 0 auto;
  }
  .film-maininfo {
    max-width: 99vw;
  }
  .film-title {
    font-size: 2.1rem;
  }
}
.fake-player-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 38px;
  margin-bottom: 40px;
  width: 100%;
}
.fake-player {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #151515;
  border-radius: 24px;
  box-shadow: 0 4px 28px #000b, 0 1.5px 7px #e5091420;
  overflow: hidden;
  border: 2px solid #232323;
  margin: 0 auto;
}
.fake-player iframe {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  display: block;
  background: #151515;
}
/* POPRAWKA LOCKERA */
.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,10,10, 0.96);
  color: #fff;
  display: none; /* Ukrycie domyślne */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Locker na wierzchu */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.player-overlay.active {
  display: flex; /* Locker pojawia się po aktywacji */
  opacity: 1;
  pointer-events: all;
}

.overlay-content {
  text-align: center;
  max-width: 360px;
  padding: 20px 18px;
  background: rgba(18,18,18,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 18px #000a;
}
.overlay-content h2 {
  font-size: 1.15rem;
  margin-bottom: 13px;
  color: #ff3434;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.overlay-content p {
  font-size: 1rem;
  margin-bottom: 22px;
  color: #fff;
}
.premium-btn {
  background: #e50914;
  color: #fff;
  padding: 15px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.13rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 16px #0006;
  transition: background 0.18s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
}
.premium-btn:hover {
  background: #b00610;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .fake-player {
    max-width: 98vw;
    border-radius: 13px;
  }
  .fake-player-wrapper {
    margin-top: 20px;
    margin-bottom: 28px;
  }
}
.fake-player-fakevod {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  background: #101012;
  border-radius: 24px;
  box-shadow: 0 4px 28px #000a, 0 1.5px 7px #e5091420;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.fakevod-screen {
  background: linear-gradient(120deg, #242430 75%, #18161c 100%);
  
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fakevod-logo {
  position: absolute;
  left: 26px;
  top: 20px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  color: #fff;
  opacity: 0.28;
  pointer-events: none;
  z-index: 2;
  font-family: 'Montserrat', Arial, sans-serif;
}
.fakevod-logo span { color: #e50914; }
.fakevod-playicon {
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.62);
  border-radius: 50%;
  box-shadow: 0 3px 18px #e5091430;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.fakevod-playicon:after {
  content: '';
  display: block;
  position: absolute;
  left: 26px;
  top: 17px;
  width: 0;
  height: 0;
  border-left: 26px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  opacity: 0.86;
}
.fakevod-controls {
  background: #19181a;
  padding: 13px 25px 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.fakevod-progressbar {
  width: 100%;
  height: 7px;
  background: #23232e;
  border-radius: 7px;
  margin-bottom: 12px;
  overflow: hidden;
}
.fakevod-progress {
  height: 100%;
  background: #e50914;
  width: 0%;
  border-radius: 7px;
  transition: width 0.38s;
}
.fakevod-timing {
  font-size: 1.11rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: right;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .fake-player-fakevod { max-width: 99vw; border-radius: 13px; }
  .fakevod-screen {  }
}
.fake-player-wow {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px #000a;
  background: #09090b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fakevod-bgvideo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.fakevod-bgvideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) blur(0.2px);
}
.fakevod-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2.7px) brightness(0.95);
  background: rgba(0,0,0,0.18);
  z-index: 2;
}
.fakevod-topbar {
  position: absolute;
  left: 0; right: 0; top: 0;
  padding: 16px 26px;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.fakevod-logo {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 900;
  opacity: 0.93;
  letter-spacing: 2.7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.fakevod-logo .w { color: #fff; }
.fakevod-logo .r { color: #e50914; }
.fakevod-center {
  z-index: 5;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.fakevod-bigplay {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(0,0,0,0.56);
  box-shadow: 0 2px 19px #e5091440;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseBtn 1.3s infinite alternate;
}
.fakevod-bigplay:after {
  content: '';
  position: absolute;
  left: 32px; top: 23px;
  width: 0; height: 0;
  border-left: 36px solid #fff;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  opacity: 0.92;
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 15px #e5091430;}
  100% { box-shadow: 0 0 34px #e5091490;}
}
.fakevod-controls {
  position: relative;
  background: rgba(18,18,18, 0.86);
  z-index: 8;
  padding: 0 24px 14px 24px;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 52px;
  box-shadow: 0 2px 10px #0005;
}
.fakevod-playbtn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  margin-right: 7px;
  box-shadow: 0 1.5px 6px #e5091440;
  position: relative;
}
.fakevod-playbtn:after {
  content: '';
  position: absolute;
  left: 8px; top: 5px;
  width: 0; height: 0;
  border-left: 13px solid #e50914;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.fakevod-progressbar {
  flex: 1;
  height: 8px;
  background: #23232e;
  border-radius: 7px;
  overflow: hidden;
  margin: 0 11px;
  position: relative;
}
.fakevod-progress {
  height: 100%;
  background: linear-gradient(90deg,#e50914,#f44336 90%);
  width: 0%;
  border-radius: 7px;
  transition: width 0.28s;
  position: absolute;
  left: 0; top: 0;
}
.fakevod-timing {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 100px;
  text-align: right;
  letter-spacing: 1px;
}
.fakevod-vol, .fakevod-expand {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: #23232e;
  opacity: 0.82;
}
.fakevod-vol:after {
  content: '';
  display: block;
  position: absolute;
  width: 16px; height: 8px;
}
/* POPRAWKA LOCKERA */
.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,10,10, 0.96);
  color: #fff;
  display: none; /* Ukrycie domyślne */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Locker na wierzchu */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.player-overlay.active {
  display: flex; /* Locker pojawia się po aktywacji */
  opacity: 1;
  pointer-events: all;
}

.overlay-content {
  text-align: center;
  max-width: 360px;
  padding: 20px 18px;
  background: rgba(18,18,18,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 18px #000a;
}
.overlay-content h2 {
  font-size: 1.18rem;
  margin-bottom: 13px;
  color: #ff3434;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.overlay-content p {
  font-size: 1rem;
  margin-bottom: 22px;
  color: #fff;
}
.premium-btn {
  background: #e50914;
  color: #fff;
  padding: 15px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.13rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 16px #0006;
  transition: background 0.18s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
}
.premium-btn:hover {
  background: #b00610;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .fake-player-wow { max-width: 99vw; border-radius: 13px; }
  .fakevod-bgvideo video {  }
  .fakevod-controls { font-size: 0.9rem; height: 42px; }
}
.blocker-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(20, 14, 34, 0.76);
  backdrop-filter: blur(8px) brightness(0.8);
}
.blocker-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3010;
  margin: auto;
  width: 700px;
  max-width: 96vw;
  height: 340px;
  max-height: 96vh;
  display: flex;
  background: rgba(25,20,40,0.94);
  border-radius: 20px;
  box-shadow: 0 6px 48px #000b, 0 1.5px 7px #8030ff40;
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blocker-modal-col {
  flex: 1;
  padding: 38px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blocker-modal-col.left {
  border-right: 1px solid #2b2340;
  align-items: flex-start;
}
.blocker-modal-col.right {
  align-items: flex-start;
}
.blocker-locked {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.blocker-icon {
  color: #e50914;
  font-size: 1.5em;
  margin-right: 7px;
  display: inline-block;
}
.blocker-desc {
  font-size: 1.09rem;
  color: #eee;
  margin-bottom: 22px;
}
.blocker-btn {
  display: inline-block;
  background: linear-gradient(90deg,#8323ff 10%,#e50914 120%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  padding: 15px 32px;
  text-align: center;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 3px 16px #e5091428;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 1px;
}
.blocker-btn:hover {
  background: linear-gradient(90deg,#8f3cff 10%,#b00610 120%);
  transform: scale(1.04);
}
.blocker-why {
  color: #fff;
  font-size: 1.19rem;
  font-weight: 900;
  margin-bottom: 19px;
  letter-spacing: 2px;
}
.blocker-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blocker-benefits li {
  color: #eee;
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blocker-benefits .check {
  color: #a082ff;
  font-size: 1.15em;
  margin-right: 5px;
  font-weight: 800;
}
@media (max-width: 760px) {
  .blocker-modal {
    flex-direction: column;
    width: 99vw;
    height: auto;
    
    max-height: 97vh;
  }
  .blocker-modal-col {
    border-right: none !important;
    padding: 25px 12px 18px 12px;
    align-items: flex-start;
  }
}

.media-grid {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
@media (max-width: 800px) {
    .media-grid {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px;
  height: 70px;
  background: rgba(22, 22, 28, 0.92);
  box-shadow: 0 2px 22px #0001;
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 28px 28px;
}

.nav-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-right: 32px;
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-logo span {
  color: #e50914;
}

.nav-link {
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 18px;
  transition: background 0.14s, color 0.14s;
  font-weight: 600;
}
.nav-link:hover,
.nav-link.active {
  background: #e50914;
  color: #fff;
}
@media (max-width: 700px) {
  .main-nav {
    flex-direction: column;
    height: auto;
    padding: 10px 8px;
    gap: 12px;
    border-radius: 0 0 12px 12px;
  }
  .nav-logo {
    font-size: 1.23rem;
    margin-bottom: 3px;
    margin-right: 0;
  }
  .nav-link {
    font-size: 1rem;
    padding: 8px 11px;
    margin-right: 0;
  }
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown .nav-link {
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #18181e;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 32px #0003;
  z-index: 300;
  padding: 8px 0;
  border-top: 2px solid #e50914;
}
.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 1.09rem;
  font-weight: 600;
  transition: background .14s, color .14s;
}
.dropdown-menu a:hover {
  background: #e50914;
  color: #fff;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  height: 70px;
  background: rgba(22, 22, 28, 0.92);
  box-shadow: 0 2px 22px #0002;
  position: sticky;
  top: 0;
  z-index: 200;
  border-radius: 0 0 28px 28px;
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-right: 32px;
  letter-spacing: 1px;
  text-decoration: none;
  user-select: none;
}
.nav-logo span {
  color: #e50914;
}

.nav-link {
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.nav-link:hover,
.nav-link.active {
  background: #e50914;
  color: #fff;
  box-shadow: 0 2px 18px #e5091440;
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-arrow {
  margin-left: 8px;
  font-size: 0.92em;
  color: #fdcf4a;
  vertical-align: middle;
  pointer-events: none;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(18,18,26,0.98);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 40px #0007;
  z-index: 500;
  padding: 9px 0;
  border-top: 2.2px solid #e50914;
  animation: dropdownFade .27s cubic-bezier(.77,.12,.16,.9);
  max-height: 70vh;
  overflow-y: auto;
  margin-top: 2px;
}
.dropdown-menu a {
  display: block;
  padding: 11px 28px 11px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 500;
  border-radius: 11px;
  transition: background .14s, color .14s, box-shadow .19s;
  margin: 2px 4px;
}
.dropdown-menu a:hover {
  background: #e50914;
  color: #fff;
  box-shadow: 0 2px 18px #e5091440;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-18px);}
  to   { opacity: 1; transform: translateY(0);}
}
@media (max-width: 800px) {
  .main-nav {
    flex-direction: column;
    height: auto;
    padding: 13px 4px;
    gap: 7px;
    border-radius: 0 0 14px 14px;
  }
  .nav-logo {
    font-size: 1.22rem;
    margin-bottom: 3px;
    margin-right: 0;
  }
  .nav-link {
    font-size: 1rem;
    padding: 8px 11px;
    margin-right: 0;
  }
  .dropdown-menu {
    min-width: 97vw;
    left: -13vw;
    padding: 7px 0;
    border-radius: 0 0 12px 12px;
  }
}
/* NAV MENU */
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
  height: 70px;
  background: rgba(22, 22, 28, 0.92);
  box-shadow: 0 2px 22px #0002;
  position: sticky;
  top: 0;
  z-index: 200;
  border-radius: 0 0 28px 28px;
  backdrop-filter: blur(6px);
}
.nav-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-right: 32px;
  letter-spacing: 1px;
  text-decoration: none;
  user-select: none;
}
.nav-logo span { color: #e50914; }
.nav-link {
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.nav-link:hover,
.nav-link.active {
  background: #e50914;
  color: #fff;
  box-shadow: 0 2px 18px #e5091440;
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-arrow {
  margin-left: 8px;
  font-size: 0.92em;
  color: #fdcf4a;
  vertical-align: middle;
  pointer-events: none;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(18,18,26,0.98);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 40px #0007;
  z-index: 500;
  padding: 9px 0;
  border-top: 2.2px solid #e50914;
  animation: dropdownFade .27s cubic-bezier(.77,.12,.16,.9);
  max-height: 82vh; /* bez paska przewijania! */
  overflow-y: auto;
  margin-top: 2px;
  scrollbar-width: none; /* Firefox */
}
.dropdown-menu::-webkit-scrollbar { display: none; } /* Chrome */
.dropdown-menu a {
  display: block;
  padding: 11px 28px 11px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 500;
  border-radius: 11px;
  transition: background .14s, color .14s, box-shadow .19s;
  margin: 2px 4px;
}
.dropdown-menu a:hover {
  background: #e50914;
  color: #fff;
  box-shadow: 0 2px 18px #e5091440;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-18px);}
  to   { opacity: 1; transform: translateY(0);}
}

/* WYSZUKIWARKA LUPA */
.nav-searchbox {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  background: none;
  border: none;
  padding: 3px 7px;
  cursor: pointer;
  outline: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.18s;
  border-radius: 50%;
}
.search-icon:hover { background: #e50914; }
.search-input {
  width: 0;
  opacity: 0;
  font-size: 1.08rem;
  background: #22232b;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 9px 15px 9px 40px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 24px #0004;
  transition: width 0.33s cubic-bezier(.6,.4,.27,1.2), opacity 0.23s, box-shadow 0.17s;
  pointer-events: none;
}
.nav-searchbox:hover .search-input,
.nav-searchbox:focus-within .search-input {
  width: 225px;
  opacity: 1;
  pointer-events: all;
}
.search-input::placeholder {
  color: #888;
  letter-spacing: 1px;
}
@media (max-width: 800px) {
  .main-nav {
    flex-direction: column;
    height: auto;
    padding: 13px 4px;
    gap: 7px;
    border-radius: 0 0 14px 14px;
  }
  .nav-logo {
    font-size: 1.22rem;
    margin-bottom: 3px;
    margin-right: 0;
  }
  .nav-link {
    font-size: 1rem;
    padding: 8px 11px;
    margin-right: 0;
  }
  .dropdown-menu {
    min-width: 97vw;
    left: -13vw;
    padding: 7px 0;
    border-radius: 0 0 12px 12px;
    max-height: 74vh;
  }
  .nav-searchbox { margin-left: 0; margin-top: 4px;}
}
/* --- WYSZUKIWARKA W NAV --- */
.nav-searchbox {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 252px;
  overflow: visible;
}
.search-icon {
  background: none;
  border: none;
  padding: 3px 7px;
  cursor: pointer;
  outline: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.18s;
  border-radius: 50%;
  position: relative;
}
.search-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  opacity: 0.89;
  transition: stroke 0.13s;
}
.search-icon:hover,
.nav-searchbox:focus-within .search-icon {
  background: #e50914;
  outline: 2px solid #fff3;
}
.search-icon:hover svg,
.nav-searchbox:focus-within .search-icon svg {
  stroke: #fdcf4a;
}
.search-input {
  width: 0;
  opacity: 0;
  font-size: 1.08rem;
  background: #22232b;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 15px 10px 42px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 22px #0008, 0 1px 3px #e5091424;
  transition: width 0.36s cubic-bezier(.6,.4,.27,1.2), opacity 0.24s, box-shadow 0.13s;
  pointer-events: none;
  max-width: 230px;
  min-width: 0;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-searchbox:hover .search-input,
.nav-searchbox:focus-within .search-input {
  width: 215px;
  max-width: 215px;
  opacity: 1;
  pointer-events: all;
}
.search-input::placeholder {
  color: #888;
  letter-spacing: 1px;
  opacity: 0.87;
}
.search-input:focus {
  outline: 2px solid #e50914;
  background: #1a1b21;
}
@media (max-width: 700px) {
  .nav-searchbox {
    max-width: 99vw;
    margin-left: 0;
    margin-top: 8px;
  }
  .search-input {
    right: 0;
    min-width: 0;
    max-width: 89vw;
    font-size: 0.99rem;
  }
  .nav-searchbox:hover .search-input,
  .nav-searchbox:focus-within .search-input {
    width: 83vw;
    max-width: 83vw;
    min-width: 0;
  }
}

/* DROBNY AKCENT: delikatny cień pod polem na mobile */
@media (max-width: 700px) {
  .search-input {
    box-shadow: 0 4px 16px #e5091440, 0 1px 4px #0007;
  }
}
.nav-searchbox {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  /* Usuń max-width */
}
.search-input {
  width: 0;
  opacity: 0;
  font-size: 1.08rem;
  background: #22232b;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 15px 10px 42px;
  position: fixed; /* UWAGA: zamiast absolute, ustaw fixed! */
  right: 36px;     /* padding navu! */
  top: 25px;       /* dostosuj jeśli pasek jest wyższy */
  box-shadow: 0 4px 22px #0008, 0 1px 3px #e5091424;
  transition: width 0.36s cubic-bezier(.6,.4,.27,1.2), opacity 0.24s, box-shadow 0.13s;
  pointer-events: none;
  max-width: 94vw;
  min-width: 0;
  z-index: 1200;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-searchbox:hover .search-input,
.nav-searchbox:focus-within .search-input {
  width: 220px;
  max-width: 88vw;
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 700px) {
  .search-input {
    right: 10px;
    top: 13px;
    font-size: 0.97rem;
    max-width: 94vw;
  }
  .nav-searchbox:hover .search-input,
  .nav-searchbox:focus-within .search-input {
    width: 93vw;
    max-width: 93vw;
  }
}
.nav-searchbox {
  margin-left: auto;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 240px;
  min-width: 0;
}

.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 7px;
  z-index: 2;
}

.search-input {
  width: 0;
  opacity: 0;
  font-size: 1.08rem;
  background: #22232b;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 15px 10px 40px;
  margin-left: -32px; /* zachodzi na ikonę */
  box-shadow: 0 4px 22px #0008, 0 1px 3px #e5091424;
  transition: width 0.34s cubic-bezier(.7,.3,.25,1.3), opacity 0.22s;
  pointer-events: none;
  max-width: 210px;
  min-width: 0;
  outline: none;
  position: relative;
  z-index: 1;
}

.nav-searchbox:hover .search-input,
.nav-searchbox:focus-within .search-input {
  width: 170px;
  opacity: 1;
  pointer-events: all;
  margin-left: 8px;
}

@media (max-width: 700px) {
  .nav-searchbox {
    max-width: 98vw;
  }
  .search-input {
    width: 0;
    min-width: 0;
    max-width: 82vw;
    font-size: 0.99rem;
    margin-left: -32px;
  }
  .nav-searchbox:hover .search-input,
  .nav-searchbox:focus-within .search-input {
    width: 68vw;
    max-width: 68vw;
    margin-left: 7px;
  }
}
/* Usuń poziome przewijanie i napraw slider */
html, body {
  overflow-x: hidden;
}

/* Slider na górze: zamiast 100vw używamy 100% */
.top-slider {
  width: 100% !important;
}
/* zmniejsza odstęp od prawej krawędzi */
.nav-searchbox {
  margin-right: 20px;  /* zamiast 0 — dostosuj wartość wg potrzeby */
}
.hero-slider-section {
  position: relative;
  width: 100vw;
  min-height: 410px;
  margin: 0 auto 32px auto;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100vw;
  height: 410px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.67); /* mniej rozmycia! */
  z-index: 1;
  transition: opacity 0.5s;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  background: linear-gradient(90deg, rgba(12,12,16,0.90) 0%, rgba(15,15,18,0.74) 46%, rgba(20,20,25,0.18) 100%);
  z-index: 2;
}

.hero-slide-content.hero-no-poster {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  max-width: 1180px;
  margin-left: 0;
  padding-left: 7vw;
  padding-right: 4vw;
  padding-top: 55px;
  padding-bottom: 55px;
}

.hero-info {
  max-width: 490px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.hero-title {
  color: #fff;
  font-size: 2.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.16;
  text-shadow: 0 2px 20px #000b, 0 1px 1px #222a;
}
.hero-desc {
  color: #e9e9e9;
  font-size: 1.17rem;
  line-height: 1.33;
  text-shadow: 0 1px 7px #111b;
  min-height: 36px;
  max-height: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.hero-year {
  color: #e50914;
  font-size: 1.14rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-shadow: 0 1px 7px #000c;
}
.hero-btn {
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 11px 38px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  margin-top: 5px;
  transition: background 0.19s;
  box-shadow: 0 2px 18px 0 rgba(220,20,60,0.19);
}
.hero-btn:hover { background: #b0060f; }

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  font-size: 3rem;
  background: rgba(20,20,20,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px; height: 56px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.22);
  transition: background 0.18s;
}
.hero-slider-arrow.left-arrow  { left: 18px; }
.hero-slider-arrow.right-arrow { right: 18px; }
.hero-slider-arrow:hover { background: #e50914; }

@media (max-width: 900px) {
  .hero-slider { height: 300px; }
  .hero-slide-content.hero-no-poster { padding-left: 4vw; padding-top: 36px; padding-bottom: 36px;}
  .hero-info { max-width: 88vw; }
  .hero-title { font-size: 1.45rem; }
}
@media (max-width: 600px) {
  .hero-slider { height: 170px; }
  .hero-slide-content.hero-no-poster { padding-left: 2vw; padding-top: 18px; padding-bottom: 18px;}
  .hero-title { font-size: 1.04rem; }
  .hero-btn { font-size: 0.95rem; padding: 7px 18px; }
}
.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  object-fit: cover;
  filter: blur(3.5px) brightness(0.67); /* jeszcze mniejsze rozmycie */
  z-index: 1;
  transition: opacity 0.5s;
}

.hero-desc {
  color: #e9e9e9;
  font-size: 1.17rem;
  line-height: 1.33;
  text-shadow: 0 1px 7px #111b;
  min-height: 36px;
  /* max-height: 88px;  USUWAMY ten limit */
  overflow: visible;      /* By tekst się nie ucinał */
  text-overflow: initial; /* Wyłączamy elipsy */
  margin-bottom: 2px;
  white-space: normal;    /* Pozwala na zawijanie tekstu */
}
.hero-year {
  color: #e50914;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.17rem;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-bottom: 5px;
  text-shadow: 0 2px 15px #000c, 0 1px 2px #000a;
  border-radius: 8px;
  background: rgba(30,20,20,0.07);
  display: inline-block;
  padding: 3px 16px 3px 12px;
}

.hero-desc {
  color: #e9e9e9;
  font-size: 1.17rem;
  line-height: 1.33;
  text-shadow: 0 1px 7px #111b;
  min-height: 36px;
  overflow: visible;
  text-overflow: initial;
  margin-bottom: 2px;
  white-space: normal;
}
.details-container {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  background: rgba(20,20,20,0.58);
  border-radius: 22px;
  padding: 36px 28px;
  margin: 32px auto;
  max-width: 1020px;
  box-shadow: 0 7px 36px #0004;
}
.details-poster {
  width: 260px;
  border-radius: 15px;
  box-shadow: 0 2px 14px #000c;
  background: #171821;
}
.details-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.details-title {
  font-size: 2.1rem;
  color: #fff;
  margin: 0 0 10px 0;
}
.details-meta {
  color: #e50914;
  font-weight: 600;
  margin-bottom: 7px;
  font-size: 1.05rem;
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}
.details-desc {
  color: #e5e5e5;
  font-size: 1.1rem;
  margin-top: 7px;
  line-height: 1.33;
}
@media (max-width: 700px) {
  .details-container { flex-direction: column; gap: 18px; padding: 18px; }
  .details-poster { width: 98vw; max-width: 250px; }
}
.fake-player-container {
  margin: 0 auto 28px auto;
  max-width: 1020px;
  padding: 0 8px;
}
.fake-player {
  position: relative;
  width: 100%;
  max-width: 780px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 18px auto;
  aspect-ratio: 16/9;
  background: #1c1e25;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 30px #0007;
}
.fake-player-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.fake-player-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(0deg, rgba(28,26,37,0.41) 60%, rgba(22,18,28,0.11) 100%);
}
.fake-play-btn {
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2;
}
.locker {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: rgba(24,22,33,0.95);
  border-radius: 14px;
  box-shadow: 0 2px 15px #0004;
  margin-top: 8px;
  padding: 24px 20px;
  gap: 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.locker-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.locker-title {
  font-size: 1.32rem;
  font-weight: 700;
  color: #e50914;
  margin-bottom: 5px;
}
.locker-desc {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 13px;
}
.locker-btn {
  display: inline-block;
  padding: 11px 28px;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.13rem;
  cursor: pointer;
  text-decoration: none;
  margin-top: 2px;
  margin-bottom: 2px;
  transition: background 0.19s;
  box-shadow: 0 2px 8px #d62a3840;
}
.locker-btn:hover { background: #a50913; }
.locker-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  font-size: 1.04rem;
  color: #fff;
  margin-left: 12px;
}
.locker-benefit { margin-bottom: 2px; }

@media (max-width: 900px) {
  .details-container { flex-direction: column; gap: 18px; padding: 18px; }
  .details-poster { width: 98vw; max-width: 250px; }
  .fake-player, .locker { max-width: 98vw; }
}
@media (max-width: 600px) {
  .details-container, .fake-player-container, .fake-player, .locker { padding: 0 2vw; }
}
.player-locker-box {
  position: relative;
  margin: 0 auto 32px auto;
  max-width: 730px;
  min-height: 280px;
  border-radius: 24px;
  box-shadow: 0 8px 36px #0009;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.locker-bg-blur {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(13px) brightness(0.61) saturate(1.2);
  z-index: 1;
  background: #181925;
  transition: 0.35s;
}
.locker-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 260px;
  background: rgba(28,24,36,0.77);
  border-radius: 20px;
  padding: 36px 24px;
  gap: 38px;
  justify-content: space-between;
  align-items: stretch;
}
.locker-left {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.locker-icon {
  font-size: 2.2rem;
  margin-bottom: 5px;
  color: #e50914;
}
.locker-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px #000c;
}
.locker-desc {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 12px;
}
.locker-btn {
  background: linear-gradient(90deg,#c800ff 10%,#ff2461 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 13px 38px;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 12px #b9149742;
  transition: background 0.19s;
  display: inline-block;
}
.locker-btn:hover {
  background: linear-gradient(90deg,#ff2461 0%,#c800ff 90%);
}
.locker-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-left: 16px;
  justify-content: center;
}
.locker-why {
  font-size: 1.14rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.locker-benefits {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
}
.locker-benefits li {
  margin-bottom: 7px;
  color: #b76cff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.locker-benefits li:before {
  content: "";
  margin-right: 9px;
}

@media (max-width: 900px) {
  .player-locker-box, .locker-content { max-width: 98vw; }
  .locker-content { flex-direction: column; gap: 18px; padding: 20px 6vw; min-height: 180px; }
  .locker-right { margin-left: 0; }
}

@media (max-width: 600px) {
  .player-locker-box { min-height: 200px; }
  .locker-content { padding: 13px 2vw; }
}
/* Locker overlay */
.player-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.player-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-container {
  display: flex;
  max-width: 900px;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

/* Each side */
.overlay-block {
  padding: 40px;
  color: #fff;
  flex: 1;
}

.overlay-block.left {
  background: #1a1a1a;
}

.overlay-block.right {
  background: #111;
}

/* Icons & titles */
.overlay-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #e50914;
}

.overlay-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Text */
.overlay-text,
.overlay-subtext {
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.overlay-subtext strong {
  color: #e50914;
}

/* Button */
.overlay-btn {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.overlay-btn:hover {
  background: #b0060f;
}

/* List on the right */
.overlay-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.overlay-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #9c27b0;
  font-weight: bold;
}
/* ==== Uniwersalny rozmiar playera 16:9 ==== */
.fake-player,
.plyr-wrapper {
  width: 100%;
  max-width: 1000px;    /* tu ustaw swoją docelową szerokość */
  aspect-ratio: 16 / 9; /* wymusza proporcje 16:9 */
  margin: 0 auto;       /* centruje w poziomie */
}

/* Jeżeli chcesz innej szerokości tylko na serialach: */
#serial-player-section .fake-player,
#serial-player-section .plyr-wrapper {
  max-width: 1000px;    /* albo inna wartość specjalnie dla seriali */
}
/* ========== UNIFIKACJA ROZMIARU PLAYERA ========== */
/* złap oba warianty kontenera (movies & series) */
#film-player-section .fake-player,
#film-player-section .plyr-wrapper,
#serial-player-section .fake-player,
#serial-player-section .plyr-wrapper {
  width: 100%;
  max-width: 900px;     /* <- ustaw tu taką szerokość, jaką chcesz wszędzie */
  aspect-ratio: 16 / 9; /* zawsze 16:9 */
  margin: 0 auto;       /* wyśrodkuj */
  background: transparent; /* usuń czarne tło pod wideo */
}

/* wymuś, żeby wideo zawsze wypełniało cały kontener */
#film-player-section video#plyr-video,
#serial-player-section video#plyr-video {
  width: 100%;
  height: 100%;
  display: block;
}

/* usuń dodatkowe marginesy pod playerem (jeśli jakieś masz) */
.fake-player-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* === CAŁY TWÓJ DOTYCHCZASOWY CSS BEZ ZMIAN === */
/* ... (globalne, gridy, karty, film-info, slider-y, itp.) ... */

/* --- TWOJE ISTNIEJĄCE REGUŁY WYŚWIETLANIA PLAYERÓW --- */
.fake-player, .plyr-wrapper {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  margin: 32px auto 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.6);
}
.fake-player iframe,
.plyr-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- DODATKOWA UNIFIKACJA DLA PODSTRON --- */
#film-player-section .fake-player,
#film-player-section .plyr-wrapper,
#serial-player-section .fake-player,
#serial-player-section .plyr-wrapper {
  max-width: 900px;     /* tu zmień szerokość jeśli chcesz innej */
  aspect-ratio: 16 / 9; /* zawsze 16:9 */
  background: transparent; /* usuwa czarny pasek pod video */
}

#film-player-section video#plyr-video,
#serial-player-section video#plyr-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Usuń niepotrzebne marginesy pod playerem */
.fake-player-wrapper {
  margin: 0 auto !important;
  padding: 0 !important;
}

/* === RESZTA TWOJEGO CSS BEZ ZMIAN === */
/* ... (locker, blocker-modal, nav, hero-slider, itp.) ... */
/* ===== KOŃCOWY OVERRIDE dla obu playerów ===== */
#film-player-section .fake-player,
#film-player-section .plyr-wrapper,
#serial-player-section .fake-player,
#serial-player-section .plyr-wrapper {
  background: none !important;  /* usuwa wszelkie tła */
  border: none !important;      /* usuwa ramki */
  box-shadow: none !important;  /* usuwa cienie, które mogą tworzyć pasek */
}

/* upewnij się, że wideo też ma tło transparentne */
#film-player-section video#plyr-video,
#serial-player-section video#plyr-video {
  background: none !important;
}

/* usuń marginesy/paddingi, które mogłyby odsłaniać tło kontenera */
.fake-player-wrapper {
  background: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
}
/* ===== Klikalne logo w headerze ===== */

.logo-wrapper {
  display: flex;
  justify-content: center;  /* wyśrodkowanie */
  align-items: center;
  padding: 20px 0;          /* odstęp nad i pod logiem */
}

.logo-wrapper .logo-image {
  height: 48px;             /* dostosuj wysokość logo */
  width: auto;
  cursor: pointer;          /* wskaźnik kursora przy najechaniu */
  transition: opacity .2s;
}

.logo-wrapper .logo-image:hover {
  opacity: .8;              /* lekki efekt hover */
}
/* === Styl tekstowego logo === */
.logo {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;       /* rozmiar logo */
  font-weight: 800;
  color: #ffffff;          /* biały kolor słowa “Watch” */
  text-decoration: none;   /* usuwamy podkreślenie linku */
  margin: 0 1.5rem;        /* odstęp po bokach, możesz zmienić */
  cursor: pointer;
  transition: opacity 0.2s;
}
.logo:hover {
  opacity: 0.8;
}
.logo--accent {
  color: #e50914;          /* czerwone “Realm” */
}
.testimonials {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.testimonials.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* === Testimonials Section === */
.testimonials {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.testimonials.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border-bottom: 2px solid #e50914;
  display: inline-block;
  padding-bottom: 4px;
}
.testimonials__slider {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.testimonial {
  flex: 0 0 80%;
  max-width: 80%;
  background: rgba(30,30,40,0.85);
  border-radius: 12px;
  padding: 24px;
  scroll-snap-align: start;
}
.testimonial p {
  font-style: italic;
  color: #e5e5e5;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.testimonial footer {
  display: block;
  font-weight: bold;
  color: #e50914;
  font-size: 0.95rem;
}
/* strzałki */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s;
}
.testimonials:hover .arrow {
  opacity: 1;
}
.arrow.left { left: 8px; }
.arrow.right { right: 8px; }
/* hide scrollbars */
.testimonials__slider::-webkit-scrollbar { display: none; }
.testimonials__slider { scrollbar-width: none; }
/* mobile: pojedynczy blok */
@media (max-width: 600px) {
  .testimonial { flex: 0 0 90%; max-width: 90%; }
}
/* === Testimonials Section === */
.testimonials {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.testimonials.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border-bottom: 2px solid #e50914;
  display: inline-block;
  padding-bottom: 4px;
}
.testimonials__slider {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.testimonial {
  flex: 0 0 80%;
  max-width: 80%;
  background: rgba(30,30,40,0.85);
  border-radius: 12px;
  padding: 24px;
  scroll-snap-align: start;
}
.testimonial p {
  font-style: italic;
  color: #e5e5e5;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.testimonial footer {
  display: block;
  font-weight: bold;
  color: #e50914;
  font-size: 0.95rem;
}
/* strzałki */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s;
}
.testimonials:hover .arrow {
  opacity: 1;
}
.arrow.left { left: 8px; }
.arrow.right { right: 8px; }
/* ukryj paski przewijania */
.testimonials__slider::-webkit-scrollbar { display: none; }
.testimonials__slider { scrollbar-width: none; }
/* na mobile pokazuje jeden testimonial */
@media (max-width: 600px) {
  .testimonial { flex: 0 0 90%; max-width: 90%; }
}
/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #141820;
  padding: 60px 20px 40px;
}
.testimonials .section-title {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.testimonials .section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e50914;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: #1e2028;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.testimonial-quote {
  font-style: italic;
  color: #ddd;
  margin-bottom: 14px;
  line-height: 1.5;
}
.testimonial-author {
  font-weight: 700;
  color: #e50914;
  font-size: 0.95rem;
  margin-top: auto;
}
@media (max-width: 600px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
/* Usuń czarne tło sekcji testimonials */
.testimonials {
  background: transparent !important;
  padding: 0 !important;
}

/* Ukryj tytuł “What Our Users Say” */
.testimonials > h2 {
  display: none;
}

/* Usuń tło i cień pojedynczych opinii */
.testimonials__slider .testimonial {
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.2); /* zamiast tła, delikatna ramka */
  padding: 24px 32px; /* zostaw trochę przestrzeni */
  margin: 0 12px;     /* odstępy między slajdami */
}

/* Jeśli używasz karuzeli, wyrównaj wysokość slajdów */
.testimonials__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 16px;
}
/* ===== Sekcja Fan Reviews ===== */
.fan-reviews {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 16px;
}
.fan-reviews h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
  color: #fff;
  border-bottom: 2px solid #e50914;
  display: inline-block;
}
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.review-card {
  background: #1f212b;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  width: 260px;
  display: flex;
  padding: 16px;
  gap: 12px;
  align-items: flex-start;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.review-content {
  display: flex;
  flex-direction: column;
}
.review-text {
  font-style: italic;
  color: #ddd;
  margin-bottom: 8px;
}
.review-author {
  font-weight: bold;
  color: #e50914;
  font-size: 0.95rem;
  text-align: right;
  margin-top: auto;
}

/* Responsywność */
@media (max-width: 600px) {
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }
  .review-card {
    width: 90%;
  }
}
/* ===== Fan Reviews Under Player ===== */
.fan-reviews {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.reviews-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 960px;
  padding: 0 16px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.review-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #eee;
  margin-bottom: 14px;
}
.review-author {
  font-weight: 700;
  color: #e50914;
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .review-card {
    width: 90%;
    padding: 16px;
  }
  .review-avatar { width: 56px; height: 56px; }
}
/* kontener recenzji jako flex, wyśrodkowany, bez zawijania wiersza */
.fan-reviews .reviews-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;             /* odstęp między kartami */
  overflow-x: auto;      /* na mobilkach przewijanie poziome */
  padding: 16px 0;
}

/* każda karta zajmuje 1/5 dostępnej szerokości minus gap */
.fan-reviews .review-card {
  flex: 0 0 calc((100% - 4 * 24px) / 5);
  box-sizing: border-box;
  text-align: left;
}

/* avatar nad tekstem, okrągły */
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

/* tekst recenzji */
.review-text {
  font-style: italic;
  margin-bottom: 8px;
}

/* autor w mniejszym rozmiarze, bez prawdziwego imienia */
.review-author {
  font-weight: bold;
  color: #e50914;
  font-size: 0. nine rem;
}
/* ===== fan-reviews ===== */
.fan-reviews {
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 16px;
}
.fan-reviews .reviews-container {
  display: flex;
  gap: 24px;
  overflow: hidden;           /* ukrywa scrollbar */
  justify-content: center;    /* centrowanie w poziomie */
}
.fan-reviews .review-card {
  flex: 0 0 calc(20% - 19px); /* 5 kart w rzędzie, uwzględniając odstępy */
  background: #20212C;
  border-radius: 18px;
  box-shadow: 0 2px 18px #0007;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fan-reviews .review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 1px 8px #0005;
}
.fan-reviews .review-text {
  font-style: italic;
  font-size: 1rem;
  color: #EEE;
  line-height: 1.4;
}

/* responsywność – na wąskich ekranach 2 w rzędzie */
@media (max-width: 700px) {
  .fan-reviews .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}
/* ===== fan-reviews ===== */
.fan-reviews {
  margin: 40px auto;
  max-width: 1000px;
  padding: 0 16px;
}
.fan-reviews .reviews-container {
  display: flex;
  gap: 24px;
  overflow: hidden;          /* usuwa scrollbar */
  justify-content: center;   /* centrowanie */
}
.fan-reviews .review-card {
  flex: 0 0 calc(20% - 19px); /* 5 kart w rzędzie */
  background: #20212C;
  border-radius: 18px;
  box-shadow: 0 2px 18px #0007;
  padding: 20px 16px;
  text-align: center;
}
.fan-reviews .review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 1px 8px #0005;
}
.fan-reviews .review-text {
  font-style: italic;
  font-size: 1rem;
  color: #EEE;
  line-height: 1.4;
  margin-bottom: 12px;
}
/* **Ukrywamy** autora na obu stronach */
.fan-reviews .review-author {
  display: none;
}

/* responsywność – 2 w rzędzie na wąskim ekranie */
@media (max-width: 700px) {
  .fan-reviews .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}
/* Zaokrąglony player Plyr */
.plyr__video-wrapper,
.fake-player iframe,
.fake-player video,
#film-player-section .plyr__video-wrapper {
  border-radius: 16px !important;
  overflow: hidden;
}

/* Jeśli używasz samego .fake-player-wrapper: */
.fake-player-wrapper,
#film-player-section .fake-player-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

/* Dostosuj promień (16px) do swojego designu */
/* --- Pełne zaokrąglenie playera Plyr, włącznie z panelem sterowania --- */
.plyr {
  border-radius: 16px !important;
  overflow: hidden !important;
}

.plyr__video-wrapper {
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden !important;
}

.plyr__controls {
  border-radius: 0 0 16px 16px !important;
  overflow: hidden !important;
}
/* ===== Fan Reviews ===== */
.fan-reviews {
  padding: 40px 0;
}

.fan-reviews .reviews-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.fan-reviews .review-card {
  flex: 1 1 calc(20% - 24px);
  max-width: calc(20% - 24px);
  background: rgba(35,35,46,0.8);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  margin-bottom: 12px;
  color: #eee;
}

/* Ukrywamy linię z autorem, zostawiamy tylko tekst */
.review-author {
  display: none;
}

/* Responsywność */
@media (max-width: 1000px) {
  .fan-reviews .review-card {
    flex: 1 1 calc(45% - 24px);
    max-width: calc(45% - 24px);
  }
}
@media (max-width: 600px) {
  .fan-reviews .review-card {
    flex: 1 1 calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
}
