/* ============================================================
   RULES.CSS — страница правил
   ============================================================ */

.rules-icon {
  width: 80px; height: 80px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.rules-icon svg {
  width: 38px; height: 38px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.rule-category {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 32px;
}
.rule-category__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rule-category__icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.rule-category__icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.rule-category__title {
  font-family: Georgia, serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff;
}

.rule-item { margin-bottom: 28px; }
.rule-item:last-child { margin-bottom: 0; }
.rule-item__title {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 8px;
}
.rule-item__text {
  font-size: 15px; color: var(--muted); line-height: 1.7;
}

.rules-cta {
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
  margin-top: 48px;
}
.rules-cta__title {
  font-family: Georgia, serif;
  font-size: 24px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 16px;
}
.rules-cta__text {
  font-size: 15px; color: var(--muted);
  max-width: 600px; margin: 0 auto 32px; line-height: 1.7;
}

@media (max-width: 640px) {
  .rule-category { padding: 28px 20px; }
}
