.bnsV2_wrapper *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.bnsV2_wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    padding:24px;
    background:#061321;
    font-family:'Inter',sans-serif;
}

.bnsV2_card{
    width:100%;
    max-width:1050px;
    background:
        radial-gradient(circle at top right, rgba(0,174,255,.12), transparent 30%),
        linear-gradient(180deg,#08192d 0%, #05101d 100%);
    border:1px solid rgba(91,148,255,.15);
    border-radius:28px;
    overflow:hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.04);
}

/* =========================================================
   HEADER
========================================================= */

.bnsV2_header{
    padding:42px 42px 30px;
    text-align:center;
}

.bnsV2_tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(64,148,255,.12);
    border:1px solid rgba(96,166,255,.2);
    color:#7cc4ff;
    font-size:13px;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:22px;
    font-weight:600;
}

.bnsV2_title{
    font-size:58px;
    line-height:1;
    font-weight:800;
    letter-spacing:2px;
    color:#fff;
    margin-bottom:18px;
}

.bnsV2_subtitle{
    max-width:760px;
    margin:auto;
    font-size:22px;
    line-height:1.7;
    color:#6db8ff;
    font-weight:600;
}

.bnsV2_highlight{
    color:#ffd66e;
    font-weight:700;
}

.bnsV2_divider{
    width:100%;
    height:1px;
    margin-top:34px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,221,120,.9),
            transparent
        );
}

/* =========================================================
   CONTENT
========================================================= */

.bnsV2_content{
    display:flex;
    flex-direction:column;
    gap:28px;
    padding:38px 42px 42px;
}

/* =========================================================
   INFO BOX
========================================================= */

.bnsV2_infoBox{
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.05);
    border-radius:22px;
    padding:28px;
}

.bnsV2_infoBox p{
    color:#aebdd8;
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.bnsV2_infoBox p:last-child{
    margin-bottom:0;
}

/* =========================================================
   RULES
========================================================= */

.bnsV2_rules{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:24px;
}

.bnsV2_ruleCard{
    background:
        linear-gradient(
            180deg,
            rgba(20,40,70,.95),
            rgba(8,19,35,.95)
        );

    border-radius:20px;
    padding:22px;
    border:1px solid rgba(109,184,255,.12);

    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-top:10px;
    transition:.25s ease;
}

.bnsV2_ruleCard:hover{
    transform:translateY(-3px);
    border-color:rgba(109,184,255,.28);
}

.bnsV2_icon{
    min-width:48px;
    height:48px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            180deg,
            #0f3156,
            #0a1d33
        );

    color:#7ec8ff;
    font-size:20px;
}

.bnsV2_ruleContent h3{
    color:#fff;
    font-size:20px;
    margin-bottom:8px;
}

.bnsV2_ruleContent p{
    color:#9db0cc;
    font-size:15px;
    line-height:1.8;
}

/* =========================================================
   SIDEBAR
========================================================= */

.bnsV2_sidebar{
    background:
        linear-gradient(
            180deg,
            rgba(15,35,60,.9),
            rgba(6,18,32,.9)
        );

    border-radius:24px;
    padding:42px 42px 30px;
    margin: 0px 42px;
    border:1px solid rgba(255,255,255,.06);
}

.bnsV2_sidebarTitle{
    color:#fff;
    font-size:22px;
    margin-bottom:24px;
}

.bnsV2_rewardBox{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:18px;
    padding:18px;
    margin-bottom:16px;
}

.bnsV2_rewardBox span{
    display:block;
    color:#76c0ff;
    font-size:13px;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.bnsV2_rewardBox h2{
    color:#fff;
    font-size:30px;
    margin-bottom:8px;
}

.bnsV2_rewardBox p{
    color:#9db0cc;
    font-size:14px;
    line-height:1.7;
}

.bnsV2_footerNote{
    margin-top:24px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#7f92ae;
    line-height:1.8;
    font-size:13px;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.bnsV2_ctaWrap{
    padding:0 42px 42px;
}

.bnsV2_ctaButton{
    width:100%;
    height:72px;
    border:none;
    border-radius:16px;

    background:
        linear-gradient(
            90deg,
            #58a6ff,
            #5d95e8
        );

    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;

    transition:.25s ease;
}

.bnsV2_ctaButton:hover{
    transform:translateY(-2px);
    filter:brightness(1.05);
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px){

    .bnsV2_content{
        display:flex;
        flex-direction:column;
    }

    .bnsV2_title{
        font-size:42px;
    }

    .bnsV2_subtitle{
        font-size:18px;
    }

    .bnsV2_header,
    .bnsV2_content,
    .bnsV2_ctaWrap{
        padding-left:20px;
        padding-right:20px;
    }

    .bnsV2_ruleCard{
        padding:18px;
    }

    .bnsV2_ctaButton{
        height:64px;
        font-size:18px;
    }
}

.bnsV2_list{
    margin-top:14px;
    padding-left:18px;

    display:flex;
    flex-direction:column;
    gap:14px;
}

.bnsV2_list li{
    color:#9db0cc;
    font-size:15px;
    line-height:1.8;
}
.bnsV2_subRules{
    margin-top:18px;

    display:flex;
    flex-direction:column;
    gap:14px;
}

.bnsV2_subRule{
    position:relative;

    padding-left:18px;

    color:#9db0cc;
    font-size:15px;
    line-height:1.8;
}

.bnsV2_subRule::before{
    content:"";

    position:absolute;
    left:0;
    top:11px;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#5ea8ff;
}
