* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black;
}

body {
  font-family: sans-serif;
  background: #f8f6f3;
  line-height: 1.3;
}

p {
  margin: 0.5rem 0;
  line-height: 1.4;
}

.title {
  font-size: 3rem;
  text-align: center;
  margin-top: 5vw;
  color: deeppink;
}

.intro {
  text-align: center;
  padding: 8vw 10vw;
}

.step {
  line-height: 2;
  margin-top: 2vw;
}

.number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5vw;
}

.step-boxes {
  display: flex;                  /* horizontal row */
  justify-content: space-between; /* spread boxes evenly */
  margin: 2rem 0;                 /* space above and below boxes */
  gap: 1rem;                      /* space between boxes */
}

.box3 {
  display: flex;
  flex-direction: column;         /* stack title above video */
  align-items: center;
  flex: 1;                        /* equal width */
  text-align: center;
}

.box1 {
  flex: 1;                        /* equal width */
  padding: 2rem 1rem;
  background: #ffd700;            /* gold color, change as needed */
  color: black;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  cursor: default;
}

.box1 .add {
  font-weight: 200;
  font-size: 0.8rem;
}

.box2{
  flex: 1;                        /* equal width */
  padding: 2rem 1rem;
  background: lightgray;            /* gold color, change as needed */
  color: black;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  cursor: default;
}
.box:hover {
  transform: translateY(-5px);    /* subtle hover effect */
}

.box-outcome h1 {
  font-size: 1.3rem;
  font-weight: 800;
  color: skyblue;
}

.box-outcome{
  flex: 1;                        /* equal width */
  padding: 2rem 1rem;
  background: lightsteelblue;            
  color: black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  cursor: default;

  text-align: center;
  line-height: 1.5;
}

.highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  font-family: "Georgia", serif;
}


/* Responsive: stack vertically on smaller screens */
@media (max-width: 800px) {
  .step-boxes {
    flex-direction: column;
  }
}

.film {
  display: grid;
  justify-content: center;
  gap: 4vw;
  padding: 5vw 0 10vw;
}

.video-thumb {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video-thumb img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  pointer-events: none;
}

.film-item {
  display: center;
  text-align: center;
  max-width: 500px;
}

.film-desc {
  margin-top: 0.5vw;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}


/* Responsive: stack vertically on mobile */
@media (max-width: 800px) {
  .step-boxes {
    flex-direction: column;
    gap: 2rem;
  }
}

a img.sns-image {
  width: 300px;   /* adjust size */
  height: 200px;
  margin-top: 0.5rem; /* space between name and image */
  border-radius: 10px;
  transition: transform 0.3s;
}

a img.sns-image:hover {
  transform: scale(1.1); /* strong hover effect */
}

.external-link-image {
  display: inline-block;
  margin: 1.5rem auto;  /* centers the image */
  max-width: 30%;      /* responsive */
  height: auto;
  border-radius: 10px;  /* optional, matches your box style */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.external-link-image:hover {
  transform: scale(1.03);  /* subtle hover effect */
}
