/* Footer Styles */
.footer {
  background-color: rgba(15, 15, 15, 0.8);  /* Dark translucent background */
  backdrop-filter: blur(10px) saturate(180%); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(10px) saturate(180%); /* Safari support */
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle top border */
  color: #ffffff; /* White text for contrast */
}

.footer p {
  margin: 0;
  font-size: 0.9rem; /* Slightly smaller text for paragraphs */
}
.footer-links a {
  display: inline-block; /* allows margin and hover effects */
  width: auto;           /* only text area is clickable */
  color: #ffffff;
  font-weight: 200;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: #d8b949; /* Highlight color on hover */
}

.footer .disclaimer-text {
  color: #8d8d8d;
  font-size: 0.75rem;
  line-height: 1;
}