:root {
  --bg: #20201F;
  --text: #ffffff;
  --font: 'Inter', sans-serif;
}

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

html, body {
  height: 100%;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--text);
  display: flex;
  justify-content: center;
  /* Auf größeren Screens wird der Handy-Frame zentriert dargestellt */
}

.frame {
  position: relative;
  width: 393px;
  min-height: 852px;
  background: var(--bg);
  overflow: hidden;
}

.topbar {
  position: relative;
  width: 100%;
  height: 100%;
}

.date {
  position: absolute;
  top: 87px;
  left: 16px;
  width: 92px;
  height: 21px;
  font-family: var(--font);
  font-weight: 300; /* Light */
  font-size: 17px;
  line-height: 21px;
  white-space: nowrap;
  color: var(--text);
}

/* Mobile: Frame füllt den gesamten Viewport */
@media (max-width: 430px) {
  .frame {
    width: 100%;
    min-height: 100vh;
  }
}
