.rules-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/banner.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.rules-hero h1 {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rules-container {
    max-width: 900px;
    margin: 40px auto;
}

.rules-section {
    background: #161616;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-bottom: 30px;
}

.section-title {
    color: #f1c40f;
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rule-item {
    margin-bottom: 30px;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rule-item p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 10px;
}

.rule-item ul {
    list-style: none;
    padding-left: 0;
}

.rule-item ul li {
    color: #999;
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.5;
}

.rule-item ul li::before {
    content: "•";
    color: #f1c40f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.moderation-info {
    border-left: 4px solid #e74c3c;
}

@media (max-width: 768px) {
    .rules-hero h1 { font-size: 2rem; }
}