root { 
    display: block;
}

body{
    background-color: #000000;
    background-repeat: repeat-x;
    background-position: top; 
}

*, *:before, *:after {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
     
input, input:before, input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

::selection { background: transparent;color:inherit; }
::-moz-selection { background: transparent;color:inherit; }

#canvas{
    position: fixed; 
}

canvas {
    image-rendering: optimizeSpeed;
    image-rendering:-o-crisp-edges;
    image-rendering:-webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
	-ms-touch-action: none;
}

.ani_hack{
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* mobile webkit */
}

/***************FONTS*******************/
.check-fonts{
                position: fixed;
                opacity:0;
}

.check-font-1{
        font-family: 'Lora';
}




@font-face {
    font-family: 'Lora';
    src: url('lora-bold-webfont.eot');
    src: url('lora-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('lora-bold-webfont.woff2') format('woff2'),
         url('lora-bold-webfont.woff') format('woff'),
         url('lora-bold-webfont.ttf') format('truetype'),
         url('lora-bold-webfont.svg#lora-bold') format('svg');
    font-weight: normal;
    font-style: normal;

}


/* ==================== MOBILE RESPONSIVE STYLES ==================== */

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 10px 15px !important;
    }
    
    /* Navigation menu */
    nav {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    nav a {
        display: block !important;
        width: 100% !important;
        padding: 12px 15px !important;
        margin: 5px 0 !important;
        font-size: 14px !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    /* User info section */
    .user-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 10px 15px !important;
    }
    
    .user-info span {
        display: block !important;
        width: 100% !important;
        padding: 8px 0 !important;
        font-size: 14px !important;
    }
    
    /* Buttons in header */
    header button,
    header .btn {
        width: 100% !important;
        margin: 5px 0 !important;
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    /* Logo/Title */
    h1, header h1 {
        font-size: 20px !important;
        margin: 10px 0 !important;
    }
    
    /* Balance display */
    .balance,
    #balance {
        font-size: 16px !important;
        padding: 10px !important;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    nav a {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
    
    h1, header h1 {
        font-size: 18px !important;
    }
    
    .balance,
    #balance {
        font-size: 14px !important;
    }
}