@charset "UTF-8";

:root {
  --lp-bg: #ffffff;
  --lp-surface: #f4f7fb;
  --lp-surface-2: #e8eef6;
  --lp-navy: #ffffff;
  --lp-blue: #0063AD;
  --lp-blue-dark: #004f8a;
  --lp-blue-soft: rgba(0, 99, 173, 0.1);
  --lp-blue-border: rgba(0, 99, 173, 0.32);
  --lp-cyan: #0063AD;
  --lp-text: #111111;
  --lp-muted: #5f6b76;
  --lp-line: rgba(0, 0, 0, 0.1);
  --lp-card: #ffffff;
  --lp-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --lp-shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.08);
  --lp-smooth: #2fd67b;
  --lp-normal: #f0c53a;
  --lp-busy: #ff8a3d;
  --lp-severe: #ff4d5e;
  --lp-radius: 18px;
  --lp-content: 480px;
  --lp-pad: max(16px, env(safe-area-inset-left));
  --lp-pad-r: max(16px, env(safe-area-inset-right));
  --lp-fs-body: 15px;
  --lp-font: "Pretendard";
  --lp-display: "Pretendard";
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  font-family: var(--lp-font);
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--lp-font);
  font-size: var(--lp-fs-body);
  line-height: 1.5;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

a { color: inherit; }
button {
  font: inherit;
  font-family: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
ul, dl, p, h1, h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; }

.lp-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 85% -8%, rgba(0, 99, 173, 0.08), transparent 55%),
    radial-gradient(80% 50% at 0% 30%, rgba(0, 99, 173, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.lp-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.35;
  pointer-events: none;
}

/* Top */
.lp-top {
  position: sticky;
  top: 0%;
  z-index: 30;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  padding: 12px 16px;
  color: #fff;
  background: rgba(0, 99, 173, 0.88);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  /* border: 1px solid rgba(255, 255, 255, 0.28); */
  /* box-shadow:
    0 10px 32px rgba(0, 99, 173, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35); */
}

.lp-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--lp-content);
  margin: 0 auto;
  width: 100%;
}

.lp-top__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.lp-top__logo {
  display: block;
  height: 80px;
  width: auto;
  max-width: min(280px, 85vw);
  object-fit: contain;
}

.lp-top__eyebrow {
  display: none;
}

.lp-top__title {
  display: none;
}

.lp-top__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--lp-content);
  width: 100%;
  display: none;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.lp-badge--live {
  color: var(--lp-blue);
}

.lp-badge--live.is-paused {
  color: var(--lp-muted);
  background: var(--lp-surface);
  border-color: var(--lp-line);
}

.lp-badge--warn {
  color: #8a6d00;
  background: rgba(240, 197, 58, 0.2);
  border: 1px solid rgba(240, 197, 58, 0.45);
}

.lp-rel {
  margin-top: 8px;
  font-size: 12px;
  color: var(--lp-muted);
  line-height: 1.45;
}

.lp-spaces {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--lp-muted);
}

.lp-spaces strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
  font-variant-numeric: tabular-nums;
}

.lp-spaces--sm {
  margin-bottom: 8px;
  font-size: 13px;
}

.lp-spaces--sm strong {
  font-size: 18px;
}

.lp-source {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  border: 1px solid var(--lp-blue-border);
  padding: 2px 8px;
  border-radius: 4px;
}

[data-source='disabled'] .lp-source,
[data-source='missing_pkltId'] .lp-source,
[data-source='missing_api_key'] .lp-source {
  color: var(--lp-muted);
  background: var(--lp-surface);
  border-color: var(--lp-line);
}

[data-source='pis_error'] .lp-source {
  color: #c62828;
  background: rgba(220, 80, 80, 0.1);
  border-color: rgba(220, 100, 100, 0.35);
}

.lp-gauge__unit [data-avg] {
  color: var(--lp-blue);
  font-weight: 600;
}


