body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.v7-wrapper {
  padding: 160px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.v7-hero {
  text-align: center;
  margin-bottom: 60px;
}

.v7-hero h1 {
  font-size: 42px;
  letter-spacing: 3px;
}

.subtitle {
  color: #aaa;
  margin-top: 10px;
  font-size: 16px;
}

.author {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
}

.v7-section {
  margin-bottom: 60px;
}

.v7-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.layer {
  margin-bottom: 30px;
}

.layer h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.layer ul,
.rules {
  margin-left: 20px;
  line-height: 1.7;
  color: #ccc;
}

/* FLOATING SOULS */
#soul-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.soul {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  filter: blur(1px);
  animation: floatUp linear forwards;
}

@keyframes floatUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-200px); opacity: 0; }
}
