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

html, body {
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  background: #f5ede0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 20px;
}

.site-header {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.site-title {
  color: #4a3a28;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .5px;
}

.site-subtitle {
  color: #a99878;
  font-size: 12px;
  margin-top: 2px;
}

.lang-toggle {
  color: #a99878;
  font-size: 11px;
  margin-top: 4px;
}

.lang-toggle a {
  color: #4a3a28;
  text-decoration: underline;
}

.app-card {
  width: 100%;
  max-width: 360px;
  background: #2b2018;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .35);
}

.app-title {
  color: #ecdcc0;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.app-tagline {
  color: #b8a888;
  font-size: 13px;
  margin-bottom: 20px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* 두 배지를 동일 크기 박스(좁은 화면에선 함께 축소)에 담는다 */
.store-badge {
  flex: 0 1 150px;
  min-width: 0;
}

.store-badge img {
  display: block;
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.next-app {
  margin-top: 22px;
  color: #a99878;
  font-size: 11px;
  border: 1px dashed #cbb99a;
  padding: 6px 14px;
  border-radius: 12px;
}

.site-footer {
  margin-top: 40px;
  color: #c3b394;
  font-size: 10px;
  text-align: center;
  line-height: 1.6;
}

.site-footer a {
  color: #c3b394;
}