.lp-nav {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: min(420px, calc(100% - 24px));
  margin: 0;
  padding: 8px;
  border-radius: 22px;
  transform: translateX(-50%);
  background: rgba(0, 99, 173, 0.92);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.28);
  /* box-shadow:
    0 10px 32px rgba(0, 99, 173, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3); */
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.lp-nav__item {
  position: relative;
  flex: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 6px 4px;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.lp-nav__icon {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.lp-nav__text {
  line-height: 1.1;
}

.lp-nav__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1;
  min-width: 18px;
  max-width: calc(100% - 4px);
  padding: 2px 5px;
  border-radius: 999px;
  background: #fff;
  color: var(--lp-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.lp-nav__item.is-live .lp-nav__badge {
  background: #ff4d5e;
  color: #fff;
}

.lp-nav__item.is-active {
  background: #fff;
  color: var(--lp-blue);
  border-color: #fff;
}

.lp-nav__item.is-active .lp-nav__badge {
  background: var(--lp-blue);
  color: #fff;
}

.lp-nav__item.is-active.is-live .lp-nav__badge {
  background: #ff4d5e;
  color: #fff;
}

.lp-glance-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
  border-radius: 18px;
  /* background: #fff;
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow); */
  overflow: hidden;
}

.lp-glance-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lp-glance-item + .lp-glance-item {
  border-top: 1px solid var(--lp-line);
}

.lp-glance-ico {
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.lp-glance-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-glance-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-muted);
  background: var(--lp-surface);
}

.lp-glance-item[data-level="smooth"] .lp-glance-status {
  color: #1b7a3f;
  background: rgba(47, 214, 123, 0.16);
}
.lp-glance-item[data-level="normal"] .lp-glance-status {
  color: #8a6d00;
  background: rgba(240, 197, 58, 0.2);
}
.lp-glance-item[data-level="busy"] .lp-glance-status {
  color: #c45a00;
  background: rgba(255, 138, 61, 0.18);
}
.lp-glance-item[data-level="severe"] .lp-glance-status {
  color: #c62828;
  background: rgba(255, 77, 94, 0.14);
}

.lp-glance-icon,
.lp-glance-dot,
.lp-glance-text { display: none; }

#lp-game-section,
#lp-map-section,
#lp-congestion-section,
#lp-glance-section,
#lp-chat-section {
  scroll-margin-top: 150px;
}

/* Main */
.lp-main {
  max-width: var(--lp-content);
  margin: 0 auto;
  padding: 20px var(--lp-pad-r) 24px var(--lp-pad);
}

.lp-section { margin-bottom: 28px; }

.lp-kicker {
  font-family: var(--lp-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--lp-blue);
  display: none;
}

.lp-section-title {
  margin-top: 6px;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.lp-section-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.55;
  display: none;
}

.lp-section-head { margin-bottom: 14px; }

/* Level badge */
.lp-level {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--lp-surface);
  border: 1px solid currentColor;
}

.lp-level--sm {
  min-height: 28px;
  padding: 0 10px;
  font-size: 13px;
}

.lp-level__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: lp-pulse 1.8s ease-out infinite;
}

[data-level="smooth"] .lp-level { color: var(--lp-smooth); }
[data-level="normal"] .lp-level { color: var(--lp-normal); }
[data-level="busy"] .lp-level { color: var(--lp-busy); }
[data-level="severe"] .lp-level { color: var(--lp-severe); }

/* Gauge */
.lp-gauge { margin-top: 16px; }

.lp-gauge__track {
  height: 10px;
  border-radius: 999px;
  background: var(--lp-surface-2);
  overflow: hidden;
}

.lp-gauge__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lp-smooth), var(--lp-normal), var(--lp-busy), var(--lp-severe));
  background-size: 100% 100%;
  transition: width 0.55s ease;
}

.lp-gauge__labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6px;
  font-size: 14px;
  color: var(--lp-muted);
  text-align: center;
}

