/* css/play.css */

.page {
  padding: 24px 16px;
  background-color: #fffdfc;

  /* garis buku tulis */
  background-image:
    linear-gradient(
      to bottom,
      rgba(75, 59, 64, 0.08) 1px,
      transparent 1px
    );

  background-size: 100% 28px; /* jarak antar garis */
}

/* PLAY PAGE */

.with-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.with-ribbon .note-icon {
  width: 32px;
  height: auto;
}

.note-icon {
  width: 32px;
  height: auto;
}

.play-hero {
  text-align: center;
  margin: 48px 0;
}

.play-hero h1 {
  font-size: 32px;
}

.play-hero .subtitle {
  font-size: 14px;
  font-style: italic;
  opacity: 0.85;
}

/* HUB */

.play-hub {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.play-card {
  background-image: url("../assets/add/divider.png");
  background-repeat: no-repeat;
  background-position: center 16px;
  background-size: contain;
  padding: 96px 16px 24px;
  text-align: center;
}

.play-card img {
  width: 80%;
  max-width: 320px;
  margin: 0 auto 16px;
}

.play-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.play-card p {
  margin-bottom: 12px;
}

.play-steps {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  margin-bottom: 12px;
}

.play-note {
  font-size: 12px;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 16px;
}

.play-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #A8DADC;
}

.play-download {
  display: inline-block;
  margin: 12px 0;
  padding: 10px 18px;
  background: #4B3B40;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
}

/* =========================
   DESKTOP / PC VERSION
========================= */
@media (min-width: 1024px) {

  .page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
	background-size: 100% 32px;
    box-shadow: 0 8px 24px rgba(75, 59, 64, 0.08);
  }
  
  .play-hub {
    flex-direction: row;
    gap: 40px;
  }

  .play-card {
    width: 50%;
    padding: 32px;
  }
}
