@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/pretendard/Pretendard-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/pretendard/Pretendard-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('/assets/fonts/pretendard/Pretendard-ExtraBold.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}
:root {
  --purple: #5b35ff;
  --red: #ff4048;
  --green: #2fb35a;
  --ink: #111114;
  --dim: #8e8e96;
  --line: #e9e9ed;
  --panel: #f4f5f7;
  --safe-b: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: #fff; color: var(--ink); }
body {
  padding-bottom: calc(84px + var(--safe-b));
  font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
button { border: 0; background: none; padding: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.desktop-left-panel,
.desktop-right-panel { display: none; }
.top {
  position: sticky;
  top: 0;
  z-index: 30;
  max-width: 430px;
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: max(8px, env(safe-area-inset-top)) 10px 8px 4px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.top h1 {
  overflow: hidden;
  margin: 0;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top__back,
.top__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.top svg { width: 26px; height: 26px; stroke-width: 2; }
.screen {
  max-width: 430px;
  margin: 0 auto;
  padding: 12px 16px 28px;
}
.empty {
  padding: 90px 20px;
  color: var(--dim);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}
.loading {
  position: relative;
  overflow: hidden;
  padding: 0 0 24px;
}
.loading__bar {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 4px;
  margin: -12px -16px 12px;
  overflow: hidden;
  background: rgba(91,53,255,.09);
}
.loading__bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b35ff, #ff4048);
  animation: loadingBar 1.05s ease-in-out infinite;
}
.loading__hero,
.loading__summary,
.loading__rows span,
.loading__line {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #eef0f4;
}
.loading__hero { aspect-ratio: 1 / 1; border: 1px solid var(--line); }
.loading__line {
  height: 13px;
  margin-top: 10px;
  border-radius: 999px;
}
.loading__line--title {
  width: 72%;
  height: 23px;
  margin-top: 16px;
}
.loading__line:not(.loading__line--title) { width: 46%; }
.loading__summary {
  height: 118px;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.loading__summary span,
.loading__summary b,
.loading__summary i {
  position: absolute;
  left: 16px;
  display: block;
  border-radius: 999px;
  background: #eef0f4;
}
.loading__summary span { top: 18px; width: 72px; height: 12px; }
.loading__summary b { top: 42px; width: 178px; height: 32px; }
.loading__summary i { top: 86px; width: 226px; height: 12px; }
.loading__rows {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.loading__rows span {
  height: 70px;
  border: 1px solid var(--line);
  background: #fff;
}
.loading__hero::after,
.loading__summary::after,
.loading__rows span::after,
.loading__line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: loadingShimmer 1.25s linear infinite;
}
@keyframes loadingBar {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(240%); }
}
@keyframes loadingShimmer {
  100% { transform: translateX(100%); }
}
.hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.hero__image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ph, var(--panel));
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image span { color: rgba(17,17,20,.34); font-size: 28px; font-weight: 900; }
.hero__body { padding: 14px 16px 16px; }
.hero__body h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}
.hero__body p {
  margin: 7px 0 0;
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
}
.summary {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.summary span {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
}
.summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
}
.summary p {
  margin: 8px 0 0;
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
}
.summary small {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}
.tabs {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.tabs button {
  border-radius: 10px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 900;
}
.tabs button.on { background: var(--purple); color: #fff; }
.store-section { margin-top: 16px; }
.store-section__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.store-section__head b {
  flex: 1;
  color: var(--dim);
  font-size: 14px;
  font-weight: 900;
}
.store-section__head button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}
.stores {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.store {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-align: left;
}
.store + .store { border-top: 1px solid var(--line); }
.store span { flex: 1; min-width: 0; }
.store b {
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store small {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
}
.store em {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.store strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}
.store.best strong { color: var(--green); }
.empty-card,
.notice {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}
.notice { margin-top: 18px; color: var(--ink); }
.notice b { display: block; font-size: 16px; font-weight: 900; }
.notice p { margin: 5px 0 12px; color: var(--dim); }
.notice button {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.review-section { margin-top: 16px; }
.review-empty {
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}
.review-empty b {
  display: block;
  font-size: 18px;
  font-weight: 900;
}
.review-empty p {
  margin: 8px 0 16px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}
.review-empty button {
  width: 100%;
  height: 46px;
  border-radius: 15px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.review-guide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.review-guide span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
}
.reviews {
  display: grid;
  gap: 10px;
}
.review-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__top b {
  flex: 1;
  font-size: 15px;
  font-weight: 900;
}
.review-card__top span {
  color: #ffb020;
  font-size: 13px;
  letter-spacing: 0;
}
.review-card p {
  margin: 9px 0 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  white-space: pre-wrap;
}
.review-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.review-card__chips span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--panel);
  color: #5f636b;
  font-size: 11px;
  font-weight: 900;
}
.review-card small {
  display: block;
  margin-top: 10px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
}
.review-add {
  width: 100%;
  height: 46px;
  margin-top: 10px;
  border-radius: 15px;
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.review-sheet {
  position: fixed;
  inset: 0;
  z-index: 78;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.review-sheet[hidden] { display: none; }
.review-sheet__dim {
  position: absolute;
  inset: 0;
  background: rgba(17,17,20,.42);
}
.review-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: min(88dvh, 720px);
  overflow: auto;
  padding: 10px 16px max(18px, var(--safe-b));
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 -14px 36px rgba(17,17,20,.18);
}
.review-sheet__handle {
  width: 38px;
  height: 4px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: #d8dee7;
}
.review-sheet__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-sheet__head h2 {
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}
.review-sheet__head button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--panel);
}
.review-sheet__head svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
#review-content {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: var(--panel);
  color: var(--ink);
  font: 800 14px/1.45 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
}
#review-content::placeholder { color: var(--dim); }
.review-ratings {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.review-ratings label {
  min-height: 46px;
  display: grid;
  grid-template-columns: 58px 1fr 22px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.review-ratings span,
.review-ratings b {
  font-size: 13px;
  font-weight: 900;
}
.review-ratings b { color: var(--purple); text-align: right; }
.review-ratings input { width: 100%; accent-color: var(--purple); }
.review-submit {
  width: 100%;
  height: 50px;
  margin-top: 12px;
  border-radius: 16px;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.map-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.map-sheet[hidden] { display: none; }
.map-sheet__dim {
  position: absolute;
  inset: 0;
  background: rgba(17,17,20,.42);
}
.map-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: min(82dvh, 720px);
  overflow: auto;
  padding: 10px 16px max(18px, var(--safe-b));
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 -14px 36px rgba(17,17,20,.18);
}
.map-head > span {
  width: 38px;
  height: 4px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: #d8dee7;
}
.map-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-head h2 {
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}
.map-head button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--panel);
}
.map-head button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
.map-head p {
  margin: 2px 0 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
}
.map-canvas {
  position: relative;
  height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(30deg, rgba(91,53,255,.12), transparent 38%),
    linear-gradient(140deg, rgba(47,179,90,.12), transparent 44%),
    #eef1f5;
}
.map-grid {
  position: absolute;
  inset: -30px;
  background:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-12deg);
}
.map-me,
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.map-me {
  width: 38px;
  height: 38px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #1677ff;
  color: #fff;
  box-shadow: 0 8px 18px rgba(22,119,255,.25);
  font-size: 12px;
  font-weight: 900;
}
.map-pin {
  width: 112px;
  gap: 3px;
}
.map-pin b {
  max-width: 112px;
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 5px 8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 7px 16px rgba(17,17,20,.18);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.map-pin.best b { background: var(--green); }
.map-pin small {
  max-width: 96px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(17,17,20,.10);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.map-list {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.map-store {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  text-align: left;
}
.map-store + .map-store { border-top: 1px solid var(--line); }
.map-store span { flex: 1; min-width: 0; }
.map-store b {
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.map-store small {
  display: block;
  margin-top: 3px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}
.map-store strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}
.map-store.best strong { color: var(--green); }
.bottom-actions {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 35;
  transform: translateX(-50%);
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: .72fr 1fr 1fr;
  gap: 8px;
  padding: 10px 16px max(10px, var(--safe-b));
  border-top: 1px solid rgba(233,233,237,.85);
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
  backdrop-filter: blur(12px) saturate(145%);
}
.bottom-actions[hidden] { display: none; }
.bottom-actions button {
  height: 48px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 900;
}
.bottom-actions__ghost { border: 1px solid var(--line); background: #fff; color: var(--purple); }
.bottom-actions__dark { background: var(--ink); color: #fff; }
.bottom-actions__primary { background: var(--purple); color: #fff; }
.float-actions {
  position: fixed;
  right: 14px;
  bottom: calc(90px + var(--safe-b));
  z-index: 36;
  display: grid;
  gap: 8px;
}
.float-actions[hidden] { display: none; }
.float-actions__btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(17,17,20,.14);
}
.float-actions__btn svg { width: 23px; height: 23px; stroke-width: 2.2; }
.float-actions__app {
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(84px + var(--safe-b));
  z-index: 60;
  transform: translate(-50%, 12px);
  max-width: min(90vw, 398px);
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(17,17,17,.92);
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  font-size: 13px;
  font-weight: 800;
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 1100px) {
  .desktop-right-panel {
    position: fixed;
    top: 34px;
    right: max(24px, calc(50% - 463px));
    z-index: 30;
    display: block;
    width: 224px;
    min-height: 0;
    overflow: visible;
  }
  .desktop-right-panel a { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 16px 14px 14px; color: #18284a; text-align: center; text-decoration: none; }
  .desktop-right-panel__owner { position: relative; margin: 0; padding: 0; overflow: hidden; border: 2px solid #6b3f1f; border-radius: 15px; background: #f7ead6; box-shadow: 0 4px 0 #6b3f1f; }
  .desktop-right-panel__owner img { display: block; width: 100%; height: 104px; object-fit: cover; object-position: 50% 50%; }
  .desktop-right-panel__owner b { position: absolute; left: 10px; right: 10px; bottom: 9px; padding: 7px 8px; border-radius: 11px; background: rgba(107,63,31,.92); color: #fffaf1; font-size: 13px; line-height: 1.15; font-weight: 900; }
  .desktop-right-panel__owner strong { position: absolute; top: 9px; left: -7px; z-index: 2; display: block; padding: 8px 13px 8px 15px; border: 2px solid #6b3f1f; border-left: 0; border-radius: 0 12px 12px 0; background: #e84b55; color: #fffaf1; font-size: 15px; line-height: 1; font-weight: 900; box-shadow: 0 4px 0 #6b3f1f, 0 10px 18px rgba(232,75,85,.22); }
  .desktop-left-panel {
    position: fixed;
    top: 34px;
    bottom: 34px;
    left: max(24px, calc(50% - 463px));
    z-index: 30;
    display: flex;
    flex-direction: column;
    width: 224px;
    font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  }
  .desktop-left-panel__brand { display: block; width: 100%; height: 68px; margin: 0 0 20px; overflow: hidden; border-radius: 14px; text-decoration: none; }
  .desktop-left-panel__brand img { display: block; width: 100%; height: 68px; object-fit: fill; }
  .desktop-left-panel__nav { display: grid; gap: 4px; }
  .desktop-left-panel__nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #e6e8f0;
    border-radius: 15px;
    background: #fff;
    color: #18284a;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 3px 0 rgba(24,40,74,.08);
  }
  .desktop-left-panel__nav a:hover { transform: translateY(-1px); border-color: #b9c9ee; }
  .desktop-left-panel__nav a.is-active { border-color: #ffc928; background: #fff8d9; color: #18284a; box-shadow: 0 3px 0 #ffc928; }
  .desktop-left-panel__nav a:nth-child(2) svg { color: #f04b52; }
  .desktop-left-panel__nav a:nth-child(3) svg { color: #7b50e8; }
  .desktop-left-panel__nav a:nth-child(4) svg { color: #16a66b; }
  .desktop-left-panel__nav a:nth-child(5) svg { color: #2d82e8; }
  .desktop-left-panel__nav svg { width: 22px; height: 22px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .desktop-left-panel__app-download { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; margin: auto 0 12px; padding: 16px 14px 14px; border: 2px solid #6b3f1f; border-radius: 18px; background: #fffaf1; color: #18284a; text-align: center; text-decoration: none; box-shadow: 0 4px 0 #6b3f1f, 0 10px 18px rgba(107,63,31,.12); }
  .desktop-left-panel__app-download img { flex: none; width: 118px; height: 118px; border-radius: 26px; object-fit: cover; box-shadow: 0 8px 22px rgba(107,63,31,.16); }
  .desktop-left-panel__app-download b, .desktop-left-panel__app-download small, .desktop-left-panel__app-download span { display: block; }
  .desktop-left-panel__app-download b { font-size: 18px; line-height: 1.15; font-weight: 900; }
  .desktop-left-panel__app-download small { color: #6f727a; font-size: 12px; line-height: 1.35; font-weight: 750; word-break: keep-all; }
  .desktop-left-panel__app-download span { width: 100%; margin-top: 2px; padding: 11px 10px; border: 2px solid #6b3f1f; border-radius: 14px; background: #67b84d; color: #fffaf1; font-size: 13px; font-weight: 900; box-shadow: 0 4px 0 #6b3f1f; }
  .desktop-left-panel__invite {
    display: block;
    margin: 0;
    overflow: hidden;
    border: 2px solid #18284a;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
    color: #18284a;
    text-decoration: none;
    box-shadow: 0 6px 0 #18284a, 0 18px 34px rgba(24,40,74,.18);
    transition: transform .16s ease, box-shadow .16s ease;
  }
  .desktop-left-panel__invite:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #18284a, 0 24px 42px rgba(24,40,74,.22); }
  .desktop-left-panel__invite img { display: block; width: 100%; height: 108px; object-fit: cover; object-position: 50% 50%; background: #eef6ff; }
  .desktop-left-panel__invite-kicker { display: block; margin: 10px 12px 0; color: #e84b55; font-size: 11px; font-weight: 900; }
  .desktop-left-panel__invite strong { display: block; margin: 2px 12px 0; font-size: 16px; line-height: 1.18; font-weight: 900; }
  .desktop-left-panel__invite strong b { color: #e84b55; }
  .desktop-left-panel__invite small { display: block; margin: 5px 12px 0; color: #77747a; font-size: 11px; font-weight: 700; }
  .desktop-left-panel__invite-action { display: block; margin: 10px 12px 13px; padding: 11px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: #18284a; color: #fff; font-size: 13px; font-weight: 900; text-align: center; text-decoration: none; box-shadow: 0 4px 0 #0f1d38, 0 10px 18px rgba(24,40,74,.2); }
  .desktop-left-panel__invite-action i { color: #e84b55; font-size: 18px; font-style: normal; vertical-align: -1px; }
}
.jjr-drawer { position: fixed; inset: 0; z-index: 240; color: var(--ink); font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif; }
html.jjr-lock, body.jjr-lock { overflow: hidden; }
.jjr-drawer[hidden] { display: none; }
.jjr-drawer__dim { position: absolute; inset: 0; background: rgba(17,17,20,.38); backdrop-filter: blur(2px); touch-action: none; }
/* 콘텐츠 칼럼은 min(100%, 430px) 로 가운데 정렬돼 있다. 패널을 뷰포트
   끝에 붙이면 넓은 화면에서 본문과 뚝 떨어져 뜬다. 칼럼의 왼쪽 모서리에
   맞춰 왼쪽에서 연다(좁은 화면에서는 값이 0 이라 화면을 꽉 채운다). */
.jjr-drawer__box { position: absolute; top: 0; left: max(0px, calc(50% - 215px)); bottom: 0; width: min(92vw, 390px); display: flex; flex-direction: column; overflow: hidden; padding-top: max(10px, env(safe-area-inset-top, 0px)); border-right: 1px solid var(--line); background: #fff; box-shadow: 18px 0 44px rgba(17,17,20,.18); }
.jjr-drawer__head { min-height: 58px; display: flex; align-items: center; gap: 10px; padding: 0 12px 0 18px; border-bottom: 1px solid var(--line); }
.jjr-drawer__head b { flex: 1; font-size: 19px; font-weight: 900; }
.jjr-drawer__x { width: 44px; height: 44px; border-radius: 14px; background: var(--panel); color: #6f727a; font-size: 25px; line-height: 1; }
.jjr-drawer__scroll { min-height: 0; flex: 1; overflow-y: auto; padding-bottom: 20px; overscroll-behavior: contain; touch-action: pan-y; }
.jjr-drawer a { color: inherit; text-decoration: none; }
.jjr-drawer-member { margin: 14px 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.jjr-drawer-member__card { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 12px; min-height: 74px; padding: 14px; }
.jjr-drawer-member__card::before { content: ""; width: 46px; height: 46px; border-radius: 16px; background: #f5f5f7 url('/home/logo.png') center / 32px 32px no-repeat; }
.jjr-drawer-member__card b { display: block; font-size: 16px; line-height: 1.2; font-weight: 900; }
.jjr-drawer-member__card em { display: block; margin-top: 3px; color: var(--dim); font-size: 12px; font-style: normal; font-weight: 800; }
.jjr-drawer-member__card strong { color: var(--purple); font-size: 18px; font-weight: 900; }
.jjr-drawer-login { min-width: 72px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; background: var(--ink); color: #fff !important; font-size: 13px; font-weight: 900; }
.jjr-drawer-shortcuts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.jjr-drawer-shortcuts a { min-height: 62px; display: grid; place-items: center; gap: 2px; padding: 10px 4px; text-align: center; }
.jjr-drawer-shortcuts a + a { border-left: 1px solid var(--line); }
.jjr-drawer-shortcuts b { font-size: 13px; font-weight: 900; }
.jjr-drawer-shortcuts small { color: var(--dim); font-size: 11px; font-weight: 800; }
.jjr-drawer__direct { min-height: 54px; display: flex; align-items: center; margin: 0 16px 10px; padding: 0 16px; border-radius: 14px; background: var(--panel); font-size: 15px; font-weight: 900; }
.jjr-drawer__direct::after, .jjr-drawer__wiki a::after { content: ""; width: 8px; height: 8px; margin-left: auto; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); opacity: .45; }
.jjr-drawer__group[hidden] { display: none; }
.jjr-drawer__wiki { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 12px 16px; }
.jjr-drawer__wiki-pair { display: contents; }
.jjr-drawer__wiki a { min-height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 900; }
.jjr-drawer__wiki a.jjr-drawer__map { grid-column: 1 / -1; min-height: 54px; justify-content: center; border-color: transparent; background: var(--ink); color: #fff; font-size: 15px; }
.jjr-drawer__wiki a.jjr-drawer__map::after { display: none; }
.jjr-drawer__download { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 8px 16px max(18px, env(safe-area-inset-bottom, 0px)); padding: 18px 14px; border-top: 1px solid var(--line); text-align: center; }
.jjr-drawer__download-copy b { display: block; font-size: 22px; line-height: 1.15; font-weight: 900; }
.jjr-drawer__download-copy small { display: block; margin-top: 6px; color: var(--dim); font-size: 12px; line-height: 1.35; font-weight: 800; }
.jjr-drawer__download-qr { width: 156px; height: 156px; padding: 7px; border: 1px solid var(--line); border-radius: 10px; background: #fff; image-rendering: pixelated; }
@media (min-width: 760px) {
  body { background: #f4f5f7; }
  .top,
  .screen,
  .bottom-actions { box-shadow: 0 0 0 1px rgba(0,0,0,.04); }
  .float-actions { right: calc((100vw - 430px) / 2 + 14px); }
  .jjr-drawer__box { right: calc((100vw - 430px) / 2); }
}
