/* Base styles */
body {
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  font-family: sans-serif;
}

/* Light Theme */
.theme-light {
  background-color: #ffffff;
  color: #222222;
}

.theme-light a {
  color: #007acc;
}

/* Dark Theme */
.theme-dark {
  background-color: #121212;
  color: #e0e0e0;
}

.theme-dark a {
  color: #80cbc4;
}

/* Retro Theme */
.theme-retro {
  background-color: #f5deb3;
  color: #3b2f2f;
  font-family: "Courier New", monospace;
}

.theme-retro a {
  color: #8b0000;
}

/* Splash Page Styles */
.splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.cta-buttons a {
  display: inline-block;
  margin: 0 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.theme-light .cta-buttons a {
  background-color: #007acc;
  color: #ffffff;
}

.theme-dark .cta-buttons a {
  background-color: #80cbc4;
  color: #000000;
}

.theme-retro .cta-buttons a {
  background-color: #8b0000;
  color: #ffffff;
}

.theme-light .cta-buttons a:hover,
.theme-dark .cta-buttons a:hover,
.theme-retro .cta-buttons a:hover {
  opacity: 0.85;
}
