
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #000;
  color: #d4af37;
  overflow-x: hidden;
  position: relative;
}

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

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.glow-text {
  font-size: 3.5rem;
  text-align: center;
  color: #ffd700;
  animation: glow 3s ease-in-out infinite;
  text-shadow: 0 0 20px #ffd700, 0 0 30px #d4af37;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #fff3b0;
  margin-top: -0.5rem;
}

h2 {
  border-bottom: 1px solid #d4af37;
  padding-bottom: 0.3rem;
}

#quotes {
  margin-top: 3rem;
}

.quote-slider {
  position: relative;
  min-height: 100px;
}

.quote {
  position: absolute;
  opacity: 0;
  transition: all 1s ease;
  font-style: italic;
  font-size: 1.1rem;
}

.quote.active {
  opacity: 1;
}

.deep-thought {
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  color: #fff3b0;
  margin-top: 2rem;
  line-height: 1.8;
  text-shadow: 0 0 10px #d4af37;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #d4af37;
}

footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 15px #d4af37, 0 0 30px #ffd700;
    color: #ffd700;
  }
  50% {
    text-shadow: 0 0 30px #fff3b0, 0 0 50px #d4af37;
    color: #fff3b0;
  }
}
