:root {
  --bg-color: #ffc0cb; /* Pink (Light/Original) */
  --text-color: #ffffff;
  --accent-color: #ffffff;
  --button-text-color: #ffc0cb;
}

[data-theme='dark'] {
  --bg-color: #1a1a1a;
  --text-color: #f0f0f0;
  --accent-color: #bb86fc;
  --button-text-color: #1a1a1a;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: sans-serif;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

h1 {
  font-size: 3em;
  margin-top: 2em;
}

button {
  background-color: var(--accent-color);
  color: var(--button-text-color);
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

button:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 1rem;
}
