/* GOW.kr — 우주 데이터 플랫폼 (다크 우주 테마) */
:root {
  --bg: #060a14;
  --ink: #eef3fc;
  --muted: #8fa3c8;
  --dim: #5d6f8f;
  --line: rgba(125, 165, 255, 0.18);
  --panel: #0d1628;
  --panel-2: #101c36;
  --blue: #3987e5;      /* 데이터 시각화 기본 색 (검증 완료) */
  --blue-soft: #6da7ec;
  --grad: linear-gradient(135deg, #3851db 0%, #2f7ae8 55%, #29a7f5 100%);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg) radial-gradient(ellipse at 50% -10%, #12203c 0%, var(--bg) 55%);
  color: var(--ink);
  font-family: 'Segoe UI', 'Malgun Gothic', 'Apple SD Gothic Neo', system-ui, sans-serif;
}
a { color: inherit; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; z-index: 30; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(6, 10, 20, 0.66);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; font-size: 14px; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; text-decoration: none; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(80, 140, 255, 0.1); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  color: #fff !important; background: var(--grad);
  box-shadow: 0 6px 18px rgba(48, 105, 235, 0.35);
}

/* ---------- 공통 섹션 ---------- */
main { padding-top: 62px; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 48px); }
.section-kicker {
  margin: 0 0 10px; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue-soft);
}
.section-heading h2 { margin: 0 0 10px; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -0.5px; }
.section-heading p.lead { margin: 0 0 34px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-band { border-top: 1px solid var(--line); }

/* ---------- 히어로 ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,20,0.25) 0%, rgba(6,10,20,0.66) 70%, var(--bg) 100%);
}
.hero-content { position: relative; max-width: var(--max); margin: 0 auto; padding: 90px clamp(18px, 4vw, 48px) 70px; }
.hero-logo { height: clamp(64px, 9vw, 104px); display: block; margin-bottom: 22px; filter: drop-shadow(0 8px 30px rgba(64,120,255,.4)); }
.hero-title { margin: 0 0 14px; font-size: clamp(28px, 4.4vw, 46px); line-height: 1.25; letter-spacing: -1px; }
.hero-copy { margin: 0 0 30px; max-width: 560px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; border: 0; cursor: pointer;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.button.primary { color: #fff; background: var(--grad); box-shadow: 0 10px 26px rgba(48,105,235,.35); }
.button.primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(48,105,235,.45); }
.button.ghost { color: var(--ink); background: transparent; border: 1px solid rgba(125,165,255,.35); }
.button.ghost:hover { border-color: rgba(140,180,255,.6); }

/* ---------- 통계 카드/차트 ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 34px; }
.stat-tile {
  padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(165deg, rgba(17,25,48,.75), rgba(9,13,26,.7));
}
.stat-tile .num { font-size: 32px; font-weight: 700; letter-spacing: -1px; }
.stat-tile .num.loading { font-size: 15px; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.stat-tile .lbl { margin-top: 4px; font-size: 12px; color: var(--muted); }

.panel {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, rgba(15,22,42,.8), rgba(8,12,24,.75));
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.panel-head h3 { margin: 0; font-size: 16px; }
.panel-head .sub { font-size: 12px; color: var(--dim); }
.panel-body { padding: 20px 22px; }

.chart-wrap { position: relative; }
.chart-svg { display: block; width: 100%; height: auto; }
.chart-tip {
  position: absolute; pointer-events: none; display: none; z-index: 5;
  padding: 8px 12px; border-radius: 10px; font-size: 12px; line-height: 1.55; white-space: nowrap;
  background: rgba(10, 16, 32, 0.95); border: 1px solid rgba(125,165,255,.35); color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.chart-note { margin-top: 10px; font-size: 11px; color: var(--dim); }

/* 가로 막대 (운영사) */
.hbar-row { display: grid; grid-template-columns: 130px 1fr 64px; align-items: center; gap: 12px; margin: 10px 0; }
.hbar-name { font-size: 13px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hbar-name .op { display: block; font-size: 11px; color: var(--dim); }
.hbar-track { height: 18px; border-radius: 5px; background: rgba(125,165,255,.09); overflow: hidden; }
.hbar-fill { height: 100%; border-radius: 0 4px 4px 0; background: var(--blue); min-width: 2px; }
.hbar-val { font-size: 13px; font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }

/* 목록/테이블 */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  text-align: left; padding: 10px 12px; color: var(--dim); font-weight: 600; font-size: 12px;
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
.data-table td { padding: 10px 12px; border-bottom: 1px solid rgba(125,165,255,.08); }
.data-table tr:last-child td { border-bottom: 0; }
.data-table .muted { color: var(--muted); }
.data-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.status-pill {
  display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 11px;
  border: 1px solid rgba(125,165,255,.3); color: var(--blue-soft);
}
.status-pill.ok { border-color: rgba(74,222,128,.4); color: #4ade80; }
.status-pill.bad { border-color: rgba(248,113,113,.4); color: #f87171; }

.more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--blue-soft); text-decoration: none; }
.more-link:hover { color: #cfe0ff; }

.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- ORBIT 홍보 ---------- */
.promo {
  position: relative; overflow: hidden; border-radius: 22px; border: 1px solid rgba(125,165,255,.3);
}
.promo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.promo-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,10,20,.92) 25%, rgba(6,10,20,.45) 100%); }
.promo-content { position: relative; padding: clamp(34px, 5vw, 60px); max-width: 620px; }
.promo-content img.logo { height: 52px; margin-bottom: 18px; }
.promo-content h2 { margin: 0 0 12px; font-size: clamp(22px, 3vw, 30px); }
.promo-content p { margin: 0 0 22px; color: var(--muted); line-height: 1.8; font-size: 14px; }
.promo-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; padding: 0; list-style: none; }
.promo-feats li {
  padding: 6px 13px; border-radius: 999px; font-size: 12px; color: var(--blue-soft);
  border: 1px solid rgba(125,165,255,.3); background: rgba(10,16,32,.6);
}

