* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(120% 120% at 50% 0%, #2a2d3a 0%, #16171d 55%, #0c0d11 100%);
  min-height: 100vh; overflow: hidden;
}
.stage { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.phone {
  --bezel: 14px; --w: 390px; --h: 844px;
  position: relative;
  width: calc(var(--w) + var(--bezel) * 2);
  height: calc(var(--h) + var(--bezel) * 2);
  padding: var(--bezel);
  background: linear-gradient(145deg, #3a3d45, #17181c 40%, #24262c);
  border-radius: 62px;
  box-shadow: 0 0 0 2px #000, 0 30px 70px -20px rgba(0,0,0,.8), inset 0 0 3px 1px rgba(255,255,255,.15);
  transform-origin: center center;
}
.screen {
  position: relative; width: var(--w); height: var(--h);
  border-radius: 48px; overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.statusbar {
  position: relative; height: 50px; flex: 0 0 50px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px 0 34px; background: #fff; color: #111; z-index: 3;
}
.sb-time { font-size: 15px; font-weight: 600; letter-spacing: .3px; z-index: 4; }
.sb-icons { display: flex; align-items: center; gap: 6px; z-index: 4; fill: #111; }
.battery { position: relative; width: 24px; height: 12px; border: 1px solid rgba(0,0,0,.4); border-radius: 3px; }
.battery::after { content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 6px; background: rgba(0,0,0,.4); border-radius: 0 1px 1px 0; }
.battery-fill { position: absolute; left: 1px; top: 1px; bottom: 1px; width: 70%; background: #111; border-radius: 1.5px; }
.notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 164px; height: 30px; background: #000;
  border-radius: 0 0 20px 20px; z-index: 3;
}
.app { flex: 1 1 auto; width: 100%; border: 0; background: #fff; display: block; }
