.rules-page{
    position:relative;
    overflow:hidden;
}

.rules-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
    pointer-events:none;
}

.rules-glow--one{
    width:500px;
    height:500px;
    background:rgba(210,243,65,.08);
    top:-150px;
    right:-150px;
}

.rules-glow--two{
    width:450px;
    height:450px;
    background:rgba(210,243,65,.05);
    bottom:-150px;
    left:-150px;
}

.rules-hero{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:90px;
}

.rules-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(210,243,65,.08);

    border:1px solid rgba(210,243,65,.15);

    color:#d2f341;

    margin-bottom:25px;
}

.rules-hero h1{
    color:#fff;
    font-size:clamp(42px,5vw,72px);
    font-weight:900;
    margin-bottom:20px;
}

.rules-hero p{
    color:rgba(255,255,255,.75);
    line-height:2;
}

.rules-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.rule-card{
    position:relative;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(210,243,65,.08);

    transition:.35s;
}

.rule-card:hover{
    transform:translateY(-10px);

    border-color:rgba(210,243,65,.25);

    box-shadow:0 0 35px rgba(210,243,65,.08);
}

.rule-card:hover .rule-card__icon{
    transform:scale(1.08) rotate(8deg);
}

.rule-card__icon{
    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    margin-bottom:25px;

    background:rgba(210,243,65,.08);

    color:#d2f341;

    font-size:28px;

    transition:.35s;
}

.rule-card h3{
    color:#fff;
    margin-bottom:20px;
}

.rule-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.rule-card li{
    position:relative;

    padding-right:22px;

    color:rgba(255,255,255,.75);

    margin-bottom:14px;

    line-height:1.9;
}

.rule-card li::before{
    content:"";

    position:absolute;

    right:0;
    top:12px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#d2f341;
}

.rules-alert{
    margin-top:70px;

    display:flex;
    gap:20px;
    align-items:center;

    padding:30px;

    border-radius:24px;

    background:rgba(210,243,65,.06);

    border:1px solid rgba(210,243,65,.15);
}

.rules-alert__icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(210,243,65,.08);

    color:#d2f341;

    font-size:28px;
}

.rules-alert h3{
    color:#fff;
    margin-bottom:8px;
}

.rules-alert p{
    color:rgba(255,255,255,.75);
    margin:0;
}

.rules-version{
    margin-top:50px;

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.rules-version__item{
    min-width:220px;

    text-align:center;

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(210,243,65,.08);
}

.rules-version__item span{
    display:block;

    color:rgba(255,255,255,.6);

    margin-bottom:8px;
}

.rules-version__item strong{
    color:#d2f341;
    font-size:18px;
}

.rules-cta{
    text-align:center;

    margin-top:80px;

    padding:60px 40px;

    border-radius:32px;

    background:linear-gradient(
        135deg,
        rgba(210,243,65,.08),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(210,243,65,.15);
}

.rules-cta h2{
    color:#fff;
    margin-bottom:15px;
}

.rules-cta p{
    color:rgba(255,255,255,.75);
    margin-bottom:30px;
}

.rules-cta__buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.rules-btn{
    padding:14px 26px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

    text-decoration:none;
}

.rules-btn--primary{
    background:#d2f341;
    color:#111;
}

.rules-btn--outline{
    border:1px solid rgba(210,243,65,.25);
    color:#fff;
}

.rules-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:991px){

    .rules-grid{
        grid-template-columns:1fr;
    }

    .rules-alert{
        flex-direction:column;
        text-align:center;
    }

}