.lp-gauge__score {
  margin-top: 10px;
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-gauge__score strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.lp-gauge__unit { font-size: 16px; }

.lp-gauge--compact .lp-gauge__track { height: 7px; }
.lp-gauge--compact .lp-gauge__score { margin-top: 8px; font-size: 12px; }
.lp-gauge--compact .lp-gauge__score strong { font-size: 18px; }

.lp-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.lp-meta-row dt {
  font-size: 11px;
  color: var(--lp-muted);
}

.lp-meta-row dd {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lp-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
  text-align: center;
}

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

.lp-btn--ghost {
  border: 1px solid var(--lp-line);
  background: var(--lp-surface);
}

.lp-btn--primary {
  background: var(--lp-blue);
  color: #fff;
}

.lp-btn--accent {
  background: #fee500;
  color: #191919;
}

/* Fan tip (1-tap report) */
.lp-tip {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
}

.lp-tip--sm {
  margin-top: 12px;
  padding: 12px;
}

.lp-tip__label {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lp-cyan);
  text-transform: uppercase;
}

.lp-tip__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-tip__btn {
  min-height: 48px;
  padding: 10px 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.lp-tip__btn:active { transform: scale(0.97); }

.lp-tip__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.lp-tip__btn--full {
  color: #c62828;
  background: rgba(255, 77, 94, 0.12);
  border-color: rgba(255, 77, 94, 0.35);
}

.lp-tip__btn--full.is-picked,
.lp-tip__btn--full:focus-visible {
  background: rgba(255, 77, 94, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 77, 94, 0.45);
}

.lp-tip__btn--ok {
  color: #1b7a3f;
  background: rgba(47, 214, 123, 0.15);
  border-color: rgba(47, 214, 123, 0.4);
}

.lp-tip__btn--ok.is-picked,
.lp-tip__btn--ok:focus-visible {
  background: rgba(47, 214, 123, 0.28);
  box-shadow: inset 0 0 0 1px rgba(47, 214, 123, 0.5);
}

.lp-tip__live {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--lp-muted);
}

.lp-tip__live[data-consensus='full'] {
  color: #c62828;
}

.lp-tip__live[data-consensus='available'] {
  color: #1b7a3f;
}

.lp-tip.is-sending {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .lp-tip__btn { transition: none; }
}

/* Transit CTA */
.lp-transit {
  margin: 8px 0 20px;
  animation: lp-rise 0.45s ease both;
}

.lp-transit[hidden] { display: none !important; }

.lp-transit__card {
  padding: 20px 16px;
  border-radius: var(--lp-radius);
  background: linear-gradient(160deg, rgba(255, 77, 94, 0.1), #fff);
  border: 1px solid rgba(255, 77, 94, 0.35);
}

.lp-transit__eyebrow {
  font-family: var(--lp-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #c62828;
}

.lp-transit__title {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.lp-transit__desc {
  margin-top: 8px;
  font-size: 16px;
  color: var(--lp-muted);
  line-height: 1.55;
}

.lp-transit__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

@media (min-width: 380px) {
  .lp-transit__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.lp-foot {
  max-width: var(--lp-content);
  margin: 0 auto;
  padding: 4px var(--lp-pad-r) calc(28px + env(safe-area-inset-bottom)) var(--lp-pad);
}

.lp-foot__notice {
  font-size: 14px;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-foot__notice strong {
  color: var(--lp-text);
  font-weight: 600;
}

.lp-foot__credit {
  margin-top: 14px;
  font-size: 12px;
  color: var(--lp-muted);
}

.lp-foot__credit a {
  color: var(--lp-cyan);
  text-decoration: none;
  font-weight: 600;
}

.lp-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 16px;
  font-size: 11px;
}

.lp-foot__links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 500;
}

.lp-foot__links a:hover {
  color: var(--lp-cyan);
}

.lp-foot__notice a {
  color: var(--lp-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-chat__hint a {
  color: var(--lp-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legal pages */
.lp-legal-body {
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.lp-legal-top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: #fff;
  border-bottom: 1px solid var(--lp-line);
}

.lp-legal-top__inner {
  max-width: var(--lp-content);
  margin: 0 auto;
  padding: 14px var(--lp-pad-r) 14px var(--lp-pad);
}

.lp-legal-top__home {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--lp-cyan);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.lp-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 14px;
}

.lp-legal-nav a {
  color: var(--lp-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--lp-line);
}

.lp-legal-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(0, 99, 173, 0.45);
  border-color: rgba(0, 99, 173, 0.7);
}

.lp-legal-main {
  max-width: var(--lp-content);
  margin: 0 auto;
  padding: 20px var(--lp-pad-r) 0 var(--lp-pad);
}

.lp-legal-doc__title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 8px;
}

.lp-legal-doc__meta {
  margin: 0 0 24px;
  font-size: 12px;
  color: var(--lp-muted);
}

.lp-legal-section {
  margin-bottom: 28px;
}

.lp-legal-section h2 {
  font-size: 16px;
  margin: 0 0 10px;
}

.lp-legal-section p,
.lp-legal-section li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--lp-text);
}

.lp-legal-section ol,
.lp-legal-section ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.lp-legal-section a {
  color: var(--lp-cyan);
}

.lp-legal-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px !important;
  color: var(--lp-muted) !important;
}

.lp-legal-quote {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--lp-cyan);
  background: rgba(0, 99, 173, 0.12);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.7;
}

