/* HERO SECTION */
.hero-section {
 background:linear-gradient(135deg,#7a0000,#ff3c3c);
    padding: 100px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
}

.hero-section p {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 15px;
}

/* RULES SECTION */
.rules-section {
    padding: 50px 20px;
    /* background: #fff5f5; */
}

.rule-card {
    background: #fff;
    border-left: 6px solid #b22222;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(178,34,34,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(178,34,34,0.25);
}

.rule-card h3 {
    margin-bottom: 10px;
    color: #8b0000;
    font-size: 1.5rem;
}

.rule-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Responsive */
@media(max-width: 768px){
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .rule-card {
        padding: 20px 20px;
    }
}