/* iOS Device Mockup */

.iphone-mockup {
  width: 375px;
  height: 812px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  margin: 0 auto;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 0 0 6px #2a2a2a,
    0 20px 60px rgba(0, 0, 0, 0.8);
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary, #0E0E0E);
  border-radius: 32px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.iphone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .iphone-mockup {
    width: 90vw;
    max-width: 375px;
    height: auto;
    aspect-ratio: 375 / 812;
  }
}

@media (max-width: 480px) {
  .iphone-mockup {
    transform: scale(0.85);
    transform-origin: top center;
  }
}
