/* Waste360 — Desktop / tablet-landscape gate */

.device-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background:
    linear-gradient(105deg, rgba(8, 9, 12, 0.92) 0%, rgba(8, 9, 12, 0.72) 40%, rgba(8, 9, 12, 0.85) 100%),
    url('../assets/bg.jpg') center / cover no-repeat;
  color: #f2f3f5;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  text-align: center;
}

.device-gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 420px;
}

.device-gate-logo {
  width: 56px;
  height: 56px;
}

.device-gate-inner p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
}

html.device-restricted,
html.device-restricted body,
body.device-restricted {
  overflow: hidden !important;
}

html.device-restricted body > :not(.device-gate),
body.device-restricted > :not(.device-gate) {
  display: none !important;
}

html.device-restricted .device-gate,
body.device-restricted .device-gate {
  display: flex;
}
