/* wolrider.com page */

@font-face {
    font-family: 'Binary-CHR-BRK';
    src:url('../fonts/Binary-CHR-BRK.ttf.woff') format('woff'),
        url('../fonts/Binary-CHR-BRK.ttf.svg#Binary-CHR-BRK') format('svg'),
        url('../fonts/Binary-CHR-BRK.ttf.eot'),
        url('../fonts/Binary-CHR-BRK.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ethnocentric';
    src: url('../fonts/ethnocentricrg.otf');
  }
  
  @font-face {
    font-family: 'Halftone_Poster';
    src: url('../fonts/Halftone_Poster.otf');
  }
  
  @font-face {
    font-family: 'TerminaTest-Regular';
    src: url('../fonts/TerminaTest-Regular.otf');
  }
  
  @font-face {
    font-family: 'Belwe Gotisch Regular';
    src: url('../fonts/Belwe Gotisch Regular.ttf');
  }

  @font-face {
    font-family: 'Minion Variable Concept';
    src: url('../fonts/Minion Variable Concept.otf');
  }

#bg-video {
    z-index: -5 !important;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

*{
    z-index: 1;
    cursor: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-optical-sizing: auto !important;
    font-weight: 500 !important;
    font-style: normal !important;
}

body{
    background-color: black;
    width: 100vw;
    height: 100vh;
    font-size: 30px;
}

#screen{
    z-index: 99 !important;
    width: 100vw;
    height: 100dvh;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.loading{
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video{
    z-index: -1 !important;
}

#wolriderLoadingLogo{
    width: 150px;
    height: 150px;
    animation: wolriderLoadingLogoAnim normal 2s infinite;
}

@keyframes wolriderLoadingLogoAnim {
    0%{
        opacity: 0%;
    } 

    50%{
        opacity: 100%;
    }

    100%{
        opacity: 0%;
    }
}

#content{
    background-color: rgba(0, 0, 0, 0.2);;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

#contentTop{
    font-family: 'Belwe Gotisch Regular' !important;
}

#contentBottom{
    font-family: 'Minion Variable Concept' !important;
}

#contentTop, #contentBottom{
    width: 350px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.hidden{
    display: none !important;
}

a{
    color: inherit;
    text-decoration: inherit;
    position: relative;
    
}

.custom-cursor {            
    position: fixed;
    width: 40px;
    height: 40px;
    border:3px solid white;
    background-color: white;
    border-radius:50%;
    box-shadow: 2px -3px 41px -1px rgba(250,250,250,0.64);
    pointer-events: none;
    z-index: 9999 !important;
    transition: all 0.1s linear; 
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(1.5);
}

#featured {
    font-family: 'Minion Variable Concept';
    font-size: 20px !important;
    max-width: calc(100vw / 3);
    position: fixed;
    right: 15px;
    bottom: calc(100vh / 3);
    border-radius: 6px;
    background-color: black;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#featured.visible {
    opacity: 1;
    transform: translateY(0);
}

#featured > a{
    display: flex;
    gap: 8px;
}


@media (min-width: 640px) {
    #featured {
        max-width: calc(100vw / 2);
    }
}