/* ==== ONLINE xXx ==== */

/* ==== RESET ==== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",Arial,Helvetica,sans-serif;
}

/* ==== BODY ==== */

html,
body{
    height:100%;
}

body.online{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

/* ==== CONTAINER ==== */

.container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:0 20px 20px;
    flex:1;
}

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

.header{
    text-align:center;
    margin-bottom:10px;
    padding-top:10px;
}

.header h1{
    font-size:34px;
}

.header p{
    margin-top:5px;
    color:#e5e7eb;
}

/* ==== LINKS ==== */

.links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:5px;
}

.links a{
    flex:0 0 auto;
    min-height:55px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:5px;
    padding:12px 16px;
    line-height:1.3;
    text-align:left;
    text-decoration:none;
    color:#fff;
    font-weight:bold;
    border-radius:12px;
    background:rgba(37,99,235,.05);
    backdrop-filter:blur(3px);
    transition:.25s ease;
}

.links a img{
    width:24px;
    height:24px;
    object-fit:contain;
    flex-shrink:0;
}

.links a:hover{
    background:rgba(37,99,235,.65);
    transform:translateY(-10px);
}

/* ==== BACK ==== */

.back{
    position:relative;
    z-index:2;
    text-align:center;
}

.back a{
    display:inline-block;
    padding:10px 20px;
    background:linear-gradient(
        45deg,
        #2563eb,
        #06b6d4,
        #8b5cf6,
        #2563eb
    );
    background-size:300% 300%;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    animation:warna 5s ease infinite;
}

.back a:hover{
    background:#1d4ed8;
}

/* ==== FOOTER ==== */

.bottom-wrapper{
    width:100%;
    text-align:center;
    padding-bottom:70px;
}

.footer{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    z-index:9999;
    pointer-events:none;

    text-align:center;
    padding:8px 0 10px;

    color:#ffffff;
    font-weight:bold;

    background:transparent;
}
/* ==== ANIMATION ==== */

@keyframes warna{
    0%{
        background-position:0% 50%;
        box-shadow:0 0 15px #2563eb;
    }
    50%{
        background-position:100% 50%;
        box-shadow:0 0 20px #8b5cf6;
    }
    100%{
        background-position:0% 50%;
        box-shadow:0 0 15px #06b6d4;
    }
}
