*{
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}


body{

    margin:0;

    min-height:100vh;

    background:

    radial-gradient(
        circle at top,
        rgba(14,165,233,0.35),
        transparent 40%
    ),

    #020617;

}


/* AREA TENGAH */

.overlay{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

}



/* CARD UTAMA */

.card{

    width:420px;

    max-width:100%;

    margin:auto;

    position:relative;

    animation:cardPulse 3s ease-in-out infinite;

    background:
    linear-gradient(
        180deg,
        #071426,
        #020617
    );

    border:1px solid #38BDF8;

    border-radius:16px;

}


@keyframes cardPulse{

    0%{

        box-shadow:
        0 0 15px rgba(56,189,248,.4),
        0 0 35px rgba(37,99,235,.2);

    }


    50%{

        box-shadow:
        0 0 30px rgba(56,189,248,.9),
        0 0 70px rgba(37,99,235,.5);

    }


    100%{

        box-shadow:
        0 0 15px rgba(56,189,248,.4),
        0 0 35px rgba(37,99,235,.2);

    }

}



/* LOGO */

.topbar{

    height:70px;

    padding:20px 0;

    display:flex;

    justify-content:center;

    align-items:center;


    background:
    linear-gradient(
        90deg,
        #020617,
        #0F2A4A,
        #020617
    );


    color:#38BDF8;

    font-size:32px;

    font-weight:bold;

    letter-spacing:2px;

}

.topbar img{

    width:170px;

    height:auto;

    filter:
    drop-shadow(0 0 8px #38BDF8)
    drop-shadow(0 0 18px #2563EB);

}



/* BANNER */

/* BANNER */

.banner{

    width:100%;

    overflow:hidden;

    position:relative;

    border-radius:15px;

}


.banner img{

    width:100%;

    height:auto;

    display:block;

    border-radius:15px;

}


/* BORDER BERJALAN */

.banner{

    width:92%;

    margin:15px auto 0;

    position:relative;

    overflow:hidden;

    border-radius:14px;

    border:2px solid #38BDF8;

}

.banner::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:14px;

    border:2px solid transparent;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.08),
    rgba(255,255,255,.18),
    rgba(255,255,255,.08),
    transparent
);
    background-size:200% 100%;

    animation:bannerGlowMove 4s linear infinite;

    pointer-events:none;

}


/* JUDUL */

.titlebar{

    width:100%;

    text-align:center;

    color:#f6f7f8;

    font-size:20px;

    font-weight:800;

    line-height:1.4;

    padding:0 15px;

    margin:25px 0;

    text-shadow:
    0 0 8px rgba(56,189,248,.8);

}



/* BUTTON */

.buttons{

    display:flex;

    flex-direction:column;

    gap:12px;

    padding:20px;

} 

.button-grid{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:12px;

}

.btn-main{

    width:100%;

    margin-bottom:12px;

}


.btn{

    display:block;

    width:100%;

    padding:15px;


    text-align:center;

    text-decoration:none;


    font-size:15px;

    font-weight:bold;

    letter-spacing:1px;


    border-radius:8px;


    color:#FFFFFF;


    background:
    linear-gradient(
    135deg,
    #2563EB,
    #38BDF8,
    #1D4ED8
);


    border:2px solid #38BDF8;


    box-shadow:
    0 0 10px rgba(56,189,248,.6),
    0 0 25px rgba(37,99,235,.5);

    outline:none;

    -webkit-tap-highlight-color:transparent;


    transition:.3s;

}

.btn:hover{

    transform:scale(1.05);


    box-shadow:

    0 0 20px rgba(56,189,248,.9),
    0 0 40px rgba(37,99,235,.8);

}

.btn:active{

    outline:none;

    transform:scale(0.96);

    box-shadow:

    0 0 10px rgba(56,189,248,.8);

}

.info{

    margin-top:25px;

    margin-bottom:20px;

    padding:15px;

    border-radius:12px;

    border:1px solid #B8793A;

    background:
    rgba(184,121,58,0.08);


    color:#D4AF37;

    text-align:center;

    font-size:14px;

    line-height:28px;


    box-shadow:
    0 0 15px rgba(184,121,58,0.2);

}


.row{

    display:flex;

    justify-content:space-between;

    padding:10px 5px;

    color:white;

    font-size:14px;

}


.row b{

    color:#E0B57A;

}

.gold-line{

    width:80%;

    height:2px;

    margin:20px auto;

    background:
    linear-gradient(
        90deg,
        transparent,
        #D4AF37,
        transparent
    );

}

.stats{

    width:92%;

    margin:15px auto 10px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

}



.stat-box{

    height:42px;

    padding:0 15px;

    border-radius:10px;

    transition:.25s ease;


    background:
    linear-gradient(
        135deg,
        #071426,
        #020617
    );


    display:flex;

    justify-content:space-between;

    align-items:center;


    border:1px solid rgba(56,189,248,.35);


    box-shadow:
    0 0 10px rgba(37,99,235,.25);

}

.stat-box:hover{

    transform:translateY(-3px);

    border-color:#38BDF8;

    box-shadow:

    0 0 15px rgba(56,189,248,.5);

}



.stat-box span{

    font-size:12px;

    color:#F8FAFC;

    font-weight:600;

    letter-spacing:1px;

    text-shadow:
    0 0 6px rgba(255,255,255,.35);

}



.stat-box b{

    font-size:14px;

    color:#FFFFFF;

    font-weight:bold;

    text-shadow:
    0 0 8px rgba(56,189,248,.8);

}

.detail-box{

    width:92%;

    margin:20px auto;

    background:
    linear-gradient(
        180deg,
        #071426,
        #020617
    );

    border:1px solid rgba(56,189,248,.5);

    border-radius:14px;

    overflow:hidden;

    box-shadow:
    0 0 12px rgba(37,99,235,.25);

}


.detail-row{

    display:grid;

    grid-template-columns:42% 58%;

    align-items:center;

    height:42px;

    padding:0 20px;

    border-bottom:

    1px solid rgba(56,189,248,.15);

}


.detail-row:last-child{

    border-bottom:none;

}


.detail-row span{

    color:#94A3B8;

    font-size:13px;

    font-weight:bold;

    letter-spacing:1px;

}


.detail-row b{

    color:#FFFFFF;

    font-size:13px;

    font-weight:bold;

    text-shadow:
    0 0 5px rgba(56,189,248,.5);

}


.copyright{

    width:100%;

    margin-top:10px;

    padding:12px 0;

    text-align:center;

    color:#ffffff;

    font-size:11px;

    letter-spacing:1px;

    opacity:.75;

}

@keyframes bannerGlowMove{

    0%{

        background-position:200% 0;

    }


    100%{

        background-position:-200% 0;

    }

}