@font-face {
  font-family: 'Masada-Book';
  src: url('./fonts/Masada-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Masada-Medium';
  src: url('./fonts/Masada-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Masada-MediumItalic';
  src: url('./fonts/Masada-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GretaSans-Regular';
  src: url('./fonts/GretaSansH+L-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GretaSans-Semi-Bold';
  src: url('./fonts/GretaSansH+L-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GretaSans-Bold';
  src: url('./fonts/GretaSansH+L-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GretaSans-Heavy';
  src: url('./fonts/GretaSansH+L-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GretaTextH+L-Bold';
  src: url('./fonts/GretaTextH+L-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GretaTextH+L-Medium';
  src: url('./fonts/GretaTextH+L-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aduma-Bold';
  src: url('./fonts/Aduma-Bold.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* הגדרה בסיסית ל-mobile-unavailable - מוסתר כברירת מחדל */
#mobile-unavailable {
  display: none;
  position: fixed;
  inset: 0;
  font-family: 'Masada-Book', sans-serif;
  font-weight: 400;
  background: #33322E;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  line-height: 1.4;
  font-size: 0.6rem;
  z-index: 999;
  direction: rtl;
}

#entry-screen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #33322E;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    text-align: center;
    overflow: hidden;
  }
  
  #entry-screen .entry-bg-blur {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: url('img/open_screen.webp') center center / cover no-repeat;
    z-index: 0;
    filter: blur(var(--entry-blur, 8px));
    pointer-events: none;
  }
  

  #entry-screen .entry-texture-overlay {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: url('textures/crinkle_paper_texture.webp') center center / cover repeat;
    opacity: 0.15;
    z-index: 10;
    pointer-events: none;
  } 
  
  #entry-screen .entry-content {
    position: relative;
    z-index: 1;
  }
 
  .entry-title {
    font-family: 'GretaTextH+L-Bold', sans-serif;
    font-weight: 700;
    font-style: normal;
  font-size: 8rem;
  color: #DFDCD6;
  font-weight: 700;
  margin: 0;
  z-index: 0;
  line-height: 1;
  letter-spacing: 0.01em;
}
  
  .entry-desc {
   font-family:'GretaSans-Regular', sans-serif;
    font-size: 1.3rem;
    color: #DFDCD6;
    font-weight: 400;
    margin: 0;
    z-index: 0;
  }
 

  #entry-btn {
  background: transparent;
  border: none;
  padding: 0;
  width: 160px;   
  height: 40px;   
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 20px auto 0;
  z-index: 0;
}

#entry-btn .entry-btn-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
  
#entry-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

 
  @media (max-width: 767px) {
    #mobile-unavailable {
      display: flex !important;
      position: fixed !important;
      inset: 0 !important;
      font-family: 'Masada-Book', sans-serif !important;
      font-weight: 400 !important;
      background: #33322E !important;
      color: #fff !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
      padding: 1rem !important;
      line-height: 1.4 !important;
      font-size: 0.6rem !important;
      z-index: 99999 !important;
      direction: rtl !important;
    }
  }


@media (min-width: 2048px) {

    .entry-desc {
      font-size: 1.4rem;
      line-height: 1.3;
      margin-bottom:0px;
    }
    

  }

img, svg {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
}