:root {
  --bg: #000;
  --fg: #0f0;
  --accent1: #f0f;
  --accent2: #0ff;
  --font: "Comic Sans MS", cursive;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg) url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h2v2H0z' fill='%23fff' fill-opacity='0.1'/%3E%3C/svg%3E");
  color: var(--fg);
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  background: rgba(0, 0, 0, 0.85);
  border: 3px solid var(--accent1);
  padding: 20px;
  box-shadow: 8px 8px 0 var(--accent2);
  border-radius: 4px;
}

.language-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.language-selector button {
  background: none;
  border: none;
  font-family: var(--font);
  color: var(--fg);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}

.language-selector button:hover {
  color: var(--accent1);
}

.selected { color: lime; }
.unselected { color: red; }

.flames {
  text-align: center;
  font-size: 1.8rem;
  animation: flicker 1s infinite alternate;
}

@keyframes flicker {
  0%,100% { text-shadow: 0 0 10px #f00, 0 0 20px #f80; }
  50% { text-shadow: 0 0 15px #f40, 0 0 25px #fa0; }
}

.rainbow-title {
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  color: var(--accent2);
  text-decoration: none;
  display: block;
  margin: 6px 0;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent1);
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}
