#globe-container {
  text-align: center;
  margin: 2rem auto;
  position: relative;
}

#globe {
  margin: 0 auto;
  cursor: grab;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46, 164, 97, 0.3);
}

#globe:active {
  cursor: grabbing;
}

#controls {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.control-btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #2ea461 0%, #248a52 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(46, 164, 97, 0.3);
}

.control-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(46, 164, 97, 0.5);
  background: linear-gradient(135deg, #37FF8B 0%, #2ea461 100%);
}

#location-info {
  background-color: #222222;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

#location-info h3 {
  color: #2ea461;
  margin: 0 0 0.5rem 0;
}

#location-info p {
  margin: 0;
  color: #ffffff;
}

#locations-list {
  margin-top: 3rem;
}

#locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-card {
  background-color: #222222;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(46, 164, 97, 0.5);
  border: 1px solid #2ea461;
}

.location-card h4 {
  color: #2ea461;
  margin: 0 0 0.5rem 0;
}

.location-card p {
  margin: 0.25rem 0;
  color: #ffffff;
}

.location-card .year {
  font-size: 0.9rem;
  color: #888888;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #globe canvas {
    width: 100% !important;
    height: 400px !important;
  }
  
  #controls {
    flex-wrap: wrap;
  }
  
  .control-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  #locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}