
/* Apple Watch container */
.apple-watch {
  position: relative;
  width: 200px;
  aspect-ratio: 1 / 1.2; /* Keeps proportions */
  margin: auto;
  background: #111;
  border-radius: 40px;
  border: 8px solid #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Watch screen */
.apple-watch .screen {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 76%;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Example content inside screen */
.apple-watch .screen img {
  max-width: 100%;
  height: auto;
}

/* Responsive scaling */
@media (max-width: 576px) {
  .apple-watch {
    width: 150px;
  }
}
