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

:root {
  --black: #0a0a0a;
  --white: #f5f2ee;
  --warm: #c8b89a;
  --dim: #3a3530;
  --text-dim: #6b6560;
  --accent: #c8a882;
}

html, body {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.phone {
  width: 100vw;
  height: 100dvh;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

#app { width: 100%; height: 100%; position: relative; }

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  overflow: hidden;
  background: var(--black);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
