/* ==========================================================================
   WatchPro — Watch List 검색
   모바일 우선(mobile-first) 프리미엄 스타일
   ========================================================================== */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --danger: #ef4444;
  --warning: #f97316;
  --ok: #10b981;
  --text: #0f172a;
  --text-sub: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.03), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
}

.hidden { display: none !important; }

/* ---------- 헤더 ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  color: var(--text);
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  max-width: 720px;
  margin: 0 auto;
}

.header-logo-img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.brand-button:active { opacity: 0.7; }

/* 언어 선택 (헤더 우측) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
}

.lang-switch select {
  border: none;
  background: transparent;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2px;
}

/* 내 정보 관리 진입 아이콘 (헤더 우측, 외곽 원 없음) */
.profile-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 4px;
  border: none;
  background: none;
  color: #475569;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, transform 0.15s ease;
}

.profile-entry:hover { color: var(--primary); }
.profile-entry:active { transform: scale(0.92); }

.profile-entry-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.profile-entry-photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.profile-entry-emoji { font-size: 24px; line-height: 1; }

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content; /* 폭은 brand-name(서비스명)이 결정 */
  line-height: 1;
}

.brand-name {
  display: block;
  width: fit-content;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1;
}

.brand-subtitle {
  display: flex;
  justify-content: space-between; /* 서비스명 폭 안에서 단어를 균등 배치 */
  width: 0;
  min-width: 100%; /* 폭이 brand-name을 넘지 않고 정확히 따라가도록 고정 */
  margin-top: 5px;
  color: #64748b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25px;
  white-space: nowrap;
}

.brand-watch { color: #0b4aa2; }
.brand-pro { color: #18a8e0; }

/* ---------- 메인 ---------- */
.app-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 16px calc(24px + var(--safe-bottom));
}

/* ---------- 검색 패널 ---------- */
.search-panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  padding: 18px;
}

.name-row { display: flex; gap: 8px; }

.name-input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.icon-search {
  position: absolute;
  left: 14px;
  color: var(--text-sub);
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* 입력 중에는 돋보기를 숨겨 입력 공간 확보 */
.name-input-wrap:focus-within .icon-search { opacity: 0; }

#flnm {
  width: 100%;
  height: 50px;
  padding: 0 42px 0 44px;
  font-size: 15px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text);
  outline: none;
  transition: all 0.2s ease;
}

#flnm:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  padding-left: 16px; /* 돋보기 숨김에 맞춰 입력 시작 위치 확장 */
}

.btn-clear {
  position: absolute;
  right: 10px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.btn-clear:hover { background: #cbd5e1; }

.btn-search {
  height: 38px;
  padding: 0 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.2s ease;
}

.btn-search:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}
.btn-search:disabled { opacity: 0.55; cursor: not-allowed; }

/* ---------- 상세 조건 토글 ---------- */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-history {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--text-sub);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.btn-history:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
  border-color: rgba(37, 99, 235, 0.25);
}

.btn-history:active { transform: scale(0.94); }

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-toggle:hover {
  background: #f1f5f9;
  color: var(--text);
}

.filter-toggle .chevron { transition: transform 0.2s; color: var(--text-sub); }
.filter-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.filter-body {
  display: none;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.filter-body.open { display: block; }

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field-wide { grid-column: 1 / -1; }

.filter-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-sub);
}

.filter-field label strong { color: var(--primary); font-size: 13.5px; }

.filter-field select,
.filter-field input[type="date"] {
  height: 42px;
  padding: 0 12px;
  font-size: 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--text);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s;
}

.filter-field select:focus,
.filter-field input[type="date"]:focus {
  border-color: var(--primary);
  background: #ffffff;
}

.filter-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 32px;
}

/* 세그먼트 토글 */
.segment {
  display: flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  padding: 2px;
}

.segment button {
  flex: 1;
  height: 36px;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.15s ease;
}

.segment button.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

/* 점수 입력 + 슬라이더 */
.score-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

#scoreLimitInput {
  width: 64px;
  height: 42px;
  padding: 0 8px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: var(--primary-dark);
  outline: none;
  flex-shrink: 0;
  -moz-appearance: textfield;
}

