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

body {
  background: radial-gradient(ellipse at center, #0b3b44 0%, #000 60%);
  color: #eaeaea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.hero img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.content {
  margin-top: 24px;
  text-align: left;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 16px;
}

.highlight {
  font-size: 14px;
  line-height: 1.6;
  color: #ffd400;
  margin-bottom: 24px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #ffffff;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.store-button:hover {
  opacity: 0.9;
}

/* 데스크탑 */
@media (min-width: 768px) {
  .page {
    max-width: 520px;
  }
}
/* 맨 아래에 추가 */
.store-image-link {
  display: block;
  margin-top: 24px;
  text-align: center;
}

.store-image-link img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.store-image-link img:hover {
  opacity: 0.9;
}
