* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #bea56e;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 480px; /* good max width for portrait */
  padding: 16px;
  text-align: center;
}

h1 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures full portrait video is visible */
}

.instagram-link {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #d7d8d6;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 3vw, 1rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tablet: center and slightly increase max width */
@media (min-width: 600px) {
  .container {
    max-width: 520px;
  }
}

/* Desktop: allow it to grow a bit more */
@media (min-width: 1024px) {
  .container {
    max-width: 600px;
  }
}

/* previous styles unchanged above */

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d7d8d6;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.instagram-icon {
  width: 28px;
  height: 28px;
  fill: black;
}

