/* =========================
DESKTOP / ORIENTATION BLOCKERS
========================== */

  .desktop-blocker {
    position: fixed;
    inset: 0;
      background: #0E1E27;
      color: #fff;
          display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
      padding: 24px;
  }

  .desktop-blocker-inner {
      max-width: 480px;
    text-align: center;
    background: #fff;
    border-radius: 22px;
      padding: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  }

  .desktop-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .desktop-text {
      font-size: 13px;
      line-height: 1.9;
          color: var(--gray);
  }

  .desktop-note {
    margin-top: 10px;
    font-size: 11px;
    font-family: var(--font-sans-latin);
    color: var(--gray);
    opacity: 0.8;
  }

  .orientation-blocker {
    position: fixed;
    inset: 0;
      background: radial-gradient(circle at top, #020910 0, #04121D 55%, #000000 100%);
    display: none;
    align-items: center;
    justify-content: center;
      text-align: center;

      z-index: 10000;
      padding: 24px;
    color: #fff;
  }





    .orientation-text {
          font-size: 13px;

      line-height: 1.9;
      color: #D8E6EE;
    }


  .orientation-blocker-inner {
      max-width: 420px;
      padding: 16px;
    text-align: center;
  }



    .orientation-title {
    font-size: 16px;
      font-weight: 700;
      margin-top: 14px;
    margin-bottom: 6px;
    }


        .dayan-sleep {
      position: relative;
      width: 100%;
      max-width: 260px;
      margin: 0 auto;
    }

  .dayan-sleep .dayan-img {
      display: block;
      width: 70%;
      height: auto;
      margin: 0 auto;
  }

    .snore {
      position: absolute;
      font-family: system-ui, sans-serif;
      font-weight: 900;
      color: #fff;
      font-size: 32px;
      opacity: 0;
      animation: snore 2.8s linear infinite;
    }

    .snore-1,
    .snore-2,
    .snore-3 {
      left: 52%;
      bottom: 50%;
    }

    .snore-2 {
      animation-delay: 0.9s;
    }

    .snore-3 {
      animation-delay: 1.8s;
    }

    @keyframes snore {
      0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.4) rotate(-10deg);
      }

      15% {
        opacity: 1;
      }

      60% {
        opacity: 1;
        transform: translate(-20px, -80px) scale(1.1) rotate(-5deg);
      }

      100% {
        opacity: 0;
        transform: translate(-40px, -140px) scale(1.3) rotate(5deg);
      }
    }


















