/**
 * rules.css — Game rules page styles
 */

.section-title { font-size: 34px; color: var(--c-orange); border-bottom: 2px solid var(--c-orange-dark); padding-bottom: 8px; text-shadow: 1px 1px 3px #000; margin: 0 0 25px; }
.rule-category { margin-bottom: 40px; }
.category-title { font-size: 24px; color: var(--c-orange); margin-bottom: 18px; text-shadow: 1px 1px 2px #000; position: relative; }
.category-title::before { content: ""; position: absolute; left: 0; bottom: -5px; height: 3px; width: 60px; background: var(--c-orange); border-radius: 3px; }
.rule-box { background: rgba(30,15,15,.85); padding: 18px; border-left: 5px solid var(--c-orange); margin-bottom: 20px; border-radius: 8px; box-shadow: 0 0 12px rgba(var(--c-orange-rgb),.1); }
.rule-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 20px; font-weight: bold; color: #ffd; }
.rule-body { margin-bottom: 12px; font-size: 15px; line-height: 1.6; color: #ddd; }
.rule-meta { font-size: 13px; display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 4px 10px; border-radius: 50px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); font-weight: bold; color: #ffcc99; box-shadow: inset 0 0 5px rgba(255,255,255,.1); }
.pill.report { color: var(--c-gold-bright); }
.pill.update { color: #66ccff; font-style: italic; }
.rule-annex-wrapper { margin-top: 60px; }
.annex-title { font-size: 26px; color: var(--c-gold-bright); margin-bottom: 20px; text-shadow: 1px 1px 3px #000; }
.rule-box.annex { border-left-color: var(--c-gold-bright); background: rgba(40,40,10,.9); }
