:root {
  color-scheme: light only;
  --bg-img: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80");
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* размытый фон */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-img) no-repeat center center / cover;
  filter: blur(12px);
  transform: scale(1.1);
  z-index: -2;
}

/* затемнение для контраста */
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}





/* анимация появления телефона */
@keyframes popin {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
