/* 공통 */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: #0f172a;
  background-color: #fae9ad; /* 전체 배경색 */
}
.no-scroll { overflow: hidden; }

.page {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fae9ad;  /* 부모에만 배경색 */
}

.left-bg {
  background-image: url("/static/api/img/tottogi_bg.png");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
  /* background-color 제거 */
}

.right-text {
  display: grid;
  place-items: center;
  padding: 32px;
  /* background 제거 */
}


.content {
  max-width: 520px;
}

.title {
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.12;
  margin: 0 0 12px;
}

.subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0 0 16px;
  color: #334155;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
  background-color: rgba(255, 255, 255, 0.6); /* 반투명 흰색 */
  border: 2px solid #0f172a;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.download-btn:hover {
  background-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}


.footer {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* 작은 화면(모바일)에서는 위아래 스택 */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .right-text { padding: 24px; }
}