.lp-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}

.lp-legal-table th,
.lp-legal-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}

.lp-legal-table th {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

.lp-legal-foot {
  margin-top: 36px;
}

.lp-map-section {
  margin-left: calc(-1 * var(--lp-pad));
  margin-right: calc(-1 * var(--lp-pad-r));
}

.lp-map-section .lp-section-head {
  padding: 0 var(--lp-pad-r) 0 var(--lp-pad);
}

.lp-map-shell {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  margin: 0 20px;
  width: calc(100% - 40px);
  height: 35vh;
}

.lp-map-stage {
  position: relative;
  height: 100%;
}

.lp-lot-block {
  margin-top: 16px;
  padding: 0 var(--lp-pad-r) 0 var(--lp-pad);
}

.lp-lot-card {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-lot-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-surface);
}

.lp-lot-block__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-lot-card__hint {
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  flex: 0 0 auto;
}

.lp-lot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-height: 11.5rem; /* 약 3행 */
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.lp-lot-item {
  flex: 0 0 auto;
  border-bottom: 1px solid var(--lp-line);
}

.lp-lot-item:last-child {
  border-bottom: 0;
}

.lp-lot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lp-lot-row:hover {
  background: var(--lp-surface);
}

.lp-lot-row:focus-visible {
  outline: 2px solid var(--lp-blue);
  outline-offset: -2px;
}

.lp-lot-row.is-primary .lp-lot-row__name {
  font-weight: 700;
}

.lp-lot-row.is-active {
  background: var(--lp-blue-soft);
}

.lp-lot-row__main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}

