* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}

#container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 300px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  color: #eee;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
  transition: transform 0.3s ease;
  z-index: 100;
}

.info-panel h2 {
  margin-bottom: 10px;
  color: #00e5ff;
}

.info-panel p {
  line-height: 1.6;
  font-size: 14px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #aaa;
}

.close-btn:hover {
  color: #fff;
}