body.exploring-page {
  overflow-x: hidden;
}

.exploring-page #exploring-page {
  position: relative;
}

.exploring-page .exploring-hero {
  padding-bottom: 2.5rem;
}

.exploring-page .exploring-title {
  max-width: 960px;
  margin: 0 auto 2.5rem;
}

.exploring-page .journey-intro-copy {
  display: grid;
  gap: 1rem;
}

.exploring-page .journey-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.85;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.exploring-page .exploring-panel,
.exploring-page .exploring-flag-panel,
.exploring-page .timeline-entry,
.exploring-page .journey-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(14, 29, 36, 0.94), rgba(7, 17, 23, 0.92));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.exploring-page .exploring-panel {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.exploring-page .exploring-overview {
  max-width: 980px;
  margin: 0 auto;
}

.exploring-page .panel-eyebrow {
  margin-bottom: 0.6rem;
  color: var(--accent-color);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exploring-page .exploring-panel h3,
.exploring-page .exploring-flag-header h3 {
  margin-bottom: 0.9rem;
  color: var(--heading-color);
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.exploring-page .panel-copy {
  margin-bottom: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.exploring-page .globe-instruction {
  margin: 1.25rem 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 0.95rem;
  line-height: 1.7;
}

.exploring-page .stats-grid {
  margin-top: 1.6rem;
}

.exploring-page .stat-card {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.exploring-page .stat-number {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 700;
}

.exploring-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.exploring-page .hero-actions .btn {
  min-width: 170px;
}

.exploring-page .experiences-globe-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  min-height: 620px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.exploring-page #experiences-globe {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 620px;
  min-height: 620px;
  overflow: hidden;
}

.exploring-page #experiences-globe canvas {
  display: block;
}

.exploring-page .experience-globe-fallback {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
}

.exploring-page .experience-globe-fallback strong {
  display: block;
  margin-bottom: 0.35rem;
}

.exploring-page .experience-globe-marker {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  cursor: pointer;
}

.exploring-page .experience-globe-marker:hover,
.exploring-page .experience-globe-marker:focus,
.exploring-page .experience-globe-marker.is-active {
  outline: none;
}

.exploring-page .experience-globe-marker-pin {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 0 8px rgba(102, 199, 220, 0.32));
  transition: filter 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

.exploring-page .experience-globe-marker:hover .experience-globe-marker-pin,
.exploring-page .experience-globe-marker:focus .experience-globe-marker-pin,
.exploring-page .experience-globe-marker.is-active .experience-globe-marker-pin {
  filter: drop-shadow(0 0 10px rgba(111, 191, 155, 0.56));
  transform: translate(-50%, calc(-100% - 2px));
}

.exploring-page .experience-globe-marker-pin svg {
  display: block;
  width: 100%;
  height: auto;
}

.exploring-page .experience-globe-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  display: block;
  width: min(240px, calc(100vw - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(11, 25, 31, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.exploring-page .experience-globe-preview:hover {
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
  color: #ffffff;
}

.exploring-page .experience-globe-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.exploring-page .experience-globe-preview[hidden] {
  display: none !important;
}

.exploring-page .experience-globe-preview-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #07131b;
}

.exploring-page .experience-globe-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.exploring-page .experience-globe-preview:hover .experience-globe-preview-media img {
  transform: scale(1.03);
}

.exploring-page .experience-globe-preview-title {
  display: block;
  padding: 0.95rem 1rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.exploring-page .exploring-flag-panel {
  margin: 0 0 1.5rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.exploring-page .visited-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.exploring-page .visited-flags a,
.exploring-page .country-quick-nav a {
  display: inline-flex;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exploring-page .visited-flags a:hover,
.exploring-page .country-quick-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.exploring-page .visited-flags img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: block;
}

.exploring-page .earth-progress {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.exploring-page .earth-progress-centered {
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
}

.exploring-page .earth-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.exploring-page .earth-progress-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.exploring-page .earth-progress-value {
  color: var(--accent-color);
  font-size: 1.45rem;
  font-weight: 700;
}

.exploring-page .earth-progress-label {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 0.9rem;
}

.exploring-page .country-quick-nav {
  position: fixed;
  right: 14px;
  top: 52%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  max-height: 78vh;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(4, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  overflow-y: auto;
}

.exploring-page .country-quick-nav img {
  width: 38px;
  height: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  display: block;
}

.exploring-page .timeline-section .section-title {
  padding-bottom: 2rem;
}

.exploring-page .timeline {
  position: relative;
  margin-left: 0.75rem;
  padding-left: 1.5rem;
}

.exploring-page .timeline::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(111, 191, 155, 0.4), rgba(111, 191, 155, 0.08));
}

.exploring-page .timeline-entry {
  position: relative;
  margin-bottom: 1.8rem;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  scroll-margin-top: 110px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.exploring-page .timeline-entry:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 191, 155, 0.25);
}

.exploring-page .timeline-entry:target {
  border-color: rgba(111, 191, 155, 0.45);
  box-shadow: 0 0 0 1px rgba(111, 191, 155, 0.2), 0 24px 50px rgba(0, 0, 0, 0.22);
}

.exploring-page .timeline-entry::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 1.45rem;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(8, 18, 24, 0.9);
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(111, 191, 155, 0.12);
}

.exploring-page .timeline-meta {
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exploring-page .timeline-entry p:last-of-type {
  margin-bottom: 0;
}

.exploring-page .vlog-media {
  margin-top: 1rem;
}

.exploring-page .vlog-hero,
.exploring-page .vlog-thumb,
.exploring-page .memory-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(3, 8, 12, 0.85);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.exploring-page .vlog-hero img {
  width: 100%;
  height: min(58vh, 560px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.exploring-page .vlog-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.exploring-page .vlog-thumb img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.exploring-page .exploring-quote .section-title h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.exploring-page .memory-collage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 3rem;
  max-width: 560px;
}

.exploring-page .memory-card-primary {
  max-width: 300px;
}

.exploring-page .memory-card-secondary {
  max-width: 400px;
  margin-top: -170px;
  margin-left: 120px;
}

.exploring-page .memory-card img {
  display: block;
  width: 100%;
  height: auto;
}

.exploring-page .journey-card {
  display: block;
  height: 100%;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.exploring-page .journey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 191, 155, 0.32);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.exploring-page .journey-card .btn {
  margin-top: 0.9rem;
}

.country-page .country-hero {
  padding-bottom: 2rem;
}

.country-page .country-title {
  max-width: 860px;
  margin: 0 auto;
}

.country-page .country-intro {
  max-width: 760px;
  margin: 0.75rem auto 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.country-page .country-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.country-page .globe-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.country-page .globe-back-link::before {
  content: "Back to Globe";
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.country-page .globe-back-link:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.country-page .globe-back-link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent-color), white 18%);
  outline-offset: 6px;
  border-radius: 999px;
}

.country-page .globe-back-link .earth-icon {
  width: 96px;
  height: 96px;
}

.country-page .country-story-section {
  padding-bottom: 4rem;
}

.country-page .country-story-entry {
  margin-bottom: 0;
}

.country-page .country-story-entry::before {
  display: none;
}

.country-page .vlog-hero img {
  height: min(64vh, 640px);
}

.highlights-page .exploring-quote {
  padding-top: 0;
}

@media (max-width: 1199px) {
  .exploring-page .country-quick-nav {
    display: none;
  }
}

@media (max-width: 991px) {
  .exploring-page .experiences-globe-shell {
    min-height: 480px;
  }

  .exploring-page #experiences-globe {
    height: 480px;
    min-height: 480px;
  }

  .exploring-page .exploring-flag-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .exploring-page .vlog-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .exploring-page .memory-card-secondary {
    margin-top: -120px;
    margin-left: 70px;
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .exploring-page .exploring-hero {
    padding-bottom: 1.5rem;
  }

  .exploring-page .globe-instruction {
    font-size: 0.92rem;
  }

  .exploring-page .hero-actions .btn {
    width: 100%;
  }

  .exploring-page .experiences-globe-shell {
    min-height: 420px;
  }

  .exploring-page #experiences-globe {
    height: 420px;
    min-height: 420px;
  }

  .exploring-page .experience-globe-preview {
    width: min(200px, calc(100vw - 40px));
  }

  .exploring-page .visited-flags {
    justify-content: center;
  }

  .exploring-page .earth-progress {
    width: 100%;
  }

  .exploring-page .timeline {
    margin-left: 0;
    padding-left: 0;
  }

  .exploring-page .timeline::before,
  .exploring-page .timeline-entry::before {
    display: none;
  }

  .exploring-page .vlog-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exploring-page .vlog-thumb img {
    height: 136px;
  }

  .exploring-page .memory-collage {
    max-width: 100%;
  }

  .exploring-page .memory-card-primary,
  .exploring-page .memory-card-secondary {
    max-width: min(100%, 340px);
  }

  .exploring-page .memory-card-secondary {
    margin-top: -84px;
    margin-left: 0;
  }

  .country-page .country-actions .btn {
    width: 100%;
  }
}
