/* Phone Frame */
.phone-frame {
  width: 320px;
  height: 650px;
  background-color: #000;
  border-radius: 40px;
  border: 12px solid #111;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto;
  animation: float-mockup 6s infinite ease-in-out;
}

/* Dynamic Island / Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background-color: #111;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 28px; /* inner border radius */
}