.lp-lot-row__title {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.lp-lot-row__name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.lp-lot-row__tags {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
}

.lp-lot-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.lp-lot-tag--official {
  background: var(--lp-blue-soft);
  border-color: var(--lp-blue-border);
  color: var(--lp-blue);
}

.lp-lot-tag--paid {
  background: rgba(255, 77, 94, 0.08);
  border-color: rgba(255, 77, 94, 0.28);
  color: #d12b3c;
}

.lp-lot-tag--free {
  background: rgba(47, 214, 123, 0.1);
  border-color: rgba(47, 214, 123, 0.32);
  color: #1a9a55;
}

.lp-lot-tag--mixed {
  background: rgba(240, 197, 58, 0.14);
  border-color: rgba(200, 150, 20, 0.35);
  color: #9a7400;
}

.lp-lot-row__meta {
  font-size: 14px;
  color: var(--lp-muted);
  font-variant-numeric: tabular-nums;
}

.lp-lot-row__meta strong {
  color: var(--lp-text);
  font-weight: 700;
}

@media (min-width: 480px) {
  .lp-map-section {
    margin-left: 0;
    margin-right: 0;
  }

  .lp-map-section .lp-section-head {
    padding: 0;
  }

  .lp-map-shell {
    border-radius: 18px;
    border: 1px solid var(--lp-line);
  }

  .lp-lot-block {
    padding: 0;
  }
}

.lp-map {
  width: 100%;
  height: min(58vh, 420px);
  min-height: 280px;
  background: var(--lp-surface-2);
  touch-action: pan-y;
  z-index: 1;
}

.lp-map-shell.is-map-active .lp-map {
  touch-action: none;
}

.lp-map-blocker {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
  border: 0;
  border-radius: inherit;
  background: rgba(17, 24, 32, 0.42);
  color: #fff;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

.lp-map-shell.is-map-active .lp-map-blocker {
  display: none;
}

.lp-map-blocker__text {
  display: block;
  max-width: 16em;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.lp-map-locate {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--lp-blue-border);
  background: #fff;
  color: var(--lp-blue);
  box-shadow: var(--lp-shadow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-map-locate:active { transform: scale(0.97); }

.lp-map-locate.is-busy {
  opacity: 0.75;
  cursor: wait;
}

.lp-map-locate__icon {
  display: block;
  flex-shrink: 0;
}

.lp-map-locate.is-busy .lp-map-locate__icon {
  animation: lp-spin 0.8s linear infinite;
}

/* Chat */
.lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-chat {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: #fff;
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-chat__me {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-surface);
}

.lp-chat__me-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-chat__nick {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-blue);
}

.lp-chat__reroll {
  margin-left: auto;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--lp-line);
  background: #fff;
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 600;
}

.lp-chat__log {
  height: min(42vh, 320px);
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, #fbfdff 0%, #fff 40%);
  -webkit-overflow-scrolling: touch;
}

.lp-chat__empty {
  margin: auto;
  font-size: 13px;
  color: var(--lp-muted);
  text-align: center;
  line-height: 1.5;
}

.lp-chat__msg {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: baseline;
  animation: lp-rise 0.28s ease both;
}

.lp-chat__msg-nick {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-blue);
  letter-spacing: -0.02em;
}

.lp-chat__msg-time {
  font-size: 13px;
  color: var(--lp-muted);
  font-variant-numeric: tabular-nums;
}

.lp-chat__msg-text {
  grid-column: 1 / -1;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.lp-chat__msg.is-mine .lp-chat__msg-nick {
  color: var(--lp-blue-dark);
}

.lp-chat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--lp-line);
  background: #fff;
}

.lp-chat__input {
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--lp-line);
  background: var(--lp-surface);
  color: var(--lp-text);
  font: inherit;
  font-size: 14px;
}

.lp-chat__input:focus {
  outline: 2px solid var(--lp-blue-border);
  border-color: var(--lp-blue);
  background: #fff;
}

.lp-chat__send {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--lp-blue);
  background: var(--lp-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-chat__send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.lp-chat__hint {
  margin: 0;
  padding: 0 14px 12px;
  font-size: 13px;
  color: var(--lp-muted);
}

@media (hover: hover) and (pointer: fine) {
  .lp-chat__reroll:hover {
    border-color: var(--lp-blue-border);
    color: var(--lp-blue);
  }
}

.lp-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid var(--lp-line);
  font-size: 11px;
  color: var(--lp-muted);
}

.lp-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.lp-dot--smooth { background: var(--lp-smooth); }
.lp-dot--normal { background: var(--lp-normal); }
.lp-dot--busy { background: var(--lp-busy); }
.lp-dot--severe { background: var(--lp-severe); }

.lp-marker {
  background: transparent;
  border: 0;
}

.lp-pin {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  margin-top: -28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.lp-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.lp-pin.is-primary {
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -34px;
  box-shadow: 0 0 0 4px rgba(0, 99, 173, 0.2), 0 6px 18px rgba(0, 0, 0, 0.15);
}

.lp-pin[data-level="smooth"] { background: var(--lp-smooth); }
.lp-pin[data-level="normal"] { background: var(--lp-normal); }
.lp-pin[data-level="busy"] { background: var(--lp-busy); }
.lp-pin[data-level="severe"] { background: var(--lp-severe); }

.lp-pin.is-active {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.leaflet-container {
  font: inherit;
  background: var(--lp-surface-2);
}

.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--lp-muted) !important;
}

