/* Globe Section — Region Earth (world rotate v12) */

#globe-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.globe-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  height: 720px;
}

.globe-canvas {
  width: 100%;
  height: 100%;
}

.globe-info-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24px;
}

.globe-info-inner {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.globe-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.globe-info-cell {
  padding: 32px;
}

.globe-info-cell:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.globe-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.globe-info-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
}

.globe-info-title {
  font-size: 16px;
  font-weight: 600;
}

.globe-info-desc {
  color: var(--text-secondary, #aaa);
  line-height: 1.6;
  font-size: 14px;
}

.globe-info-desc strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .globe-wrapper {
    height: 500px;
  }

  .globe-info-grid {
    grid-template-columns: 1fr;
  }

  .globe-info-cell:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .globe-info-cell {
    padding: 24px;
  }
}
