* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(135deg, #fff8ef 0%, #ecd7c2 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.public-mobile-preview {
  display: grid;
  min-height: 100vh;
  place-items: start center;
  padding: 22px;
}

.mobile-preview-frame {
  width: min(390px, 100%);
  height: min(844px, calc(100vh - 230px));
  min-height: 640px;
  overflow: hidden;
  border: 10px solid #111827;
  border-radius: 34px;
  background: #111827;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.26);
}

.mobile-preview-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
  background: #fff;
}

@media (max-width: 520px) {
  body {
    background: #fff;
  }

  .public-mobile-preview {
    display: block;
    min-height: 100vh;
    padding: 0;
  }

  .mobile-preview-frame {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-preview-frame iframe {
    border-radius: 0;
  }
}