.leaflet-control-attribution a { color: var(--lp-blue) !important; }

.leaflet-control-zoom a {
  background: #fff !important;
  color: var(--lp-text) !important;
  border-color: var(--lp-line) !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}

/* Bottom sheet */
.lp-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.lp-sheet[hidden] { display: none !important; }

.lp-sheet.is-closing {
  pointer-events: none;
}

.lp-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.lp-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(78vh, 560px);
  overflow: auto;
  padding: 0 16px calc(18px + env(safe-area-inset-bottom));
  border-radius: 20px 20px 0 0;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-bottom: 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.1);
  animation: lp-sheet-up 0.22s ease both;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.lp-sheet__panel.is-dragging,
.lp-sheet__panel.is-closing {
  animation: none;
  pointer-events: none;
}

.lp-sheet__grab {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0 -16px;
  padding: 10px 16px 6px;
  background: #fff;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.lp-sheet__handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.lp-sheet__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.lp-sheet__sub {
  font-size: 11px;
  color: var(--lp-muted);
}

.lp-sheet__title {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-sheet__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.lp-sheet__actions .lp-btn--primary {
  grid-column: 1 / -1;
}

.lp-sheet__close {
  display: block;
  width: 100%;
  margin-top: 10px;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--lp-line);
  background: transparent;
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 600;
}

