:root {
  --bg: #0d0c1d;
  --text: #e0e0ff;
  --primary: #8f00ff;
  --accent: #00c6ff;
  --hover: #ffffff22;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

h1.neon {
  font-size: 3rem;
  color: var(--primary);
  text-shadow: 0 0 5px var(--primary), 0 0 20px var(--accent);
  margin-bottom: 0.5rem;
}

h1 .thin {
  color: var(--text);
  font-weight: 300;
}

.sub {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 3rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  margin: 1rem 0;
}

.resource-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  background: linear-gradient(90deg, transparent, var(--hover));
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.resource-list a:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #fff;
  transform: translateX(5px);
}

footer {
  margin-top: 4rem;
  font-size: 0.85rem;
  color: #666;
}


#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}