.drc-map-explorer {
  min-height: calc(100svh - var(--header-h, 0px));
  scroll-margin-top: var(--header-h, 0px);
  padding: 14px 24px 14px;
  background:
    radial-gradient(70% 80% at 50% 20%, rgba(37, 99, 235, 0.12) 0%, rgba(15, 23, 42, 0) 55%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.drc-map-explorer__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.drc-map-explorer__header {
  text-align: center;
  margin-bottom: 12px;
  flex: 0 0 auto;
}

.drc-map-explorer__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.drc-map-explorer__title br.mobile-break {
  display: none;
}

.drc-map-explorer__desc {
  margin: 8px auto 0;
  max-width: 720px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.78);
}

.drc-map-explorer__stage {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drc-map-explorer__canvas {
  width: 100%;
  min-height: min(48vh, 470px);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drc-map-explorer__loading {
  color: rgba(226, 232, 240, 0.68);
  font-size: 15px;
}

.drc-map-svg-wrap,
.drc-map-svg-wrap svg {
  width: 100%;
  height: 100%;
  min-height: min(42vh, 410px);
  display: block;
}

.drc-map-svg-wrap {
  width: min(100%, 730px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}

.drc-map-svg-wrap.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.drc-map-svg-wrap svg #Àü±¹_½Ãµµ_°æ°è path,
.drc-map-svg-wrap svg path.drc-map-shape {
  fill: rgba(59, 130, 246, 0.82) !important;
  stroke: rgba(255, 255, 255, 0.92) !important;
  stroke-width: 1.1 !important;
  cursor: pointer;
  transition:
    fill .22s ease,
    stroke .22s ease,
    opacity .22s ease,
    filter .22s ease;
}

.drc-map-svg-wrap svg path.drc-map-shape:hover,
.drc-map-svg-wrap svg path.drc-map-shape.is-active {
  fill: rgba(0, 77, 203, 0.92) !important;
  stroke: rgba(255, 255, 255, 1) !important;
  filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.22));
}

.drc-map-tooltip {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 250px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  background: rgb(3 46 127 / 92%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.32);
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.drc-map-tooltip.is-updating {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.36);
}

.drc-map-tooltip__region {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.drc-map-tooltip__stats {
  display: grid;
  gap: 4px;
  margin-top: 0;
}

.drc-map-tooltip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 20px;
  color: rgba(226, 232, 240, 0.82);
}

.drc-map-tooltip__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.drc-map-tooltip__row strong {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.drc-reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.drc-reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.drc-delay-1 {
  transition-delay: .12s;
}

@media (max-width: 1200px) {
  .drc-map-explorer__inner {
    width: min(1160px, 100%);
  }

  .drc-map-explorer__stage {
    width: min(100%, 860px);
  }

  .drc-map-explorer__canvas {
    min-height: min(46vh, 440px);
  }

  .drc-map-svg-wrap,
  .drc-map-svg-wrap svg {
    min-height: min(40vh, 380px);
  }

  .drc-map-svg-wrap {
    width: min(100%, 700px);
  }
}

@media (max-width: 1024px) {
  .drc-map-explorer {
    min-height: auto;
    padding: 72px 20px 48px;
    display: block;
  }

  .drc-map-explorer__inner {
    min-height: auto;
    display: block;
    width: min(1180px, 100%);
  }

  .drc-map-explorer__header {
    margin-bottom: 22px;
  }

  .drc-map-explorer__title {
    font-size: clamp(28px, 4vw, 38px);
  }

  .drc-map-explorer__desc {
    font-size: 15px;
    margin-top: 10px;
  }

  .drc-map-explorer__stage {
    width: min(100%, 780px);
    display: block;
  }

  .drc-map-explorer__canvas {
    min-height: 500px;
    padding: 18px;
  }

  .drc-map-svg-wrap,
  .drc-map-svg-wrap svg {
    min-height: auto;
  }

  .drc-map-svg-wrap {
    width: min(100%, 640px);
  }

  .drc-map-tooltip {
    top: 14px;
    right: 14px;
    width: 200px;
    padding: 14px;
  }

  .drc-map-tooltip__region {
    font-size: 20px;
  }

  .drc-map-tooltip__row,
  .drc-map-tooltip__row strong {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .drc-map-explorer {
    padding: 44px 12px;
  }

  .drc-map-explorer__title {
    font-size: clamp(24px, 7vw, 32px);
    display: block;
  }
  
  .drc-map-explorer__title br.mobile-break {
    display: inline;
  }

  .drc-map-explorer__desc {
    font-size: 14px;
    margin-top: 10px;
  }

  .drc-map-explorer__stage {
    width: 100%;
  }

  .drc-map-explorer__canvas {
    min-height: 360px;
    padding: 10px;
    border-radius: 18px;
  }

  .drc-map-svg-wrap {
    width: min(100%, 440px);
  }

  .drc-map-tooltip {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 110px;
    padding: 12px;
    border-radius: 14px;
  }

  .drc-map-tooltip__region {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .drc-map-tooltip__row {
    font-size: 12px;
    padding-bottom: 6px;
  }

  .drc-map-tooltip__row strong {
    font-size: 14px;
  }

  .drc-map-svg-wrap,
  .drc-map-svg-wrap svg {
    width: 100%;
    height: auto;
    min-height: auto;
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drc-reveal-up,
  .drc-map-svg-wrap,
  .drc-map-tooltip,
  .drc-map-svg-wrap svg path.drc-map-shape {
    transition: none !important;
    animation: none !important;
  }

  .drc-reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .drc-map-svg-wrap {
    opacity: 1 !important;
    transform: none !important;
  }
}