:root {
    --logo-red: rgb(247, 72, 67);
}

body{
    background-color: #404040;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}
nav{
    z-index: 1;
}
nav.navbar{
    position: fixed;
    top: 0;
    width: 100%;
}

main{
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    min-height: calc(100vh - 189px - 90px);
    color: white;
    text-align: center;
}

footer{
    min-height: 189px;
}

main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/concrete.webp);
    background-position: center;
    filter: brightness(0.85) contrast(0.9);
    z-index: -1;
    background-repeat: repeat;
}
.custom-footer-container{
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}
.custom-navbar-container{
    max-width: 960px;
}

@media (max-width: 992px) { 
    main{
        min-height: calc(100vh - 324px - 91px);
    }
}

.social{
    font-size: large;
}

.discord>a>i:hover{
    color: #5865F2;
}

.youtube>a>i:hover{
    color: #FF0033;
}

.tiktok>a>i:hover{
    color: #25F4EE;
}

.instagram:hover{
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.navbar-brand{
    margin: 0 !important; 
    padding: 0 !important;
    border: none;
    overflow: hidden; 
    box-shadow: none;    
    transition: box-shadow 0.5s ease, transform 0.3s ease, border-radius 0.3s ease; 
}

.navbar-brand:hover{
    border-radius: 15px;
    box-shadow: 0 0 10px #F74843; 
    transform: scale(1.05); 
}

.nav-link{
    position: relative;
    width: fit-content;
}

.nav-link::before{
    content: "";
    position: absolute;
    left: 5px;
    bottom: 10px;                   
    width: calc(100% - 10px);
    height: 2px;  
    background-color: #0A66C2;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s ease;  
}
.nav-link:hover::before{
    transform: scaleX(1);
}

.active::after{
    content: "";
    position: absolute;
    left: 5px;
    bottom: 9px;                   
    width: calc(100% - 10px);
    height: 3px;                 
    background-color: #F74843;   
    border-radius: 2px;
}

@media (max-width: 992px) {
    .nav-link::before{
        left: 0px;
        width: 100%;
    }
    .active::after{
        left: 0px;
        width: 100%;
    }
}

#notify-container{
    margin-top: 4.5rem;
    max-height: calc(100% - 4.5rem);
    overflow: hidden; 
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
    overscroll-behavior: auto;
    >div{
        width: 280px;
    }
}

#notify-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.vh-60{
    height: 60vh;
}