/*
 * 2000년대 후반 대한민국 공공기관 온라인 민원 포털의 인상을 바탕으로 한
 * Roblox 실행 서비스 화면 주제.
 */

:root {
  color-scheme: light;
  --navy: #17688f;
  --navy-dark: #07577f;
  --navy-soft: #eaf2f6;
  --teal: #2d7d9e;
  --gold: #e99a31;
  --ink: #3f3f3f;
  --muted: #777;
  --line: #d1d1d1;
  --line-dark: #b7c7cf;
  --surface: #fff;
  --surface-soft: #f7f7f7;
  --font: "돋움", Dotum, "굴림", Gulim, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #e9e9e9;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .3) 0 1px, transparent 1px 4px),
    #e9e9e9;
  color: var(--ink);
  font-family: var(--font);
  font-size: 12px;
  line-height: 1.5;
  -webkit-font-smoothing: auto;
  text-rendering: auto;
}

button,
input,
select {
  font-family: var(--font);
}

a {
  color: inherit;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

::selection {
  background: #cce6f2;
  color: #222;
}

.skip-link {
  position: fixed;
  top: -40px;
  left: 50%;
  z-index: 1000;
  padding: 5px 10px;
  background: #333;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  transform: translateX(-480px);
}

.skip-link:focus {
  top: 0;
}

@media (max-width: 1020px) {
  .skip-link {
    left: 8px;
    transform: none;
  }
}

.site-shell {
  width: min(960px, 100%);
  margin: 0 auto 30px;
  border-right: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  background: #fff;
}

.system-banner {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #d8cf9a;
  border-bottom: 1px solid #d8cf9a;
  padding: 3px 20px;
  background: #fffce6;
  color: #6f6234;
  font-size: 11px;
}

.system-banner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.system-banner i {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #e7902c;
  transform: rotate(45deg);
}

.utility-bar {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  background: #fff;
  color: #777;
  font-size: 11px;
}

.utility-links {
  display: flex;
  align-items: center;
}

.utility-links a {
  position: relative;
  padding: 0 9px;
  color: #777;
  text-decoration: none;
}

.utility-links a:first-child {
  padding-left: 0;
}

.utility-links a + a::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 1px;
  height: 9px;
  background: #ccc;
}

.utility-links a:hover {
  color: #17688f;
}

.utility-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.utility-status span {
  color: #888;
}

.utility-status strong {
  position: relative;
  padding-left: 10px;
  color: #28745b;
  font-size: 10px;
}

.utility-status strong::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #3a916e;
  transform: rotate(45deg);
}

.utility-status strong.checking {
  color: #80601c;
}

.utility-status strong.checking::before {
  background: #b58a2e;
}

.utility-status strong.fallback {
  color: #80601c;
}

.utility-status strong.fallback::before {
  background: #b58a2e;
}

.utility-status strong.available {
  color: #28745b;
}

.utility-status strong.available::before {
  background: #3a916e;
}

.utility-status strong.unavailable {
  color: #9a3030;
}

.utility-status strong.unavailable::before {
  background: #b44444;
}

.site-header {
  background: #fff;
}

.header-main {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.brand > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  color: #155f82;
  font-family: "굴림", Gulim, sans-serif;
  font-size: 20px;
  letter-spacing: -1.2px;
}

.brand small {
  margin-top: 5px;
  color: #777;
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .08em;
}

.header-service {
  border-left: 1px solid #ccc;
  padding-left: 17px;
  text-align: right;
}

.header-service span,
.header-service strong {
  display: block;
}

.header-service span {
  color: #888;
  font-size: 10px;
}

.header-service strong {
  margin-top: 4px;
  color: #555;
  font-family: "굴림", Gulim, sans-serif;
  font-size: 14px;
}

