/* Full-screen “desktop recommended” layer on small viewports only */

.mobile-desktop-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  box-sizing: border-box;
}

.mobile-desktop-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-desktop-gate__panel {
  position: relative;
  width: 100%;
  max-width: 22rem;
  padding: clamp(1.5rem, 5vw, 2rem) clamp(1.25rem, 4vw, 1.75rem);
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 20px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.12);
  text-align: center;
}

.mobile-desktop-gate__title {
  margin: 0 0 0.35rem;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 4.2vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
}

.mobile-desktop-gate__sub {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  line-height: 1.35;
  color: #ba242a;
}

.mobile-desktop-gate__smile {
  font-weight: 800;
  color: #000000;
}

@media (max-width: 768px) {
  .mobile-desktop-gate {
    display: flex;
  }

  html {
    overflow: hidden;
    height: 100%;
    height: 100dvh;
  }

  body {
    overflow: hidden;
    touch-action: none;
  }
}
