/**
* Name: Hypackel Games Styles
* Template URL: https://hypackel.com
* Updated: May 13 2024 with Bootstrap v5.3.3
* Author: Hypackel
* License: Private Code
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');
@font-face {
    font-family: mine;
    src: url('/assets/fonts/mincrap.otf');
}

#main-title-home {
    color: #fff;
    width: 100vw;
    max-height: 10vh;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 40vh;
    position: absolute;
    z-index: -1;
    font-family: mine;
    /* text-shadow: 10px 10px rgba(0, 0, 0, 0.7); */
    font-size: 4rem;
    transform: scale(1, 1);
    transform-origin: center;
    font-stretch: ultra-expanded;
    text-align: center;
}

/* include border and padding in element width and height */
* {
    box-sizing: border-box;
  }

body{
    background-color: var(--background) !important;
}
a{
    
}

a{
    color: var(--text);
    text-decoration: none !important;
}


::-webkit-scrollbar {
    width: 16px
}

::-webkit-scrollbar-thumb {
    background: rgba(254, 25, 30,0.9);
    border: 4px solid transparent;
    background-clip: content-box;
    border-radius: 8px
}

.fixed-nav-bar {
    top: 0;
    max-width: 100vw;
    margin: auto;

    letter-spacing: 2px;
    font-size: 22px;
    left: 0;
    right: 0;
    min-height: 10vh;
    padding: 0 25px;
    box-sizing: border-box;
    background-color: var(--background);
    /* box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5); */
    -webkit-backdrop-filter: var(--background-filter);
    backdrop-filter: var(--background-filter);
    transition: 0.35s ease;
    border-radius: 5px;
    width: fill;
    margin-top: 15px;
    z-index: 100;
    position: absolute;
}

.fixed-nav-bar .icon:hover {
    transform: translateY(-55%) scale(1.03);
    font-weight: 800;
}

.fixed-nav-bar .icon {
    position: absolute;
    float: left;
    /* text-transform: uppercase; */
    font-size: 30px;
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    color: var(--text);
    font-weight: 600;
    margin-left: 5px;
    font-style: normal;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 0.5vh;
    width: 0.5vh;
    top: 18%;
}

.fixed-nav-bar-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* text-transform: uppercase; */
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
    right: 2%;
}

.fixed-nav-bar-right .navbar-link {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    margin-left: 10px;
    /* text-transform: uppercase; */
    font-size: 2.5vh;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 800;
    right: 2%;
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    text-decoration: none;
    transition: all 0.2s ease;
    transform: translateX(0%);
}


.fixed-nav-bar-right .navbar-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

@media (orientation: portrait) {
    .fixed-nav-bar-right .navbar-link {
        margin-left: 10px;
        /* text-transform: uppercase; */
        font-size: 2.5vw;
        cursor: pointer;
        color: var(--text-primary);
        font-weight: 800;
        right: 2%;
        font-family: 'Exo 2', sans-serif;
        font-style: normal;
        text-decoration: none;
        transition: all 0.2s ease;
        transform: translateX(0%);
    }
    .fixed-nav-bar-right .navbar-link:hover {
        /* text-transform: uppercase; */
        cursor: pointer;
        font-weight: 800;
        font-family: 'Exo 2', sans-serif;
        font-style: normal;
        font-size: 3vw;
        transform: translateX(-20%);
    }
}

.fixed-nav-bar-right .navbar-link:hover {
    /* text-transform: uppercase; */
    cursor: pointer;
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
    font-style: normal;
    font-size: 3vh;
    transform: translateX(-20%);
}

.navbar-icon {
    color: var(--primary) !important;
    margin-right: 5px;
    transition: all 0.2s ease;
}

.navbar-link {
    margin-right: 5px;
    font-size: 3vh;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'48;
}

.navbar-link:hover>.settings-icon {
    animation: spin 0.5s;
    animation-timing-function: cubic-bezier(0, 1.04, 0.91, 0.99);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
 


#HYimg {
    max-width: 10vw;
   display: flex;
   flex-direction: row;
   align-items: center;
}

@media (min-width: 1000px) {
    #HYimg {
        width: 5vw; /* Adjust as needed */
    }
}

@media (max-width: 1200px) {
    #HYimg {
        width: 3.5vw; /* Adjust as needed */
    }
}

@media (max-width: 768px) {
    #HYimg {
        width: 3vw; /* Adjust as needed */
    }
}

@media (orientation: portrait) {
    #HYimg {
        width: 4vw;
        padding-top: 10vh;
        margin-bottom: 1vh;
    }
}


@media only screen and (min-width: 700px) {
    .fixed-nav-bar {
        display: block !important;
    }
    header {
        display: none;
    }

}

.manicontent{
    min-height: 100vh;
    z-index: 1;
    position: static;
}

.search-container{
    /* top: 80vh; */
    height: auto;
    /* flex-wrap: wrap; */
    z-index: 2;
    /* position: absolute; */
    /* min-height: 100vh; */
    align-items: center;
    display: flex;
    vertical-align: middle;
    justify-content: center;
}

