/* ESPORT FOOTER */

#footer {
    width: 1080px;
    max-width: 95%;
    margin: 20px auto 0 auto;
    position: relative;

    background: rgba(5, 12, 25, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(0, 140, 255, 0.3);
    border-radius: 10px 10px 0 0;

    box-shadow:
        0 0 15px rgba(0, 140, 255, 0.25),
        inset 0 0 10px rgba(0, 140, 255, 0.15);

    padding: 15px 20px;
    text-align: center;
    color: #d8e9ff;
    font-size: 13px;
}

/* Neon linija gore */
#footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 15px;
    right: 15px;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #00aeff,
        #4d5cff,
        #00aeff,
        transparent
    );

    box-shadow: 0 0 10px #00aeff;
}

/* Linkovi u footeru */
#footer a {
    color: #d8e9ff;
    text-decoration: none;
    transition: all .3s ease;
}

#footer a:hover {
    color: #00aeff;
    text-shadow:
        0 0 5px #00aeff,
        0 0 10px #00aeff,
        0 0 20px #00aeff;
}

/* Copyright tekst */
#footer .copyright {
    opacity: 0.8;
    letter-spacing: 1px;
}