/* Desktop-specific styles */
@media (min-width: 769px) {
.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem;
  padding-bottom: 8rem; /* Add padding to account for fixed footer */
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.header {
  margin-bottom: 2rem;
  padding: 1rem;
  padding-bottom: 1.5rem; /* Add extra padding at the bottom to accommodate the line */
  position: relative;
  overflow: visible; /* Allow content to be visible outside the header */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 5px;
  background: linear-gradient(90deg, var(--highlight-color), var(--primary-color), var(--highlight-color));
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  min-width: 80%;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  padding-top: 1rem;
  /* Fixed positioning */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  /* Match the page background color */
  background-color: var(--background-color);
  /* Add subtle top border for visual separation */
  border-top: 1px solid var(--primary-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  /* Remove blur effects */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 9999; /* Very high z-index to ensure it's on top */
}

/* Close the media query */
}
