:root {
  --matrix-green: #00ff41;
  --dark-bg: #0c0c0c;
  --bg-dark: #000000;
  --accent-dark: #00ff00;
  --secondary-dark: #00ced1;
  --text-dark: #e6e6e6;
  --hover-dark: #32cd32;
  --bg-light: #f9f9f9;
  --accent-light: #228b22;
  --secondary-light: #98fb98;
  --text-light: #333333;
  --hover-light: #50c878;
  --background: var(--bg-dark);
  --accent: var(--accent-dark);
  --secondary: var(--secondary-dark);
  --text: var(--text-dark);
  --hover: var(--hover-dark);
}

[data-theme="light"] {
  --background: var(--bg-light);
  --accent: var(--accent-light);
  --secondary: var(--secondary-light);
  --text: var(--text-light);
  --hover: var(--hover-light);
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--background);
  font-family: "Courier New", monospace;
  color: var(--text);
  overflow: hidden;
  transition: all 0.3s ease;
}

.matrix-container {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.content {
  text-align: center;
}

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

.glitch {
  text-shadow: 2px 2px 10px var(--accent);
}

.neo-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.pill-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.pill {
  padding: 1rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 25px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text);
}

.pill:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--hover);
  background: var(--hover);
}

.red {
  background: #ff0000;
  color: white;
}

.blue {
  background: #0066ff;
  color: white;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
}

.theme-toggle:hover {
  background: var(--hover);
}
