/* =====================================================
   GFC – AGB PAGE
   Global Fighter Competition
===================================================== */


/* =====================================================
   HERO
===================================================== */

.agb-hero{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.92)
        ),

        radial-gradient(
            circle at center,
            rgba(214,28,36,.16),
            transparent 55%
        ),

        #050505;

}


.agb-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.9),
            transparent 50%,
            rgba(0,0,0,.9)
        );

    pointer-events:none;

}


.agb-hero-overlay{

    position:absolute;

    inset:0;

    background:

        radial-gradient(
            circle at center,
            rgba(214,28,36,.10),
            transparent 50%
        );

}


.agb-hero-content{

    position:relative;

    z-index:2;

    width:90%;

    max-width:1100px;

}


.agb-hero-content h5{

    margin-bottom:25px;

    color:#D61C24;

    font-size:14px;

    font-weight:800;

    letter-spacing:5px;

}


.agb-hero-content h1{

    margin:0 0 25px;

    color:#fff;

    font-size:72px;

    line-height:1;

    font-weight:900;

    letter-spacing:-2px;

}


.agb-hero-content p{

    color:#aaa;

    font-size:18px;

}


/* =====================================================
   MAIN SECTION
===================================================== */

.agb-section{

    padding:120px 0 140px;

    background:#050505;

}


.agb-container{

    width:90%;

    max-width:1100px;

    margin:0 auto;

}


/* =====================================================
   INTRO
===================================================== */

.agb-intro{

    margin-bottom:70px;

    padding-bottom:40px;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.agb-intro span{

    display:block;

    margin-bottom:15px;

    color:#D61C24;

    font-size:12px;

    font-weight:800;

    letter-spacing:4px;

}


.agb-intro h2{

    margin:0 0 15px;

    color:#fff;

    font-size:42px;

    font-weight:800;

}


.agb-intro p{

    margin:0;

    color:#777;

    font-size:14px;

}


/* =====================================================
   AGB CARDS
===================================================== */

.agb-card{

    position:relative;

    display:grid;

    grid-template-columns:80px 1fr;

    gap:35px;

    margin-bottom:25px;

    padding:42px;

    background:

        linear-gradient(
            145deg,
            #131313,
            #0c0c0c
        );

    border:1px solid rgba(255,255,255,.07);

    border-radius:24px;

    overflow:hidden;

    transition:

        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.agb-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:3px;

    height:100%;

    background:#D61C24;

    opacity:.75;

}


.agb-card:hover{

    transform:translateY(-3px);

    border-color:rgba(214,28,36,.45);

    box-shadow:

        0 20px 50px rgba(0,0,0,.35);

}


/* =====================================================
   NUMBER
===================================================== */

.agb-number{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#080808;

    border:2px solid #D61C24;

    color:#D61C24;

    font-size:17px;

    font-weight:900;

    box-shadow:

        0 0 0 7px rgba(214,28,36,.04);

}


/* =====================================================
   CONTENT
===================================================== */

.agb-content{

    min-width:0;

}


.agb-content h2{

    margin:4px 0 25px;

    color:#fff;

    font-size:29px;

    font-weight:800;

    line-height:1.2;

}


.agb-content p{

    margin:0 0 18px;

    color:#b5b5b5;

    font-size:16px;

    line-height:1.85;

}


.agb-content p:last-child{

    margin-bottom:0;

}


/* =====================================================
   LISTS
===================================================== */

.agb-content ul{

    margin:20px 0 25px;

    padding:0;

    list-style:none;

}


.agb-content li{

    position:relative;

    margin-bottom:10px;

    padding-left:25px;

    color:#aaa;

    font-size:15px;

    line-height:1.7;

}


.agb-content li::before{

    content:"";

    position:absolute;

    left:0;

    top:.75em;

    width:6px;

    height:6px;

    border-radius:50%;

    background:#D61C24;

}


/* =====================================================
   COMPANY INFO
===================================================== */

.agb-company{

    padding:28px;

    background:#080808;

    border:1px solid rgba(255,255,255,.06);

    border-radius:16px;

}


.agb-company strong{

    color:#fff;

}


.agb-company p{

    margin-top:12px;

}


.agb-company a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}


.agb-company a:hover{

    color:#D61C24;

}


/* =====================================================
   WEIGHT CLASSES
===================================================== */

.weight-list{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

    margin:25px 0 30px;

}


.weight-list div{

    display:flex;

    flex-direction:column;

    gap:8px;

    padding:22px;

    background:#080808;

    border:1px solid rgba(255,255,255,.07);

    border-radius:15px;

}


.weight-list span{

    color:#888;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:1px;

}


.weight-list strong{

    color:#fff;

    font-size:20px;

}


/* =====================================================
   FINAL SECTION
===================================================== */

.agb-final{

    margin-top:80px;

    padding:70px 40px;

    text-align:center;

    background:

        radial-gradient(
            circle at center,
            rgba(214,28,36,.12),
            transparent 60%
        ),

        #090909;

    border:1px solid rgba(214,28,36,.25);

    border-radius:28px;

}


.agb-final span{

    display:block;

    margin-bottom:15px;

    color:#D61C24;

    font-size:12px;

    font-weight:800;

    letter-spacing:4px;

}


.agb-final h2{

    margin:0 0 30px;

    color:#fff;

    font-size:28px;

}


/* =====================================================
   FOOTER
===================================================== */

.agb-section + .footer{

    border-top:1px solid rgba(255,255,255,.05);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .agb-hero-content h1{

        font-size:60px;

    }


    .agb-container{

        width:92%;

    }

}


@media(max-width:768px){

    .agb-hero{

        min-height:430px;

    }


    .agb-hero-content h5{

        font-size:11px;

        letter-spacing:3px;

    }


    .agb-hero-content h1{

        font-size:42px;

        line-height:1.05;

        letter-spacing:-1px;

    }


    .agb-hero-content p{

        font-size:15px;

    }


    .agb-section{

        padding:80px 0 100px;

    }


    .agb-intro{

        margin-bottom:45px;

    }


    .agb-intro h2{

        font-size:32px;

    }


    .agb-card{

        grid-template-columns:1fr;

        gap:25px;

        padding:30px 24px;

        border-radius:20px;

    }


    .agb-number{

        width:52px;

        height:52px;

        font-size:14px;

    }


    .agb-content h2{

        font-size:25px;

    }


    .agb-content p{

        font-size:15px;

        line-height:1.8;

    }


    .agb-content li{

        font-size:14px;

    }


    .weight-list{

        grid-template-columns:1fr;

    }


    .weight-list div{

        padding:18px;

    }


    .agb-final{

        margin-top:50px;

        padding:50px 25px;

        border-radius:20px;

    }


    .agb-final h2{

        font-size:23px;

    }

}


@media(max-width:480px){

    .agb-hero-content h1{

        font-size:35px;

    }


    .agb-intro h2{

        font-size:28px;

    }


    .agb-card{

        padding:25px 20px;

    }


    .agb-content h2{

        font-size:22px;

    }


    .agb-final span{

        font-size:10px;

        letter-spacing:2px;

    }

}