/* ---------- 데이터 서비스 (유료) ---------- */
.paid-badge {
  display: inline-block; vertical-align: middle; margin-left: 8px; padding: 4px 12px;
  border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: 0;
  color: #ffd479; border: 1px solid rgba(255, 200, 100, 0.45); background: rgba(60, 45, 12, 0.5);
}
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.step { padding: 6px 4px; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; background: var(--grad); margin-bottom: 12px; font-size: 15px;
}
.step h4 { margin: 0 0 8px; font-size: 15px; }
.step p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.7; }

/* 상품 카탈로그 그룹 */
.cat-title { margin: 2px 0 6px; font-size: 20px; letter-spacing: -0.3px; }
.cat-desc { margin: 0 0 18px; font-size: 13.5px; color: var(--muted); line-height: 1.8; max-width: 760px; }

/* 샘플 자료실 */
.sample-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.sample-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; text-decoration: none;
  border: 1px solid var(--line); border-radius: 12px; background: rgba(17, 25, 48, 0.5);
  transition: border-color .15s, transform .15s, background .15s;
}
.sample-item:hover { border-color: rgba(125, 165, 255, 0.45); transform: translateY(-2px); background: rgba(20, 30, 55, 0.7); }
.sample-item .si-ico { font-size: 22px; }
.sample-item b { display: block; font-size: 13.5px; color: var(--ink); }
.sample-item small { display: block; font-size: 11px; color: var(--dim); margin-top: 2px; }

