/* 호루스 점검 안내 페이지 */

:root {
  --bg: #0b0b0d;
  --bg-card: #141417;
  --line: #2a2a30;
  --gold: #d4af37;
  --gold-soft: #e8d18a;
  --text: #e9e9ec;
  --text-dim: #9a9aa4;
  --red: #e04b4b;
}

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

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  background-image: radial-gradient(
    ellipse at 50% 0%,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(11, 11, 13, 0) 60%
  );
  color: var(--text);
  font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', -apple-system,
    BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 44px 32px 36px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.logo {
  margin-bottom: 28px;
}

.logo img {
  width: 220px;
  max-width: 70%;
  height: auto;
}

.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lead {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 26px;
}

.time-box {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 10px;
  padding: 18px 16px;
  margin-bottom: 12px;
}

.time-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.time-value {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.time-sub {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.countdown {
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--text-dim);
}

.countdown-value {
  color: var(--text);
  font-weight: 700;
  margin-left: 6px;
  font-variant-numeric: tabular-nums;
}

.notes {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  margin-bottom: 24px;
}

.notes li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  color: var(--text-dim);
}

.notes li + li {
  margin-top: 8px;
}

.notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.apology {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 26px;
}

.retry {
  appearance: none;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  color: var(--gold-soft);
  font-size: 14px;
  font-family: inherit;
  padding: 11px 34px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.retry:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
}

.foot {
  margin-top: 22px;
  font-size: 11px;
  color: #55555e;
}

@media (max-width: 480px) {
  .card {
    padding: 32px 20px 28px;
  }

  .title {
    font-size: 21px;
  }

  .time-value {
    font-size: 24px;
  }

  .lead,
  .apology {
    font-size: 13px;
  }
}
