/* מבטיח שהתוכן יכסה את כל המסך */
#hanukkah_preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* רקע שחור */
    z-index: 9999; /* מעל כל דבר אחר */
    display: flex; /* למיקום מרכזי */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* עיצוב המדיה - רספונסיבי ומיקום */
#media_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;        /* קריטי */
  gap: 10px;
  width: 90vw;
}
#hanukkah_video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;     /* חובה */
  min-height: 200px;        /* רשת ביטחון */
  background: #000;
  object-fit: cover;
}

.hanukkah-media {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid gold; /* עיצוב חנוכה */
}
#hanukkah_play_btn{
  position: fixed;
  z-index: 10000;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 18px;
  border-radius: 999px;
}


