::-webkit-scrollbar {
    width: 12px
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 6px
}

::-webkit-scrollbar-track {
    background-color: #222
}

html {
    scrollbar-color: #333 #222;
    scrollbar-width: thin
}

body {
    scrollbar-face-color: #333;
    scrollbar-track-color: #222;
    -ms-overflow-style: none
}

body::-webkit-scrollbar {
    width: 12px
}

body::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 6px
}

body::-webkit-scrollbar-track {
    background-color: #222
}

body {
    scrollbar-face-color: ButtonText;
    scrollbar-track-color: ThreeDDarkShadow
}
/*----------------------------------------*/
body {
    font-family: monospace;
    margin: 0px
}

.dark-theme {
    backdrop-filter: blur(10px);
    background-color: #1a1a1a55;
    user-select: none;
    color: #fff
}

.blanr-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 999999;
    box-shadow: 0 20px 50px #000
}

.logo {
    width: 128px;
    height: 50px;
    margin: -10px;
    margin-left: 0;
    cursor: pointer;
    z-index: 99999;
    position: relative;
    background-image: url(../../midias/logoLN.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat
}

.logo::before {
    content: 'Linux N - NascaED';
    position: absolute;
    width: 0%;
    height: 16px;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    padding: 3px 0;
    overflow: hidden;
    font-family: monospace;
    text-align: center;
    background: linear-gradient(to right, #1362C2, #059FF7);
    transition: width 0.3s ease
}

.logo:hover::before {
    width: 100%
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    margin-right: 15px
}

nav ul li {
    margin-right: 20px
}

nav ul li a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 18px;
    font-family: monospace;
    position: relative;
    transition: color 0.3s ease
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #1362C2, #059FF7);
    transition: width 0.3s ease
}

nav ul li a:hover::before {
    width: 100%
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    transition: color 0.3s ease
}

@media only screen and (min-width: 769px) {
    body {
        padding-top: 70px
    }

    .blanr-header {
        position: fixed;
        width: 100%;
        top: 0;
        box-shadow: 0 20px 50px #000
    }

    .blanr-header:hover {
        background-color: #262626
    }

    .blanr-header:hover .menu-toggle {
        color: #ecf0f1
    }
}

@media only screen and (max-width: 768px) {
    .carousel-arrow {
        opacity: 1;
    }
    body {
        padding-top: 70px
    }
    .blanr-header {
        position: fixed;
        width: 100%;
        top: 0
    }

    .blanr-header:hover {
        background-color: #262626
    }

    .menu-toggle {
        font-size: 36px;
        margin-top: -16px;
        display: block;
        margin-right: 40px;
        color: #ecf0f1
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 10px
    }

    nav.active {
        display: flex;
        flex-direction: column;
        background: linear-gradient(to right, #1362C2, #059FF7);
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        box-shadow: 0 20px 50px #000;
        padding: 10px 0;
        font-size: 16px;
        z-index: 200
    }

    nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 10px
    }

    nav ul li a {
        font-size: 1.2em
    }
}

/*Itens Gerais-----------------------------------*/
button {
    z-index: 9;
    padding: 10px 40px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #3498db;
    color: #fff;
    background: linear-gradient(to right, #1362C2, #059FF7);
    border-radius: 5px;
    letter-spacing: 8px;
    transition: all 0.1s
}

button:hover {
    border-color: #fff;
    color: #fff
}

a {
    text-decoration: none;
    color: #aaa;
    font-size: 16px;
    font-family: monospace;
    position: relative;
    transition: color 0.3s ease
}

a:hover {
    color: #fff
}

a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #1362C2, #059FF7);
    transition: width 0.1s ease
}

a:hover::before {
    width: 100%
}