body {
  font-family: 'Cinzel', serif;
  background: linear-gradient(#2f2f1e, #3f3f2a);
  color: #f5f0dc;
  margin: 0;
  padding: 0;
}

.scroll-header {
  text-align: center;
  padding: 2rem;
  background-color: #4a3f2f;
  border-bottom: 2px solid #aa8;
}

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

.fixture-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 1rem;
}

.fixture-card {
  background-color: #5a4f3f;
  border: 1px solid #dcb;
  border-radius: 8px;
  padding: 1rem;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 10px #000;
}

.fixture-card:hover {
  background-color: #6a5f4f;
}

.fixture-details {
  font-size: 1rem;
  line-height: 1.5;
}

.scroll-footer {
  text-align: center;
  padding: 1rem;
  background-color: #4a3f2f;
  border-top: 2px solid #aa8;
}
.week-header {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #ffd;
  text-shadow: 1px 1px 2px #000;
}
.week-selector {
  text-align: center;
  margin: 2rem 0;
  font-size: 1.2rem;
}

.week-selector select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 5px;
  background-color: #3f3f2a;
  color: #f5f0dc;
  border: 1px solid #aa8;
}

.fixture-details span {
  position: relative;
  cursor: help;
}

.fixture-details span::after {
  content: attr(data-lore);
  position: absolute;
  bottom: 125%;
  left: 0;
  background-color: #2f2f1e;
  color: #ffd;
  padding: 0.5rem;
  border: 1px solid #aa8;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.fixture-details span:hover::after {
  opacity: 1;
}
