body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

.links a {
  display: block;
  margin: 10px 0;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}

.links a:hover {
  background: #333;
  color: #fff;
}

.links a i {
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
}

footer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 0.9em;
  color: #666;
  text-align: center;
}

footer a {
  color: inherit;
  text-decoration: underline;
}

footer a:hover {
  color: #333; /* or #eee in dark mode */
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #eee;
  }

  .links a {
    background: #1e1e1e;
    color: #eee;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
  }

  .links a:hover {
    background: #eee;
    color: #121212;
  }
  
    footer {
    color: #aaa;
  }
  
  footer a:hover {
    color: #fff;
  }
}
