body {
  margin: 0;
  background: #f8f5f1;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  color: #454545;
}

.container {
  width: min(90%, 720px);
  margin: 40px auto;
  text-align: center;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.lang-btn {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: #fff;
  color: #9d784a;
  border: 1px solid #d8c4a8;
}

h1 {
  font-family: 'Noto Serif KR', serif;
  color: #383838;
}

.visitor {
  margin: 16px 0 22px;
  color: #8f7757;
  font-size: 15px;
  line-height: 1.7;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #efe8df;
}

.number {
  color: #b8915f;
  font-size: 14px;
  letter-spacing: 3px;
}

.title {
  margin-top: 18px;
  font-size: 32px;
  font-family: 'Noto Serif KR', serif;
  font-weight: 600;
  color: #383838;
}

.subtitle {
  margin-top: 12px;
  color: #b8915f;
  font-size: 18px;
  font-weight: 600;
}

.description {
  margin-top: 28px;
  padding-bottom: 42px;
  font-size: 19px;
  line-height: 1.9;
  color: #666;
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: break-word;
}

button {
  border: none;
  cursor: pointer;
  transition: 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.main-btn {
  min-width: 220px;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;
  background: #b8915f;
  color: white;
}

.refresh-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  background: #b8915f;
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.footer {
  margin: 32px 0 10px;
  color: #8f7757;
  font-size: 14px;
  line-height: 1.8;
}

.footer a {
  color: #9d784a;
  font-weight: 600;
  text-decoration: none;
}

button:active {
  transform: scale(0.97);
}

.refresh-btn:active {
  transform: rotate(180deg) scale(0.92);
}

@media (hover: hover) and (pointer: fine) {
  .main-btn:hover,
  .refresh-btn:hover {
    background: #9d784a;
  }

  .main-btn:hover {
    transform: translateY(-2px);
  }

  .refresh-btn:hover {
    transform: rotate(180deg);
  }
}

@media (max-width: 768px) {
  .container {
    width: 88%;
    margin: 20px auto;
  }

  .card {
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .title {
    font-size: 24px;
  }

  .description {
    font-size: 16px;
    line-height: 1.7;
  }

  .refresh-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
    right: 14px;
    bottom: 14px;
  }
}
