/* Default dark mode */
:root {
  --bg-color: #121212;
  --text-color: #ffffff;
  --link-color: #4dabf7;
}

/* Light mode */
[data-theme="light"] {
  --bg-color: #ffffff;
  --text-color: #000000;
  --link-color: #1e40af;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  padding: 20px;
}

.banner {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--link-color);
  color: white;
  font-size: 14px;
}