body {
  font-family: 'Cinzel', serif;
  background: linear-gradient(#1e1e2f, #2a2a3f);
  color: #f0e6d2;
  margin: 0;
  padding: 0;
}

.hall-header {
  text-align: center;
  padding: 2rem;
  background-color: #3b2f4a;
  border-bottom: 2px solid #a88;
}

.hall-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.prophet-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
}

.prophet-card {
  background-color: #4a3b5c;
  border: 1px solid #cbb;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease;
}

.prophet-card:hover {
  transform: scale(1.05);
}

.prophet-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.prophet-stats {
  font-size: 0.95rem;
  line-height: 1.4;
}

.hall-footer {
  text-align: center;
  padding: 1rem;
  background-color: #3b2f4a;
  border-top: 2px solid #a88;
}
