.globe-page {
  min-height: 100vh;
}

.globe-intro {
  border-bottom: 2px solid var(--ink);
  padding: 2.5rem 0 1.8rem;
}

.globe-intro h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.globe-intro p {
  max-width: 72ch;
  color: #39332d;
  line-height: 1.7;
}

.globe-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--ink);
}

.globe-stage-wrap {
  padding: 1.4rem 1.6rem 1.8rem 0;
  border-right: 2px solid var(--ink);
}

.globe-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ink);
  background:
    radial-gradient(circle at 42% 28%, rgba(232, 255, 0, 0.14), transparent 45%),
    radial-gradient(circle at 78% 75%, rgba(200, 75, 47, 0.2), transparent 35%),
    linear-gradient(145deg, #0f0d0a, #1b1613 55%, #090806);
  overflow: hidden;
}

#globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

#globe-canvas.dragging {
  cursor: grabbing;
}

.heat-legend {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legend-gradient {
  height: 10px;
  border: 1px solid var(--ink);
  background: linear-gradient(90deg, #2e1f1f 0%, #7f2d25 35%, #b93b2c 70%, #ff6b4a 100%);
}

.globe-hint {
  margin-top: 0.9rem;
  color: var(--dust);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.top-hotspots {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hotspot-chip {
  border: 1px solid var(--ink);
  padding: 0.55rem 0.65rem;
  background: rgba(200, 75, 47, 0.07);
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.hotspot-chip:hover {
  background: rgba(200, 75, 47, 0.16);
}

.hotspot-chip-name {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hotspot-chip-count {
  font-size: 1.02rem;
  font-weight: 700;
}

.story-panel {
  padding: 1.4rem 0 1.8rem 1.4rem;
}

.story-panel-header {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.85rem;
}

.story-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin-top: 0.5rem;
}

#country-meta {
  margin-top: 0.4rem;
  color: var(--dust);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.country-story-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.country-story-list li {
  border-bottom: 1px dotted rgba(10, 10, 10, 0.35);
  padding-bottom: 0.8rem;
}

.country-story-list a {
  color: var(--ink);
  text-decoration: none;
  line-height: 1.45;
}

.country-story-list a:hover {
  color: var(--rust);
}

.story-meta {
  margin-top: 0.35rem;
  color: var(--dust);
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-panel-empty {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #3b3530;
}

@media (max-width: 1050px) {
  .globe-layout {
    grid-template-columns: 1fr;
  }

  .globe-stage-wrap {
    border-right: 0;
    padding-right: 0;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 1.35rem;
  }

  .story-panel {
    padding: 1.2rem 0 1.5rem;
  }
}

@media (max-width: 640px) {
  .globe-intro {
    padding-top: 1.8rem;
  }

  .top-hotspots {
    grid-template-columns: 1fr;
  }

  .globe-hint {
    letter-spacing: 0.06em;
  }
}
