/* Rules Page */

#main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

#main-content h2 {
  color: #99ccff;
  margin-bottom: 20px;
  text-align: center;
}

.rules-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rules-image {
  max-width: 250px;
  margin: 20px auto;
  display: block;
}

.rules-list {
  margin: 20px 0;
  padding-left: 1.2rem;
  list-style: disc;
  line-height: 1.6;
  max-width: 800px;
}

.rules-list li {
  margin: 8px 0;
}

.highlight {
  color: red;
  font-weight: bold;
}

