/* StoneAge Final — angular editorial system */
:root {
  --paper: #ffffff;
  --warm: #f7f5ef;
  --warm-2: #eeeae0;
  --ink: #151512;
  --muted: #68675f;
  --faint: #97958b;
  --line: #dedbd2;
  --line-strong: #aaa69b;
  --orange: #f05a24;
  --orange-dark: #bd3c10;
  --leaf: #5f7625;
  --danger: #b42318;
  --danger-bg: #fff1ed;
  --ok: #15683f;
  --ok-bg: #edf8f1;
  --maxw: 1180px;
  --font: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Segoe UI", "Malgun Gothic", system-ui, sans-serif;
}

[hidden] { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(21, 21, 18, .035) 50%, transparent calc(50% + .5px)),
    var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button, input, textarea { font: inherit; }
button:disabled { cursor: not-allowed; opacity: .48; }
::selection { background: var(--orange); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-right: 34px;
  padding-left: 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(21, 21, 18, .16);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: clamp(50px, 9vw, 150px);
  height: 3px;
  background: var(--orange);
  content: "";
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  position: relative;
  flex: 0 0 190px;
  width: 190px;
  height: 78px;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 248px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: saturate(1.05) contrast(1.04);
}

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links > a, .nav-group-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 28px 0 25px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .01em;
  line-height: inherit;
  white-space: nowrap;
  cursor: pointer;
}
.nav-links > a::after, .nav-group-trigger::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-group-trigger:hover, .nav-group.is-current > .nav-group-trigger { color: var(--ink); }
.nav-links > a:hover::after, .nav-links > a.active::after,
.nav-group-trigger:hover::after, .nav-group.is-current > .nav-group-trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group { position: relative; display: flex; align-items: stretch; }
.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.nav-group.open .nav-caret { transform: translateY(2px) rotate(225deg); }
.nav-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 1px);
  left: 50%;
  display: grid;
  min-width: 176px;
  padding: 5px;
  border-top: 3px solid var(--orange);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(21, 21, 18, .12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav-group-user .nav-dropdown { min-width: 224px; }
.nav-group.open > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}
.nav-dropdown a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: 0; }
.nav-dropdown a:hover, .nav-dropdown a.active {
  padding-left: 17px;
  background: var(--warm);
  color: var(--orange-dark);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn::after { content: "→"; font-size: 16px; font-weight: 500; }
.btn:hover { transform: translate(-3px, -3px); box-shadow: 3px 3px 0 var(--orange); }
.btn-primary { border-color: var(--ink); background: var(--ink); color: white; }
.btn-primary:hover { background: var(--orange); border-color: var(--orange); box-shadow: 3px 3px 0 var(--ink); }
.btn-ghost { border-color: var(--line-strong); }
.btn-discord { border-color: #5865f2; background: #5865f2; color: #fff; }
.btn-discord:hover { border-color: var(--ink); background: #4752c4; box-shadow: 3px 3px 0 var(--ink); }
.btn-sm { min-height: 39px; padding: 7px 14px; font-size: 12px; }
.btn-block { width: 100%; }

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 86px));
  display: flex;
  max-width: var(--maxw);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(90px, 12vw, 150px);
  padding-bottom: clamp(100px, 13vw, 160px);
  text-align: left;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: -5vw;
  color: transparent;
  content: "FINAL";
  font-size: clamp(120px, 22vw, 300px);
  font-weight: 950;
  line-height: .75;
  letter-spacing: -.09em;
  -webkit-text-stroke: 1px rgba(21, 21, 18, .085);
  transform: translateY(-42%);
  white-space: nowrap;
}
.hero::after {
  position: absolute;
  z-index: -1;
  right: 7%;
  bottom: 14%;
  width: 26%;
  height: 13px;
  background: linear-gradient(90deg, var(--orange), #ff9b42);
  content: "";
  transform: skewX(-28deg);
}
.hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(34px, 5.8vw, 72px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.068em;
  word-break: keep-all;
  white-space: nowrap;
}
.hero-server-status {
  --status-color: var(--muted);
  position: absolute;
  top: clamp(30px, 4vw, 54px);
  left: 34px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 10px;
  padding: 0 14px 10px 12px;
  border-bottom: 1px solid var(--line-strong);
  border-left: 3px solid var(--status-color);
  background: transparent;
  color: var(--status-color);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
}
.hero-server-status[data-state="online"] { --status-color: var(--ok); }
.hero-server-status[data-state="maintenance"] { --status-color: var(--danger); }
.hero-server-status-code {
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .17em;
}
.hero-server-status-mark {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: currentColor;
  box-shadow: 3px 3px 0 color-mix(in srgb, currentColor 18%, transparent);
}
.hero-server-status-label { color: currentColor; }
.gradient-text { color: var(--orange); }
.launch-countdown {
  position: relative;
  width: min(100%, 850px);
  margin-bottom: 32px;
  padding: 22px 26px 25px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--warm-2);
  color: #fff;
  isolation: isolate;
}
.launch-countdown::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: -38%;
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff9b42 32%, var(--orange) 70%, transparent);
  content: "";
  animation: launch-countdown-scan 4.2s cubic-bezier(.45, 0, .2, 1) infinite;
}
.launch-countdown::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: -27px;
  color: transparent;
  content: "08 / 21";
  font-size: clamp(58px, 9vw, 108px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  opacity: .2;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .42);
  white-space: nowrap;
}
.launch-countdown-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.launch-countdown-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ff9b65;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .18em;
  line-height: 1;
  white-space: nowrap;
}
.launch-countdown-signal {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(240, 90, 36, .7);
  animation: launch-countdown-pulse 1.8s ease-out infinite;
}
.launch-countdown-date {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: -.01em;
  text-align: right;
}
.launch-countdown-date time { margin-left: 7px; color: #fff; font-weight: 900; }
.launch-countdown-clock {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 17px;
}
.launch-countdown-unit {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 5px 18px 7px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}
.launch-countdown-unit:first-child { justify-content: flex-start; padding-left: 0; border-left: 0; }
.launch-countdown-unit:last-child { justify-content: flex-end; padding-right: 0; }
.launch-countdown-unit strong {
  min-width: 1.45em;
  color: #fff;
  font-size: clamp(44px, 6.6vw, 76px);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .95;
  text-align: center;
}
.launch-countdown-unit strong.is-ticking { animation: launch-countdown-tick .38s cubic-bezier(.2, .8, .2, 1); }
.launch-countdown-unit span {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  white-space: nowrap;
}
.launch-countdown-rail {
  position: relative;
  z-index: 1;
  height: 2px;
  margin-top: 17px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}
.launch-countdown-rail span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28%;
  background: linear-gradient(90deg, var(--orange), #ffb27e);
  animation: launch-countdown-rail 3.2s ease-in-out infinite alternate;
}
.launch-countdown[data-state="open"] .launch-countdown-signal {
  background: #7ed6a5;
  box-shadow: 0 0 0 5px rgba(126, 214, 165, .15);
  animation: none;
}
.launch-countdown[data-state="open"] .launch-countdown-kicker { color: #9ce9be; }
.launch-countdown[data-state="open"] .launch-countdown-rail span { width: 100%; background: #7ed6a5; animation: none; }
@keyframes launch-countdown-scan {
  0%, 16% { transform: translateX(0); }
  68%, 100% { transform: translateX(365%); }
}
@keyframes launch-countdown-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 90, 36, .72); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(240, 90, 36, 0); }
}
@keyframes launch-countdown-tick {
  0% { opacity: .35; transform: translateY(-7px); }
  100% { opacity: 1; transform: none; }
}
@keyframes launch-countdown-rail {
  from { transform: translateX(-8%); }
  to { transform: translateX(265%); }
}
.hero-sub {
  width: 100%;
  max-width: 650px;
  padding-left: 18px;
  border-left: 3px solid var(--leaf);
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  overflow-wrap: anywhere;
}
.hero-sub span { display: block; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; flex-wrap: wrap; }

.manifesto {
  position: relative;
  padding-top: clamp(90px, 11vw, 145px);
  padding-bottom: clamp(90px, 11vw, 145px);
  border-top: 1px solid var(--ink);
}
.manifesto::before {
  position: absolute;
  top: 26px;
  left: 34px;
  color: var(--faint);
  content: "OUR FINAL STONE / MANIFESTO";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}
