body {
  margin: 0;
  background: black;
  color: white;
  font-family: Helvetica, Arial, sans-serif;
}

/* layout */
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* title */
.title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* video wrapper */
.video-wrapper {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.5);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* store button */
.store-link {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.7;
}

.store-link:hover {
  opacity: 1;
}

/* instagram */
.ig {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  opacity: 0.6;
}

.ig:hover {
  opacity: 1;
}

/* store page */
.coming {
  font-size: 32px;
  font-weight: 700;
}

.sub {
  font-size: 14px;
  opacity: 0.7;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
}

input {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px;
  font-family: inherit;
}

button {
  background: white;
  color: black;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-family: inherit;
}

button:hover {
  opacity: 0.8;
}
.feed {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 90%;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.post img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}

.meta {
  font-size: 10px;
  opacity: 0.5;
  margin-top: 8px;
  letter-spacing: 1px;
}

.caption {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 6px;
  line-height: 1.4;
}

.text {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.text-content {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: 0.25s ease;
}

.overlay-caption {
  color: white;
  font-size: 12px;
  opacity: 0;
  text-align: center;
  padding: 10px;
  transition: 0.25s ease;
}

.img-wrap:hover img {
  filter: invert(1);
}

.img-wrap:hover .overlay {
  opacity: 1;
}

.img-wrap:hover .overlay-caption {
  opacity: 1;
}
