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

/* Default link styling */
a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #00aaff;
}

/* Fix for multi-line navigation text alignment */
.floating-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Constrain and center hero/section images */
.responsive-img {
  width: 100%;
  max-width: 680px;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  display: block;
  margin: 2rem auto 0 auto;
}

.cta-btn {
  background: #00aaff;
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.8), 0 0 50px rgba(0, 170, 255, 0.4);
  transform: translateY(-2px);
}
