@charset "UTF-8";
@font-face {
  font-family: "Pretendard";
  src: url("/assets/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #080c14;
  --bg2: #0d1421;
  --surface: #111b2b;
  --line: #243650;
  --blue: #2f81ff;
  --cyan: #36d8ff;
  --text: #f3f7ff;
  --muted: #a9b8cd;
  --subtle: #70829c;
  --radius: 12px;
  --font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  word-break: keep-all;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.5;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button svg,
a svg {
  pointer-events: none;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  color: inherit;
}
h1,
h2,
h3 {
  line-height: 1.4;
  letter-spacing: -0.04em;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 23px;
}
h3 {
  font-size: 18px;
}
a,
button,
input,
select,
textarea {
  outline-offset: 4px;
}
:focus-visible {
  outline: 2px solid var(--cyan);
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -60px;
  z-index: 100;
  padding: 12px;
  background: var(--cyan);
  color: var(--bg);
}
.skip-link:focus {
  top: 10px;
}
.page,
.header-inner,
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding-left: 36px;
  padding-right: 36px;
}
.page {
  min-height: calc(100vh - 206px);
  padding-top: 32px;
  padding-bottom: 64px;
}
.site-header {
  border-bottom: 1px solid #1b283b;
  background: var(--bg);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 37px;
  height: 42px;
  color: var(--cyan);
}
.brand-name {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.08em;
}
.brand-kicker {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
  margin-top: 5px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 100%;
  margin-left: 30px;
  margin-right: auto;
}
.header-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}
.header-nav a.active {
  color: var(--text);
  font-weight: 700;
}
.header-nav a.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--cyan);
  width: 100%;
}
.header-note {
  font-size: 11px;
  color: var(--subtle);
  letter-spacing: 0.13em;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
}
.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0e1a2b;
  min-height: 184px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0e1a2b 40%,
    rgba(14, 26, 43, 0.82) 57%,
    rgba(14, 26, 43, 0.05)
  );
  pointer-events: none;
}
.hero-image {
  position: absolute;
  right: 0;
  top: -152px;
  width: 460px;
  max-width: none;
  opacity: 0.72;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 28px 34px;
}
.hero h1 {
  margin: 9px 0 9px;
  font-size: 29px;
  letter-spacing: -0.055em;
  font-weight: 750;
}
.hero p {
  font-size: 14px;
  color: var(--muted);
}
.hero-line {
  position: absolute;
  bottom: 0;
  left: 34px;
  width: 60px;
  height: 2px;
  background: var(--cyan);
  z-index: 1;
}
.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: start;
}
.main-column {
  min-width: 0;
}
.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #314561;
  border-radius: 12px;
  background: var(--bg2);
  padding: 5px 6px 5px 17px;
  gap: 12px;
}
.search-form:focus-within {
  border-color: var(--cyan);
}
.search-form > svg {
  color: var(--muted);
}
input,
textarea,
select {
  width: 100%;
  min-width: 0;
  color: var(--text);
  background: var(--bg2);
  border: 1px solid #3c506b;
  border-radius: 8px;
  padding: 10px 12px;
  min-height: 44px;
}
input::placeholder,
textarea::placeholder {
  color: #8092aa;
}
textarea {
  resize: vertical;
  line-height: 1.65;
}
.search-input {
  border: 0;
  background: transparent;
  min-height: 40px;
  padding: 4px 0;
  outline: none !important;
  font-size: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 9px 16px;
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.button:hover {
  background: #1a2b43;
  border-color: #416385;
}
.button.primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #051322;
}
.button.primary:hover {
  background: #76e5ff;
  border-color: #76e5ff;
}
.button.quiet {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.button.quiet:hover {
  background: var(--surface);
  color: var(--text);
}
.button.small {
  padding: 8px 12px;
}
.button.danger {
  color: #ffb2ae;
  border-color: #68393e;
  background: #251b26;
}
.button.full {
  width: 100%;
}
.game-tabs {
  display: flex;
  gap: 22px;
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
  overflow: auto;
  scrollbar-width: thin;
}
.game-tab {
  flex-shrink: 0;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 2px 13px;
  min-height: 47px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.game-tab:hover {
  color: var(--text);
}
.game-tab.selected {
  border-bottom-color: var(--cyan);
  color: var(--cyan);
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0;
}
.filter-row select {
  font-size: 13px;
  min-height: 44px;
  padding: 8px 30px 8px 12px;
  width: auto;
  max-width: 190px;
  background-color: transparent;
}
.filter-reset {
  font-size: 12px;
  margin-left: auto;
  gap: 5px;
}
.mobile-filter-toggle,
.mobile-filter-actions {
  display: none;
}
.results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 15px;
  gap: 12px;
}
.results-heading h2 {
  font-size: 20px;
}
.count {
  font-size: 15px;
  margin-left: 8px;
  color: var(--cyan);
  font-weight: 600;
}
.sort-label {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sort-label svg {
  width: 14px;
  height: 14px;
}
.preview-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #274767;
  background: #0c1b2b;
  border-radius: 8px;
  padding: 6px 10px 6px 14px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #bad3ed;
}
.preview-note strong {
  color: #e1f0ff;
}
.preview-note .button {
  font-size: 11px;
  min-height: 34px;
  padding: 4px 8px;
}
.feed {
  display: grid;
  gap: 12px;
}
.info-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 19px;
  padding: 20px;
  border: 1px solid #203149;
  border-radius: 12px;
  background: var(--bg2);
  transition:
    background 0.15s,
    border-color 0.15s;
}
.info-card:hover {
  background: #111e30;
  border-color: #40668c;
}
.card-art {
  width: 92px;
  height: 102px;
  border-radius: 9px;
  background: #152842;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #6cadff;
}
.card-art:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid currentColor;
  opacity: 0.12;
  border-radius: 50%;
  right: -25px;
  top: -17px;
}
.card-art:after {
  content: "";
  position: absolute;
  width: 54px;
  height: 72px;
  border: 1px solid currentColor;
  opacity: 0.17;
  border-radius: 5px;
  transform: rotate(20deg);
  right: 17px;
  top: 11px;
}
.card-art > svg {
  width: 33px;
  height: 33px;
  z-index: 1;
  stroke-width: 1.4;
}
.card-art .art-label {
  position: absolute;
  bottom: 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0.7;
}
.art-restock {
  color: #54d7dd;
  background: #112a35;
}
.art-event {
  color: #bbb1ff;
  background: #22223e;
}
.art-msrp {
  color: #8daffe;
  background: #17253b;
}
.art-news {
  color: #78b9ee;
  background: #152638;
}
.card-content {
  min-width: 0;
}
.tags {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 6px;
  color: var(--muted);
}
.tag {
  color: #9cc3ff;
  background: #183151;
  padding: 1px 7px;
  border-radius: 4px;
  font-weight: 650;
  font-size: 10px;
  line-height: 1.9;
}
.tag-restock {
  background: #12383e;
  color: #7ee2e0;
}
.tag-event {
  background: #302c4c;
  color: #c9bbff;
}
.tag-msrp {
  background: #223351;
  color: #b5cdff;
}
.tag-news {
  background: #203047;
  color: #b3c9e2;
}
.info-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-summary {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #93a6bf;
  font-size: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.meta-divider {
  color: #3b4e67;
}
.channel-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.channel-label svg {
  width: 12px;
  height: 12px;
}
.card-arrow {
  width: 15px;
  height: 15px;
  color: #657f9e;
}
.more-wrap {
  text-align: center;
  margin-top: 22px;
}
.sidebar {
  display: grid;
  gap: 22px;
}
.side-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 21px;
  background: var(--bg2);
}
.side-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 650;
  color: var(--subtle);
  margin-bottom: 8px;
}
.side-panel h2 {
  font-size: 17px;
}
.side-panel > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.7;
}
.channel-links {
  margin-top: 19px;
  display: grid;
  gap: 8px;
}
.channel-link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 57px;
  border: 1px solid #233750;
  border-radius: 8px;
  padding: 8px 11px;
  background: #101b2b;
}
.channel-link:hover {
  border-color: #5881ab;
  background: #16263b;
}
.channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}
.channel-link strong {
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}
.channel-link small {
  display: block;
  font-size: 9px;
  color: var(--subtle);
}
.channel-link > svg {
  margin-left: auto;
  width: 13px;
  height: 13px;
  color: var(--muted);
}
.channel-icon.instagram {
  color: #b0bfff;
}
.channel-icon.threads {
  color: #d9e3f4;
}
.channel-icon.youtube {
  color: #f29297;
}
.principles {
  padding: 3px 4px;
}
.principles h2 {
  font-size: 13px;
  margin-bottom: 16px;
}
.principle {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: start;
}
.principle > svg {
  width: 17px;
  height: 17px;
  color: #6fa6c9;
  margin-top: 2px;
}
.principle strong {
  font-size: 12px;
  font-weight: 550;
  display: block;
}
.principle p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.subtle-link {
  color: #92b9db;
  font-size: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.subtle-link:hover {
  color: var(--cyan);
}
.side-caption {
  font-size: 10px;
  color: var(--subtle);
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 5px;
}
.site-footer {
  border-top: 1px solid #1d2b40;
}
.footer-inner {
  padding-top: 23px;
  padding-bottom: 23px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer-caption {
  font-size: 10px;
  color: var(--subtle);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.empty-state {
  text-align: center;
  padding: 50px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg2);
}
.empty-state > svg {
  width: 34px;
  height: 34px;
  color: #6d8fac;
  margin-bottom: 16px;
}
.empty-state h2 {
  font-size: 19px;
  margin-bottom: 9px;
}
.empty-state p {
  font-size: 13px;
  color: var(--muted);
  margin: auto auto 22px;
  max-width: 380px;
}
.loading {
  color: var(--muted);
  padding: 70px 0;
  text-align: center;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.back-link:hover {
  color: var(--cyan);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
}
.article-detail {
  min-width: 0;
}
.article-detail h1 {
  font-size: 32px;
  margin: 13px 0 17px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.article-detail .tags {
  font-size: 13px;
}
.article-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article-summary {
  margin: 27px 0;
  padding: 19px 22px;
  border-left: 2px solid var(--cyan);
  background: var(--bg2);
  font-size: 17px;
  line-height: 1.8;
  color: #d0dded;
}
.article-body p {
  font-size: 16px;
  line-height: 1.95;
  color: #c1cfe1;
  margin-bottom: 24px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.article-body {
  padding: 3px 0 24px;
}
.source-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--bg2);
}
.source-box h2 {
  font-size: 17px;
}
.source-box p {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 17px;
}
.source-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.article-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  gap: 12px;
}
.price-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 26px;
}
.price-value {
  font-size: 27px;
  font-weight: 700;
  margin: 4px 0;
}
.price-caption {
  font-size: 12px;
  color: var(--muted);
}
.about {
  max-width: 820px;
  margin: auto;
}
.about-hero {
  border-bottom: 1px solid var(--line);
  padding: 26px 0 34px;
}
.about-hero h1 {
  font-size: 38px;
  margin: 15px 0;
}
.about-hero p {
  color: var(--muted);
  font-size: 16px;
}
.about-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.about-block h2 {
  font-size: 21px;
  margin-bottom: 14px;
}
.about-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.about .channel-links {
  grid-template-columns: repeat(3, 1fr);
}
.about .channel-link {
  min-height: 76px;
}
.about-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.rule-number {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.about-rules h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.about-rules p {
  font-size: 13px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 100;
  background: #18344b;
  color: #eff9ff;
  border: 1px solid #417696;
  border-radius: 10px;
  padding: 12px 22px;
  box-shadow: 0 12px 32px #0006;
  font-size: 14px;
  max-width: calc(100vw - 32px);
  text-align: center;
}
.admin-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.admin-heading p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}
.admin-top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0;
}
.connection {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.connection strong {
  font-size: 13px;
}
.connection small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.status-label {
  margin-left: auto;
  font-size: 11px;
  color: #b7c3d6;
  background: #202e42;
  border-radius: 5px;
  padding: 4px 7px;
  white-space: nowrap;
}
.admin-helper {
  font-size: 13px;
  color: var(--muted);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  line-height: 1.8;
  margin-bottom: 26px;
}
.admin-toolbar {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.admin-toolbar p {
  font-size: 12px;
  color: var(--muted);
}
.admin-items {
  display: grid;
  gap: 10px;
}
.admin-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.admin-check {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--cyan);
}
.admin-row-info {
  min-width: 0;
  flex: 1;
}
.admin-row-info h3 {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.admin-row-info p {
  color: var(--muted);
  font-size: 11px;
  margin-top: 6px;
}
.row-actions {
  display: flex;
  gap: 6px;
}
.pill {
  font-size: 10px;
  border-radius: 4px;
  padding: 3px 7px;
  background: #183b3a;
  color: #9bded1;
  margin-right: 7px;
}
.pill.hidden {
  background: #283244;
  color: #b9c7da;
}
.login-panel {
  max-width: 420px;
  margin: 60px auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg2);
}
.login-panel .eyebrow {
  margin-bottom: 14px;
}
.login-panel h1 {
  font-size: 26px;
}
.login-panel p {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field label,
.field-label {
  font-size: 13px;
  color: #c6d4e7;
  font-weight: 600;
}
.field small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.login-panel button {
  margin-top: 18px;
}
.form-error {
  color: #ffc2ba;
  font-size: 13px;
  border-radius: 8px;
  padding: 12px;
  background: #301f2a;
  margin-top: 12px;
}
.editor-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  background: var(--bg2);
  color: var(--text);
  border: 1px solid #3c5679;
  border-radius: 16px;
  box-shadow: 0 24px 100px #0009;
}
.editor-dialog::backdrop {
  background: #030710bb;
  backdrop-filter: blur(3px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg2);
  z-index: 2;
}
.dialog-heading h2 {
  font-size: 22px;
}
.editor-fields {
  padding: 24px 26px;
  display: grid;
  gap: 20px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.source-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.source-field input {
  font-size: 12px;
}
.source-help {
  display: grid;
  gap: 9px;
}
.source-help small {
  color: var(--muted);
  font-size: 11px;
}
.source-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.source-row a {
  font-size: 11px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.dialog-actions {
  position: sticky;
  bottom: 0;
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  z-index: 2;
}
.dialog-actions .save-hint {
  font-size: 11px;
  color: var(--muted);
  margin-right: auto;
}
.copy-fallback {
  margin-top: 10px;
}
.editor-dialog .form-error {
  margin: 0 26px 20px;
}
.admin-search {
  max-width: 500px;
  margin-bottom: 22px;
}
.mobile-menu {
  display: none;
}
@media (min-width: 1500px) {
  .page,
  .header-inner,
  .footer-inner {
    max-width: 1280px;
  }
  .workspace {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }
  .hero-image {
    width: 510px;
    top: -190px;
  }
  .info-card {
    padding: 22px;
  }
  .info-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .page,
  .header-inner,
  .footer-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .workspace,
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 22px;
  }
  .header-note {
    display: none;
  }
  .sidebar .side-panel {
    padding: 17px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero-image {
    right: -40px;
  }
  .game-tabs {
    gap: 18px;
  }
  .info-card {
    grid-template-columns: 75px minmax(0, 1fr) 12px;
    gap: 14px;
    padding: 16px;
  }
  .card-art {
    width: 75px;
    height: 92px;
  }
  .info-card h3 {
    font-size: 16px;
  }
  .filter-row {
    gap: 5px;
  }
  .filter-row select {
    max-width: 150px;
    font-size: 12px;
  }
  .filter-reset {
    padding: 8px !important;
  }
  .filter-reset svg {
    display: none;
  }
}
@media (max-width: 760px) {
  .page,
  .header-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-inner {
    height: 72px;
    gap: 20px;
  }
  .brand-mark {
    width: 29px;
    height: 33px;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-kicker {
    font-size: 7px;
    letter-spacing: 0.16em;
  }
  .brand {
    gap: 7px;
  }
  .header-nav {
    gap: 22px;
    margin: 0;
  }
  .header-nav a {
    font-size: 12px;
  }
  .page {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .hero {
    min-height: 149px;
    border-radius: 12px;
    margin-bottom: 22px;
  }
  .hero-copy {
    padding: 22px;
  }
  .hero h1 {
    font-size: 23px;
    max-width: 240px;
    margin: 9px 0 6px;
    line-height: 1.5;
  }
  .hero p {
    font-size: 11px;
    max-width: 205px;
    line-height: 1.8;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-image {
    width: 275px;
    top: -74px;
    right: -50px;
    opacity: 0.56;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      #0e1a2b 20%,
      rgba(14, 26, 43, 0.88) 46%,
      rgba(14, 26, 43, 0.18)
    );
  }
  .hero-line {
    left: 22px;
    width: 35px;
  }
  .workspace,
  .detail-layout {
    display: block;
  }
  .sidebar {
    margin-top: 32px;
    gap: 20px;
  }
  .sidebar .channel-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .sidebar .channel-link {
    flex-direction: column;
    gap: 4px;
    padding: 12px 5px;
    min-height: 86px;
    text-align: center;
  }
  .sidebar .channel-link small,
  .sidebar .channel-link > svg {
    display: none;
  }
  .sidebar .channel-link strong {
    font-size: 11px;
  }
  .sidebar .side-panel {
    padding: 19px;
  }
  .principles {
    display: none;
  }
  .search-form {
    gap: 9px;
    padding-left: 13px;
  }
  .search-input {
    font-size: 13px;
  }
  .search-form > svg {
    width: 18px;
  }
  .search-form .button {
    padding: 8px 13px;
    min-height: 42px;
    font-size: 13px;
  }
  .game-tabs {
    gap: 23px;
    margin-top: 13px;
  }
  .game-tab {
    font-size: 13px;
    padding: 8px 0 11px;
    min-height: 44px;
  }
  .mobile-filter-toggle {
    display: flex;
    margin-top: 13px;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-filter-toggle .button {
    font-size: 12px;
    min-height: 44px;
    padding: 8px 11px;
  }
  .mobile-filter-summary {
    font-size: 11px;
    color: var(--muted);
  }
  .filter-row {
    display: none;
    margin-top: 12px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .filter-row.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .filter-row select {
    max-width: none;
    width: 100%;
    font-size: 12px;
    background: var(--bg2);
  }
  .filter-reset {
    display: none;
  }
  .mobile-filter-actions {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .results-heading {
    margin: 17px 0 12px;
  }
  .results-heading h2 {
    font-size: 19px;
  }
  .sort-label {
    font-size: 11px;
  }
  .preview-note {
    font-size: 10px;
    padding-left: 10px;
    margin-bottom: 12px;
    gap: 5px;
  }
  .preview-note .button {
    font-size: 10px;
    min-height: 34px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .feed {
    gap: 10px;
  }
  .info-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 13px;
    padding: 16px 13px;
  }
  .card-art {
    width: 64px;
    height: 88px;
    border-radius: 7px;
  }
  .card-art > svg {
    width: 26px;
    height: 26px;
  }
  .card-art .art-label {
    font-size: 6px;
    bottom: 9px;
  }
  .card-arrow {
    display: none;
  }
  .info-card h3 {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: -0.035em;
  }
  .tags {
    font-size: 9px;
    gap: 6px;
    margin-bottom: 6px;
  }
  .tag {
    font-size: 9px;
    padding: 0 5px;
  }
  .card-summary {
    font-size: 10px;
    line-height: 1.7;
    margin-top: 4px;
  }
  .card-meta {
    font-size: 9px;
    margin-top: 8px;
    gap: 5px;
  }
  .channel-label svg {
    width: 10px;
    height: 10px;
  }
  .count {
    font-size: 13px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer-links {
    gap: 24px;
    font-size: 10px;
  }
  .footer-brand {
    font-size: 11px;
  }
  .footer-caption {
    font-size: 9px;
  }
  .article-detail h1 {
    font-size: 25px;
  }
  .article-meta {
    font-size: 11px;
    gap: 10px;
    padding-bottom: 20px;
  }
  .article-summary {
    font-size: 15px;
    padding: 17px 18px;
    margin: 22px 0;
  }
  .article-body p {
    font-size: 15px;
    line-height: 1.9;
  }
  .source-box {
    padding: 20px;
  }
  .source-actions {
    flex-direction: column;
  }
  .source-actions .button {
    justify-content: space-between;
  }
  .article-actions .button {
    font-size: 12px;
    padding: 9px 12px;
  }
  .detail-layout .sidebar {
    margin-top: 35px;
  }
  .about-hero {
    padding-top: 10px;
  }
  .about-hero h1 {
    font-size: 29px;
  }
  .about-hero p {
    font-size: 14px;
  }
  .about-rules {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .rule-number {
    margin-bottom: 8px;
  }
  .about .channel-links {
    grid-template-columns: 1fr;
  }
  .about .channel-link {
    min-height: 67px;
  }
  .about-block p {
    font-size: 14px;
  }
  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .admin-heading h1 {
    font-size: 26px;
  }
  .admin-heading p {
    font-size: 12px;
  }
  .connection-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 22px 0;
  }
  .connection {
    padding: 11px 14px;
  }
  .admin-helper {
    font-size: 12px;
  }
  .admin-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .admin-row {
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
  }
  .admin-row-info {
    flex-basis: calc(100% - 58px);
  }
  .row-actions {
    margin-left: 52px;
  }
  .admin-row-info h3 {
    font-size: 13px;
  }
  .admin-row-info p {
    font-size: 10px;
  }
  .login-panel {
    padding: 26px;
    margin: 25px auto;
  }
  .editor-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 12px;
  }
  .dialog-heading {
    padding: 16px 18px;
  }
  .dialog-heading h2 {
    font-size: 20px;
  }
  .editor-fields {
    padding: 18px;
    gap: 17px;
  }
  .field-grid {
    gap: 12px;
  }
  .dialog-actions {
    padding: 14px 18px;
  }
  .dialog-actions .save-hint {
    display: none;
  }
  .source-field {
    flex-wrap: wrap;
  }
  .source-field input {
    flex-basis: 100%;
  }
  .source-field .button {
    margin-left: auto;
  }
  .editor-dialog .form-error {
    margin-left: 18px;
    margin-right: 18px;
  }
  .empty-state {
    padding: 36px 20px;
  }
  .empty-state h2 {
    font-size: 17px;
  }
  .empty-state p {
    font-size: 12px;
  }
}
body {
  font-family: "Pretendard", var(--font);
}
.card-art .art-label {
  display: none;
}
.card-summary {
  font-size: 13px;
}
.card-meta {
  font-size: 12px;
}
.tags {
  font-size: 12px;
}
.tag {
  font-size: 11px;
}
.channel-link strong {
  font-size: 14px;
}
.channel-link small {
  font-size: 11px;
}
.principle strong {
  font-size: 13px;
}
.principle p {
  font-size: 12px;
}
.cyan {
  color: var(--cyan);
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .info-card h3 {
    font-size: 15px;
  }
  .card-summary {
    font-size: 12px;
  }
  .card-meta {
    font-size: 11px;
  }
  .tags {
    font-size: 10px;
  }
  .tag {
    font-size: 10px;
  }
  .preview-note {
    font-size: 11px;
  }
  .sidebar .channel-link strong {
    font-size: 12px;
  }
  .pagination {
    font-size: 11px;
  }
  .pagination .button {
    font-size: 12px;
    padding: 8px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
:root .threads-live {margin:32px 0 48px;}
.threads-feed-note {color:#9aaec4;margin:-4px 0 20px;font-size:14px;}
.threads-live-list {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;align-items:start;}
.threads-live-item {min-width:0;border:1px solid #26374b;border-radius:12px;overflow:hidden;background:#0b1421;}
.threads-live-meta {display:flex;justify-content:space-between;gap:12px;padding:14px 16px;font-size:13px;color:#a8b9cb;}
.threads-live-meta a {color:#64dfef;}
.threads-official-frame {display:block;width:100%;border:0;background:transparent;}
.threads-more {display:block;margin:24px auto 0;}
.threads-more[hidden] {display:none;}
@media(max-width:700px){.threads-live-list{grid-template-columns:minmax(0,1fr);}.threads-live{margin:24px 0;}}