#scoreLimitInput::-webkit-outer-spin-button,
#scoreLimitInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#scoreLimitInput:focus {
  border-color: var(--primary);
  background: #ffffff;
}

.score-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  flex-shrink: 0;
}

input[type="range"] {
  flex: 1;
  min-width: 0;
  height: 28px;
  accent-color: var(--primary);
}

.btn-reset {
  margin-top: 14px;
  width: 100%;
  height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-reset:hover {
  background: #f8fafc;
  color: var(--text);
}

/* ---------- 조건 칩 ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
}

.chip .chip-x {
  border: none;
  background: none;
  color: inherit;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 2px;
}

/* ---------- 결과 요약 ---------- */
.result-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 4px 10px;
}

#result-count { font-size: 14px; font-weight: 700; color: var(--text); }
#result-count em { font-style: normal; color: var(--primary); }
.result-sort { font-size: 12px; color: var(--text-sub); }

/* ---------- 결과 카드 ---------- */
.result-list { display: flex; flex-direction: column; gap: 12px; }

.result-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.result-card.threshold-match {
  background: linear-gradient(145deg, #ffffff 35%, #f5f9ff 100%);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow:
    0 8px 24px -6px rgba(37, 99, 235, 0.22),
    0 0 16px rgba(24, 168, 224, 0.1);
}

.result-card.threshold-below {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.08);
}

.result-card:hover {
  transform: translateY(-2px);
}

.result-card.threshold-match:hover {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow:
    0 12px 30px -6px rgba(37, 99, 235, 0.3),
    0 0 20px rgba(24, 168, 224, 0.14);
}

.result-card.threshold-below:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.14);
}

.result-card:active {
  transform: translateY(0) scale(0.985);
}

.card-main { flex: 1; min-width: 0; }

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card-no {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--text-sub);
  background: #f1f5f9;
  border-radius: 6px;
  padding: 2px 7px;
  margin-top: 3px;
  font-weight: 700;
}

.card-name {
  flex: 1;
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  word-break: break-word;
}

.card-name small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-sub);
  margin-top: 4px;
}

.score-badge {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.score-badge.score-high {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.22);
}
.score-badge.score-mid {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.22);
}
.score-badge.score-low {
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.18);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 9px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
}

