/* ======= Хлебные крошки (современный микс) ======= */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fafafa, #fff);
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.breadcrumbs span {
  color: #999;
  font-weight: 500;
  margin: 0 6px;
}


/* Общие стили страницы */
.rules-page {
  padding: 40px 0;
}

.page-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

/* Содержание */
.rules-toc {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
}
.rules-toc h2 {
  margin-top: 0;
}
.rules-toc ul {
  list-style: none;
  padding-left: 0;
}
.rules-toc li {
  margin: 8px 0;
}
.rules-toc a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s;
}
.rules-toc a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Контент */
.rules-content section {
  margin-bottom: 40px;
}
.rules-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.rules-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* Плавный скролл для всей страницы */
html {
  scroll-behavior: smooth;
}

/* Иконки в заголовках */
.rules-content h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rules-content h2 .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.85;
}