.manifesto-doc { max-width: 790px; margin: 0 auto; }
.manifesto-lede {
  max-width: 680px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.052em;
}
.manifesto-lede::after { display: block; width: 46px; height: 4px; margin: 28px auto 0; background: var(--orange); content: ""; }
.manifesto-group { margin-bottom: 52px; text-align: center; }
.manifesto-group p { color: #44433e; font-size: clamp(15px, 1.7vw, 18px); line-height: 2; }
.manifesto-group p + p { margin-top: 24px; }
.manifesto-group strong { color: var(--orange-dark); }
.manifesto-aside { display: block; margin-top: 14px; color: var(--faint); font-size: 12px; line-height: 1.8; }
.manifesto-quote {
  position: relative;
  margin: 76px auto;
  padding: 42px 56px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: linear-gradient(90deg, var(--warm) 0 13px, transparent 13px);
  text-align: center;
  font-size: clamp(23px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.035em;
}
.manifesto-quote::before { position: absolute; top: -14px; left: 28px; padding: 0 10px; background: var(--paper); color: var(--orange); content: "◆"; font-size: 17px; }
.manifesto-divider { width: 100%; height: 1px; margin: 72px auto; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.manifesto-closing { max-width: 760px; }

.section {
  position: relative;
  padding-top: clamp(88px, 10vw, 132px);
  padding-bottom: clamp(88px, 10vw, 132px);
  border-top: 1px solid var(--line-strong);
}
.section::after { position: absolute; top: -1px; left: 34px; width: 72px; height: 4px; background: var(--orange); content: ""; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; }
.section-head-center { display: block; text-align: center; }
.section-head-center .section-desc { margin-right: auto; margin-left: auto; }
.section-title { font-size: clamp(34px, 5vw, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -.052em; }
.section-desc { max-width: 620px; margin-top: 14px; color: var(--muted); }
.pet-event-head { margin-top: 110px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.card {
  position: relative;
  min-height: 230px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  transition: color .2s ease, background .2s ease;
}
.card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 90px;
  height: 90px;
  background: var(--orange);
  content: "";
  transform: rotate(45deg) translate(65px, 0);
  transition: transform .25s ease;
}
.card:hover { background: var(--warm); }
.card:hover::after { transform: rotate(45deg) translate(14px, 0); }
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--ink);
  background: var(--warm);
  font-size: 15px;
  font-weight: 900;
}
.card h3 { margin-bottom: 11px; font-size: 19px; letter-spacing: -.025em; }
.card p { color: var(--muted); font-size: 14px; }
.card p + p { margin-top: 9px; }
.policy-card { min-height: 210px; display: flex; align-items: flex-start; gap: 22px; }
.policy-card .card-icon { flex: 0 0 auto; margin: 0; }

.dual-block { max-width: 900px; margin: 0 auto; padding: 12px 0 12px 12px; border-left: 8px solid var(--orange); background: #fff; }
.dual-list { display: grid; gap: 1px; background: var(--line); }
.dual-item { display: flex; align-items: flex-start; gap: 18px; padding: 24px; background: #fff; color: var(--ink); }
.dual-item:hover { background: var(--warm); }
.dual-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--ink); font-size: 15px; }
.dual-item p { color: var(--muted); font-size: 14.5px; }

.eyebrow, .tip-tag {
  display: inline-block;
  padding: 5px 9px;
  border-left: 3px solid var(--orange);
  background: var(--warm);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* 계정 상태 배지 — .eyebrow 계열을 따르되 상태별 색만 바꾼다. */
.account-badge {
  display: inline-block;
  padding: 5px 9px;
  border-left: 3px solid var(--line-strong);
  background: var(--warm);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  white-space: nowrap;
}
.account-badge-active { border-left-color: var(--ok); background: var(--ok-bg); color: var(--ok); }
.account-badge-suspended { border-left-color: var(--orange); background: var(--warm-2); color: var(--orange-dark); }
.account-badge-banned { border-left-color: var(--danger); background: var(--danger-bg); color: var(--danger); }

/* 활동 레벨 — 닉네임 색과 태그를 함께 쓴다. 전역적으로 border-radius가
   0 !important라 둥근 알약은 만들 수 없고, 사이트의 각진 톤에 맞춘다.
   태그는 solid 배경 + 흰 글자로 9px에서도 또렷하게 읽히게 했다. */
.user-name { font-weight: 800; }
.user-name.level-1 { color: #4a5560; }
.user-name.level-2 { color: #2f6b4f; }
.user-name.level-3 { color: #2f5d8c; }
.user-name.level-4 { color: var(--orange-dark); }
.level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 18px;
  margin-left: 6px;
  padding: 0 6px;
  background: #4a5560;
  color: #fff;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}
.level-badge-1 { background: #4a5560; }
.level-badge-2 { background: #2f6b4f; }
.level-badge-3 { background: #2f5d8c; }
/* LV4는 운영자가 직접 지정하는 등급이라 브랜드 색으로 구분한다. */
.level-badge-4 { background: var(--orange-dark); }
.nav-level-badge { margin-right: -4px; margin-left: 0; }

/* 관리자 회원 목록 — 범용 테이블 컴포넌트가 없어 격자선 방식을 따른다. */
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.admin-toolbar input[type="search"] { flex: 1 1 220px; min-width: 180px; height: 42px; padding: 0 12px; border: 1px solid var(--line-strong); background: var(--paper); font: inherit; font-size: 14px; }
.admin-count { color: var(--muted); font-size: 13px; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); font-size: 14px; }
.admin-table th, .admin-table td { padding: 11px 10px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table thead th { background: var(--warm); color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.admin-table tbody tr:hover { background: var(--warm); }
.admin-table td.admin-actions { white-space: nowrap; }
.admin-table input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--orange); cursor: pointer; }
.admin-mini { height: 32px; padding: 0 10px; border: 1px solid var(--line-strong); background: var(--paper); font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.admin-mini:hover { background: var(--ink); color: var(--paper); }
.admin-mini-danger { border-color: var(--danger); color: var(--danger); }
.admin-mini-danger:hover { background: var(--danger); color: var(--paper); }
.admin-days { width: 58px; height: 32px; padding: 0 6px; border: 1px solid var(--line-strong); font: inherit; font-size: 12px; }
.admin-level-control { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; min-width: 190px; }
.admin-level-control .level-badge { margin-left: 0; }
.admin-level { height: 32px; padding: 0 7px; border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink); font: inherit; font-size: 12px; }
.admin-post-count { color: var(--faint); font-size: 10px; white-space: nowrap; }
.admin-empty { padding: 40px 0; text-align: center; color: var(--muted); }
.admin-result { margin-top: 16px; border-left: 4px solid var(--line-strong); background: var(--warm); padding: 12px 14px; font-size: 13px; }
.admin-result.ok { border-left-color: var(--ok); background: var(--ok-bg); }
.admin-result.err { border-left-color: var(--danger); background: var(--danger-bg); }
.donation-history-page { padding-bottom: 96px; }
.donation-history-hero { padding-bottom: 44px; }
.donation-history-gate { display: grid; max-width: 920px; min-height: 310px; grid-template-columns: 92px minmax(0, 1fr); gap: 26px 30px; align-items: center; margin-bottom: 96px; padding: 38px; border: 2px solid var(--ink); background: var(--ink); color: #fff; box-shadow: 12px 12px 0 var(--orange); }
.donation-history-gate-mark { display: grid; width: 86px; height: 86px; place-items: center; border: 3px solid var(--orange); color: var(--orange); font-size: 36px; font-weight: 950; letter-spacing: -.12em; }
.donation-history-gate-copy span, .donation-history-security-strip span, .donation-history-summary article > span, .donation-history-privacy strong { display: block; margin-bottom: 5px; color: var(--orange); font-size: 9px; font-weight: 950; letter-spacing: .17em; }
.donation-history-gate-copy h2 { font-size: clamp(27px, 4vw, 43px); letter-spacing: -.045em; }
.donation-history-gate-copy p { max-width: 680px; margin-top: 9px; color: #c8c6bf; font-size: 12px; line-height: 1.7; }
.donation-history-gate form { grid-column: 2; }
.donation-history-gate form label { display: block; margin-bottom: 7px; color: #eeece5; font-size: 11px; font-weight: 850; }
.donation-history-password-row { display: grid; grid-template-columns: minmax(0, 1fr) 140px; }
.donation-history-password-row input { min-width: 0; height: 50px; padding: 0 15px; border: 2px solid #fff; background: #fff; color: var(--ink); }
.donation-history-password-row .btn { min-height: 50px; border-color: var(--orange); }
.donation-history-gate .form-msg { min-height: 24px; margin-top: 8px; color: #ffb59a; font-size: 11px; }
.donation-history-gate .form-msg.ok { color: #91e0bc; }
.donation-history-root { margin-bottom: 12px; }
.donation-history-security-strip { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; border: 2px solid var(--ink); background: var(--ink); color: #fff; }
.donation-history-security-strip > div strong { display: block; font-size: 14px; }
.donation-history-security-strip nav { display: flex; gap: 8px; }
.donation-history-security-strip .btn-ghost { border-color: #77766f; background: transparent; color: #fff; }
.donation-history-security-strip .btn-ghost:hover { border-color: #fff; background: #fff; color: var(--ink); }
.donation-history-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-right: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.donation-history-summary article { min-width: 0; padding: 23px 21px; border-right: 1px solid var(--line); background: #fff; }
.donation-history-summary article:last-child { border-right: 0; }
.donation-history-summary article strong { display: block; overflow-wrap: anywhere; font-size: clamp(20px, 2.2vw, 29px); letter-spacing: -.035em; line-height: 1.2; }
.donation-history-summary article small { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; }
.donation-history-filters { display: grid; grid-template-columns: minmax(190px, 1.4fr) minmax(150px, .8fr) minmax(150px, .8fr) auto auto; gap: 10px; align-items: end; padding: 20px; border: 2px solid var(--ink); background: var(--warm); }
.donation-history-filters label > span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.donation-history-filters input[type="search"], .donation-history-filters select { width: 100%; min-width: 0; height: 42px; padding: 0 11px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font: inherit; font-size: 12px; }
.donation-history-paid-toggle { display: flex; min-height: 42px; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid var(--line-strong); background: #fff; cursor: pointer; }
.donation-history-paid-toggle input { width: 17px; height: 17px; accent-color: var(--orange); }
.donation-history-paid-toggle > span { margin: 0 !important; color: var(--ink) !important; white-space: nowrap; }
.donation-history-filters > .btn { min-height: 42px; }
.donation-history-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 2px 10px; color: var(--muted); font-size: 10px; }
.donation-history-meta b { color: var(--ink); }
.history-status-dot { display: inline-block; width: 7px; height: 7px; margin: 0 4px 0 9px; background: var(--line-strong); }
.history-status-dot.is-credited { background: var(--ok); }
.history-status-dot.is-review { background: var(--danger); }
.donation-history-table-wrap { overflow-x: auto; border: 2px solid var(--ink); background: #fff; }
.donation-history-table { width: 100%; min-width: 1120px; border-collapse: collapse; font-size: 12px; }
.donation-history-table th { padding: 12px 13px; border-right: 1px solid #3e3e3a; background: var(--ink); color: #fff; font-size: 9px; letter-spacing: .09em; text-align: left; white-space: nowrap; }
.donation-history-table th:last-child { border-right: 0; }
.donation-history-table td { padding: 14px 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: middle; }
.donation-history-table td:last-child { border-right: 0; }
.donation-history-table tbody tr:last-child td { border-bottom: 0; }
.donation-history-table tbody tr:hover { background: #fff9f5; }
.donation-history-table td > strong, .donation-history-table td > small { display: block; }
.donation-history-table td > strong { font-size: 12px; }
.donation-history-table td > small { margin-top: 4px; color: var(--muted); font-size: 9px; white-space: nowrap; }
.donation-history-table .history-bonus { color: var(--danger); font-weight: 850; }
.history-coin { display: flex; align-items: center; gap: 8px; }
.history-coin > b { display: grid; width: 32px; height: 32px; place-items: center; border: 2px solid var(--ink); border-radius: 50% !important; background: var(--ink); color: #fff; font-size: 15px; }
.history-coin.is-xmr > b { border-color: var(--orange); background: var(--orange); }
.history-coin.is-usdt > b { border-color: #26a17b; background: #26a17b; }
.history-coin > span { font-size: 10px; font-weight: 950; letter-spacing: .05em; line-height: 1.2; }
.history-coin small { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; letter-spacing: .04em; }
.history-status { display: inline-block; padding: 5px 7px; border: 1px solid var(--line-strong); background: var(--warm); font-size: 9px; font-weight: 900; white-space: nowrap; }
.history-status.is-credited { border-color: #7dbd9c; background: var(--ok-bg); color: #12633c; }
.history-status.is-review { border-color: #e89578; background: var(--danger-bg); color: var(--danger); }
.history-status.is-confirming, .history-status.is-pending { border-color: #d9ad55; background: #fff5d8; color: #755211; }
.history-status.is-expired { color: var(--muted); }
.donation-history-table code { display: inline-block; margin-right: 6px; color: var(--muted); font-family: Consolas, monospace; font-size: 9px; }
.donation-history-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 18px 0; }
.donation-history-pagination span { min-width: 64px; font-size: 11px; font-weight: 850; text-align: center; }
.donation-history-privacy { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 20px; margin-top: 26px; padding: 18px 20px; border-left: 5px solid #26a17b; background: #eaf8f3; }
.donation-history-privacy strong { margin: 0; color: #16775a; }
.donation-history-privacy p { color: #3f6358; font-size: 11px; line-height: 1.7; }
@media (max-width: 820px) {
  .admin-table thead { display: none; }
  .admin-table tbody tr { display: block; border-bottom: 1px solid var(--line-strong); padding: 8px 0; }
  .admin-table td { display: flex; justify-content: space-between; gap: 12px; border-bottom: 0; padding: 5px 8px; }
  .admin-table td::before { content: attr(data-label); color: var(--muted); font-size: 11px; font-weight: 850; text-transform: uppercase; }
  .donation-history-gate { grid-template-columns: 72px minmax(0, 1fr); padding: 30px 26px; }
  .donation-history-gate-mark { width: 68px; height: 68px; }
  .donation-history-gate form { grid-column: 1 / -1; }
  .donation-history-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .donation-history-summary article:nth-child(2) { border-right: 0; }
  .donation-history-summary article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .donation-history-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .donation-history-filters > .btn { grid-column: 1 / -1; }
  .donation-history-table { display: block; min-width: 0; }
  .donation-history-table thead { display: none; }
  .donation-history-table tbody { display: grid; gap: 10px; padding: 10px; background: var(--warm); }
  .donation-history-table tr { display: block; border: 1px solid var(--ink); background: #fff; }
  .donation-history-table td { display: grid; width: 100%; min-height: 48px; grid-template-columns: 92px minmax(0, 1fr); gap: 13px; align-items: center; padding: 11px 13px; border-right: 0; border-bottom: 1px solid var(--line); }
  .donation-history-table td:last-child { border-bottom: 0; }
  .donation-history-table td::before { grid-row: 1 / span 3; color: var(--faint); content: attr(data-label); font-size: 8px; font-weight: 950; letter-spacing: .08em; }
  .donation-history-table td > * { min-width: 0; grid-column: 2; justify-self: end; text-align: right; }
  .donation-history-table .history-coin { justify-self: end; text-align: left; }
  .donation-history-meta { align-items: flex-start; flex-direction: column; }
}

.page-hero {
  position: relative;
  padding-top: 104px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.page-hero::before { position: absolute; top: 45px; right: 34px; color: var(--warm-2); content: "FINAL"; font-size: clamp(70px, 15vw, 170px); font-weight: 950; line-height: 1; letter-spacing: -.08em; pointer-events: none; }
.page-hero > * { position: relative; }
.page-hero h1 { max-width: 760px; margin-top: 18px; font-size: clamp(44px, 7vw, 76px); font-weight: 900; line-height: 1.02; letter-spacing: -.06em; }
.page-hero p { max-width: 620px; margin: 18px 0 0; color: var(--muted); font-size: 16px; }

.form-shell {
  max-width: 540px;
  margin: 64px auto 120px;
  padding: clamp(30px, 5vw, 52px);
  border-top: 5px solid var(--orange);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--warm-2);
}
.form-shell h2 { font-size: 30px; letter-spacing: -.04em; }
.form-desc { margin-top: 7px; margin-bottom: 34px; color: var(--muted); font-size: 13px; }
.field { margin-bottom: 21px; }
.field label { display: block; margin-bottom: 8px; color: #45433e; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.req { color: var(--danger); }
.field input, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink); }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--ink); box-shadow: inset 4px 0 0 var(--orange); }
.field-hint { margin-top: 7px; color: var(--faint); font-size: 11px; }
.alert { display: flex; gap: 10px; margin: 24px 0; padding: 15px; border-left: 4px solid var(--line-strong); background: var(--warm); font-size: 13px; }
.alert-danger { border-left-color: var(--danger); background: var(--danger-bg); color: #7a2018; }
.form-msg { display: none; margin-top: 16px; padding: 13px 14px; border-left: 4px solid var(--line-strong); font-size: 13px; }
.form-msg.show { display: block; }
.form-msg.ok { border-left-color: var(--ok); background: var(--ok-bg); color: var(--ok); }
.form-msg.err { border-left-color: var(--danger); background: var(--danger-bg); color: var(--danger); }

.download-box {
  position: relative;
  max-width: 760px;
  margin: 60px auto 110px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--warm-2);
  text-align: left;
}
.download-box::before { position: absolute; top: 0; right: 0; width: 28%; height: 7px; background: var(--orange); content: ""; }
.download-box .btn { margin-top: 28px; }
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 38px; border: 1px solid var(--line); background: var(--line); text-align: left; }
.spec-list li { padding: 16px; background: var(--paper); color: var(--muted); font-size: 13px; }
.spec-list b { display: block; margin-bottom: 4px; color: var(--orange-dark); font-size: 10px; letter-spacing: .08em; }
.download-guide-box { max-width: 900px; }
.download-steps { display: grid; gap: 1px; margin-top: 30px; border: 1px solid var(--line); background: var(--line); text-align: left; counter-reset: download-step; }
.download-steps li { display: grid; grid-template-columns: minmax(150px, .45fr) 1fr; gap: 18px; padding: 18px 20px; background: var(--paper); counter-increment: download-step; }
.download-steps b { color: var(--ink); font-size: 14px; }
.download-steps b::before { margin-right: 9px; color: var(--orange-dark); content: counter(download-step, decimal-leading-zero); }
.download-steps span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.card > .btn { margin-top: 18px; }

.guide-steps { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--ink); counter-reset: step; }
.guide-step { display: flex; gap: 24px; padding: 30px 4px; border-bottom: 1px solid var(--line-strong); }
.guide-step .num { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--ink); background: var(--warm); counter-increment: step; font-weight: 900; font-size: 13px; }
.guide-step .num::before { content: counter(step, decimal-leading-zero); }
.guide-step h4 { margin-bottom: 6px; font-size: 17px; }
.guide-step p { color: var(--muted); font-size: 14px; }

/* 실시간 공지 - 공지사항 게시판 상단의 채팅형 패널 (board.html #live-notice) */
.live-notice { margin-top: 38px; border: 2px solid var(--ink); background: var(--paper); }
.live-notice-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; padding: 15px 18px; border-bottom: 1px solid var(--ink); background: var(--warm); }
.live-notice-head h2 { font-size: 16px; letter-spacing: -0.01em; }
.live-notice-sub { color: var(--muted); font-size: 12.5px; }
.live-notice-feed { display: grid; gap: 1px; max-height: 340px; overflow-y: auto; background: var(--line); }
.live-notice-empty { padding: 34px 18px; background: var(--paper); color: var(--muted); font-size: 13.5px; text-align: center; }
.live-item { position: relative; padding: 14px 18px; background: var(--paper); }
.live-item:hover { background: var(--warm); }
.live-item-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; color: var(--muted); font-size: 12px; }
.live-item-author { color: var(--ink); font-weight: 800; }
.live-item-badge { padding: 1px 6px; background: var(--orange-dark); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: 0.02em; }
.live-item-edited { color: var(--faint); }
.live-item-body { color: var(--ink); font-size: 14px; line-height: 1.65; white-space: pre-wrap; word-break: break-word; }
/* 수정/삭제 버튼이 실제로 떠 있을 때만 본문을 비켜 준다. 일반 유저에게는
   버튼이 없고, 수정 중에는 버튼이 hidden 이라 입력창이 전폭을 쓴다. */
.live-item:has(> .live-item-actions:not([hidden])) .live-item-body { padding-right: 92px; }
.live-item-actions { position: absolute; top: 12px; right: 14px; display: flex; gap: 10px; }
.live-action { border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 11.5px; cursor: pointer; }
.live-action:hover { color: var(--orange-dark); text-decoration: underline; }
.live-action[data-act="delete"] { color: var(--danger); }
.live-action:disabled { color: var(--faint); cursor: default; text-decoration: none; }
.live-edit-input { width: 100%; min-height: 62px; padding: 10px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font: inherit; font-size: 14px; resize: vertical; }
.live-edit-actions { position: static; justify-content: flex-end; margin-top: 8px; }
.live-notice-form { display: flex; align-items: flex-end; gap: 10px; padding: 13px 18px; border-top: 1px solid var(--ink); background: var(--warm); }
.live-notice-form textarea { flex: 1; min-height: 42px; max-height: 140px; padding: 11px 12px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font: inherit; font-size: 14px; line-height: 1.5; resize: none; }
.live-notice-form .btn { flex: 0 0 auto; }
.live-notice .form-msg { margin: 0 18px 15px; }

.game-info-filter {
  margin-top: 38px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--warm-2);
}
.game-info-filter-copy {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 20px 22px 18px;
  border-bottom: 1px solid var(--ink);
  background: linear-gradient(110deg, var(--warm) 0 38%, var(--paper) 38% 100%);
}
.game-info-filter-copy > span { color: var(--orange-dark); font-size: 9px; font-weight: 950; letter-spacing: .18em; }
.game-info-filter-copy h2 { font-size: 18px; letter-spacing: -.025em; }
.game-info-filter-copy p { margin-top: 4px; color: var(--muted); font-size: 12px; }
.game-info-category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}
.game-info-category-tab {
  --category-accent: var(--ink);
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 15px 16px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.game-info-category-tab[data-category="raid"] { --category-accent: #b34d35; }
.game-info-category-tab[data-category="duel"] { --category-accent: #2b6f6b; }
.game-info-category-tab[data-category="event"] { --category-accent: #76549a; }
.game-info-category-tab[data-category="tip"] { --category-accent: #47723f; }
.game-info-category-tab:hover { z-index: 1; background: var(--warm); color: var(--category-accent); }
.game-info-category-tab:focus-visible { z-index: 2; outline: 3px solid var(--orange); outline-offset: -3px; }
.game-info-category-tab[aria-selected="true"] { background: var(--category-accent); color: #fff; }
.game-info-category-tab[aria-selected="true"]::after { position: absolute; right: 13px; bottom: 8px; left: 13px; height: 2px; background: currentColor; content: ""; opacity: .55; }
.category-index { align-self: start; padding-top: 2px; font-size: 9px; font-weight: 900; letter-spacing: .06em; opacity: .62; }
.category-name { font-size: 14px; font-weight: 900; letter-spacing: -.01em; }
.category-count { min-width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 900; line-height: 1; }
.game-info-filter:not([hidden]) + .board-toolbar { margin-top: 25px; }

.promotion-guide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 var(--warm-2);
}
.promotion-guide[hidden] { display: none; }
.promotion-guide::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--orange), #f0a43b 58%, #3f7650); content: ""; }
.promotion-guide-copy { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 22px; align-items: start; padding: 25px 28px 24px; }
.promotion-guide-kicker { padding-top: 4px; color: var(--orange-dark); font-size: 9px; font-weight: 950; letter-spacing: .13em; writing-mode: vertical-rl; }
.promotion-guide-copy h2 { margin-bottom: 6px; font-size: clamp(17px, 2vw, 22px); font-weight: 900; letter-spacing: -.025em; }
.promotion-guide-copy p { max-width: 650px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.promotion-guide-rules { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--ink); background: var(--warm); }
.promotion-guide-rules span { display: grid; place-items: center; align-content: center; gap: 7px; min-height: 112px; padding: 16px 8px; border-left: 1px solid var(--line); font-size: 11px; font-weight: 850; text-align: center; }
.promotion-guide-rules span:first-child { border-left: 0; }
.promotion-guide-rules b { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--orange-dark); border-radius: 50%; color: var(--orange-dark); font-size: 10px; }
.promotion-guide:not([hidden]) + .board-toolbar { margin-top: 29px; }

.board-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin: 38px 0 22px; }
.board-list { display: grid; border-top: 2px solid var(--ink); }
.board-item { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 24px; align-items: center; padding: 20px 6px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: padding .18s ease, background .18s ease, border-color .18s ease; }
.board-item:hover { padding-left: 14px; border-bottom-color: var(--orange); background: var(--warm); }
.board-item:hover .b-title { color: var(--orange-dark); }
.b-title { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-weight: 800; }
.b-body { margin-top: 3px; color: var(--muted); font-size: 13px; }
.b-author, .b-date { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.b-author { display: flex; align-items: center; justify-content: flex-end; }
.comment-meta b { display: inline-flex; align-items: center; }
.image-count { margin-left: 6px; color: var(--orange-dark); font-size: 11px; font-weight: 700; }
.image-preview-list { margin-top: 7px; color: var(--muted); font-size: 12px; }
.board-item.bug-status-fixed { border-left: 4px solid #2f7442; background: #e9f6ec; }
.board-item.bug-status-intended { border-left: 4px solid #a67808; background: #fff5cc; }
.board-item.bug-status-checking { border-left: 4px solid #a84270; background: #fbe6ef; }
.board-item.bug-status-fixed:hover { background: #ddf0e1; }
.board-item.bug-status-intended:hover { background: #ffedac; }
.board-item.bug-status-checking:hover { background: #f7d7e5; }
.board-item.promotion-entry { padding-right: 14px; padding-left: 14px; background: #fff; }
.board-item.promotion-entry:hover { padding-left: 20px; }
.board-item.promotion-notice { border-left: 4px solid var(--orange); background: linear-gradient(90deg, #fff8ee, #fff 44%); }
.board-item.promotion-status-completed { border-left: 4px solid #2f7b4a; background: #e7f5eb; }
.board-item.promotion-status-failed { border-left: 4px solid #bd3e3e; background: #fde9e7; }
.board-item.promotion-status-completed:hover { background: #d9eedf; }
.board-item.promotion-status-failed:hover { background: #f9d9d6; }
.bug-status-tag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 23px;
  padding: 2px 7px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}
.bug-status-tag.bug-status-fixed { background: #d4ecd9; color: #215f35; }
.bug-status-tag.bug-status-intended { background: #ffe895; color: #765300; }
.bug-status-tag.bug-status-checking { background: #f2c4d7; color: #873256; }
.bug-status-tag.bug-public-tag { background: #d7e6f7; color: #1d4f7c; }
.bug-status-tag.promotion-status-completed { background: #cfe9d7; color: #205f37; }
.bug-status-tag.promotion-status-failed { background: #f5ceca; color: #982f2f; }
.promotion-notice-tag, .promotion-day-tag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
.promotion-notice-tag { background: var(--ink); color: #fff; }
.promotion-day-tag { border-color: #d5a05b; background: #fff4e4; color: #914f14; }
.post-view-titleline h2 .promotion-day-tag { margin-right: 7px; vertical-align: 3px; }
.game-info-category-tag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border: 1px solid currentColor;
  background: var(--warm);
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .055em;
  line-height: 1;
  white-space: nowrap;
}
.game-info-category-tag.category-raid { background: #f8e8e2; color: #913a27; }
.game-info-category-tag.category-duel { background: #e1f1ef; color: #205d59; }
.game-info-category-tag.category-event { background: #eee7f6; color: #664486; }
.game-info-category-tag.category-tip { background: #e8f1e5; color: #396332; }
.post-images { display: grid; gap: 14px; margin-top: 24px; }
.post-images img { width: auto; max-height: 720px; border: 1px solid var(--line); object-fit: contain; }
.text-link { color: var(--orange-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.account-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  padding: 4px 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease;
}
.account-label:hover { color: var(--orange-dark); }
.form-section-title { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }

.modal.editor-modal { width: min(1040px, 100%); max-width: 1040px; max-height: 92vh; padding: 30px; }
.game-info-category-field { min-width: 0; margin: 0 0 20px; padding: 17px 0 0; border: 0; border-top: 2px solid var(--ink); }
.game-info-category-field legend { float: left; width: 100%; margin-bottom: 11px; font-size: 13px; font-weight: 900; }
.game-info-category-field legend span { margin-left: 7px; color: var(--orange-dark); font-size: 10px; letter-spacing: .06em; }
.game-info-category-options { clear: both; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.game-info-category-option {
  --category-accent: var(--orange-dark);
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.game-info-category-option.category-raid { --category-accent: #b34d35; }
.game-info-category-option.category-duel { --category-accent: #2b6f6b; }
.game-info-category-option.category-event { --category-accent: #76549a; }
.game-info-category-option.category-tip { --category-accent: #47723f; }
.game-info-category-option:hover { border-color: var(--category-accent); transform: translateY(-1px); }
.game-info-category-option:has(input:checked) { border-color: var(--category-accent); background: color-mix(in srgb, var(--category-accent) 10%, #fff); box-shadow: inset 0 -3px 0 var(--category-accent); }
.game-info-category-option input { width: 17px; height: 17px; flex: 0 0 auto; margin: 0; accent-color: var(--category-accent); cursor: pointer; }
.game-info-category-option span { display: grid; gap: 2px; }
.game-info-category-option b { color: var(--category-accent); font-size: 13px; }
.game-info-category-option small { color: var(--muted); font-size: 10px; }
.bug-status-field { min-width: 0; margin: 0 0 20px; padding: 17px 0 0; border: 0; border-top: 2px solid var(--ink); }
.bug-status-field legend { float: left; width: 100%; margin-bottom: 5px; font-size: 13px; font-weight: 900; }
.bug-status-field legend span { margin-left: 7px; color: var(--orange-dark); font-size: 10px; letter-spacing: .06em; }
.bug-status-field > p { clear: both; margin-bottom: 12px; color: var(--muted); font-size: 12px; }
.bug-status-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.bug-status-option { display: flex; min-height: 46px; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font-size: 13px; font-weight: 850; cursor: pointer; }
.bug-status-option:hover { border-color: var(--ink); }
.bug-status-option input { width: 17px; height: 17px; flex: 0 0 auto; margin: 0; cursor: pointer; }
.bug-status-option-fixed input { accent-color: #2f7442; }
.bug-status-option-intended input { accent-color: #a67808; }
.bug-status-option-checking input { accent-color: #a84270; }
.bug-status-option-fixed:has(input:checked) { border-color: #2f7442; background: #e9f6ec; color: #215f35; }
.bug-status-option-intended:has(input:checked) { border-color: #a67808; background: #fff5cc; color: #765300; }
.bug-status-option-checking:has(input:checked) { border-color: #a84270; background: #fbe6ef; color: #873256; }
.bug-public-options { grid-template-columns: minmax(0, 1fr); }
.bug-status-option-public input { accent-color: #2b6cb0; }
.bug-status-option-public:has(input:checked) { border-color: #2b6cb0; background: #e8f1fb; color: #1d4f7c; }
.promotion-status-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.promotion-status-option-completed input { accent-color: #2f7b4a; }
.promotion-status-option-failed input { accent-color: #bd3e3e; }
.promotion-status-option-completed:has(input:checked) { border-color: #2f7b4a; background: #e7f5eb; color: #205f37; }
.promotion-status-option-failed:has(input:checked) { border-color: #bd3e3e; background: #fde9e7; color: #982f2f; }
.promotion-title-hint { margin-top: 7px; color: var(--orange-dark); }
.editor-field { margin-bottom: 18px; }
.blog-editor { position: relative; overflow: hidden; border: 1px solid var(--line-strong); background: #fff; }
.editor-toolbar { position: sticky; z-index: 2; top: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 10px; border-bottom: 1px solid var(--line); background: var(--warm); }
.editor-toolbar button, .editor-toolbar select { min-height: 36px; padding: 6px 10px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font-size: 12px; font-weight: 750; cursor: pointer; }
.editor-toolbar button:hover, .editor-toolbar select:hover { border-color: var(--orange); color: var(--orange-dark); }
.editor-toolbar select { min-width: 108px; }
.editor-toolbar .editor-image-button { border-color: var(--orange); background: var(--orange); color: #fff; }
.toolbar-divider { width: 1px; height: 24px; margin: 0 3px; background: var(--line-strong); }
.editor-content { min-height: 420px; overflow-wrap: anywhere; padding: 30px 34px 80px; outline: none; color: var(--ink); font-size: 16px; line-height: 1.85; }
.editor-content:empty::before { color: var(--faint); content: attr(data-placeholder); pointer-events: none; }
.editor-content p { min-height: 1.7em; margin: 0 0 12px; }
.editor-content h2, .post-rich-content h2 { margin: 28px 0 12px; font-size: 28px; line-height: 1.35; }
.editor-content h3, .post-rich-content h3 { margin: 22px 0 10px; font-size: 21px; line-height: 1.45; }
.editor-content blockquote, .post-rich-content blockquote { margin: 22px 0; padding: 14px 18px; border-left: 4px solid var(--orange); background: var(--warm); color: var(--muted); }
.editor-content ul, .editor-content ol, .post-rich-content ul, .post-rich-content ol { margin: 12px 0 18px 24px; padding-left: 14px; }
.editor-content ul, .post-rich-content ul { list-style: disc; }
.editor-content ol, .post-rich-content ol { list-style: decimal; }
.editor-content a, .post-rich-content a { color: var(--orange-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.editor-content table, .post-rich-content table { width: 100%; margin: 20px 0; border: 1px solid var(--line-strong); border-collapse: collapse; table-layout: auto; background: #fff; }
.editor-content th, .editor-content td, .post-rich-content th, .post-rich-content td { min-width: 72px; padding: 9px 11px; border: 1px solid var(--line-strong) !important; vertical-align: top; text-align: left; overflow-wrap: normal; word-break: normal; }
.editor-content th, .post-rich-content th { background: var(--warm); font-weight: 800; }
.editor-inline-image, .post-rich-content img { width: auto; max-width: 100%; max-height: 760px; margin: 22px auto; border: 1px solid var(--line); object-fit: contain; }
/* The imported character-riding matrix uses the table grid as its separator.
   Keep its sprites borderless and centered without changing other posts. */
#v-body[data-post-id="3ee908710a2f4dc1d1a6aaa16fb19b12"] img { border: 0; }
#v-body[data-post-id="3ee908710a2f4dc1d1a6aaa16fb19b12"] table th,
#v-body[data-post-id="3ee908710a2f4dc1d1a6aaa16fb19b12"] table td { vertical-align: middle !important; text-align: center !important; }
#v-body[data-post-id="3ee908710a2f4dc1d1a6aaa16fb19b12"] table p,
#v-body[data-post-id="3ee908710a2f4dc1d1a6aaa16fb19b12"] table div { margin: 0; text-align: center; }
#v-body[data-post-id="3ee908710a2f4dc1d1a6aaa16fb19b12"] table img { display: block; margin: 0 auto; }
.editor-inline-image { cursor: pointer; }
.editor-inline-image.is-selected { outline: 3px solid var(--orange); outline-offset: 3px; }
.editor-resize-handle { position: absolute; z-index: 4; width: 24px; height: 24px; padding: 0; border: 3px solid #fff; background: var(--orange); box-shadow: 0 0 0 1px var(--ink); cursor: nwse-resize; touch-action: none; }
.post-owner-actions { display: flex; gap: 8px; justify-content: flex-end; margin: -4px 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.btn-danger { border-color: var(--danger); background: var(--danger); color: #fff; }
.btn-danger:hover { border-color: var(--ink); background: var(--ink); }
.editor-status-row { display: flex; justify-content: space-between; gap: 20px; margin-top: 8px; color: var(--muted); font-size: 12px; }
.editor-status-row .field-hint { margin: 0; }
.editor-size-small, .editor-content font[size="1"], .editor-content font[size="2"] { font-size: 13px; }
.editor-size-normal, .editor-content font[size="3"] { font-size: 16px; }
.editor-size-large, .editor-content font[size="4"], .editor-content font[size="5"] { font-size: 21px; }
.editor-size-xlarge, .editor-content font[size="6"], .editor-content font[size="7"] { font-size: 28px; line-height: 1.55; }
.modal.post-view-modal { width: min(900px, 100%); max-width: 900px; }
.post-view-modal.bug-status-fixed { border-top-color: #2f7442; background: #e9f6ec; }
.post-view-modal.bug-status-intended { border-top-color: #a67808; background: #fff5cc; }
.post-view-modal.bug-status-checking { border-top-color: #a84270; background: #fbe6ef; }
.post-view-modal.promotion-status-completed { border-top-color: #2f7b4a; background: #e7f5eb; }
.post-view-modal.promotion-status-failed { border-top-color: #bd3e3e; background: #fde9e7; }
.post-view-titleline { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 0 34px 6px 0; }
.post-view-titleline h2 { font-size: 20px; font-weight: 800; line-height: 1.35; }
.post-rich-content { overflow-wrap: anywhere; color: var(--ink); font-size: 16px; line-height: 1.85; }
.post-rich-content p, .post-rich-content div { margin: 0 0 14px; }
.comments-section { margin-top: 34px; padding-top: 24px; border-top: 2px solid var(--ink); }
.comments-section h3 { margin-bottom: 16px; font-size: 18px; }
.comment-list { display: grid; gap: 1px; background: var(--line); }
.comment-item, .comment-empty { position: relative; padding: 16px 18px; background: #fff; }
.comment-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; font-size: 12px; }
.comment-meta span { color: var(--muted); }
.comment-item p { padding-right: 44px; color: var(--ink); font-size: 14px; line-height: 1.65; }
.comment-delete { position: absolute; right: 14px; bottom: 14px; border: 0; background: transparent; color: var(--danger); font-size: 11px; cursor: pointer; }
.comment-empty { color: var(--muted); text-align: center; }
.comment-form { display: grid; gap: 9px; margin-top: 16px; }
.comment-form label { font-size: 12px; font-weight: 800; }
.comment-form textarea { min-height: 96px; resize: vertical; border: 1px solid var(--line-strong); padding: 12px; background: #fff; color: var(--ink); font: inherit; }
.comment-form .btn { justify-self: end; }
.comment-login-guide { margin-top: 14px; color: var(--muted); font-size: 13px; }
.b-title { font-weight: 800; }
.b-body, .b-author, .b-date { color: var(--faint); font-size: 12px; }
.board-empty { padding: 82px 20px; border-bottom: 1px solid var(--ink); background: linear-gradient(135deg, var(--paper) 50%, var(--warm) 50%); color: var(--muted); text-align: center; }

.modal-backdrop { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(18, 18, 15, .68); backdrop-filter: blur(5px); }
.modal-backdrop.show { display: flex; }
.modal { width: 100%; max-width: 560px; max-height: 85vh; overflow: auto; padding: 34px; border-top: 5px solid var(--orange); background: var(--paper); box-shadow: 16px 16px 0 rgba(0, 0, 0, .28); }
.modal-close { float: right; border: 0; background: transparent; color: var(--muted); font-size: 25px; cursor: pointer; }
.modal-close:hover { color: var(--orange); }

/* 유저투표 — 직선과 구획선으로 구성한 커뮤니티 의사결정 화면 */
.poll-page { min-height: calc(100vh - 220px); }
.poll-page-hero { padding-bottom: 66px; }
.poll-auth-loading {
  margin: 28px 0 100px;
  padding: 42px 20px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  text-align: center;
}
.poll-auth-loading.error { border-top-color: var(--danger); color: var(--danger); }
.poll-workspace { margin-bottom: 110px; border-top: 2px solid var(--ink); }
.poll-dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: stretch;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--paper);
}
.poll-dashboard-copy { min-width: 0; padding: 28px 30px; }
.poll-dashboard-index, .poll-modal-index {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .19em;
}
.poll-dashboard-copy h2 { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; letter-spacing: -.04em; }
.poll-dashboard-copy p { max-width: 580px; margin-top: 9px; color: var(--muted); font-size: 13px; }
.poll-stats { display: grid; grid-template-columns: repeat(2, 102px); border-left: 1px solid var(--ink); }
.poll-stats > div { display: grid; align-content: center; justify-items: center; padding: 20px 12px; }
.poll-stats > div + div { border-left: 1px solid var(--line-strong); }
.poll-stats strong { font-size: 30px; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.poll-stats span { margin-top: 8px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.poll-create-open { align-self: center; margin: 0 24px; white-space: nowrap; }
.poll-filter { display: flex; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.poll-filter button {
  min-width: 106px;
  min-height: 43px;
  padding: 8px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.poll-filter button:hover { color: var(--orange-dark); }
.poll-filter button.active { background: var(--ink); color: #fff; }
.poll-layout { display: grid; grid-template-columns: minmax(290px, 360px) minmax(0, 1fr); align-items: start; }
.poll-list { border-left: 1px solid var(--ink); }
.poll-empty {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: linear-gradient(135deg, var(--paper) 50%, var(--warm) 50%);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.poll-list-item {
  position: relative;
  width: 100%;
  min-height: 156px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  padding: 21px 20px 20px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}
.poll-list-item::after { position: absolute; top: 0; bottom: 0; left: 0; width: 0; background: var(--orange); content: ""; transition: width .18s ease; }
.poll-list-item:hover { background: var(--warm); }
.poll-list-item.selected { z-index: 1; background: var(--warm); box-shadow: inset -5px 0 0 var(--orange); }
.poll-list-item.selected::after { width: 4px; }
.poll-list-item.closed { color: #5f5e58; }
.poll-list-number { padding-top: 1px; color: var(--faint); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.poll-list-main { min-width: 0; display: block; }
.poll-list-state, .poll-detail-state {
  display: inline-block;
  margin-bottom: 9px;
  padding-left: 7px;
  border-left: 3px solid currentColor;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
}
.poll-list-state.open, .poll-detail-state.open { color: var(--ok); }
.poll-list-state.closed, .poll-detail-state.closed { color: var(--danger); }
.poll-list-main strong { display: block; overflow-wrap: anywhere; font-size: 15px; line-height: 1.45; }
.poll-list-meta { display: block; margin-top: 8px; color: var(--faint); font-size: 11px; }
.poll-list-time { grid-column: 2; color: var(--ok); font-size: 11px; font-weight: 800; }
.poll-list-time.closed { color: var(--danger); }
.poll-detail { min-width: 0; min-height: 560px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); }
.poll-detail-empty { min-height: 560px; display: grid; align-content: center; justify-items: center; padding: 40px; text-align: center; }
.poll-detail-empty span { color: var(--orange-dark); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.poll-detail-empty strong { max-width: 300px; margin-top: 14px; color: var(--muted); font-size: 15px; }
.poll-detail-inner { min-width: 0; }
.poll-detail-head { position: relative; padding: 36px 40px 31px; border-bottom: 1px solid var(--ink); background: linear-gradient(112deg, var(--warm) 0 18px, var(--paper) 18px); }
.poll-state-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--faint); font-size: 10px; font-weight: 750; }
.poll-state-line > span + span { padding-left: 12px; border-left: 1px solid var(--line-strong); }
.poll-state-line .poll-detail-state { margin: 0; }
.poll-detail-head h2 { max-width: 660px; margin-top: 22px; overflow-wrap: anywhere; font-size: clamp(26px, 4vw, 42px); line-height: 1.15; letter-spacing: -.05em; }
.poll-detail-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 17px; color: var(--muted); font-size: 11px; }
.poll-detail-countdown { display: block; margin-top: 20px; padding: 12px 0 0 14px; border-top: 1px solid var(--line); border-left: 4px solid var(--ok); color: var(--ok); font-size: 16px; line-height: 1.2; }
.poll-detail-countdown.closed { border-left-color: var(--danger); color: var(--danger); }
.poll-admin-actions { position: absolute; top: 31px; right: 36px; display: flex; gap: 16px; }
.poll-edit, .poll-delete { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }
.poll-edit { color: var(--ink); }
.poll-edit:hover { color: var(--orange-dark); }
.poll-delete { color: var(--danger); }
.poll-delete:hover { color: var(--ink); }
.poll-description, .poll-ballot, .poll-results, .poll-comments { padding: 35px 40px 40px; border-bottom: 1px solid var(--line-strong); }
.poll-description-body {
  min-height: 92px;
  padding: 21px 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(90deg, var(--warm) 0 7px, var(--paper) 7px);
  color: #34332e;
  font-size: 14px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}
.poll-section-title { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 12px; margin-bottom: 22px; }
.poll-section-title > span { color: var(--orange-dark); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.poll-section-title h3 { font-size: 20px; line-height: 1; letter-spacing: -.03em; }
.poll-section-title p { color: var(--muted); font-size: 11px; }
.poll-choice-list { display: grid; border-top: 1px solid var(--ink); }
.poll-choice {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 20px 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.poll-choice:hover { background: var(--warm); }
.poll-choice:has(input:disabled) { cursor: default; }
.poll-choice input, .poll-setting input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.poll-choice-mark { width: 17px; height: 17px; border: 1px solid var(--ink); background: #fff; }
.poll-choice input:focus-visible + .poll-choice-mark { outline: 3px solid rgba(240, 90, 36, .28); outline-offset: 2px; }
.poll-choice input:checked + .poll-choice-mark { border: 5px solid var(--ink); background: var(--orange); }
.poll-choice input:disabled + .poll-choice-mark { border-color: var(--line-strong); background: var(--warm-2); }
.poll-choice input:checked:disabled + .poll-choice-mark { border-color: var(--ink); background: var(--orange); }
.poll-choice-number { color: var(--faint); font-size: 10px; font-weight: 850; }
.poll-choice strong { min-width: 0; overflow-wrap: anywhere; font-size: 14px; }
.poll-eligibility { margin: 16px 0; padding: 12px 14px; border-left: 4px solid var(--danger); background: var(--danger-bg); color: #7a2018; font-size: 12px; }
.poll-eligibility.eligible { border-left-color: var(--ok); background: var(--ok-bg); color: var(--ok); }
.poll-result-list { display: grid; gap: 21px; }
.poll-result-label { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 8px; font-size: 13px; }
.poll-result-label > span { min-width: 0; overflow-wrap: anywhere; }
.poll-result-label b { margin-right: 12px; color: var(--faint); font-size: 9px; letter-spacing: .08em; }
.poll-result-label em { margin-left: 10px; padding-left: 7px; border-left: 2px solid var(--orange); color: var(--orange-dark); font-size: 9px; font-style: normal; font-weight: 900; }
.poll-result-label > strong { flex: 0 0 auto; font-size: 11px; }
.poll-result-track { height: 9px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--warm); }
.poll-result-track span { display: block; height: 100%; background: var(--ink); transition: width .35s ease; }
.poll-result-row.chosen .poll-result-track span { background: var(--orange); }
.poll-comment-list { display: grid; border-top: 1px solid var(--ink); }
.poll-comment-empty { padding: 35px 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; text-align: center; }
.poll-comment-item { position: relative; padding: 17px 16px; border-bottom: 1px solid var(--line); }
.poll-comment-item header { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; font-size: 11px; }
.poll-comment-item header strong { font-size: 12px; }
.poll-comment-item header em { padding: 1px 5px; background: var(--ink); color: #fff; font-size: 9px; font-style: normal; font-weight: 800; }
.poll-comment-item time { margin-left: auto; color: var(--faint); }
.poll-comment-item p { padding-right: 34px; overflow-wrap: anywhere; font-size: 13px; white-space: normal; }
.poll-comment-item > button { position: absolute; right: 14px; bottom: 15px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--danger); font-size: 10px; cursor: pointer; }
.poll-comment-form { display: grid; gap: 9px; margin-top: 19px; }
.poll-comment-form label { font-size: 11px; font-weight: 850; }
.poll-comment-form textarea { min-height: 92px; padding: 12px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); resize: vertical; }
.poll-comment-form textarea:focus { outline: 0; border-color: var(--ink); box-shadow: inset 4px 0 0 var(--orange); }
.poll-comment-form .btn { justify-self: end; }
.poll-comments-disabled { padding: 28px 40px; background: var(--warm); }
.poll-comments-disabled span { color: var(--faint); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.poll-comments-disabled p { margin-top: 5px; color: var(--muted); font-size: 12px; }

.modal.poll-create-modal { max-width: 660px; padding: 34px 38px 38px; }
.poll-create-modal > h2 { margin-bottom: 24px; font-size: 27px; line-height: 1.2; letter-spacing: -.04em; }
.poll-create-modal .field input { min-height: 48px; }
.poll-create-modal .poll-content-field textarea { min-height: 180px; line-height: 1.7; resize: vertical; }
.poll-option-editor { margin: 0 0 22px; padding: 0; border: 0; }
.poll-option-editor legend { margin-bottom: 9px; color: #45433e; font-size: 12px; font-weight: 800; }
.poll-option-field { display: grid; grid-template-columns: 38px minmax(0, 1fr) 36px; border-top: 1px solid var(--line); border-right: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.poll-option-field:last-child { border-bottom: 1px solid var(--line-strong); }
.poll-option-field > span { display: grid; place-items: center; background: var(--warm); color: var(--faint); font-size: 9px; font-weight: 900; }
.poll-option-field input { min-width: 0; min-height: 45px; padding: 10px 12px; border: 0; border-right: 1px solid var(--line); border-left: 1px solid var(--line); color: var(--ink); }
.poll-option-field input:focus { z-index: 1; outline: 1px solid var(--ink); box-shadow: inset 4px 0 0 var(--orange); }
.poll-option-field button { border: 0; background: #fff; color: var(--muted); font-size: 18px; cursor: pointer; }
.poll-option-field button:hover { background: var(--danger-bg); color: var(--danger); }
.poll-option-field input:disabled { background: var(--warm); color: var(--muted); }
.poll-option-field button:disabled { background: var(--warm); color: var(--faint); cursor: not-allowed; }
.poll-add-option { margin-top: 9px; padding: 6px 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 11px; font-weight: 850; cursor: pointer; }
.poll-add-option:hover { color: var(--orange-dark); }
.poll-setting-list { display: grid; margin-bottom: 24px; border-top: 1px solid var(--ink); }
.poll-setting { position: relative; display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; align-items: center; padding: 13px 4px; border-bottom: 1px solid var(--line); cursor: pointer; }
.poll-setting-mark { width: 18px; height: 18px; border: 1px solid var(--ink); background: #fff; }
.poll-setting input:checked + .poll-setting-mark { border: 5px solid var(--ink); background: var(--orange); }
.poll-setting input:focus-visible + .poll-setting-mark { outline: 3px solid rgba(240, 90, 36, .28); outline-offset: 2px; }
.poll-setting:has(input:disabled) { color: var(--muted); cursor: not-allowed; }
.poll-setting input:disabled + .poll-setting-mark { border-color: var(--line-strong); background: var(--warm-2); }
.poll-setting input:checked:disabled + .poll-setting-mark { border-color: var(--ink); background: var(--orange); }
.poll-setting strong { display: block; font-size: 12px; }
.poll-setting small { display: block; margin-top: 2px; color: var(--muted); font-size: 10.5px; }

/* 모네로 후원 — 외부 위젯 없이 주소·금액·상태만 직접 표시한다. */
.donation-page-hero { padding-bottom: 48px; }
.donation-page-hero .donation-intro-copy { max-width: 1000px; margin-top: 0; color: var(--ink); font-size: clamp(20px, 2.25vw, 30px); font-weight: 650; letter-spacing: -.025em; line-height: 1.55; }
.donation-page-hero .donation-intro-copy strong { color: var(--orange-dark); font-weight: 950; }
.donation-hero-title { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 9px 20px; }
.donation-hero-title > span { color: var(--orange-dark); }
.donation-hero-title > span b { display: inline-block; margin-left: 10px; padding: 5px 9px; background: var(--danger); color: #fff; font-size: clamp(15px, 2vw, 23px); letter-spacing: -.02em; vertical-align: .22em; }
.donation-hero-title > small { margin-bottom: .16em; padding: 7px 10px 5px; border: 2px solid var(--ink); background: var(--ink); color: #fff; font-size: clamp(13px, 1.7vw, 21px); font-weight: 950; letter-spacing: .12em; line-height: 1; }
.donation-workspace { margin-bottom: 96px; }
.donation-coin-showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 32px; }
.donation-xmr-banner, .donation-usdt-banner { position: relative; display: grid; min-height: 390px; grid-template-columns: 104px minmax(0, 1fr); gap: 24px; align-items: center; padding: 27px 30px 29px; overflow: hidden; border: 2px solid var(--ink); color: #fff; }
.donation-xmr-banner { background: var(--ink); box-shadow: 12px 12px 0 var(--orange); }
.donation-xmr-banner::after { position: absolute; top: -70px; right: 24%; width: 190px; height: 190px; border: 32px solid rgba(255,255,255,.035); border-radius: 50% !important; content: ""; }
.donation-usdt-banner { background: linear-gradient(145deg, #073d33 0%, #0c6b55 55%, #07513f 100%); box-shadow: 12px 12px 0 #26a17b; }
.donation-usdt-banner::before { position: absolute; right: -86px; bottom: -110px; width: 280px; height: 280px; border: 46px solid rgba(255,255,255,.055); border-radius: 50% !important; content: ""; }
.donation-coin-topline { position: relative; z-index: 2; display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 12px; align-self: start; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.24); }
.donation-coin-topline span, .donation-coin-topline b { font-size: 8px; font-weight: 950; letter-spacing: .16em; }
.donation-coin-topline span { padding: 6px 8px; background: var(--orange); color: #fff; }
.donation-usdt-banner .donation-coin-topline span { background: #fff; color: #08765c; }
.donation-coin-topline b { color: rgba(255,255,255,.62); }
.donation-xmr-mark { position: relative; z-index: 1; display: grid; width: 104px; height: 104px; place-items: center; border: 6px solid #fff; border-radius: 50% !important; background: linear-gradient(to bottom, var(--orange) 0 58%, #4a4a46 58% 100%); box-shadow: 0 0 0 6px rgba(240,90,36,.18); }
.donation-xmr-mark span { font-size: 49px; font-weight: 950; letter-spacing: -.12em; line-height: 1; transform: translateX(-2px); }
.donation-usdt-mark { position: relative; z-index: 1; display: grid; width: 104px; height: 104px; place-items: center; border: 6px solid #fff; border-radius: 50% !important; background: #eaf9f4; box-shadow: 0 0 0 6px rgba(38,161,123,.25); }
.donation-usdt-mark svg { display: block; width: 88px; height: 88px; }
.donation-usdt-mark circle { fill: #26a17b; }
.donation-usdt-mark path { fill: #fff; }
.donation-xmr-copy, .donation-usdt-copy { position: relative; z-index: 1; min-width: 0; }
.donation-xmr-copy > span, .donation-xmr-rate > span, .donation-usdt-copy > span, .donation-usdt-rate > span { display: block; margin-bottom: 7px; color: #ff9167; font-size: 9px; font-weight: 950; letter-spacing: .18em; }
.donation-usdt-copy > span, .donation-usdt-rate > span { color: #8de2c7; }
.donation-xmr-copy > strong, .donation-usdt-copy > strong { display: block; font-size: clamp(26px, 2.8vw, 40px); font-weight: 950; letter-spacing: -.055em; line-height: 1.1; }
.donation-xmr-copy > strong em, .donation-usdt-copy > strong em { display: block; margin-top: 9px; color: #f5b69f; font-size: clamp(17px, 1.65vw, 22px); font-style: normal; letter-spacing: .08em; }
.donation-usdt-copy > strong em { color: #a9f0da; }
.donation-xmr-copy p, .donation-usdt-copy p { max-width: 640px; margin-top: 13px; color: #c9c7bf; font-size: 11px; line-height: 1.65; }
.donation-usdt-copy p { color: #c3e9dd; }
.donation-xmr-rate, .donation-usdt-rate { position: relative; z-index: 1; display: flex; grid-column: 1 / -1; align-items: flex-end; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.3); }
.donation-xmr-rate strong, .donation-xmr-rate b, .donation-usdt-rate strong, .donation-usdt-rate b { display: block; line-height: 1.25; }
.donation-xmr-rate strong, .donation-usdt-rate strong { font-size: 19px; }
.donation-xmr-rate b, .donation-usdt-rate b { color: #ff936a; font-size: 15px; text-align: right; }
.donation-usdt-rate b { color: #8de2c7; }
.donation-reward-board { margin-bottom: 26px; border: 2px solid var(--ink); background: #fff; box-shadow: 8px 8px 0 var(--warm-2); }
.donation-reward-board > header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .75fr); gap: 28px; align-items: end; padding: 27px 30px 23px; border-bottom: 2px solid var(--ink); }
.donation-reward-board > header span { display: block; margin-bottom: 7px; color: var(--orange-dark); font-size: 9px; font-weight: 950; letter-spacing: .18em; }
.donation-reward-board > header h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -.045em; }
.donation-reward-board > header p { color: var(--muted); font-size: 11px; line-height: 1.65; }
.donation-limited-campaign { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); border-bottom: 2px solid var(--ink); background: #fff7ef; }
.donation-limited-copy { padding: 25px 30px 27px; border-right: 2px solid var(--ink); }
.donation-limited-copy > span { display: inline-flex; margin-bottom: 10px; padding: 5px 8px; background: var(--danger); color: #fff; font-size: 8px; font-weight: 950; letter-spacing: .17em; }
.donation-limited-copy h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -.035em; }
.donation-limited-copy p { max-width: 680px; margin-top: 9px; color: #6d2b20; font-size: 13px; font-weight: 800; line-height: 1.65; word-break: keep-all; }
.donation-limited-countdown { position: relative; display: flex; justify-content: center; flex-direction: column; padding: 23px 27px; overflow: hidden; background: var(--ink); color: #fff; }
.donation-limited-countdown::after { position: absolute; right: -8px; bottom: -38px; color: rgba(255,255,255,.045); content: "D"; font-size: 145px; font-weight: 950; line-height: 1; }
.donation-limited-countdown time, .donation-limited-countdown > strong, .donation-limited-countdown > span { position: relative; z-index: 1; display: block; }
.donation-limited-countdown time { color: #d0cec7; font-size: 10px; font-weight: 750; }
.donation-limited-countdown time strong { color: #fff; }
.donation-limited-countdown > strong { margin-top: 8px; color: #ff8d63; font-size: clamp(25px, 3vw, 38px); font-weight: 950; letter-spacing: -.045em; line-height: 1.08; }
.donation-limited-countdown > span { margin-top: 7px; color: #bab8b1; font-size: 10px; font-variant-numeric: tabular-nums; letter-spacing: .06em; }
.donation-limited-countdown[data-state="ended"] > strong { color: #d0cec7; font-size: 21px; }
.donation-reward-table-wrap { overflow-x: auto; }
.donation-reward-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.donation-reward-table th { padding: 13px 18px; border-right: 1px solid #3b3b38; background: var(--ink); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-align: left; }
.donation-reward-table th:last-child { border-right: 0; }
.donation-reward-table td { padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: middle; }
.donation-reward-table td:last-child { border-right: 0; }
.donation-reward-table tr:last-child td { border-bottom: 0; }
.donation-reward-table td:first-child { width: 36%; }
.donation-reward-table td:nth-child(2) { width: 22%; }
.donation-reward-table td strong { font-size: 14px; }
.donation-reward-table td b { display: inline-block; min-width: 72px; padding: 5px 9px; background: var(--danger-bg); color: var(--danger); font-size: 18px; font-weight: 950; text-align: center; }
.donation-reward-table td span { display: inline-block; padding-left: 11px; border-left: 4px solid var(--orange); font-size: 13px; font-weight: 900; }
.donation-reward-table td span.is-special { color: var(--orange-dark); font-size: 15px; }
.donation-limited-reward em, .donation-pet-reward em { display: inline-block; margin-left: 6px; color: var(--danger); font-size: 9px; font-style: normal; font-weight: 950; letter-spacing: .03em; vertical-align: 1px; }
.donation-pet-reward { display: inline-grid; grid-template-columns: minmax(0, auto) auto; gap: 2px 6px; align-items: center; padding: 7px 9px 7px 12px; border: 1px solid var(--orange); border-left: 4px solid var(--orange); background: #fff7ef; color: var(--orange-dark); font: inherit; font-size: 14px; font-weight: 950; text-align: left; cursor: pointer; transition: color .15s ease, background .15s ease, transform .15s ease; }
.donation-pet-reward small { grid-column: 1 / -1; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .03em; }
.donation-pet-reward:hover, .donation-pet-reward:focus-visible { outline: 0; background: var(--orange); color: #fff; transform: translateY(-1px); }
.donation-pet-reward:hover em, .donation-pet-reward:focus-visible em, .donation-pet-reward:hover small, .donation-pet-reward:focus-visible small { color: #fff; }
.donation-skin-reward { border-color: var(--ink); border-left-color: var(--danger); background: #fff1ed; color: var(--ink); }
.donation-skin-reward:hover, .donation-skin-reward:focus-visible { background: var(--danger); }
.donation-mount-reward { border-color: var(--ink); border-left-color: var(--orange); background: var(--ink); color: #fff; }
.donation-mount-reward em { color: #ff9b74; }
.donation-mount-reward small { color: #cfcdc6; }
.donation-mount-reward:hover, .donation-mount-reward:focus-visible { border-color: var(--orange); background: var(--orange); }
.donation-reward-combo { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.donation-reward-table tr.is-premium { background: #fff4ed; }
.donation-reward-table tr.is-premium td { border-color: #efc1ad; }
.donation-reward-footnote { padding: 11px 18px; border-top: 1px solid var(--line); background: var(--warm); color: var(--muted); font-size: 10px; }
.donation-xmr-extra { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; border-top: 2px solid var(--ink); background: var(--danger); color: #fff; }
.donation-xmr-extra strong { font-size: 15px; }
.donation-xmr-extra span { font-size: 12px; font-weight: 750; }
.donation-xmr-extra b { padding: 2px 6px; background: #fff; color: var(--danger); font-size: 17px; }
.donation-privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.donation-privacy-grid > div { min-height: 145px; padding: 24px 26px; border-right: 1px solid var(--ink); background: #fff; }
.donation-privacy-grid > div:last-child { border-right: 0; }
.donation-privacy-grid span, .donation-section-head span, .donation-invoice-head span { display: block; margin-bottom: 11px; color: var(--orange-dark); font-size: 9px; font-weight: 950; letter-spacing: .17em; }
.donation-privacy-grid strong { display: block; font-size: 17px; letter-spacing: -.025em; }
.donation-privacy-grid p { margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.donation-notice { margin: 18px 0; padding: 14px 18px; border-left: 5px solid var(--line-strong); background: var(--warm); color: var(--muted); font-size: 12px; }
.donation-notice[data-state="ready"] { border-left-color: var(--ok); background: var(--ok-bg); color: var(--ok); }
.donation-notice[data-state="blocked"] { border-left-color: var(--danger); background: var(--danger-bg); color: var(--danger); }
.donation-form, .donation-invoice { max-width: 850px; margin: 24px auto 0; padding: 42px 46px 46px; border: 1px solid var(--ink); background: #fff; box-shadow: 12px 12px 0 var(--warm-2); }
.donation-section-head, .donation-invoice-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--ink); }
.donation-section-head h2, .donation-invoice-head h2 { font-size: 29px; letter-spacing: -.04em; }
.donation-section-head > strong { padding-left: 20px; border-left: 4px solid var(--orange); font-size: 21px; white-space: nowrap; }
.donation-form .field input { min-height: 58px; font-size: 21px; font-weight: 850; }
.donation-payment-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin: 0 0 25px; padding: 0; border: 0; }
.donation-payment-methods legend { grid-column: 1 / -1; margin-bottom: 10px; font-size: 12px; font-weight: 850; }
.donation-method-card { position: relative; display: grid; min-height: 190px; grid-template-columns: 23px minmax(0, 1fr); gap: 13px; padding: 22px 20px; border: 2px solid var(--line-strong); background: #fff; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.donation-method-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.donation-method-card:has(input:checked) { border-color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.donation-method-card.is-xmr:has(input:checked) { border-color: var(--danger); box-shadow: 6px 6px 0 var(--danger); }
.donation-method-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.donation-method-check { width: 20px; height: 20px; border: 2px solid var(--ink); border-radius: 50% !important; background: #fff; }
.donation-method-card input:checked + .donation-method-check { border: 5px solid var(--ink); background: var(--orange); }
.donation-method-card input:focus-visible + .donation-method-check { outline: 3px solid rgba(240,90,36,.28); outline-offset: 2px; }
.donation-method-card > span:last-child { min-width: 0; }
.donation-method-card b, .donation-method-card strong, .donation-method-card em, .donation-method-card small { display: block; }
.donation-method-card b { color: var(--faint); font-size: 9px; letter-spacing: .1em; }
.donation-method-card strong { margin-top: 7px; font-size: 23px; letter-spacing: -.04em; }
.donation-method-card em { margin-top: 13px; padding: 7px 9px; background: var(--warm); color: var(--orange-dark); font-size: 12px; font-style: normal; font-weight: 950; }
.donation-method-card.is-xmr em { background: var(--danger-bg); color: var(--danger); }
.donation-method-card small { margin-top: 11px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.donation-method-card:has(input:disabled) { border-color: var(--line); background: #f1f0ec; cursor: not-allowed; filter: grayscale(.65); opacity: .65; transform: none; box-shadow: none; }
.donation-method-unavailable { grid-column: 1 / -1; margin-top: -3px; padding: 10px 13px; border-left: 4px solid var(--faint); background: var(--warm); color: var(--muted); font-size: 10px; }
.donation-bonus-preview { margin-top: 17px; padding: 23px; border: 2px solid var(--ink); background: var(--warm); box-shadow: 7px 7px 0 var(--warm-2); }
.donation-bonus-heading { margin-bottom: 15px; }
.donation-bonus-heading span { display: block; color: var(--orange-dark); font-size: 9px; font-weight: 950; letter-spacing: .17em; }
.donation-bonus-heading strong { display: block; margin-top: 3px; font-size: 17px; }
.donation-bonus-tags { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.donation-bonus-tag { position: relative; display: flex; min-height: 94px; align-items: flex-end; padding: 34px 17px 14px; overflow: hidden; border: 2px solid var(--ink); background: #fff; color: var(--ink); font-size: 18px; font-weight: 950; line-height: 1.25; }
.donation-bonus-tag::before { position: absolute; top: 11px; left: 16px; color: var(--faint); content: "BONUS REWARD"; font-size: 8px; font-weight: 950; letter-spacing: .15em; }
.donation-bonus-tag::after { position: absolute; top: -20px; right: -12px; color: rgba(21,21,18,.045); content: "+"; font-size: 88px; font-weight: 950; line-height: 1; }
.donation-bonus-tag.is-coin { border-color: var(--danger); background: var(--danger); color: #fff; }
.donation-bonus-tag.is-coin::before { color: #ffd0c6; content: "VIP GOLD BONUS"; }
.donation-bonus-tag.is-coin::after { color: rgba(255,255,255,.1); }
.donation-bonus-tag.is-payment { border-color: var(--danger); background: linear-gradient(135deg, #fff 0 42%, var(--danger-bg) 42% 100%); color: var(--danger); }
.donation-bonus-tag.is-payment::before { color: var(--danger); content: "XMR EXCLUSIVE BONUS"; }
.donation-bonus-tag.is-item { background: var(--ink); color: #fff; }
.donation-bonus-tag.is-item:is(button) { width: 100%; font: inherit; text-align: left; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.donation-bonus-tag.is-item:is(button):hover, .donation-bonus-tag.is-item:is(button):focus-visible { outline: 0; box-shadow: inset 0 0 0 3px var(--orange); transform: translateY(-2px); }
.donation-bonus-tag.is-item::before { color: #ff9b74; content: "SPECIAL ITEM REWARD"; }
.donation-bonus-tag.is-item::after { color: rgba(255,255,255,.08); }
.donation-bonus-tag.is-muted { align-items: center; border-color: var(--line-strong); color: var(--muted); font-size: 13px; }
.donation-bonus-tag.is-muted::before { content: "NEXT BONUS"; }
.donation-bonus-totals { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 15px; border: 2px solid var(--ink); background: #fff; }
.donation-bonus-totals > div { padding: 17px 18px; }
.donation-bonus-totals > div + div { border-left: 1px solid var(--line); }
.donation-bonus-totals dt { color: var(--faint); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.donation-bonus-totals dd { margin-top: 4px; font-size: clamp(20px, 3vw, 28px); font-weight: 950; letter-spacing: -.035em; }
.donation-bonus-amount, .donation-invoice-bonus { color: var(--danger); }
.donation-agreement { position: relative; display: grid; grid-template-columns: 21px minmax(0, 1fr); gap: 12px; align-items: start; margin: 24px 0 12px; cursor: pointer; }
.donation-agreement input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.donation-agreement > span { width: 20px; height: 20px; border: 1px solid var(--ink); background: #fff; }
.donation-agreement input:checked + span { border: 5px solid var(--ink); background: var(--orange); }
.donation-agreement input:focus-visible + span { outline: 3px solid rgba(240, 90, 36, .28); outline-offset: 2px; }
.donation-agreement strong { font-size: 12px; line-height: 1.65; }
.donation-caution { margin-bottom: 23px; padding: 13px 15px; border-left: 4px solid var(--orange); background: var(--warm); color: var(--muted); font-size: 11px; line-height: 1.65; }
.donation-status-chip { padding: 7px 10px; border: 1px solid var(--ink); background: var(--warm); font-size: 10px; font-weight: 900; }
.donation-status-chip[data-state="confirming"], .donation-status-chip[data-state="credit_pending"] { border-color: var(--orange-dark); background: #fff0e9; color: var(--orange-dark); }
.donation-status-chip[data-state="credited"] { border-color: var(--ok); background: var(--ok-bg); color: var(--ok); }
.donation-status-chip[data-state="expired"], .donation-status-chip[data-state="manual_review"] { border-color: var(--danger); background: var(--danger-bg); color: var(--danger); }
.donation-status-message { margin: -12px 0 24px; padding: 15px 17px; border-left: 5px solid var(--orange); background: var(--warm); font-size: 13px; font-weight: 750; }
.donation-invoice-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 17px; border: 1px solid var(--line-strong); }
.donation-invoice-summary > div { min-width: 0; padding: 16px; border-right: 1px solid var(--line); }
.donation-invoice-summary > div:nth-child(3n) { border-right: 0; }
.donation-invoice-summary > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
.donation-invoice-summary dt { color: var(--faint); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.donation-invoice-summary dd { margin-top: 6px; overflow-wrap: anywhere; font-size: 12px; font-weight: 850; }
.donation-invoice-rewards { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 13px; align-items: center; margin-bottom: 27px; padding: 13px 15px; border-left: 4px solid var(--orange); background: var(--warm); }
.donation-invoice-rewards > strong { font-size: 10px; white-space: nowrap; }
.donation-payment-field { margin-top: 17px; }
.donation-payment-field > label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 850; }
.donation-payment-field > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; border: 1px solid var(--ink); }
.donation-payment-field code { min-width: 0; padding: 14px; overflow-wrap: anywhere; background: var(--warm); font-family: Consolas, monospace; font-size: 11px; line-height: 1.55; user-select: all; }
.donation-payment-field button { min-width: 86px; padding: 10px; border: 0; border-left: 1px solid var(--ink); background: var(--ink); color: #fff; font-size: 10px; font-weight: 850; cursor: pointer; }
.donation-payment-field button:hover { background: var(--orange-dark); }
.donation-wallet-link { margin-top: 12px; }
.donation-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.donation-progress > div { min-width: 0; padding: 16px 13px; border-right: 1px solid var(--line); }
.donation-progress > div:last-child { border-right: 0; }
.donation-progress span { display: block; color: var(--faint); font-size: 9px; font-weight: 900; }
.donation-progress strong { display: block; margin-top: 5px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.donation-support { margin-top: 20px; padding: 15px; border-left: 5px solid var(--danger); background: var(--danger-bg); color: var(--danger); font-size: 12px; }
.donation-support a { border-bottom: 1px solid currentColor; font-weight: 900; }

body.has-reward-modal { overflow: hidden; }
.galpus-modal[hidden] { display: none; }
.galpus-modal { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: 28px; opacity: 0; transition: opacity .18s ease; }
.galpus-modal.is-open { opacity: 1; }
.galpus-modal-backdrop { position: absolute; inset: 0; background: rgba(15,14,12,.78); backdrop-filter: blur(8px); cursor: pointer; }
.galpus-modal-card { position: relative; display: grid; width: min(900px, 100%); max-height: calc(100vh - 56px); grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr); overflow: auto; border: 2px solid #fff; background: #fff; box-shadow: 16px 16px 0 rgba(240,90,36,.78); transform: translateY(15px) scale(.985); transition: transform .2s cubic-bezier(.2,.8,.2,1); }
.galpus-modal.is-open .galpus-modal-card { transform: none; }
.galpus-modal-close { position: absolute; z-index: 5; top: 14px; right: 14px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--ink); background: #fff; color: var(--ink); font-size: 28px; line-height: 1; cursor: pointer; }
.galpus-modal-close:hover, .galpus-modal-close:focus-visible { outline: 0; background: var(--danger); color: #fff; }
.galpus-modal-visual { position: relative; display: flex; min-height: 550px; justify-content: space-between; flex-direction: column; padding: 28px; overflow: hidden; background: radial-gradient(circle at 50% 42%, #37342e 0 17%, #201f1c 54%, #11110f 100%); color: #fff; }
.galpus-modal-visual::before { position: absolute; top: -50px; right: -62px; width: 230px; height: 230px; border: 44px solid rgba(240,90,36,.1); border-radius: 50% !important; content: ""; }
.galpus-modal-visual > span, .galpus-modal-visual > small { position: relative; z-index: 2; font-size: 8px; font-weight: 950; letter-spacing: .18em; }
.galpus-modal-visual > span { align-self: flex-start; padding: 6px 8px; background: var(--orange); }
.galpus-modal-visual > small { color: #a9a69e; }
.galpus-image-stage { position: relative; z-index: 1; display: grid; min-height: 380px; place-items: center; }
.galpus-image-stage::after { position: absolute; bottom: 31px; width: 68%; height: 25px; border-radius: 50% !important; background: rgba(0,0,0,.42); filter: blur(8px); content: ""; }
.galpus-image-stage img { position: relative; z-index: 1; display: block; width: min(100%, 344px); height: auto; image-rendering: pixelated; filter: drop-shadow(0 17px 16px rgba(0,0,0,.3)); }
.galpus-modal-content { display: flex; justify-content: center; flex-direction: column; padding: 56px 48px 44px; }
.galpus-modal-kicker { display: flex; align-items: center; gap: 9px; }
.galpus-modal-kicker span { padding: 5px 7px; background: var(--danger); color: #fff; font-size: 9px; font-weight: 950; }
.galpus-modal-kicker b { color: var(--faint); font-size: 9px; letter-spacing: .15em; }
.galpus-modal-content h2 { margin-top: 14px; font-size: clamp(43px, 7vw, 74px); letter-spacing: -.075em; line-height: .95; }
.galpus-modal-content > p { max-width: 470px; margin-top: 15px; color: var(--muted); font-size: 12px; line-height: 1.75; word-break: keep-all; }
.galpus-stats { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 27px; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.galpus-stats > div { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; padding: 15px 16px 14px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.galpus-stats dt { color: var(--muted); font-size: 10px; font-weight: 850; }
.galpus-stats dd { font-size: 21px; font-weight: 950; font-variant-numeric: tabular-nums; }
.galpus-stats dd.is-secret { color: var(--muted); }
.galpus-attrs-head { margin-top: 18px; color: var(--muted); font-size: 10px; font-weight: 850; }
.galpus-attrs { display: grid; grid-template-columns: repeat(2, 1fr); margin: 8px 0 0; border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.galpus-attrs > div { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; padding: 15px 16px 14px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.galpus-attrs dt { color: var(--muted); font-size: 10px; font-weight: 850; }
.galpus-attrs dd { font-size: 21px; font-weight: 950; font-variant-numeric: tabular-nums; }
.galpus-attrs > div > span { grid-column: 1 / -1; width: var(--stat); height: 4px; }
.galpus-attrs > div.is-attr-fire > span { background: var(--danger); }
.galpus-attrs > div.is-attr-wind > span { background: #f0b429; }
.galpus-stats > div > span { grid-column: 1 / -1; width: var(--stat); height: 4px; background: var(--orange); }
.galpus-modal-perk { display: flex; align-items: center; gap: 11px; margin-top: 22px; padding: 13px 14px; border-left: 4px solid var(--orange); background: #fff0e8; }
.galpus-modal-perk strong { flex: 0 0 auto; color: var(--orange-dark); font-size: 10px; }
.galpus-modal-perk span { color: #7a331c; font-size: 10px; font-weight: 750; line-height: 1.5; }
.galpus-modal-perk span b { color: var(--orange-dark); }
.galpus-modal-note { display: flex; align-items: center; gap: 11px; margin-top: 22px; padding: 13px 14px; border-left: 4px solid var(--danger); background: var(--danger-bg); }
.galpus-modal-perk + .galpus-modal-note { margin-top: 10px; }
.galpus-modal-note strong { flex: 0 0 auto; color: var(--danger); font-size: 10px; }
.galpus-modal-note span { color: #6d2b20; font-size: 10px; font-weight: 750; line-height: 1.5; }
.galpus-modal-confirm { align-self: stretch; margin-top: 19px; }
.tunga-modal-backdrop { background: rgba(8,6,5,.86); }
.tunga-modal-card { box-shadow: 16px 16px 0 rgba(177,24,12,.85); }
.tunga-modal-visual { min-height: 600px; background: radial-gradient(circle at 50% 42%, #4b130d 0 13%, #21100d 43%, #0d0c0b 76%); }
.tunga-modal-visual::before { top: -76px; right: -74px; width: 270px; height: 270px; border: 50px solid rgba(226,43,20,.14); }
.tunga-modal-visual::after { position: absolute; right: -35px; bottom: 36px; width: 210px; height: 8px; background: var(--danger); box-shadow: 0 22px 0 rgba(226,43,20,.35), 0 44px 0 rgba(226,43,20,.14); content: ""; transform: rotate(-47deg); }
.tunga-image-stage { min-height: 430px; }
.tunga-image-stage::after { bottom: 25px; background: rgba(0,0,0,.68); }
.tunga-image-stage img { width: min(100%, 336px); filter: drop-shadow(0 18px 20px rgba(0,0,0,.5)) drop-shadow(0 0 18px rgba(220,42,18,.18)); }
.tunga-modal-content { background: linear-gradient(145deg, #fff 0 72%, #fff0eb 72% 100%); }
.tunga-modal-content h2 { color: var(--ink); font-size: clamp(49px, 7vw, 76px); line-height: .88; }
.tunga-modal-content > p { padding-left: 13px; border-left: 4px solid var(--danger); color: #5b1d17; font-size: 14px; font-weight: 850; }
.tunga-skin-specs { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 27px; border: 2px solid var(--ink); background: #fff; }
.tunga-skin-specs > div { min-width: 0; padding: 16px 13px; border-right: 1px solid var(--line); }
.tunga-skin-specs > div:last-child { border-right: 0; }
.tunga-skin-specs dt { color: var(--danger); font-size: 8px; font-weight: 950; letter-spacing: .12em; }
.tunga-skin-specs dd { margin-top: 6px; overflow-wrap: anywhere; font-size: 15px; font-weight: 950; }
.goldpet-modal-backdrop { background: rgba(9,7,3,.86); }
.goldpet-modal-card { box-shadow: 16px 16px 0 rgba(214,160,20,.85); }
.goldpet-modal-visual { min-height: 600px; background: radial-gradient(circle at 50% 42%, #5c4410 0 13%, #2b200a 45%, #0e0c07 78%); }
.goldpet-modal-visual::before { top: -76px; right: -74px; width: 270px; height: 270px; border: 50px solid rgba(240,180,41,.14); }
.goldpet-modal-visual::after { position: absolute; right: -35px; bottom: 36px; width: 210px; height: 8px; background: #f0b429; box-shadow: 0 22px 0 rgba(240,180,41,.35), 0 44px 0 rgba(240,180,41,.14); content: ""; transform: rotate(-47deg); }
.goldpet-modal-visual > span { background: #d69a12; color: #1a1305; }
.goldpet-image-stage { min-height: 430px; }
.goldpet-image-stage::after { bottom: 25px; background: rgba(0,0,0,.66); }
.goldpet-image-stage img { width: min(100%, 312px); filter: drop-shadow(0 18px 20px rgba(0,0,0,.5)) drop-shadow(0 0 22px rgba(240,180,41,.3)); }
.goldpet-modal-content { background: linear-gradient(145deg, #fff 0 72%, #fff7e3 72% 100%); }
.goldpet-modal-kicker span { background: #b8860b; }
.goldpet-modal-content .galpus-stats > div > span { background: #d69a12; }
.goldpet-modal-content .galpus-modal-perk { border-left-color: #d69a12; background: #fff6df; }
.goldpet-modal-content .galpus-modal-perk strong, .goldpet-modal-content .galpus-modal-perk span b { color: #8a6508; }
.goldpet-modal-content .galpus-modal-perk span { color: #6b4f0a; }
.mount-modal-backdrop { background: rgba(12,11,9,.84); }
.mount-modal-card { width: min(980px, 100%); grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.22fr); box-shadow: 16px 16px 0 rgba(240,90,36,.84); }
.mount-modal-visual { min-height: 650px; background: linear-gradient(145deg, #11110f 0 57%, #24221e 57% 100%); }
.mount-modal-visual::before { top: -80px; right: -85px; width: 310px; height: 310px; border: 58px solid rgba(240,90,36,.13); }
.mount-modal-visual::after { position: absolute; top: 28%; right: -56px; width: 220px; height: 7px; background: var(--orange); box-shadow: 0 20px 0 rgba(240,90,36,.45), 0 40px 0 rgba(240,90,36,.18); content: ""; transform: rotate(-48deg); }
.mount-odds-mark { position: relative; z-index: 2; display: grid; align-content: center; min-height: 330px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.mount-odds-mark small, .mount-odds-mark b { color: #aaa79e; font-size: 8px; font-weight: 950; letter-spacing: .19em; }
.mount-odds-mark strong { margin: 4px 0 0 -6px; color: #fff; font-size: clamp(112px, 15vw, 174px); font-weight: 950; letter-spacing: -.12em; line-height: .85; }
.mount-odds-mark b { margin-top: 13px; color: #ff9b74; }
.mount-share-visual { position: relative; z-index: 2; }
.mount-share-strip { display: flex; height: 54px; border: 1px solid rgba(255,255,255,.36); }
.mount-share-strip i { position: relative; display: flex; min-width: 0; flex: var(--share); align-items: center; justify-content: center; border-right: 1px solid #11110f; background: var(--orange); color: #fff; font-style: normal; }
.mount-share-strip i:nth-child(2) { background: #ff7845; }
.mount-share-strip i:nth-child(3) { background: #d94b1b; }
.mount-share-strip i:nth-child(4) { background: #a93612; }
.mount-share-strip i:nth-child(5) { background: #70270f; }
.mount-share-strip i:nth-child(6) { border-right: 0; background: #4b2113; }
.mount-share-strip b { overflow: hidden; font-size: 9px; font-weight: 950; }
.mount-share-visual > small { display: block; margin-top: 8px; color: #aaa79e; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.mount-modal-content { padding: 48px 44px 38px; background: linear-gradient(145deg, #fff 0 78%, #fff3ed 78% 100%); }
.mount-modal-content h2 { font-size: clamp(42px, 5.8vw, 66px); line-height: .9; }
.mount-modal-content > p { padding-left: 13px; border-left: 4px solid var(--orange); color: #5e514a; font-weight: 750; }
.mount-odds-list { display: grid; gap: 7px; margin-top: 22px; list-style: none; counter-reset: mount-odds; }
.mount-odds-list li { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) auto; gap: 7px 14px; padding: 10px 12px 9px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.94); counter-increment: mount-odds; }
.mount-odds-list li > div { position: relative; min-width: 0; padding-left: 28px; }
.mount-odds-list li > div::before { position: absolute; top: 1px; left: 0; color: var(--orange-dark); content: "0" counter(mount-odds); font-size: 9px; font-weight: 950; letter-spacing: .05em; }
.mount-odds-list strong, .mount-odds-list small { display: block; }
.mount-odds-list strong { font-size: 13px; font-weight: 950; }
.mount-odds-list small { margin-top: 2px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .03em; }
.mount-odds-list li > b { align-self: center; color: var(--orange-dark); font-size: 20px; font-weight: 950; font-variant-numeric: tabular-nums; }
.mount-odds-list li > span { position: relative; grid-column: 1 / -1; height: 4px; overflow: hidden; background: var(--warm-2); }
.mount-odds-list li > span::after { display: block; width: var(--chance); height: 100%; background: var(--orange); content: ""; }
.mount-modal-total { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; padding: 10px 13px; background: var(--ink); color: #fff; }
.mount-modal-total strong { font-size: 9px; letter-spacing: .11em; }
.mount-modal-total span { color: #ff9b74; font-size: 20px; font-weight: 950; }
.mount-modal-note { margin-top: 10px !important; padding: 10px 12px !important; border-left-width: 3px !important; background: var(--warm); color: var(--muted) !important; font-size: 9px !important; line-height: 1.55 !important; }
.donation-cancel-order { margin-top: 20px; }
.donation-new-order { margin-top: 20px; }
.site-footer { margin-top: 50px; padding: 54px 0; border-top: 7px solid var(--orange); background: var(--ink); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #aaa89f; font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #e5e2d8; }
.footer-links a:hover { color: #ff8c50; }

.reveal { opacity: 1; transform: none; animation: reveal-in .55s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  .nav { position: relative; }
  .nav-links { display: none; }
  .nav-cta { flex: 0 0 auto; margin-left: auto; }
  .nav-toggle { display: inline-grid !important; flex: 0 0 42px; place-items: center; }
  .nav-links.open { position: absolute; top: 86px; left: 0; right: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 28px 22px; border-bottom: 1px solid var(--ink); background: var(--paper); }
  .nav-links.open > a, .nav-links.open .nav-group-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open > a::after, .nav-links.open .nav-group-trigger::after { bottom: 7px; }
  .nav-links.open .nav-group { display: block; }
  .nav-links.open .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 2px 0 4px 14px;
    border: 0;
    border-left: 2px solid var(--orange);
    background: var(--warm);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .nav-links.open .nav-group.open .nav-dropdown { display: grid; }
  .nav-links.open .nav-dropdown a {
    min-height: 40px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open .nav-dropdown a:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .board-item { grid-template-columns: 1fr; gap: 4px; }
  .game-info-category-tabs { grid-template-columns: repeat(5, minmax(132px, 1fr)); overflow-x: auto; overscroll-behavior-inline: contain; }
  .game-info-category-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero::before { right: -12vw; font-size: 30vw; }
  .poll-dashboard-head { grid-template-columns: minmax(0, 1fr) auto; }
  .poll-create-open { grid-column: 1 / -1; justify-self: stretch; margin: 0; border-width: 1px 0 0; }
  .poll-layout { grid-template-columns: 1fr; }
  .poll-list { border-right: 1px solid var(--ink); }
  .poll-list-item { min-height: 0; border-right: 0; }
  .poll-detail { scroll-margin-top: 90px; border-left: 1px solid var(--ink); }
  .donation-coin-showcase { grid-template-columns: 1fr; }
  .donation-xmr-banner, .donation-usdt-banner { min-height: 0; grid-template-columns: 104px minmax(0, 1fr); }
  .donation-xmr-rate, .donation-usdt-rate { grid-column: 1 / -1; padding: 19px 0 0; border-top: 1px solid rgba(255,255,255,.3); border-left: 0; }
  .donation-reward-board > header { grid-template-columns: 1fr; gap: 9px; }
  .donation-xmr-extra { align-items: flex-start; flex-direction: column; gap: 7px; }
  .donation-privacy-grid { grid-template-columns: 1fr; }
  .donation-privacy-grid > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .donation-privacy-grid > div:last-child { border-bottom: 0; }
  .donation-invoice-summary { grid-template-columns: repeat(2, 1fr); }
  .donation-invoice-summary > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .donation-invoice-summary > div:nth-child(2n) { border-right: 0; }
  .donation-invoice-summary > div:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 640px) {
  .container { padding-right: 20px; padding-left: 20px; }
  .donation-history-page { padding-bottom: 72px; }
  .donation-history-hero { padding-bottom: 38px; }
  .donation-history-gate { grid-template-columns: 1fr; gap: 18px; padding: 26px 21px; box-shadow: 7px 7px 0 var(--orange); }
  .donation-history-gate-mark { width: 58px; height: 58px; font-size: 27px; }
  .donation-history-gate form { grid-column: 1; }
  .donation-history-password-row { grid-template-columns: 1fr; gap: 8px; }
  .donation-history-security-strip { align-items: flex-start; flex-direction: column; }
  .donation-history-security-strip nav { width: 100%; }
  .donation-history-security-strip nav .btn { flex: 1; }
  .donation-history-summary { grid-template-columns: 1fr; }
  .donation-history-summary article, .donation-history-summary article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .donation-history-summary article:last-child { border-bottom: 0; }
  .donation-history-filters { grid-template-columns: 1fr; padding: 16px; }
  .donation-history-filters > .btn { grid-column: 1; }
  .donation-history-table tbody { padding: 7px; }
  .donation-history-table td { grid-template-columns: 72px minmax(0, 1fr); gap: 9px; padding: 10px; }
  .donation-history-privacy { grid-template-columns: 1fr; gap: 7px; }
  .site-header .container { padding-right: 14px; padding-left: 14px; }
  .nav { min-height: 72px; gap: 6px; }
  .brand { flex-basis: 104px; width: 104px; height: 64px; }
  .brand-logo { width: 150px; }
  .nav-cta { min-width: 0; gap: 5px; }
  .nav-cta .btn {
    display: inline-flex;
    min-height: 38px;
    flex: 0 1 auto;
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: -.02em;
    line-height: 1;
    white-space: nowrap;
  }
  .nav-cta .btn::after { display: none; }
  .auth-login-link { max-width: 78px; }
  .auth-signup-link { max-width: 56px; }
  .nav-cta.is-authenticated {
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: minmax(0, 1fr) auto 40px;
    grid-template-areas:
      "status status status"
      "profile logout toggle";
    gap: 2px 6px;
    align-items: center;
  }
  .nav-cta.is-authenticated .account-badge {
    grid-area: status;
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-self: start;
    padding: 2px 0 2px 7px;
    background: transparent;
    font-size: 9px;
    line-height: 1.15;
  }
  .nav-cta.is-authenticated .nav-level-badge { display: none; }
  .nav-cta.is-authenticated .auth-login-link.account-label {
    grid-area: profile;
    max-width: 100%;
    overflow: hidden;
    padding: 2px 0;
    font-size: 10.5px;
    text-overflow: ellipsis;
  }
  .nav-cta.is-authenticated .auth-logout-link {
    grid-area: logout;
    max-width: none;
    min-height: 40px;
  }
  .nav-cta.is-authenticated .nav-toggle { grid-area: toggle; }
  .nav-toggle { width: 40px; height: 40px; flex-basis: 40px; }
  .nav-links.open { top: 72px; padding-right: 20px; padding-left: 20px; }
  .download-steps li { grid-template-columns: 1fr; gap: 6px; }
  .hero { min-height: 580px; padding-top: 86px; padding-bottom: 100px; }
  .hero-server-status { top: 28px; left: 20px; gap: 8px; padding-right: 10px; font-size: 13px; }
  .hero-server-status-code { font-size: 9px; }
  .hero h1 { font-size: clamp(24px, 8vw, 40px); }
  .launch-countdown { margin-bottom: 29px; padding: 18px 14px 20px; box-shadow: 7px 7px 0 var(--warm-2); }
  .launch-countdown-topline { align-items: flex-start; flex-direction: column; gap: 7px; padding-bottom: 12px; }
  .launch-countdown-date { font-size: 12px; text-align: left; }
  .launch-countdown-clock { margin-top: 14px; }
  .launch-countdown-unit {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px 4px 6px;
  }
  .launch-countdown-unit:first-child,
  .launch-countdown-unit:last-child { justify-content: center; padding-right: 4px; padding-left: 4px; }
  .launch-countdown-unit strong { width: 100%; min-width: 0; font-size: clamp(34px, 11vw, 52px); }
  .launch-countdown-unit span { font-size: 8px; letter-spacing: .02em; line-height: 1; }
  .launch-countdown-rail { margin-top: 13px; }
  .hero-sub {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
    font-size: 15px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .hero::after { right: 9%; bottom: 10%; width: 38%; height: 9px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .manifesto::before { left: 20px; }
  .manifesto-group br { display: none; }
  .manifesto-quote { padding: 34px 18px; }
  .section::after { left: 20px; }
  .section-head { display: block; }
  .card { min-height: 0; padding: 28px 24px; }
  .policy-card { display: block; }
  .policy-card .card-icon { margin-bottom: 22px; }
  .dual-item { padding: 20px 16px; }
  .page-hero { padding-top: 82px; }
  .page-hero::before { right: 20px; font-size: 25vw; }
  .form-shell, .download-box { box-shadow: 8px 8px 0 var(--warm-2); }
  .spec-list { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .game-info-filter { box-shadow: 6px 6px 0 var(--warm-2); }
  .game-info-filter-copy { grid-template-columns: 1fr; gap: 8px; padding: 18px; background: var(--warm); }
  .game-info-category-tab { min-height: 64px; padding: 13px; }
  .promotion-guide { grid-template-columns: 1fr; box-shadow: 6px 6px 0 var(--warm-2); }
  .promotion-guide-copy { grid-template-columns: 1fr; gap: 8px; padding: 21px 18px; }
  .promotion-guide-kicker { padding: 0; writing-mode: initial; }
  .promotion-guide-rules { border-top: 1px solid var(--ink); border-left: 0; }
  .promotion-guide-rules span { min-height: 78px; padding: 11px 5px; }
  .modal.editor-modal { padding: 18px 14px; }
  .bug-status-options { grid-template-columns: 1fr; }
  .bug-status-option { min-height: 42px; }
  .editor-toolbar { margin-right: -14px; margin-left: -14px; padding: 8px; }
  .editor-toolbar select { min-width: 96px; }
  .toolbar-divider { display: none; }
  .editor-content { min-height: 360px; padding: 22px 16px 64px; }
  .editor-status-row { display: block; }
  .poll-page-hero { padding-bottom: 44px; }
  .poll-workspace { margin-bottom: 72px; }
  .poll-dashboard-head { grid-template-columns: 1fr; }
  .poll-dashboard-copy { padding: 23px 20px; }
  .poll-stats { grid-row: auto; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); border-left: 0; }
  .poll-stats > div { min-height: 84px; padding: 14px; }
  .poll-create-open { grid-column: auto; }
  .poll-filter button { min-width: 0; flex: 1; padding-right: 8px; padding-left: 8px; }
  .poll-list-item { grid-template-columns: 26px minmax(0, 1fr); padding: 18px 15px; }
  .poll-list-time { grid-column: 2; }
  .poll-detail-head { padding: 29px 20px 25px; }
  .poll-detail-head h2 { font-size: 29px; }
  .poll-admin-actions { position: static; margin-top: 18px; }
  .poll-description, .poll-ballot, .poll-results, .poll-comments { padding: 29px 20px 32px; }
  .poll-description-body { padding: 18px 16px; font-size: 13px; }
  .poll-section-title { grid-template-columns: auto 1fr; }
  .poll-section-title p { grid-column: 1 / -1; }
  .poll-result-label { align-items: flex-start; gap: 10px; }
  .poll-comments-disabled { padding: 24px 20px; }
  .modal.poll-create-modal { padding: 27px 20px 30px; }
  .donation-page-hero { padding-bottom: 42px; }
  .donation-hero-title { align-items: flex-start; flex-direction: column; }
  .donation-hero-title > small { margin-bottom: 0; }
  .donation-workspace { margin-bottom: 72px; }
  .donation-coin-showcase { gap: 20px; }
  .donation-xmr-banner, .donation-usdt-banner { grid-template-columns: 76px minmax(0, 1fr); gap: 18px; padding: 22px 20px 24px; }
  .donation-xmr-banner { box-shadow: 7px 7px 0 var(--orange); }
  .donation-usdt-banner { box-shadow: 7px 7px 0 #26a17b; }
  .donation-xmr-mark, .donation-usdt-mark { width: 70px; height: 70px; border-width: 4px; }
  .donation-xmr-mark { box-shadow: 0 0 0 4px rgba(240,90,36,.18); }
  .donation-usdt-mark { box-shadow: 0 0 0 4px rgba(38,161,123,.25); }
  .donation-xmr-mark span { font-size: 34px; }
  .donation-usdt-mark svg { width: 60px; height: 60px; }
  .donation-xmr-copy > strong, .donation-usdt-copy > strong { font-size: 26px; }
  .donation-xmr-copy > strong em, .donation-usdt-copy > strong em { font-size: 15px; }
  .donation-xmr-copy p, .donation-usdt-copy p { grid-column: 1 / -1; }
  .donation-xmr-rate, .donation-usdt-rate { min-width: 0; align-items: flex-start; flex-direction: column; gap: 4px; }
  .donation-xmr-rate b, .donation-usdt-rate b { text-align: left; }
  .donation-reward-board { box-shadow: 6px 6px 0 var(--warm-2); }
  .donation-reward-board > header { padding: 23px 19px 19px; }
  .donation-limited-campaign { grid-template-columns: 1fr; }
  .donation-limited-copy { padding: 21px 19px 23px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .donation-limited-copy p { font-size: 12px; }
  .donation-limited-countdown { min-height: 154px; padding: 21px 19px; }
  .donation-reward-table-wrap { overflow: visible; }
  .donation-reward-table, .donation-reward-table tbody, .donation-reward-table tr, .donation-reward-table td { display: block; width: 100%; }
  .donation-reward-table { table-layout: auto; }
  .donation-reward-table thead { display: none; }
  .donation-reward-table tbody { padding: 10px; background: var(--warm); }
  .donation-reward-table tr { margin-bottom: 9px; border: 1px solid var(--ink); background: #fff; }
  .donation-reward-table tr:last-child { margin-bottom: 0; }
  .donation-reward-board > header p { overflow-wrap: anywhere; }
  .donation-reward-table td, .donation-reward-table td:first-child, .donation-reward-table td:nth-child(2) { display: grid; width: 100%; min-height: 48px; grid-template-columns: 74px minmax(0, 1fr); align-items: center; gap: 12px; padding: 11px 13px; border-right: 0; border-bottom: 1px solid var(--line); }
  .donation-reward-table td:last-child { border-bottom: 0; }
  .donation-reward-table td::before { flex: 0 0 auto; color: var(--faint); content: attr(data-label); font-size: 8px; font-weight: 950; letter-spacing: .08em; }
  .donation-reward-table td strong, .donation-reward-table td b, .donation-reward-table td > span, .donation-reward-table td > button, .donation-reward-table td > div { min-width: 0; max-width: 100%; justify-self: end; overflow-wrap: anywhere; text-align: right; word-break: keep-all; }
  .donation-reward-table td span { padding-left: 0; border-left: 0; }
  .donation-pet-reward { grid-template-columns: 1fr; justify-items: end; padding: 8px 9px; border-left-width: 1px; }
  .donation-pet-reward em { margin-left: 0; }
  .donation-reward-combo { justify-content: flex-end; }
  .donation-reward-table tr.is-premium td { border-color: #efc1ad; }
  .donation-form, .donation-invoice { padding: 29px 20px 32px; box-shadow: 8px 8px 0 var(--warm-2); }
  .donation-section-head, .donation-invoice-head { align-items: flex-start; flex-direction: column; gap: 13px; }
  .donation-section-head > strong { padding: 5px 0 0 10px; font-size: 18px; }
  .donation-payment-methods { grid-template-columns: 1fr; }
  .donation-method-card { min-height: 0; }
  .donation-bonus-totals { grid-template-columns: 1fr; }
  .donation-bonus-totals > div + div { margin-top: 0; border-top: 1px solid var(--line); border-left: 0; }
  .donation-invoice-rewards { grid-template-columns: 1fr; }
  .donation-payment-field > div { grid-template-columns: 1fr; }
  .donation-payment-field button { min-height: 42px; border-top: 1px solid var(--ink); border-left: 0; }
  .donation-progress { grid-template-columns: 1fr; }
  .donation-progress > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .donation-progress > div:last-child { border-bottom: 0; }
  .donation-progress strong { white-space: normal; overflow-wrap: anywhere; }
  .galpus-modal { padding: 15px; }
  .galpus-modal-card { max-height: calc(100vh - 30px); grid-template-columns: 1fr; box-shadow: 8px 8px 0 rgba(240,90,36,.78); }
  .galpus-modal-visual { min-height: 330px; padding: 20px; }
  .galpus-image-stage { min-height: 245px; }
  .galpus-image-stage img { width: min(80%, 270px); }
  .galpus-modal-content { padding: 34px 22px 27px; }
  .galpus-modal-content h2 { font-size: 48px; }
  .galpus-modal-note { align-items: flex-start; flex-direction: column; gap: 4px; }
  .tunga-modal-visual { min-height: 390px; }
  .tunga-image-stage { min-height: 295px; }
  .tunga-image-stage img { width: min(76%, 252px); }
  .goldpet-modal-visual { min-height: 390px; }
  .goldpet-image-stage { min-height: 295px; }
  .goldpet-image-stage img { width: min(76%, 252px); }
  .tunga-modal-content h2 { font-size: 51px; }
  .tunga-skin-specs { grid-template-columns: 1fr; }
  .tunga-skin-specs > div { display: grid; grid-template-columns: 78px minmax(0, 1fr); align-items: center; padding: 10px 13px; border-right: 0; border-bottom: 1px solid var(--line); }
  .tunga-skin-specs > div:last-child { border-bottom: 0; }
  .tunga-skin-specs dd { margin-top: 0; }
  .mount-modal-card { grid-template-columns: 1fr; }
  .mount-modal-visual { min-height: 285px; }
  .mount-odds-mark { min-height: 135px; padding: 14px 0; }
  .mount-odds-mark strong { font-size: 91px; }
  .mount-share-strip { height: 38px; }
  .mount-modal-content { padding: 34px 22px 27px; }
  .mount-modal-content h2 { font-size: 45px; }
}

@media (max-width: 360px) {
  .site-header .container { padding-right: 10px; padding-left: 10px; }
  .nav { gap: 4px; }
  .brand { flex-basis: 84px; width: 84px; }
  .brand-logo { width: 128px; }
  .nav-cta { gap: 4px; }
  .nav-cta .btn { min-height: 36px; padding-right: 6px; padding-left: 6px; }
  .auth-login-link { max-width: 66px; }
  .auth-signup-link { max-width: 52px; }
  .nav-cta.is-authenticated {
    grid-template-columns: minmax(0, 1fr) auto 36px;
    gap: 2px 4px;
  }
  .nav-cta.is-authenticated .account-badge { font-size: 8.5px; }
  .nav-cta.is-authenticated .auth-login-link.account-label {
    max-width: 100%;
    font-size: 10px;
  }
  .nav-cta.is-authenticated .auth-logout-link { min-height: 36px; }
  .nav-toggle { width: 36px; height: 36px; flex-basis: 36px; }
  .galpus-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .btn, .card::after { transition: none; }
  .galpus-modal, .galpus-modal-card, .donation-pet-reward, .donation-bonus-tag.is-item:is(button) { transition: none; }
  .launch-countdown::before,
  .launch-countdown-signal,
  .launch-countdown-unit strong.is-ticking,
  .launch-countdown-rail span { animation: none; }
  .launch-countdown::before { display: none; }
}

/* 블랙리스트 - 서버 안티치트 판정 기록 */
.blacklist-page {
  --black-bg: #0b0c0d;
  --black-panel: #111315;
  --black-panel-2: #17191c;
  --black-line: #303339;
  --black-muted: #8d929a;
  --black-copy: #e7e8ea;
  --black-red: #e14735;
  --black-red-bright: #ff624d;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(188, 52, 36, .12), transparent 28%),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .025) 50%, transparent calc(50% + .5px)),
    var(--black-bg);
  color: var(--black-copy);
}
.blacklist-page ::selection { background: var(--black-red); color: #fff; }
.blacklist-page .site-header {
  border-bottom-color: rgba(255, 255, 255, .12);
  background: rgba(11, 12, 13, .9);
}
.blacklist-page .site-header::after { background: var(--black-red); }
.blacklist-page .brand-logo { filter: saturate(.78) brightness(1.16) contrast(1.08); }
.blacklist-page .nav-links > a,
.blacklist-page .nav-group-trigger { color: #999da4; }
.blacklist-page .nav-links > a:hover,
.blacklist-page .nav-links > a.active,
.blacklist-page .nav-links > a[aria-current="page"],
.blacklist-page .nav-group-trigger:hover,
.blacklist-page .nav-group.is-current > .nav-group-trigger { color: #fff; }
.blacklist-page .nav-links > a::after,
.blacklist-page .nav-group-trigger::after { background: var(--black-red-bright); }
.blacklist-page .nav-dropdown {
  border-color: var(--black-line);
  border-top-color: var(--black-red);
  background: #141619;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .35);
}
.blacklist-page .nav-dropdown a { border-bottom-color: var(--black-line); color: #aeb1b7; }
.blacklist-page .nav-dropdown a:hover,
.blacklist-page .nav-dropdown a.active { background: #202329; color: #fff; }
.blacklist-page .nav-toggle,
.blacklist-page .btn-ghost { border-color: #555960; background: transparent; color: #f5f5f5; }
.blacklist-page .nav-links.open { border-bottom-color: #3b3e43; background: #111315; }
.blacklist-page .nav-links.open > a,
.blacklist-page .nav-links.open .nav-group-trigger { border-bottom-color: #303339; }
.blacklist-page .nav-links.open .nav-dropdown { background: #181a1d; }
.blacklist-page .btn-primary { border-color: #ececee; background: #ececee; color: #111; }
.blacklist-page .btn-primary:hover { border-color: var(--black-red); background: var(--black-red); color: #fff; }
.blacklist-page .account-label { color: #f3f3f3; }

.blacklist-main { min-height: calc(100vh - 86px); }
.blacklist-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--black-line);
  background:
    linear-gradient(118deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, #0c0d0f 0 58%, #121416 58% 100%);
}
.blacklist-hero::before {
  position: absolute;
  top: -150px;
  right: clamp(-180px, -8vw, -80px);
  width: 490px;
  height: 490px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 46px rgba(255,255,255,.012), inset 0 0 0 47px rgba(255,255,255,.05);
  content: "";
  transform: rotate(24deg);
}
.blacklist-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}
.blacklist-hero-inner {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 76px;
  padding-top: 84px;
  padding-bottom: 68px;
}
.blacklist-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #9da1a8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
}
.blacklist-kicker i {
  width: 26px;
  height: 2px;
  background: var(--black-red-bright);
  box-shadow: 8px -5px 0 -1px var(--black-red-bright);
}
.blacklist-hero h1 {
  margin-top: 23px;
  color: #f2f2f2;
  font-size: clamp(64px, 9vw, 116px);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .82;
}
.blacklist-hero h1 span { color: var(--black-red-bright); }
.blacklist-hero-copy > p {
  margin-top: 30px;
  padding-left: 17px;
  border-left: 2px solid var(--black-red);
  color: #a8abb1;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.75;
}
.blacklist-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #3a3d42;
  background: rgba(8,9,10,.64);
  box-shadow: 14px 14px 0 rgba(0,0,0,.25);
}
.blacklist-summary > div { min-height: 155px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px 21px; }
.blacklist-summary > div + div { border-left: 1px solid #3a3d42; }
.blacklist-summary span { color: #777c84; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.blacklist-summary strong { margin: 9px 0 3px; color: #fff; font-size: 44px; font-weight: 950; letter-spacing: -.055em; line-height: 1; font-variant-numeric: tabular-nums; }
.blacklist-summary .blacklist-policy-mark { color: var(--black-red-bright); font-size: 31px; letter-spacing: -.025em; }
.blacklist-summary small { color: #9da1a8; font-size: 10px; font-weight: 720; }

.blacklist-content { padding-top: 58px; padding-bottom: 110px; }
.blacklist-notice {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 19px;
  padding: 20px 23px;
  border: 1px solid #383b40;
  background: linear-gradient(90deg, #17191c, #121416);
}
.blacklist-notice-mark {
  width: 48px;
  height: 48px;
  display: grid;
  border: 1px solid var(--black-red);
  color: var(--black-red-bright);
  font-size: 22px;
  font-weight: 950;
  place-items: center;
}
.blacklist-notice strong { color: #f1f1f2; font-size: 13px; font-weight: 900; }
.blacklist-notice p { margin-top: 3px; color: var(--black-muted); font-size: 11px; line-height: 1.6; }
.blacklist-notice > a { display: flex; align-items: center; gap: 22px; padding: 10px 0 10px 22px; border-left: 1px solid var(--black-line); color: #d9dadd; font-size: 11px; font-weight: 850; white-space: nowrap; }
.blacklist-notice > a span { color: var(--black-red-bright); font-size: 17px; }
.blacklist-notice > a:hover { color: var(--black-red-bright); }

.blacklist-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 71px 0 24px; }
.blacklist-section-head > div > span { color: var(--black-red-bright); font-size: 9px; font-weight: 950; letter-spacing: .19em; }
.blacklist-section-head h2 { margin-top: 6px; color: #f2f2f3; font-size: clamp(30px, 4vw, 45px); font-weight: 930; letter-spacing: -.055em; line-height: 1; }
.blacklist-section-head > p { display: flex; align-items: center; gap: 9px; color: #92969d; font-size: 10px; font-weight: 750; }
.blacklist-live-dot { width: 7px; height: 7px; background: #58b87d; box-shadow: 0 0 0 4px rgba(88,184,125,.12); }

.blacklist-ledger { border-top: 2px solid #dfe0e2; border-bottom: 1px solid #43464c; }
.blacklist-ledger-head,
.blacklist-row {
  display: grid;
  grid-template-columns: 92px minmax(110px, 1fr) minmax(120px, 1fr) minmax(190px, 1.3fr) minmax(230px, 1.8fr) 100px;
  align-items: center;
}
.blacklist-ledger-head { min-height: 47px; border-bottom: 1px solid #41444a; background: #151719; color: #777c84; }
.blacklist-ledger-head span { padding: 0 16px; border-right: 1px solid #282b2f; font-size: 8px; font-weight: 950; letter-spacing: .12em; }
.blacklist-ledger-head span:last-child { border-right: 0; text-align: center; }
.blacklist-row { position: relative; min-height: 92px; border-bottom: 1px solid #292c31; background: rgba(16,18,20,.66); transition: background .18s ease, transform .18s ease; }
.blacklist-row:last-child { border-bottom: 0; }
.blacklist-row::before { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--black-red); content: ""; opacity: 0; transition: opacity .18s ease; }
.blacklist-row:hover { background: #191c1f; transform: translateX(3px); }
.blacklist-row:hover::before { opacity: 1; }
.blacklist-cell { min-width: 0; padding: 16px; color: #9da1a8; font-size: 11px; line-height: 1.5; }
.blacklist-cell > * { overflow-wrap: anywhere; }
.blacklist-case code { color: #6f747c; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; font-weight: 800; letter-spacing: .03em; }
.blacklist-account strong { color: #fff; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; letter-spacing: .02em; }
.blacklist-character strong { color: #d8d9dc; font-size: 13px; font-weight: 860; }
.blacklist-time time { color: #aaaeb5; font-size: 10px; font-variant-numeric: tabular-nums; }
.blacklist-reason { display: flex; align-items: center; gap: 11px; }
.blacklist-reason i { width: 8px; height: 8px; flex: 0 0 8px; background: var(--black-red-bright); box-shadow: 0 0 0 4px rgba(255,98,77,.1); transform: rotate(45deg); }
.blacklist-reason strong { color: #e0e1e3; font-size: 11px; font-weight: 760; }
.blacklist-action { text-align: center; }
.blacklist-action strong { display: inline-flex; min-height: 27px; align-items: center; justify-content: center; padding: 4px 8px; border: 1px solid #8b392f; background: rgba(175,48,35,.12); color: #ff8373; font-size: 9px; font-weight: 900; white-space: nowrap; }

.blacklist-loading,
.blacklist-state { min-height: 235px; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 40px 20px; background: #101214; text-align: center; }
.blacklist-loading > span { width: 6px; height: 6px; margin: 0 3px; display: inline-block; background: var(--black-red-bright); animation: blacklist-pulse 1s ease-in-out infinite; }
.blacklist-loading > span:nth-child(2) { animation-delay: .14s; }
.blacklist-loading > span:nth-child(3) { animation-delay: .28s; }
.blacklist-loading p { margin-top: 18px; color: #777c84; font-size: 11px; }
@keyframes blacklist-pulse { 0%, 70%, 100% { opacity: .22; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-5px); } }
.blacklist-state > span { width: 58px; height: 58px; display: grid; margin-bottom: 18px; border: 1px solid #3f4248; color: #676c74; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 20px; font-weight: 950; place-items: center; }
.blacklist-state strong { color: #dfe0e2; font-size: 15px; }
.blacklist-state p { margin-top: 6px; color: #777c84; font-size: 11px; }
.blacklist-state-error > span { border-color: #87362e; color: var(--black-red-bright); }
.blacklist-retry { margin-top: 21px; padding: 9px 15px; border: 1px solid #555960; background: transparent; color: #dedfe1; font-size: 10px; font-weight: 850; cursor: pointer; }
.blacklist-retry:hover { border-color: var(--black-red); color: var(--black-red-bright); }
.blacklist-footnote { margin-top: 16px; color: #656a72; font-size: 9px; text-align: right; }

.blacklist-page .site-footer { margin-top: 0; border-top-color: var(--black-red); background: #08090a; }
.blacklist-page .footer-inner { color: #686d74; }
.blacklist-page .footer-links a { color: #aeb1b6; }
.blacklist-page .footer-links a:hover { color: var(--black-red-bright); }

@media (max-width: 960px) {
  .blacklist-hero-inner { grid-template-columns: 1fr; gap: 45px; }
  .blacklist-summary { max-width: 430px; }
  .blacklist-ledger-head { display: none; }
  .blacklist-ledger { display: grid; gap: 12px; padding-top: 12px; border-top-color: #dfe0e2; border-bottom: 0; }
  .blacklist-list { display: grid; gap: 12px; }
  .blacklist-row { min-height: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid #30343a; }
  .blacklist-row:hover { transform: none; }
  .blacklist-cell { display: grid; min-height: 70px; grid-template-columns: 82px minmax(0, 1fr); align-items: center; gap: 13px; border-right: 1px solid #292c31; border-bottom: 1px solid #292c31; }
  .blacklist-cell:nth-child(2n) { border-right: 0; }
  .blacklist-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .blacklist-cell::before { color: #666b73; content: attr(data-label); font-size: 8px; font-weight: 950; letter-spacing: .1em; }
  .blacklist-reason { display: grid; grid-template-columns: 82px 8px minmax(0, 1fr); }
  .blacklist-reason::before { grid-column: 1; }
  .blacklist-action { text-align: left; }
  .blacklist-action strong { justify-self: start; }
  .blacklist-footnote { text-align: left; }
}

@media (max-width: 640px) {
  .blacklist-main { min-height: calc(100vh - 72px); }
  .blacklist-hero-inner { min-height: 0; gap: 39px; padding-top: 65px; padding-bottom: 48px; }
  .blacklist-hero h1 { font-size: clamp(59px, 20vw, 82px); }
  .blacklist-hero-copy > p { font-size: 12px; }
  .blacklist-hero-copy > p br { display: none; }
  .blacklist-summary { width: 100%; }
  .blacklist-summary > div { min-height: 125px; padding: 19px 16px 17px; }
  .blacklist-summary strong { font-size: 36px; }
  .blacklist-summary .blacklist-policy-mark { font-size: 25px; }
  .blacklist-content { padding-top: 32px; padding-bottom: 74px; }
  .blacklist-notice { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; padding: 17px 15px; }
  .blacklist-notice-mark { width: 40px; height: 40px; }
  .blacklist-notice > a { grid-column: 1 / -1; justify-content: space-between; padding: 12px 0 0; border-top: 1px solid var(--black-line); border-left: 0; }
  .blacklist-section-head { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 52px; }
  .blacklist-row { grid-template-columns: 1fr; }
  .blacklist-cell { min-height: 58px; grid-template-columns: 78px minmax(0, 1fr); border-right: 0; border-bottom: 1px solid #292c31 !important; }
  .blacklist-cell:last-child { border-bottom: 0 !important; }
  .blacklist-reason { grid-template-columns: 78px 8px minmax(0, 1fr); }
  .blacklist-loading,
  .blacklist-state { min-height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  .blacklist-row { transition: none; }
  .blacklist-loading > span { animation: none; opacity: .72; }
}