.tag.tag-wl { background: #eef2ff; color: #4f46e5; }
.tag.tag-person { background: #eff6ff; color: #1d4ed8; }
.tag.tag-entity { background: #ecfdf5; color: #047857; }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-sub);
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
}

.card-meta .meta-item { display: inline-flex; align-items: center; gap: 4px; }
.card-meta .meta-item b { color: #334155; font-weight: 600; }

/* ---------- 빈 상태 ---------- */
.empty-state {
  text-align: center;
  padding: 72px 20px;
  color: var(--text-sub);
}

.empty-icon { font-size: 44px; margin-bottom: 14px; opacity: 0.8; }
.empty-title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.empty-desc { font-size: 14px; line-height: 1.6; }

/* ---------- 로딩 ---------- */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 600;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 바텀시트 ---------- */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  animation: fade-in 0.2s ease-out;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  max-width: 720px;
  margin: 0 auto;
  max-height: 82vh;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: 10px 20px calc(16px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.1);
  animation: sheet-up 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sheet-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sheet-handle {
  width: 44px;
  height: 5px;
  border-radius: 3px;
  background: #cbd5e1;
  margin: 6px auto 12px;
  flex-shrink: 0;
}

.sheet-content { overflow-y: auto; }

.sheet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.sheet-title h2 { font-size: 19px; font-weight: 800; color: #0f172a; word-break: break-word; }

.detail-table { width: 100%; border-collapse: collapse; margin-top: 10px; }

.detail-table th,
.detail-table td {
  padding: 9px 4px;
  font-size: 13.5px;
  border-bottom: 1px solid #f0f2f6;
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  width: 96px;
  color: var(--text-sub);
  font-weight: 600;
  white-space: nowrap;
}

.detail-table td { word-break: break-all; font-weight: 500; }

.sheet-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-shrink: 0;
}

.sheet-detail {
  flex: 1.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transition: all 0.2s;
}
.sheet-detail:active { transform: scale(0.98); }

.sheet-close {
  flex: 1;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text-sub);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.sheet-close:hover { background: #f8fafc; color: var(--text); }

/* ---------- Watch List 상세 페이지 ---------- */
.detail-page {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  animation: page-in 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes page-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.detail-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text);
  padding: calc(12px + env(safe-area-inset-top, 0px)) 12px 12px;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}

.detail-back:active { background: #f1f5f9; }

.detail-header-title {
  flex: 1;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.3px;
}

.detail-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px calc(24px + var(--safe-bottom));
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.detail-loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(4px);
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 600;
}

/* 히어로 (기본정보) */
.hero-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  padding: 18px 16px;
}

.hero-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  background: #e2e8f0;
}

.hero-photo-fallback {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.hero-id-wrap { flex: 1; min-width: 0; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }

.hero-name {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  word-break: break-word;
}

.hero-nat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-nat .hero-flag { font-size: 18px; }

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.hero-fact { font-size: 12.5px; color: var(--text-sub); }
.hero-fact b { display: block; font-size: 13.5px; color: #334155; margin-top: 2px; font-weight: 700; }

.hero-sanctions { margin-top: 14px; }

.hero-sanctions .hero-sanctions-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.sanction-chips { display: flex; flex-wrap: wrap; gap: 6px; }

.sanction-chip {
  padding: 4px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

/* 아코디언 섹션 */
.acc-section {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  margin-top: 12px;
  overflow: hidden;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.acc-head .acc-icon { font-size: 18px; width: 24px; text-align: center; }
.acc-head .acc-title { flex: 1; font-size: 15px; font-weight: 700; color: #0f172a; }

.acc-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
}

.acc-head .chevron { color: var(--text-sub); transition: transform 0.2s; }

/* 섹션 순서 변경 드래그 핸들 */
.acc-drag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #cbd5e1;
  cursor: grab;
  touch-action: none; /* 드래그 중 화면 스크롤 방지 */
  flex-shrink: 0;
}

.acc-drag:hover { color: #94a3b8; background: #f1f5f9; }
.acc-drag:active { cursor: grabbing; }

.acc-section.dragging {
  opacity: 0.9;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  position: relative;
  z-index: 5;
}
.acc-section.open .acc-head .chevron { transform: rotate(180deg); }

.acc-body {
  display: none;
  padding: 0 14px 14px;
}

.acc-section.open .acc-body { display: block; }

/* 영역별 항목 미니카드 */
.item-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 12px;
  transition: all 0.15s ease;
}

.item-card + .item-card { margin-top: 8px; }

.item-card.tappable { cursor: pointer; }
.item-card.tappable:active { background: var(--primary-light); }

.item-headline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.item-headline .item-seq {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-sub);
  background: #e2e8f0;
  border-radius: 5px;
  padding: 1px 5px;
}

.item-headline .item-link-arrow { margin-left: auto; color: var(--primary); flex-shrink: 0; }

.item-kv {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 6px;
  border-top: 1px dashed #e2e8f0;
  padding-top: 6px;
}

.item-kv .kv {
  font-size: 12px;
  color: var(--text-sub);
  word-break: break-all;
}

.item-kv .kv b { color: #334155; font-weight: 600; }

.item-photo {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 10px;
  margin-top: 8px;
  background: #e2e8f0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.acc-empty {
  padding: 8px 2px 6px;
  font-size: 13px;
  color: var(--text-sub);
  text-align: center;
}

/* 프로파일정보 */
.profile-note {
  margin: 0;
  padding: 14px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 440px;
  overflow-y: auto;
}

/* 링크 (출처 URL) */
.item-card a { color: var(--primary); word-break: break-all; font-size: 13px; font-weight: 600; text-decoration: none; }
.item-card a:hover { text-decoration: underline; }

/* ---------- 라이트박스 ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-width: 94vw;
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: calc(14px + env(safe-area-inset-top, 0px));
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

/* ---------- 이용 안내 / 앱 정보 모달 ---------- */
.guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  animation: fade-in 0.2s ease-out;
}

.guide-modal {
  width: 100%;
  max-width: min(420px, calc(100vw - 32px));
  max-height: min(88vh, 680px);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.3);
  animation: guide-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes guide-pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.guide-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.guide-title {
  font-size: 20px;
  font-weight: 800;
  color: #0b4aa2;
  letter-spacing: -0.4px;
}

.guide-title small {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-left: 4px;
}

.guide-close-x {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.guide-close-x:hover { background: #e2e8f0; }

.guide-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 22px 8px;
}

.guide-intro {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
  word-break: keep-all;
}

.guide-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.guide-step-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #0b4aa2 0%, #2563eb 60%, #18a8e0 100%);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.28);
}

.guide-step-text {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  word-break: keep-all;
}

.guide-step-text strong { color: #0f172a; font-weight: 700; }

.guide-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 22px calc(20px + var(--safe-bottom));
  border-top: 1px solid #f1f5f9;
}

.guide-btn-close {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: transform 0.15s ease;
}

.guide-btn-close:active { transform: scale(0.98); }

.guide-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.guide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 6px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  word-break: keep-all;
  transition: all 0.15s ease;
}

.guide-link:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
  border-color: rgba(37, 99, 235, 0.25);
}

/* 검색이력 모달 */
.history-body { padding-top: 14px; }

.history-grid-head {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 8px;
  padding: 0 12px 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

.history-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 11px 12px;
  padding-right: 44px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.15s ease;
}

.history-item + .history-item { margin-top: 8px; }

.history-item:hover {
  background: var(--primary-light);
  border-color: rgba(37, 99, 235, 0.25);
}

.history-item:active { transform: scale(0.985); }

.history-cond {
  display: block;
  min-width: 0;
}

.history-name {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-filters {
  display: block;
  padding-right: 78px;
  margin-top: 3px;
  font-size: 11.5px;
  color: var(--text-sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-time {
  position: absolute;
  right: 44px;
  bottom: 11px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-sub);
  text-align: right;
  white-space: nowrap;
}

.history-del {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.history-del:hover { background: #cbd5e1; }

.history-empty {
  padding: 28px 8px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-sub);
}

.history-clear {
  width: 100%;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}

.history-clear:hover { color: var(--danger); border-color: #fecaca; background: #fef2f2; }

/* 앱 정보 모달 */
.about-body { text-align: center; }

.about-logo-section { padding: 10px 0 16px; }

.about-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 8px;
}

.about-app-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.about-version {
  margin-top: 4px;
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
}

.about-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}

.about-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #f8fafc;
}

.about-info-item + .about-info-item { border-top: 1px solid #f1f5f9; }

.about-info-item .info-label {
  flex-shrink: 0;
  width: 88px;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}

.about-info-item .info-value {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  word-break: break-all;
}

.about-info-item .info-value a {
  color: var(--primary-dark);
  text-decoration: none;
}

.about-info-item .info-value a:active { opacity: 0.7; }

.about-description {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
  word-break: keep-all;
}

.about-copyright {
  margin-top: 14px;
  font-size: 11px;
  color: #cbd5e1;
}

/* ---------- 토스트 ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(32px + var(--safe-bottom));
  transform: translateX(-50%);
  z-index: 70;
  max-width: 86vw;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
  white-space: pre-line;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  animation: toast-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ---------- 태블릿 이상 ---------- */
@media (min-width: 600px) {
  .filter-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .filter-field-wide { grid-column: span 2; }
  .btn-reset { width: auto; padding: 0 20px; }
}

/* ==========================================================================
   다크 모드 (html.dark — js/theme.js 가 wlf_theme 설정에 따라 토글)
   ========================================================================== */
html.dark {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: rgba(59, 130, 246, 0.16);
  --text: #e2e8f0;
  --text-sub: #94a3b8;
  --line: #293548;
  --bg: #0b1220;
  --card: #151f2e;
  --shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.35), 0 4px 12px -2px rgba(0, 0, 0, 0.25);
}

html.dark body { background: var(--bg); color: var(--text); }

/* 헤더 */
html.dark .app-header {
  background: #0f1829;
  border-bottom-color: #1e293b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
html.dark .brand-subtitle { color: #64748b; }
html.dark .brand-watch { color: #7fb2ff; }
html.dark .brand-pro { color: #4cc3ec; }
html.dark .profile-entry { color: #94a3b8; }
html.dark .profile-entry:hover { color: var(--primary); }

/* 검색 패널 / 입력 */
html.dark .search-panel { border-color: #1e293b; }
html.dark #flnm {
  border-color: #293548;
  background: #0f1829;
  color: var(--text);
}
html.dark #flnm:focus {
  border-color: var(--primary);
  background: #101c30;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}
html.dark .btn-clear { background: #293548; color: #94a3b8; }
html.dark .btn-clear:hover { background: #334155; }
html.dark .btn-history,
html.dark .filter-toggle {
  border-color: #293548;
  background: #0f1829;
  color: var(--text-sub);
}
html.dark .btn-history:hover {
  color: #93c5fd;
  background: var(--primary-light);
  border-color: rgba(59, 130, 246, 0.35);
}
html.dark .filter-toggle:hover { background: #1a2537; color: var(--text); }
html.dark .filter-field select,
html.dark .filter-field input[type="date"] {
  border-color: #293548;
  background: #0f1829;
  color: var(--text);
  color-scheme: dark;
}
html.dark .filter-field select:focus,
html.dark .filter-field input[type="date"]:focus {
  border-color: var(--primary);
  background: #101c30;
}
html.dark .segment { border-color: #293548; background: #0f1829; }
html.dark #scoreLimitInput {
  border-color: #293548;
  background: #0f1829;
  color: #93c5fd;
}
html.dark #scoreLimitInput:focus { border-color: var(--primary); background: #101c30; }
html.dark .btn-reset { border-color: #293548; background: #151f2e; color: var(--text-sub); }
html.dark .btn-reset:hover { background: #1a2537; color: var(--text); }
html.dark .chip { background: var(--primary-light); color: #93c5fd; }

/* 결과 카드 */
html.dark .result-card { border-color: #1e293b; }
html.dark .result-card.threshold-match {
  background: linear-gradient(145deg, #16233a 35%, #14203a 100%);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow:
    0 8px 24px -6px rgba(37, 99, 235, 0.3),
    0 0 16px rgba(24, 168, 224, 0.08);
}
html.dark .result-card.threshold-below {
  background: #101827;
  border-color: #1e293b;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
}
html.dark .result-card.threshold-below:hover { border-color: #334155; }
html.dark .card-no { background: #1e293b; color: var(--text-sub); }
html.dark .card-name { color: #e2e8f0; }
html.dark .tag { background: #1e293b; color: #94a3b8; }
html.dark .tag.tag-wl { background: rgba(99, 102, 241, 0.18); color: #a5b4fc; }
html.dark .tag.tag-person { background: rgba(37, 99, 235, 0.18); color: #93c5fd; }
html.dark .tag.tag-entity { background: rgba(16, 185, 129, 0.16); color: #6ee7b7; }
html.dark .card-meta { border-top-color: #293548; }
html.dark .card-meta .meta-item b { color: #cbd5e1; }
html.dark .empty-title { color: #e2e8f0; }

/* 로딩 오버레이 */
html.dark .loading-overlay { background: rgba(11, 18, 32, 0.82); }
html.dark .spinner { border-color: rgba(59, 130, 246, 0.25); border-top-color: var(--primary); }

/* 바텀시트 */
html.dark .sheet-backdrop { background: rgba(2, 6, 14, 0.6); }
html.dark .bottom-sheet { background: #151f2e; box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5); }
html.dark .sheet-handle { background: #334155; }
html.dark .sheet-title h2 { color: #e2e8f0; }
html.dark .detail-table th,
html.dark .detail-table td { border-bottom-color: #1e293b; }
html.dark .sheet-close { border-color: #293548; background: #151f2e; color: var(--text-sub); }
html.dark .sheet-close:hover { background: #1a2537; color: var(--text); }

/* 상세 페이지 */
html.dark .detail-header {
  background: #0f1829;
  border-bottom-color: #1e293b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
html.dark .detail-back:active { background: #1e293b; }
html.dark .detail-header-title { color: #e2e8f0; }
html.dark .detail-loading { background: rgba(11, 18, 32, 0.9); }
html.dark .hero-card {
  background: linear-gradient(145deg, #16202e, #121b29);
  border-color: #1e293b;
}
html.dark .hero-photo { border-color: #293548; background: #1e293b; }
html.dark .hero-photo-fallback {
  background: linear-gradient(135deg, #334155, #1e293b);
  border-color: #293548;
}
html.dark .hero-name { color: #e2e8f0; }
html.dark .hero-nat { color: #93c5fd; }
html.dark .hero-facts { border-top-color: #293548; }
html.dark .hero-fact b { color: #cbd5e1; }
html.dark .acc-section { border-color: #1e293b; }
html.dark .acc-head .acc-title { color: #e2e8f0; }
html.dark .acc-count { background: var(--primary-light); color: #93c5fd; }
html.dark .acc-drag { color: #334155; }
html.dark .acc-drag:hover { color: #64748b; background: #1e293b; }
html.dark .item-card { background: #101827; border-color: #1e293b; }
html.dark .item-headline { color: #e2e8f0; }
html.dark .item-headline .item-seq { background: #293548; color: var(--text-sub); }
html.dark .item-kv { border-top-color: #293548; }
html.dark .item-kv .kv b { color: #cbd5e1; }
html.dark .item-photo { background: #1e293b; }
html.dark .profile-note { background: #060b14; color: #cbd5e1; }

/* 라이트박스 */
html.dark .lightbox { background: rgba(2, 6, 14, 0.96); }

/* 안내/앱정보/검색이력 모달 */
html.dark .guide-overlay { background: rgba(2, 6, 14, 0.6); }
html.dark .guide-modal { background: #151f2e; border-color: #1e293b; }
html.dark .guide-header { border-bottom-color: #1e293b; }
html.dark .guide-title { color: #7fb2ff; }
html.dark .guide-title small { color: #64748b; }
html.dark .guide-close-x { background: #1e293b; color: #94a3b8; }
html.dark .guide-close-x:hover { background: #293548; }
html.dark .guide-intro,
html.dark .guide-step-text { color: #94a3b8; }
html.dark .guide-step-text strong { color: #e2e8f0; }
html.dark .guide-footer { border-top-color: #1e293b; }
html.dark .guide-link { border-color: #293548; background: #0f1829; color: #94a3b8; }
html.dark .guide-link:hover {
  color: #93c5fd;
  background: var(--primary-light);
  border-color: rgba(59, 130, 246, 0.35);
}
html.dark .history-grid-head { color: #64748b; }
html.dark .history-item { border-color: #1e293b; background: #101827; }
html.dark .history-item:hover {
  background: var(--primary-light);
  border-color: rgba(59, 130, 246, 0.35);
}
html.dark .history-name { color: #e2e8f0; }
html.dark .history-del { background: #293548; color: #94a3b8; }
html.dark .history-del:hover { background: #334155; }
html.dark .history-clear { border-color: #293548; background: #151f2e; color: var(--text-sub); }
html.dark .history-clear:hover { color: #f87171; border-color: rgba(239, 68, 68, 0.4); background: rgba(239, 68, 68, 0.08); }
html.dark .about-version { color: #64748b; }
html.dark .about-info-grid { border-color: #1e293b; }
html.dark .about-info-item { background: #101827; }
html.dark .about-info-item + .about-info-item { border-top-color: #1e293b; }
html.dark .about-info-item .info-label { color: #64748b; }
html.dark .about-info-item .info-value { color: #cbd5e1; }
html.dark .about-info-item .info-value a { color: #93c5fd; }
html.dark .about-description { color: #94a3b8; }
html.dark .about-copyright { color: #334155; }

/* 토스트 */
html.dark .toast {
  background: rgba(226, 232, 240, 0.96);
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
