/* ==========================================
   FOOTER AAA
========================================== */

.footer{
    position:relative;
    overflow:hidden;

    margin-top:auto;

    background:
    linear-gradient(
        180deg,
        rgba(3,8,18,.95),
        rgba(1,4,12,1)
    );

    border-top:1px solid rgba(96,165,250,.15);
}

/* ==========================================
   NEBULA
========================================== */

.footer-nebula{

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at 20% 30%,
        rgba(0,180,255,.10),
        transparent 35%
    ),

    radial-gradient(
        circle at 80% 40%,
        rgba(168,85,247,.08),
        transparent 35%
    ),

    radial-gradient(
        circle at 50% 90%,
        rgba(0,255,180,.05),
        transparent 40%
    );

    pointer-events:none;
}

/* ==========================================
   TOP
========================================== */

.footer-top{

    position:relative;

    z-index:2;

    max-width:1600px;

    margin:auto;

    padding:
    80px 40px;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;
}

/* ==========================================
   LOGO
========================================== */

.footer-logo h2{

    font-size:42px;

    font-weight:900;

    margin-bottom:8px;

    background:
    linear-gradient(
        90deg,
        #4adeff,
        #60a5fa,
        #a855f7
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-logo span{

    display:block;

    color:#4adeff;

    letter-spacing:3px;

    margin-bottom:20px;

    font-size:13px;
}

.footer-logo p{

    max-width:400px;

    color:#94a3b8;

    line-height:1.8;
}

/* ==========================================
   LINKS
========================================== */

.footer-links h3,
.footer-status h3{

    margin-bottom:20px;

    color:#fff;

    font-size:18px;
}

.footer-links{

    display:flex;

    flex-direction:column;
}

.footer-links a{

    color:#94a3b8;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-links a:hover{

    color:#4adeff;

    transform:
    translateX(5px);

    text-shadow:
    0 0 10px rgba(74,222,255,.5);
}

/* ==========================================
   SERVER STATUS
========================================== */

.footer-stat{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

    padding:12px 15px;

    border-radius:12px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);
}

.footer-stat span{

    color:#94a3b8;
}

.footer-stat strong{

    color:#fff;
}

.online{

    color:#4ade80;

    text-shadow:
    0 0 10px rgba(74,222,128,.8);
}

/* ==========================================
   DIVIDER
========================================== */

.footer-divider{

    width:100%;
    height:1px;

    background:

    linear-gradient(
        90deg,
        transparent,
        rgba(96,165,250,.4),
        transparent
    );
}

/* ==========================================
   BOTTOM
========================================== */

.footer-bottom{

    max-width:1600px;

    margin:auto;

    padding:
    25px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#64748b;

    font-size:14px;
}

/* ==========================================
   GLOW EFFECT
========================================== */

.footer::after{

    content:"";

    position:absolute;

    left:50%;
    top:0;

    width:600px;
    height:300px;

    transform:
    translateX(-50%);

    background:

    radial-gradient(
        circle,
        rgba(74,222,255,.08),
        transparent 70%
    );

    pointer-events:none;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1100px){

    .footer-top{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-logo p{

        max-width:none;
    }

    .footer-bottom{

        flex-direction:column;

        gap:10px;
    }
}