@keyframes lp-sheet-up {
  from { transform: translateY(24px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

body.lp-sheet-open {
  overflow: hidden;
}

body.lp-sheet-open .lp-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(120%);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.lp-game-phase {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
  color: var(--lp-blue-dark);
  background: var(--lp-blue-soft);
  border: 1px solid var(--lp-blue-border);
}

.lp-game-card[data-phase="live"] .lp-game-phase {
  color: #c62828;
  background: rgba(255, 77, 94, 0.12);
  border-color: rgba(255, 77, 94, 0.35);
}

.lp-game-card[data-phase="after"] .lp-game-phase {
  color: #8a6d00;
  background: rgba(240, 197, 58, 0.2);
  border-color: rgba(240, 197, 58, 0.45);
}

.lp-game-card[data-phase="before"] .lp-game-pill {
  color: var(--lp-cyan);
}

.lp-game-card[data-phase="after"] .lp-game-pill {
  color: #8a6d00;
  background: rgba(240, 197, 58, 0.2);
  border-color: rgba(240, 197, 58, 0.45);
}

.lp-exit {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.35);
}

.lp-exit__label {
  font-size: 14px;
  font-weight: 600;
  color: #c45a00;
  letter-spacing: -0.02em;
}

.lp-exit__value {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-exit__value strong {
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  color: #e07020;
}

.lp-exit__note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-exit--card {
  background: var(--lp-blue-soft);
  border-color: var(--lp-blue-border);
}

.lp-exit--card .lp-exit__label { color: var(--lp-blue); }
.lp-exit--card .lp-exit__value strong { color: var(--lp-blue); }

.lp-game-card[data-phase="after"] .lp-exit {
  background: rgba(255, 77, 94, 0.12);
  border-color: rgba(255, 77, 94, 0.35);
}

.lp-game-card[data-phase="after"] .lp-exit__label {
  color: #c62828;
}

.lp-game-card[data-phase="after"] .lp-exit__value strong {
  color: #c62828;
}

/* Today's game */
.lp-game-card {
  padding: 18px 16px;
  border-radius: var(--lp-radius);
  background: linear-gradient(165deg, var(--lp-blue-soft), #fff);
  border: 1px solid var(--lp-blue-border);
  box-shadow: var(--lp-shadow-lg);
  animation: lp-rise 0.5s ease both;
  min-height: 120px;
}

.lp-game-card__loading,
.lp-game-card__empty,
.lp-game-card__error {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-game-card__error { color: #c62828; }

.lp-game-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
}

.lp-game-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
  border: 1px solid var(--lp-blue-border);
}

.lp-game-pill--venue {
  color: var(--lp-text);
  background: var(--lp-surface);
  border-color: var(--lp-line);
}

.lp-game-card[data-ha="home"] .lp-game-pill--venue {
  color: #1b7a3f;
  background: rgba(47, 214, 123, 0.15);
  border-color: rgba(47, 214, 123, 0.4);
}

.lp-game-card[data-ha="away"] .lp-game-pill--venue {
  color: #c45a00;
  background: rgba(255, 138, 61, 0.15);
  border-color: rgba(255, 138, 61, 0.4);
}

.lp-game-card[data-live="1"] .lp-game-pill:not(.lp-game-pill--venue) {
  color: #c62828;
  background: rgba(255, 77, 94, 0.12);
  border-color: rgba(255, 77, 94, 0.35);
}

.lp-game-meta {
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-game-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.lp-game-team {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lp-game-team--home { text-align: right; align-items: flex-end; }

.lp-game-team__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-game-team__score {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.lp-game-vs {
  font-family: var(--lp-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
  padding-top: 18px;
}

.lp-game-pitchers {
  margin-top: 12px;
  font-size: 14px;
  color: var(--lp-muted);
}

@keyframes lp-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70% { box-shadow: 0 0 0 8px transparent; opacity: 0.7; }
  100% { box-shadow: 0 0 0 0 transparent; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-transit,
  .lp-game-card {
    animation: none;
  }

  .lp-level__dot,
  .lp-gauge__fill {
    transition: none;
  }
}

/* —— Tablet (iPad) —— */
@media (min-width: 768px) {
  :root {
    --lp-content: 740px;
    --lp-pad: max(28px, env(safe-area-inset-left));
    --lp-pad-r: max(28px, env(safe-area-inset-right));
    --lp-fs-body: 16px;
    --lp-radius: 20px;
  }

  #lp-game-section,
  #lp-map-section,
  #lp-congestion-section,
  #lp-glance-section,
  #lp-chat-section {
    scroll-margin-top: 170px;
  }

  .lp-top {
    padding: 14px 20px;
  }

  .lp-nav {
    width: min(480px, calc(100% - 32px));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .lp-nav__item {
    min-height: 56px;
  }

  .lp-main {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .lp-section { margin-bottom: 40px; }

  .lp-section-head { margin-bottom: 18px; }

  .lp-kicker { font-size: 15px; }

  .lp-section-title {
    font-size: 32px;
    margin-top: 8px;
  }

  .lp-section-desc {
    font-size: 15px;
    max-width: 42em;
    line-height: 1.6;
  }

  .lp-glance-list {
    padding: 6px 0;
  }

  .lp-glance-item {
    min-height: 60px;
    padding: 0 18px;
  }

  .lp-glance-ico { font-size: 20px; }
  .lp-glance-name { font-size: 17px; }
  .lp-glance-status { font-size: 14px; min-height: 30px; }

  .lp-lot-row {
    min-height: 60px;
    padding: 12px 16px;
  }

  .lp-lot-list {
    max-height: 12.5rem;
  }

  .lp-lot-row__name { font-size: 16px; }
  .lp-lot-row__meta { font-size: 14px; }

  .lp-spaces { font-size: 15px; margin-bottom: 14px; }
  .lp-spaces strong { font-size: 28px; }
  .lp-spaces--sm strong { font-size: 22px; }

  .lp-gauge__score { font-size: 15px; }
  .lp-gauge__score strong { font-size: 26px; }
  .lp-gauge--compact .lp-gauge__score strong { font-size: 22px; }
  .lp-rel { font-size: 13px; }

  .lp-level {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .lp-meta-row {
    font-size: 14px;
  }

  .lp-hint { font-size: 13px; }

  .lp-btn {
    min-height: 50px;
    font-size: 15px;
    padding: 0 16px;
  }

  .lp-tip {
    padding: 16px 18px;
  }

  .lp-tip__label { font-size: 13px; margin-bottom: 12px; }

  .lp-tip__btn {
    min-height: 54px;
    font-size: 14px;
    padding: 12px 10px;
  }

  .lp-tip__live { font-size: 13px; }

  .lp-map {
    height: min(52vh, 520px);
    min-height: 380px;
  }

  .lp-map-legend {
    padding: 12px 16px;
    font-size: 13px;
    gap: 10px 16px;
  }

  .lp-dot {
    width: 10px;
    height: 10px;
  }

  .lp-game-card {
    padding: 22px;
  }

  .lp-game-team__name { font-size: 16px; }
  .lp-game-team__score { font-size: 42px; }
  .lp-game-phase { font-size: 15px; }
  .lp-exit__value { font-size: 18px; }
  .lp-exit__value strong { font-size: 28px; }

  .lp-foot__notice { font-size: 14px; line-height: 1.7; }
  .lp-foot__credit { font-size: 13px; margin-top: 18px; }

  .lp-sheet__panel {
    left: max(24px, calc(50% - 260px));
    right: max(24px, calc(50% - 260px));
    width: auto;
    max-width: 520px;
    max-height: min(82vh, 640px);
    border-radius: 24px 24px 0 0;
    padding: 10px 22px calc(22px + env(safe-area-inset-bottom));
  }

  .lp-sheet__title { font-size: 24px; }
  .lp-source { font-size: 12px; padding: 3px 10px; }
}

/* —— Desktop / large iPad landscape —— */
@media (min-width: 1024px) {
  :root {
    --lp-content: 980px;
    --lp-pad: max(36px, env(safe-area-inset-left));
    --lp-pad-r: max(36px, env(safe-area-inset-right));
    --lp-fs-body: 17px;
  }

  .lp-section-title { font-size: 36px; }
  .lp-section-desc { font-size: 16px; }

  .lp-lot-row {
    min-height: 64px;
    padding: 14px 18px;
  }

  .lp-lot-list {
    max-height: 13.5rem;
  }

  .lp-lot-row__name { font-size: 17px; }

  .lp-spaces strong { font-size: 32px; }
  .lp-gauge__score strong { font-size: 30px; }

  .lp-map {
    height: min(56vh, 580px);
    min-height: 440px;
  }

  .lp-game-scoreboard {
    gap: 28px;
  }

  .lp-game-team__score { font-size: 48px; }

  .lp-tip__btns {
    gap: 12px;
  }

  .lp-tip__btn {
    min-height: 56px;
    font-size: 15px;
  }

  .lp-sheet__panel {
    left: max(32px, calc(50% - 280px));
    right: max(32px, calc(50% - 280px));
    max-width: 560px;
    max-height: min(84vh, 680px);
    padding-left: 26px;
    padding-right: 26px;
  }
}

/* Wide desktop */
@media (min-width: 1200px) {
  :root {
    --lp-content: 1080px;
  }

  .lp-main {
    padding-top: 36px;
  }
}

/* 마우스/트랙패드: 호버로 터치 타깃 피드백 */
@media (hover: hover) and (pointer: fine) {
  .lp-nav__item:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }

  .lp-nav__item.is-active:hover {
    background: #fff;
    color: var(--lp-blue);
  }

  .lp-map-locate:hover {
    background: var(--lp-blue);
    color: #fff;
    border-color: var(--lp-blue);
  }

  .lp-btn--ghost:hover {
    background: var(--lp-surface-2);
    border-color: rgba(0, 0, 0, 0.18);
  }

  .lp-lot-row:hover {
    background: var(--lp-surface);
  }

  .lp-lot-row.is-active:hover {
    background: var(--lp-blue-soft);
  }

  .lp-tip__btn--full:hover {
    background: rgba(255, 77, 94, 0.2);
  }

  .lp-tip__btn--ok:hover {
    background: rgba(47, 214, 123, 0.22);
  }

  .lp-glance-item:hover {
    background: var(--lp-surface);
  }
}
