:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: #001b2e;
}

#chip-frame {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  display: block;
  border: 0;
  background: #001b2e;
}

.shell-skip {
  position: fixed;
  top: max(10px, env(safe-area-inset-top));
  left: max(10px, env(safe-area-inset-left));
  z-index: 9999;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  color: #ffffff;
  background: #001b2e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(calc(-100% - 28px));
  transition: transform 150ms ease;
}

.shell-skip:focus {
  transform: translateY(0);
  outline: 3px solid #27b7df;
  outline-offset: 3px;
}

.shell-fallback {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 10000;
  padding: 14px;
  border-radius: 10px;
  color: #ffffff;
  background: #001b2e;
}

.shell-fallback a {
  color: #75d5ed;
}
