/* Global Styles */
body {
  margin: 0;
  font-family: 'Luckiest Guy', cursive, sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

a {
  color: #00aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Top Community Links */
.top-links-box {
  background: rgba(0, 0, 50, 0.9);
  padding: 20px;
  font-size: 18px;
  border-bottom: 3px solid #00aaff;
}

.top-links-box p {
  margin: 5px 0;
}

/* Panorama Gallery */
.panorama-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px 20px;
}

.scene {
  max-width: 1500px;
  width: 100%;
  position: relative;
  border: 4px solid #00aaff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

.scene img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 50, 0.8);
  width: 100%;
  padding: 15px 10px;
  font-size: 20px;
  color: #ffd700;
  text-shadow: 1px 1px 3px #000;
}

/* Footer */
footer {
  background-color: #111;
  padding: 40px 20px;
  color: #aaa;
  font-size: 14px;
  border-top: 3px solid #00aaff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-grid .info,
.footer-grid .community-box {
  flex: 1 1 300px;
  text-align: left;
}

.footer-grid p {
  margin: 8px 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .caption {
    font-size: 16px;
    padding: 10px;
  }

  .top-links-box {
    font-size: 16px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid .info,
  .footer-grid .community-box {
    text-align: center;
  }
}