#roundiconbuttonn{
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px;
    border-radius: 58%;
    transition: 0.5s;
}

#roundiconbuttonn>i{
    color: #fff !important;
    /* font-size: ; */
}



#roundiconbuttonn:hover{
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 20%;
}

#realtime{
    z-index: -1;
    max-width: 10vw;
    text-decoration: none;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    font-size: 16px;
    /* width: 5vw; */
    border-radius: 50px;
}


.leftside{
    text-decoration: none;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    font-size: 16px;
}

.centerside{
    z-index: -4;
    color: #fff;
    text-decoration: none;
    bottom: 0;
    /* top: 100vh; */
    left: 0;
    /* max-width: 100v; */
    right: 0;
    margin: 2px;
    position: absolute;
    text-align: center;
    justify-content: center;
    display: flex;
    /* align-items: center; */
}


a{
    color: #fff;
    text-decoration: none;
}


.notextdecor{
    color: #fff !important;
    text-decoration: none !important;
}


.legalbutton{
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.legalbutton:hover{
    color: #428bca;
    /* text-decoration: underline; */
}

.rightside{
    color: #fff !important;
    text-decoration: none !important;
    bottom: 0;
    /* top: 100vh; */
    left: 0;
    right: 0;
    margin: 10px;
    position: absolute;
    text-align: right;
    justify-content: right;
    display: flex;
    /* align-items: center; */
}






.searchbar{
    border-radius: 10px;
    padding: 12px 13px 12px 13px;
    background-color: #000;
    /* box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5); */
    box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.5);
    color: #fff;
    /* box-shadow: #fe1a1e; */
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 30vw;
    display: flex;
    align-items: center;
    transition: 0.7s;
}

.searchbar:focus{
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.8);
    width: 40vw;
    padding: 12px 20px 12px 20px;
}

.searchbar:active{
    padding: 12px 20px 12px 20px;
}

@media only screen and (max-width: 1000px) {
    .fixed-nav-bar {
        display: none !important;
    }
    header {
        display: block;
    }
}
@media only screen and (min-width: 1000px) and (max-width:1200) {
    .fixed-nav-bar {
        display: block !important;
        padding-bottom: 10px;
    }
    header {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .fixed-nav-bar {
        display: none !important;
    }
    header {
        display: block;
    }
}

@media only screen and (max-width: 425px) {
    .fixed-nav-bar {
        display: none !important;
    }
    .header {
        display: block;
    }
}


.appscontainer{
    display: flex;

}



#gamrscount{
    color: #0D6EFD;
    font-weight: bold;
}

.whoweare{
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 70vw;
    flex-wrap: wrap;
    display: flex;
    position: relative;
    justify-content: center;
    text-align: center;
}


.footerbuttons{
    border-radius: 10px;
    /* padding: 5px; */
    background-color: rgba(0, 0, 0, 0);
    transition: 0.5s;
    color: #fff;
}
.footerbuttons:hover{
    border-radius: 5px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #939393;
}



/* 
________________________________________________________________
Themes Stuff
________________________________________________________________
*/


@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Major+Mono+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Space+Grotesk:wght@300..700&display=swap');

*{
    font-family: inherit;
  }
  
    .fixed-nav-bar-right>a {
      color: var(--text) !important;
      background-color: var(--secondary) !important;
    }


  
    #sidebar>.sidebar-item.active {
      font-weight: bold !important;
      background: var(--secondary) !important;
      background-color: var(--secondary) !important;
      color: var(--text) !important;
    }
  
    i {
      color: var(--primary) !important;
    }
  
    body,
    p,
    h1:not(.title),
    h2,
    h3,
    h4,
    h5,
    h6,
    a,
    button,
    b,
    select,
    textarea {
      color: var(--text) !important;
      font-family: var(--font);
    }
  
  
    body {
      background: var(--background) !important;
    }

.messageOfDayDontRead{
    color: var(--secondary) !important;
    font-size: 10px;
}



.context-right-menu {
    z-index: 1000000000 !important;
    transition: 0.7s;
    border-radius: 10px;
    position: absolute;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    backdrop-filter: saturate(180%) blur(10px);
}

.context-right-menu ul {
    padding: 0px;
    margin: 0px;
    min-width: 150px;
    list-style: none;
}

.context-right-menu ul li {
    padding-bottom: 7px;
    padding-top: 7px;
}

.context-right-menu ul li a {
    transition: 0.2s;
    text-decoration: none;
    color: #fff;
}

.context-right-menu ul li a:hover {
    color: rgba(255, 255, 255, 0.659);
}

.context-right-menu ul li {
    transition: 0.7s;
}

.context-right-menu ul li:hover {
    border-radius: 10px;
    color: white;
    background: linear-gradient(-45deg, rgb(115, 11, 14), rgb(10, 23, 87));
}