/* ---------- 데이터 서비스 ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.service-card {
  padding: 26px 24px; border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(165deg, rgba(17,25,48,.7), rgba(9,13,26,.65));
  transition: border-color .15s, transform .15s;
}
.service-card:hover { border-color: rgba(125,165,255,.4); transform: translateY(-2px); }
.service-card .icon { font-size: 26px; }
.service-card h3 { margin: 12px 0 8px; font-size: 17px; }
.service-card p { margin: 0 0 14px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.service-card .tag { font-size: 12px; color: var(--blue-soft); }

/* ---------- 푸터 ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 20px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 34px clamp(18px, 4vw, 48px) 44px; }
.footer-inner .logo { height: 26px; opacity: .9; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand .brand-sub {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
  padding-left: 12px; border-left: 1px solid rgba(125, 165, 255, 0.25);
}
.company-info { margin: 4px 0; font-size: 12px; color: var(--dim); line-height: 1.8; }
.footer-links { margin-top: 14px; font-size: 12px; color: var(--dim); }
.footer-links a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hbar-row { grid-template-columns: 104px 1fr 52px; }
}

/* ---------- 헤더 로그인 상태 ---------- */
.nav-auth { display: inline-flex; align-items: center; gap: 2px; margin-right: 4px; }
.nav-auth a {
  padding: 8px 12px; border-radius: 10px; text-decoration: none; color: var(--muted);
  font-size: 13px; transition: color .15s, background .15s;
}
.nav-auth a:hover { color: var(--ink); background: rgba(80, 140, 255, 0.1); }
.nav-user {
  padding: 6px 12px; font-size: 13px; color: var(--blue-soft); white-space: nowrap;
  border: 1px solid rgba(125, 165, 255, 0.25); border-radius: 999px; background: rgba(10, 16, 32, 0.5);
  text-decoration: none; cursor: pointer; transition: border-color .15s, background .15s;
}
.nav-user:hover { border-color: rgba(140, 180, 255, 0.55); background: rgba(30, 45, 75, 0.6); color: #cfe0ff; }

/* ---------- 마이페이지 ---------- */
.mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 820px) { .mp-grid { grid-template-columns: 1fr; } }
.mp-field { margin-bottom: 14px; }
.mp-field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.mp-field input {
  width: 100%; box-sizing: border-box; padding: 11px 13px; border-radius: 10px; font-size: 14px; color: var(--ink);
  border: 1px solid rgba(125, 165, 255, 0.3); background: rgba(10, 16, 32, 0.7); outline: none;
}
.mp-field input:focus { border-color: var(--blue-soft); }
.mp-field input:read-only { color: var(--dim); background: rgba(10, 16, 32, 0.4); cursor: not-allowed; }
.mp-addr-row { display: flex; gap: 8px; }
.mp-addr-row input { flex: 1; }
.mp-msg { font-size: 13px; min-height: 18px; margin-top: 4px; }
.mp-msg.ok { color: #7fe0a0; }
.mp-msg.err { color: #f87171; }
.mp-meta { font-size: 12px; color: var(--dim); line-height: 1.9; }
@media (max-width: 720px) {
  /* 모바일에서도 로그인 상태는 항상 보이게 */
  .nav-links .nav-auth a, .nav-links .nav-user { display: inline-flex !important; }
  .nav-user { max-width: 110px; overflow: hidden; text-overflow: ellipsis; }
}

/* ---------- 회원 전용 페이지 게이트 ---------- */
.login-gate {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 7, 16, 0.72); backdrop-filter: blur(14px);
}
.login-gate-box {
  max-width: 460px; margin: 20px; padding: 40px 36px; text-align: center;
  border: 1px solid rgba(125, 165, 255, 0.3); border-radius: 20px;
  background: linear-gradient(165deg, rgba(15,22,42,.96), rgba(8,12,24,.96));
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.login-gate-box h2 { margin: 18px 0 10px; font-size: 22px; }
.login-gate-box p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.gate-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.gate-tip { margin-top: 20px !important; font-size: 12px !important; color: var(--dim) !important; }
.gate-tip a { color: var(--blue-soft); }

/* ---------- 문의 팝업 ---------- */
.inq-overlay {
  position: fixed; inset: 0; z-index: 110;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 7, 16, 0.7); backdrop-filter: blur(8px);
}
.inq-overlay.hidden { display: none; }
.inq-box {
  position: relative; width: min(480px, calc(100vw - 32px)); max-height: 90vh; overflow-y: auto;
  padding: 30px 28px; border: 1px solid rgba(125, 165, 255, 0.3); border-radius: 20px;
  background: linear-gradient(165deg, rgba(15,22,42,.97), rgba(8,12,24,.97));
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.inq-box h3 { margin: 0 0 6px; font-size: 19px; }
.inq-lead { margin: 0 0 16px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.inq-box input, .inq-box textarea {
  display: block; width: 100%; box-sizing: border-box; margin-bottom: 10px;
  padding: 12px 14px; border-radius: 10px; font-size: 14px; color: var(--ink);
  border: 1px solid rgba(125, 165, 255, 0.3); background: rgba(10, 16, 32, 0.7);
  outline: none; font-family: inherit; resize: vertical;
}
.inq-box input:focus, .inq-box textarea:focus { border-color: var(--blue-soft); }
.inq-submit { width: 100%; justify-content: center; margin-top: 4px; }
.inq-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid rgba(140,180,255,.3); cursor: pointer;
  background: rgba(20, 32, 56, 0.8); color: #cfe0ff; font-size: 17px; line-height: 1;
}
.inq-err { margin-top: 10px; font-size: 13px; color: #f87171; min-height: 18px; text-align: center; }

/* ---------- 우주기상/나라별 페이지 ---------- */
.swx-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.swx-chip {
  padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(74,222,128,.4); color: #4ade80; background: rgba(10,16,32,.6);
}
.swx-chip.warn { border-color: rgba(255,183,77,.5); color: #ffb74d; }
.swx-chip.bad { border-color: rgba(248,113,113,.5); color: #f87171; }
.alert-item { border-left: 3px solid rgba(125,165,255,.4); }
.alert-item.warn { border-left-color: #f87171; }
.alert-item summary {
  cursor: pointer; padding: 12px 14px; font-size: 13px; list-style: none;
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
}
.alert-item summary::-webkit-details-marker { display: none; }
.alert-item summary .when { color: var(--dim); font-size: 12px; white-space: nowrap; }
.alert-item pre {
  margin: 0 14px 14px; padding: 12px 14px; border-radius: 10px; overflow-x: auto;
  background: rgba(6, 10, 20, 0.8); border: 1px solid rgba(125,165,255,.15);
  font-size: 11.5px; line-height: 1.65; color: var(--muted); white-space: pre-wrap; word-break: break-word;
}
.alert-item + .alert-item { border-top: 1px solid rgba(125,165,255,.08); }

/* ---------- 오늘의 우주 사진 (APOD) ---------- */
.apod-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(165deg, rgba(15,22,42,.8), rgba(8,12,24,.75));
}
.apod-media { min-height: 260px; background: #05070e; display: flex; align-items: center; justify-content: center; }
.apod-media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; }
.apod-video { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 260px; text-decoration: none; background: radial-gradient(ellipse at 50% 40%, #142647, #070c17); }
.apod-video img { position: absolute; inset: 0; }
.apod-play { position: relative; z-index: 2; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(8,14,28,.55); border: 2px solid rgba(160,195,255,.9);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 26px rgba(0,0,0,.5), 0 0 32px rgba(80,140,255,.4);
  transition: transform .15s ease, background .15s ease; }
.apod-play::before { content: ''; margin-left: 6px; border-style: solid; border-width: 14px 0 14px 23px; border-color: transparent transparent transparent #e6eeff; }
.apod-video:hover .apod-play { transform: scale(1.08); background: rgba(34,66,128,.75); }
.apod-play-label { position: absolute; z-index: 2; bottom: 18px; font-size: 12px; letter-spacing: .5px; color: #cfe0ff; opacity: .9; }
.apod-body { padding: 26px 28px; }
.apod-body h3 { margin: 0 0 6px; font-size: 20px; line-height: 1.35; }
.apod-date { margin: 0 0 16px; font-size: 12px; color: var(--dim); }
.apod-text { margin: 0 0 18px; font-size: 13.5px; color: var(--muted); line-height: 1.85;
  max-height: 260px; overflow-y: auto; }
@media (max-width: 820px) { .apod-card { grid-template-columns: 1fr; } .apod-text { max-height: none; } }

/* ---------- 위성 검색 ---------- */
.search-bar { display: flex; gap: 10px; margin-bottom: 8px; }
.search-bar input {
  flex: 1; padding: 14px 16px; border-radius: 12px; font-size: 15px; color: var(--ink);
  border: 1px solid rgba(125,165,255,.3); background: rgba(10,16,32,.7); outline: none;
}
.search-bar input:focus { border-color: var(--blue-soft); }
.sat-card {
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px;
  background: linear-gradient(165deg, rgba(17,25,48,.6), rgba(9,13,26,.55));
}
.sat-card .sat-name { font-size: 15px; font-weight: 600; }
.sat-card .sat-meta { margin-top: 6px; font-size: 12.5px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.sat-card .sat-meta b { color: var(--ink); font-weight: 600; }
.locked-note {
  margin-top: 8px; padding: 10px 14px; border-radius: 10px; font-size: 12.5px; color: var(--blue-soft);
  border: 1px dashed rgba(125,165,255,.35); background: rgba(10,16,32,.5);
}

/* ---------- ISS 통과 예보 · 우주 알림 ---------- */
.pass-row {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 12px; align-items: center;
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px;
  background: linear-gradient(165deg, rgba(17,25,48,.55), rgba(9,13,26,.5));
}
.pass-row.visible { border-color: rgba(120,200,140,.4); }
.pass-when { font-size: 13px; font-weight: 600; }
.pass-when .d { display: block; font-size: 11px; color: var(--dim); font-weight: 400; }
.pass-path { font-size: 12.5px; color: var(--muted); }
.pass-peak { text-align: right; }
.pass-peak .el { font-size: 18px; font-weight: 700; }
.pass-peak .lbl { font-size: 10px; color: var(--dim); }
.pass-badge { display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 999px; font-size: 11px; }
.pass-badge.vis { color: #7fe0a0; border: 1px solid rgba(120,200,140,.4); }
.pass-badge.dim { color: var(--dim); border: 1px solid rgba(125,165,255,.2); }
.alert-toggle {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; margin-bottom: 10px;
  border: 1px solid var(--line); border-radius: 14px; background: rgba(13,19,36,.5);
}
.alert-toggle input[type=checkbox] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.alert-toggle .at-body h4 { margin: 0 0 4px; font-size: 15px; }
.alert-toggle .at-body p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.geo-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 10px 0 4px; }
.geo-row input {
  width: 120px; padding: 10px 12px; border-radius: 10px; font-size: 14px; color: var(--ink);
  border: 1px solid rgba(125,165,255,.3); background: rgba(10,16,32,.7); outline: none;
}

/* ---------- ORBIT 광고 배너 (스크린샷을 주인공으로) ---------- */
.promo-ad { min-height: 400px; display: flex; align-items: center; }
.promo-ad .promo-bg { opacity: 0.9; object-position: right center; }
.promo-ad .promo-shade {
  background: linear-gradient(90deg, rgba(6,10,20,.94) 0%, rgba(6,10,20,.72) 40%, rgba(6,10,20,.12) 75%, rgba(6,10,20,0) 100%);
}
.promo-ad .promo-content h2 { font-size: clamp(24px, 3.4vw, 36px); line-height: 1.35; }
@media (max-width: 720px) {
  .promo-ad { min-height: 320px; }
  .promo-ad .promo-shade { background: linear-gradient(180deg, rgba(6,10,20,.55) 0%, rgba(6,10,20,.9) 100%); }
}

/* ---------- 초슬림 스크롤바 (사이트 전체 공통) ---------- */
*::-webkit-scrollbar { width: 3px; height: 3px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(110, 160, 255, 0.3); border-radius: 2px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(110, 160, 255, 0.55); }
* { scrollbar-width: thin; scrollbar-color: rgba(110, 160, 255, 0.3) transparent; }