.primary-nav {
  height: 37px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #0c608c;
  border-bottom: 1px solid #075478;
  padding: 0 20px;
  background: linear-gradient(#1381b2 0%, #0873a4 52%, #086792 53%, #075f88 100%);
}

.primary-nav a {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .17);
  border-left: 1px solid rgba(0, 48, 78, .2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 42, 68, .45);
}

.primary-nav a:first-child {
  border-left: 0;
}

.primary-nav a:last-child {
  border-right: 0;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: linear-gradient(#08638f, #064f76);
  color: #fff;
  text-decoration: none;
}

main {
  min-height: 570px;
  padding: 10px 20px 24px;
  background: #fff;
}

.page-heading {
  min-height: 59px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid #4a849f;
  padding: 0 2px 8px;
}

.page-heading span {
  display: block;
  margin-bottom: 4px;
  color: #888;
  font-size: 10px;
}

.page-heading h1 {
  margin: 0;
  color: #333;
  font-family: "굴림", Gulim, sans-serif;
  font-size: 18px;
  letter-spacing: -1px;
}

.page-heading p {
  margin: 0;
  color: #777;
  font-size: 11px;
}

.page-heading p strong {
  color: #17688f;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 258px;
  gap: 10px;
  margin-top: 10px;
}

.launch-panel,
.quick-panel,
.guide-panel {
  border: 1px solid #c8c8c8;
  background: #fff;
}

.panel-heading {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 3px solid #17688f;
  border-bottom: 1px solid #bdccd3;
  padding: 8px 13px;
  background: linear-gradient(#fbfcfd, #e9f0f3);
}

.panel-heading span,
.panel-heading strong {
  display: block;
}

.panel-heading > div > span {
  margin-bottom: 2px;
  color: #777;
  font-size: 9px;
}

.panel-heading > div > strong {
  color: #285d76;
  font-size: 14px;
}

.panel-heading .service-number {
  color: #94a6ae;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.launch-intro {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 12px;
  border: 1px solid #becfd6;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(236, 245, 248, .88)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(23, 104, 143, .035) 8px 9px);
}

.launch-intro img {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  object-fit: contain;
}

.intro-kicker {
  color: #277192;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
}

.launch-intro h2 {
  margin: 5px 0 0;
  color: #255b74;
  font-family: "굴림", Gulim, sans-serif;
  font-size: 22px;
  letter-spacing: -1.5px;
}

.launch-intro p {
  max-width: 450px;
  margin: 8px 0 0;
  color: #666;
  font-size: 11px;
  line-height: 1.65;
}

.status-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 12px 5px;
}

.status-title strong {
  color: #444;
  font-size: 12px;
}

.status-title span {
  color: #888;
  font-size: 9px;
}

.status-title time {
  font-style: normal;
}

.status-table {
  margin: 0 12px;
  border-top: 2px solid #4a849f;
  border-bottom: 1px solid #aaa;
}

.status-table > div {
  min-height: 35px;
  display: grid;
  grid-template-columns: 112px 1fr;
  border-top: 1px solid #ddd;
}

.status-table > div:first-child {
  border-top: 0;
}

.status-table dt,
.status-table dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 7px 9px;
  font-size: 11px;
}

.status-table dt {
  border-right: 1px solid #ccc;
  background: #eef3f5;
  color: #555;
  font-weight: 700;
}

.status-table dd {
  background: #fff;
  color: #444;
}

.status-chip {
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #c6b06f;
  padding: 2px 7px;
  background: #fff9e6;
  color: #80601c;
  font-size: 9px;
  font-weight: 700;
}

.status-chip i {
  width: 5px;
  height: 5px;
  background: currentColor;
  transform: rotate(45deg);
}

.status-chip.available {
  border-color: #82aa97;
  background: #eff8f3;
  color: #267759;
}

.status-chip.fallback {
  border-color: #c6b06f;
  background: #fff9e6;
  color: #80601c;
}

.status-chip.unavailable {
  border-color: #c68e8e;
  background: #fff1f1;
  color: #9a3030;
}

