/* --- GLOBAL BASICS --- */
body {
  margin: 0;
  background-color: #000;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}

/* --- LAYOUT WRAPPERS --- */
.rules-wrapper {
  padding: 80px 20px;
}

.rules-container {
  max-width: 800px;
  margin: 0 auto;
}

/* --- TITLE AREA --- */
.rules-category {
  color: rgb(136, 218, 34); /* green-400 */
  font-weight: 600;
  margin-bottom: 10px;
}

.rules-title {
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0 20px;
}

@media (min-width: 640px) {
  .rules-title {
      font-size: 42px;
  }
}

.rules-description {
  font-size: 18px;
  margin-bottom: 40px;
}

/* --- RULE LIST --- */
.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-item {
  background: #282828;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 10px;
  transition: 0.25s ease;
  margin-bottom: 20px;
}

.rule-item:hover {
  background: rgba(136, 218, 34, 0.15);
  border-color: rgb(136, 218, 34);
}

.rule-text {
  display: block;
  color: white;
  line-height: 1.5;
  transition: color 0.2s ease;
}

/* --- FOOTER --- */
.rules-footer-text {
  margin-top: 40px;
  color: white;
  font-size: 16px;
}

.rules-link {
  color: rgb(136, 218, 34);
  font-weight: 600;
  text-decoration: none;
}

.rules-link:hover {
  text-decoration: underline;
}

/* --- FOOTER --- */
.footer {
  background: #181818;
  padding: 40px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  color: white;
  font-size: 14px;
}
