* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #222;
  color: white;
  line-height: 1.6;
}

.rules-container {
  max-width: 800px;
  margin: 6rem auto 2rem;
  padding: 2rem;
}

.rules-section {
  background: #444;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.rules-title {
  color: var(--header-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.rules-category {
  margin-bottom: 2rem;
}

.category-title {
  color: var(--header-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rule-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.rule-item::before {
  content: "•";
  color: var(--header-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.date-update {
  text-align: center;
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .rules-container {
    padding: 1rem;
    margin-top: 5rem;
  }
  
  .rules-title {
    font-size: 1.75rem;
  }
  
  .category-title {
    font-size: 1.25rem;
  }
}