@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");

:root {
  --bg: #eef4fb;
  --paper: #f8fbff;
  --ink: #172033;
  --muted: #64748b;
  --line: rgba(23, 32, 51, 0.14);
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family:
    "Wanted Sans Variable",
    "Wanted Sans",
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(37, 99, 235, 0.13),
      transparent 30%
    ),
    radial-gradient(circle at 85% 85%, rgba(15, 23, 42, 0.08), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, var(--bg) 54%, #dbeafe 100%);
  font-size: 18px;
  overflow-x: hidden;
}

body {
  position: relative;
}

.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
}

.notice {
  width: min(1024px, 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 255, 255, 0.48)
    ),
    var(--paper);
  box-shadow: var(--shadow);
}

.notice::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 22px;
}

.notice::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 15px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(248, 251, 255, 0.76);
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

h1 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

#notice-title {
  font-family: "NanumHarABeoJiEuiNaNum";
  font-size: clamp(2.3rem, 5.6vw, 3.7rem);
  font-weight: 500;
}

.shop-name {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 4.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lead {
  font-family: "NanumHarABeoJiEuiNaNum";
  max-width: 580px;
  margin: 30px auto 0;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.message {
  font-family: "NanumHarABeoJiEuiNaNum";
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.7vw, 1.25rem);
  line-height: 1.9;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 38px auto;
  max-width: 420px;
  color: rgba(37, 99, 235, 0.52);
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.45;
}

.divider span {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: currentColor;
}

.thanks {
  font-family: "NanumHarABeoJiEuiNaNum";
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.closing {
  margin: 22px auto 0;
  color: var(--accent);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(23, 32, 51, 0.48);
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  body {
    padding: 24px 14px;
  }

  .notice {
    border-radius: 24px;
    padding: 36px 24px;
  }

  .notice::before {
    inset: 12px;
    border-radius: 18px;
  }

  .lead {
    margin-top: 24px;
  }
}