.action-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 264px;
  align-items: center;
  gap: 14px;
  margin: 12px;
  border: 1px solid #b9cbd3;
  padding: 11px 12px;
  background: #f1f7f9;
}

.action-copy strong {
  color: #285d76;
  font-size: 11px;
}

.action-copy p {
  margin: 4px 0 0;
  color: #777;
  font-size: 9px;
  line-height: 1.55;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.actions a,
.actions button {
  appearance: none;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 7px 9px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.actions .primary {
  border: 1px solid #07567f;
  background: linear-gradient(#1684b7, #076892);
  color: #fff;
  text-shadow: 0 1px #064263;
}

.actions .primary:hover {
  border-color: #064b6d;
  background: linear-gradient(#0874a3, #055a82);
}

.actions .primary:disabled {
  border-color: #aaa;
  background: linear-gradient(#ddd, #bbb);
  color: #777;
  text-shadow: none;
  cursor: wait;
}

.actions .secondary {
  border: 1px solid #aaa;
  background: linear-gradient(#fff, #e5e5e5);
  color: #444;
}

.actions .secondary:hover {
  border-color: #777;
  background: linear-gradient(#f8f8f8, #dcdcdc);
}

.notice-box {
  margin: 0 12px 12px;
  border: 1px solid #d6d0ac;
  padding: 9px 11px;
  background: #fffdf1;
}

.notice-box > strong {
  display: block;
  margin-bottom: 5px;
  color: #6f6234;
  font-size: 10px;
}

.notice-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6d684f;
  font-size: 9px;
  line-height: 1.65;
}

.notice-box li {
  position: relative;
  padding-left: 10px;
}

.notice-box li::before {
  content: "·";
  position: absolute;
  left: 2px;
}

.side-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.side-heading {
  min-height: 31px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #0b5d84;
  padding: 0 9px;
  background: linear-gradient(#1684b7, #076892);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px #064263;
}

.quick-links {
  padding: 6px 8px;
}

.quick-links a {
  min-height: 51px;
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 8px;
  border-top: 1px dotted #c9c9c9;
  padding: 6px 2px;
  text-decoration: none;
}

.quick-links a:first-child {
  border-top: 0;
}

.quick-links a:hover {
  background: #f1f7f9;
  text-decoration: none;
}

.quick-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #9fb6c1;
  background: linear-gradient(#fff, #e8eff2);
  color: #34718c;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.quick-links strong,
.quick-links small {
  display: block;
}

.quick-links strong {
  color: #444;
  font-size: 11px;
}

.quick-links small {
  margin-top: 3px;
  color: #888;
  font-size: 9px;
}

.guide-panel ol {
  margin: 0;
  padding: 6px 9px 8px;
  list-style: none;
}

.guide-panel li {
  min-height: 54px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 7px;
  border-top: 1px dotted #c9c9c9;
  padding: 8px 0;
}

.guide-panel li:first-child {
  border-top: 0;
}

.guide-panel li > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #8eacba;
  background: #edf5f8;
  color: #28627b;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.guide-panel p {
  margin: 0;
  color: #777;
  font-size: 9px;
  line-height: 1.55;
}

.guide-panel p strong {
  display: block;
  margin-bottom: 2px;
  color: #444;
  font-size: 10px;
}

.help-panel {
  border: 1px solid #c9c9c9;
  padding: 11px;
  background:
    linear-gradient(135deg, #f7f7f7 0 72%, #eef4f6 72% 100%);
}

.help-panel > span,
.help-panel > strong {
  display: block;
}

.help-panel > span {
  color: #888;
  font-size: 9px;
}

.help-panel > strong {
  margin-top: 2px;
  color: #285d76;
  font-size: 12px;
}

.help-panel p {
  margin: 6px 0 8px;
  color: #777;
  font-size: 9px;
  line-height: 1.6;
}

.help-panel a {
  color: #17688f;
  font-size: 9px;
  font-weight: 700;
}

.service-notice {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  border: 1px solid #d8cf9a;
  padding: 7px 10px;
  background: #fffce6;
  color: #6f6234;
  font-size: 9px;
}

.service-notice strong {
  flex: 0 0 auto;
}

.service-notice p {
  min-width: 0;
  flex: 1;
  margin: 0;
}

.service-notice a {
  flex: 0 0 auto;
  color: #74621b;
  font-weight: 700;
}

.site-footer {
  min-height: 83px;
  display: grid;
  grid-template-columns: 53px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #aaa;
  padding: 13px 20px;
  background: #f4f4f4;
  color: #888;
  font-size: 9px;
}

.site-footer img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 4px;
  color: #666;
  font-size: 10px;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  position: relative;
  color: #777;
  text-decoration: none;
}

.footer-links a + a {
  margin-left: 12px;
}

.footer-links a + a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -7px;
  width: 1px;
  height: 9px;
  background: #bbb;
}

.footer-links span {
  margin-top: 5px;
  font-family: Tahoma, Arial, sans-serif;
}

@media (max-width: 760px) {
  .site-shell {
    margin-bottom: 0;
  }

  .system-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 5px 10px;
  }

  .system-banner span:last-child,
  .utility-links,
  .header-service {
    display: none;
  }

  .utility-bar {
    justify-content: flex-end;
    padding: 0 10px;
  }

  .header-main {
    min-height: 60px;
    padding: 0 10px;
  }

  .brand img {
    width: 41px;
    height: 41px;
  }

  .brand strong {
    font-size: 16px;
  }

  .primary-nav {
    grid-template-columns: repeat(5, minmax(108px, 1fr));
    overflow-x: auto;
    padding: 0;
  }

  .primary-nav a {
    font-size: 11px;
  }

  main {
    padding: 8px;
  }

  .page-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    min-height: 0;
    padding: 5px 1px 7px;
  }

  .page-heading p {
    display: none;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .side-column {
    grid-template-columns: 1fr 1fr;
  }

  .help-panel {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 45px 1fr;
    padding: 12px;
  }

  .footer-links {
    display: none;
  }
}

@media (max-width: 540px) {
  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .launch-intro {
    align-items: flex-start;
    padding: 13px;
  }

  .launch-intro img {
    width: 57px;
    height: 57px;
    flex-basis: 57px;
  }

  .launch-intro h2 {
    font-size: 18px;
  }

  .action-box {
    grid-template-columns: 1fr;
  }

  .actions {
    grid-template-columns: 1fr;
  }

  .status-table > div {
    grid-template-columns: 92px 1fr;
  }

  .side-column {
    grid-template-columns: 1fr;
  }

  .help-panel {
    grid-column: auto;
  }

  .service-notice {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .service-notice p {
    flex-basis: calc(100% - 90px);
  }

  .service-notice a {
    margin-left: auto;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 12px;
  }

  .launch-intro {
    gap: 10px;
  }

  .launch-intro img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .intro-kicker {
    font-size: 8px;
  }

  .launch-intro h2 {
    font-size: 16px;
  }

  .status-table > div {
    grid-template-columns: 80px 1fr;
  }
}

/* Reference-density pass: readable three-column public portal. */
* {
  letter-spacing: 0 !important;
}

:root {
  --navy: #245f96;
  --navy-dark: #174f80;
  --navy-soft: #eef2fa;
  --teal: #269aa8;
  --gold: #de8b2d;
  --line: #d9dfeb;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: min(1080px, 100%);
  margin-bottom: 0;
}

.system-banner {
  display: none;
}

.utility-bar {
  min-height: 20px;
  padding: 0 14px;
  font-size: 10px;
}

.utility-links a {
  padding: 0 7px;
}

.utility-status {
  gap: 5px;
}

.utility-status strong {
  font-size: 10px;
}

.header-main {
  min-height: 44px;
  padding: 0 14px;
}

.brand {
  gap: 7px;
}

.brand img {
  width: 35px;
  height: 35px;
}

.brand strong {
  color: #145c78;
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  font-size: 8px;
}

.header-service {
  padding-left: 12px;
}

.header-service span {
  font-size: 10px;
}

.header-service strong {
  margin-top: 1px;
  font-size: 12px;
}

.primary-nav {
  height: 31px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 0 8px;
  background: linear-gradient(#286a9f 0%, #205f94 52%, #1b578b 53%, #174f80 100%);
}

.primary-nav a {
  min-height: 29px;
  font-size: 11px;
}

main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: 520px;
  padding: 6px 12px 16px;
}

.page-heading {
  min-height: 37px;
  border-bottom: 1px solid #59b8c3;
  padding: 0 2px 5px;
}

.page-heading span {
  margin-bottom: 2px;
  font-size: 10px;
}

.page-heading h1 {
  font-size: 16px;
}

.page-heading p {
  font-size: 10px;
}

.content-layout {
  flex: 1 0 auto;
  grid-template-columns: 128px minmax(0, 1fr) 220px;
  gap: 10px;
  margin-top: 8px;
}

.local-column {
  min-width: 0;
  border-right: 1px solid #e0e4ed;
  background: #f7f8fc;
}

.local-title {
  min-height: 31px;
  display: flex;
  align-items: center;
  border-top: 2px solid #506b9b;
  border-bottom: 1px solid #c9d1e4;
  padding: 0 8px;
  background: #e4e9f8;
  color: #39578e;
  font-size: 12px;
  font-weight: 700;
}

.local-menu {
  display: block;
  padding: 6px 8px 10px;
}

.local-menu strong {
  display: block;
  margin-top: 7px;
  border-bottom: 1px solid #d9dfeb;
  padding: 0 0 4px;
  color: #555;
  font-size: 10px;
}

.local-menu strong:first-child {
  margin-top: 0;
}

.local-menu a {
  position: relative;
  display: block;
  padding: 3px 0 2px 8px;
  color: #5e6280;
  font-size: 10px;
  line-height: 1.3;
  text-decoration: none;
}

.local-menu a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 3px;
  height: 3px;
  background: #7d8eaf;
}

.local-menu a:hover,
.local-menu a.active {
  color: #245f96;
  font-weight: 700;
}

.local-help {
  margin: 0 8px;
  border-top: 1px solid #d9dfeb;
  padding-top: 8px;
}

.local-help span {
  display: block;
  color: #888;
  font-size: 9px;
}

.local-help a {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid #164f79;
  background: linear-gradient(#2871a6, #174f80);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.launch-panel,
.quick-panel,
.guide-panel {
  border-color: #cdd5e2;
}

.panel-heading {
  min-height: 34px;
  border-top-width: 2px;
  padding: 5px 9px;
  background: #eef2fa;
}

.panel-heading > div > span {
  display: none;
}

.panel-heading > div > strong {
  font-size: 12px;
}

.panel-heading .service-number {
  font-size: 9px;
}

.launch-intro {
  min-height: 88px;
  gap: 11px;
  margin: 8px;
  border-width: 0 0 1px;
  padding: 9px 5px 10px;
  background: #fff;
}

.launch-intro img {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.intro-kicker {
  color: #269aa8;
  font-size: 9px;
}

.launch-intro h2 {
  margin-top: 3px;
  color: #df5a35;
  font-size: 18px;
}

.launch-intro p {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.5;
}

.status-title {
  margin: 0 8px 4px;
}

.status-title strong {
  color: #39578e;
  font-size: 11px;
}

.status-title span {
  font-size: 9px;
}

.status-table {
  margin: 0 8px;
  border-top: 1px solid #4aa8b4;
}

.status-table > div {
  min-height: 28px;
  grid-template-columns: 88px 1fr;
}

.status-table dt,
.status-table dd {
  padding: 5px 7px;
  font-size: 10px;
}

.status-table dt {
  background: #eef2fa;
}

.status-chip {
  min-height: 19px;
  padding: 1px 6px;
  font-size: 9px;
}

.action-box {
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 9px;
  margin: 8px;
  padding: 8px;
  background: #f3f7fb;
}

.action-copy strong {
  font-size: 11px;
}

.action-copy p {
  margin-top: 2px;
  font-size: 9px;
}

.actions {
  gap: 3px;
}

.actions a,
.actions button {
  min-height: 27px;
  padding: 4px 6px;
  font-size: 10px;
}

.notice-box {
  margin: 0 8px 8px;
  padding: 7px 8px;
}

.notice-box > strong {
  margin-bottom: 3px;
  font-size: 10px;
}

.notice-box ul {
  font-size: 9px;
  line-height: 1.55;
}

.side-column {
  gap: 7px;
}

.side-heading {
  min-height: 27px;
  border-bottom-color: #64aeb9;
  padding: 0 8px;
  background: #e4e9f8;
  color: #39578e;
  font-size: 11px;
  text-shadow: none;
}

.quick-links {
  padding: 4px 7px;
}

.quick-links a {
  min-height: 42px;
  grid-template-columns: 25px 1fr;
  gap: 6px;
  padding: 4px 1px;
}

.quick-icon {
  width: 23px;
  height: 23px;
  font-size: 9px;
}

.quick-links strong {
  color: #245f96;
  font-size: 10px;
}

.quick-links small {
  margin-top: 1px;
  font-size: 9px;
}

.guide-panel ol {
  padding: 4px 7px 6px;
}

.guide-panel li {
  min-height: 44px;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  padding: 6px 0;
}

.guide-panel li > span {
  width: 18px;
  height: 18px;
  font-size: 9px;
}

.guide-panel p,
.help-panel p,
.help-panel a {
  font-size: 9px;
}

.guide-panel p strong {
  font-size: 10px;
}

.help-panel {
  padding: 8px;
  background: #f8f9fc;
}

.help-panel > span {
  font-size: 9px;
}

.help-panel > strong {
  font-size: 11px;
}

.help-panel p {
  margin: 4px 0 5px;
}

.service-notice {
  min-height: 30px;
  margin-top: 7px;
  padding: 5px 8px;
  font-size: 9px;
}

.site-footer {
  flex: 0 0 auto;
  min-height: 60px;
  grid-template-columns: 40px 1fr auto;
  padding: 9px 14px;
  font-size: 9px;
}

.site-footer img {
  width: 34px;
  height: 34px;
}

.site-footer strong {
  font-size: 10px;
}

@media (max-width: 940px) {
  .content-layout {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .side-column {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .primary-nav {
    grid-template-columns: repeat(7, minmax(118px, 1fr));
    overflow-x: auto;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .utility-links,
  .header-service,
  .page-heading p {
    display: none;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .local-column {
    border: 1px solid #d9dfeb;
  }

  .local-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 8px;
  }

  .local-menu strong {
    grid-column: 1 / -1;
  }

  .local-help {
    display: none;
  }

  .side-column {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .action-box {
    grid-template-columns: 1fr;
  }

  .actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .launch-intro img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .actions {
    grid-template-columns: 1fr;
  }
}

/* Roblox 실행자 정보 확인 */
body.launch-dialog-open {
  overflow: hidden;
}

.launch-identity-overlay[hidden] {
  display: none;
}

.launch-identity-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 20px;
  background: rgba(12, 29, 39, .62);
}

.launch-identity-dialog {
  width: min(600px, 100%);
  border: 1px solid #436f84;
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .36);
}

.launch-identity-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #075478;
  padding: 9px 12px 8px 15px;
  background: linear-gradient(#1684b7, #076892);
  color: #fff;
  text-shadow: 0 1px #064263;
}

.launch-identity-header span {
  display: block;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .09em;
  opacity: .86;
}

.launch-identity-header h2 {
  margin: 2px 0 0;
  font-family: "굴림", Gulim, sans-serif;
  font-size: 17px;
  letter-spacing: -.7px;
}

.launch-identity-close {
  appearance: none;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 0;
  padding: 0;
  background: rgba(0, 55, 84, .35);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
}

.launch-identity-close:hover {
  background: rgba(0, 38, 60, .65);
}

.launch-identity-body {
  padding: 15px;
}

.launch-identity-body > p:first-child {
  margin: 0 0 11px;
  color: #666;
  font-size: 10px;
  line-height: 1.65;
}

.launch-identity-table {
  margin: 0;
  border-top: 2px solid #4f7f96;
  border-bottom: 1px solid #b9c7ce;
}

.launch-identity-table > div {
  min-height: 37px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  border-top: 1px solid #d9dfe2;
}

.launch-identity-table > div:first-child {
  border-top: 0;
}

.launch-identity-table dt,
.launch-identity-table dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 8px 10px;
  overflow-wrap: anywhere;
}

.launch-identity-table dt {
  border-right: 1px solid #c9d3d8;
  background: #eef3f5;
  color: #385c6d;
  font-size: 10px;
  font-weight: 700;
}

.launch-identity-table dd {
  background: #fff;
  color: #303030;
  font-family: Tahoma, "돋움", Dotum, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.launch-identity-note {
  margin: 10px 0 0;
  border: 1px solid #d6d0ac;
  padding: 8px 9px;
  background: #fffdf1;
  color: #6d684f;
  font-size: 9px;
  line-height: 1.6;
}

.launch-identity-error[hidden] {
  display: none;
}

.launch-identity-error {
  margin: 9px 0 0;
  border: 1px solid #c68e8e;
  padding: 8px 9px;
  background: #fff1f1;
  color: #8d2727;
  font-size: 10px;
  font-weight: 700;
}

.launch-identity-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  border-top: 1px solid #d0d7db;
  padding: 10px 15px;
  background: #f3f5f6;
}

.launch-identity-actions button {
  appearance: none;
  min-width: 118px;
  min-height: 32px;
  border-radius: 0;
  padding: 7px 13px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.launch-identity-actions .primary {
  border: 1px solid #07567f;
  background: linear-gradient(#1684b7, #076892);
  color: #fff;
  text-shadow: 0 1px #064263;
}

.launch-identity-actions .primary:hover:not(:disabled) {
  border-color: #064b6d;
  background: linear-gradient(#0874a3, #055a82);
}

.launch-identity-actions .primary:disabled {
  border-color: #aaa;
  background: linear-gradient(#ddd, #bbb);
  color: #777;
  text-shadow: none;
  cursor: wait;
}

.launch-identity-actions .secondary {
  border: 1px solid #aaa;
  background: linear-gradient(#fff, #e5e5e5);
  color: #444;
}

.launch-identity-actions .secondary:hover {
  border-color: #777;
  background: linear-gradient(#f8f8f8, #dcdcdc);
}

@media (max-width: 560px) {
  .launch-identity-overlay {
    place-items: start center;
    padding: 12px;
  }

  .launch-identity-dialog {
    margin-top: 12px;
  }

  .launch-identity-table > div {
    grid-template-columns: 1fr;
  }

  .launch-identity-table dt {
    border-right: 0;
    border-bottom: 1px solid #d5dde1;
    padding-bottom: 5px;
  }

  .launch-identity-table dd {
    min-height: 36px;
    padding-top: 6px;
  }

  .launch-identity-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .launch-identity-actions button {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .launch-identity-actions {
    grid-template-columns: 1fr;
  }
}
