@font-face {
  font-family: "SF Pro";
  src: url(https://cdn.jsdelivr.net/gh/sahibjotsaggu/San-Francisco-Pro-Fonts/SF-Pro-Display-Light.otf);
}

.phone-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* PHONE */
.iphone {
  width: 320px;
  height: 650px;
  border-radius: 50px;
  background: #000;
  position: relative;
  overflow: hidden;

  border: 3px solid rgba(255,255,255,0.15);

  box-shadow:
    0 35px 100px rgba(0,0,0,0.95),
    inset 0 0 0 1px rgba(255,255,255,0.25),
    inset 0 0 25px rgba(255,255,255,0.06);
}

/* SCREEN */
.screen {
  position: absolute;
  inset: 4px;
  border-radius: 46px;
  overflow: hidden;
}

/* WALLPAPER */
.wallpaper {
  position: absolute;
  inset: 0;
}

.wallpaper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* OVERLAY */
.wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.6)
  );
}

/* ISLAND */
.island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: black;
  border-radius: 20px;
  z-index: 5;
}

/* CLOCK */
.clock {
  position: absolute;
  top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* DATE */
.date {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);

  line-height: 1;
  margin: 0;
  padding: 0;

  /* ? YENİ */
  transform: translateY(6px);

  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* TIME */
.time {
-webkit-font-smoothing: antialiased;
  text-shadow: none; 
  font-size: 84px;
font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: -6px;

  color: rgba(255,255,255,0.9);

  line-height: 0.85;
  transform: translateY(-10px);

  margin: 0;
  padding: 0;

  text-shadow: 0 2px 8px rgba(0,0,0,0.6);

  font-variant-numeric: tabular-nums;

  /* ? SMOOTHING */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HOME BAR */
.home {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  z-index: 5;
}