/* Base */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Lucida Calligraphy", cursive, serif;
  background: #0b0b0b;
  color: #e5e5e5;
  overflow-x: hidden;
}



h1 {
  font-size: 3rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #ffffff;
}

.quote {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: #bbbbbb;
  margin-bottom: 40px;
}

.enter-btn {
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
  text-transform: uppercase;
}

.enter-btn:hover {
  background: #ffffff11;
}

/* Animated background */
.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #1c1c1c 0%, #0b0b0b 100%);
  overflow: hidden;
  z-index: 1;
}

.background::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.03;
  animation: drift 120s linear infinite;
}

@keyframes drift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ritual-image {
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
  display: block;
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.bio p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.bio {
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.container {
  position: relative;
  max-width: 900px;
  margin: 120px auto 40px;
  padding: 0 20px;
  text-align: center;
  z-index: 10;
}

#ashes-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
