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 {
    -ms-touch-action: none;
}

/*** Styles added to fix the issue with zoom in on iphone ***/
/* iPhone < 5: */
@media screen and (device-aspect-ratio: 2/3) {
    select, textarea, input[type="text"], input[type="password"],
    input[type="datetime"], input[type="datetime-local"],
    input[type="date"], input[type="month"], input[type="time"],
    input[type="week"], input[type="number"], input[type="email"],
    input[type="url"]{ font-size: 16px; }
}

/* iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40/71) {
    select, textarea, input[type="text"], input[type="password"],
    input[type="datetime"], input[type="datetime-local"],
    input[type="date"], input[type="month"], input[type="time"],
    input[type="week"], input[type="number"], input[type="email"],
    input[type="url"]{ font-size: 16px; }
}

/* iPhone 6, iPhone 6s, iPhone 7 portrait/landscape */
@media screen and (device-aspect-ratio: 375/667) {
    select, textarea, input[type="text"], input[type="password"],
    input[type="datetime"], input[type="datetime-local"],
    input[type="date"], input[type="month"], input[type="time"],
    input[type="week"], input[type="number"], input[type="email"],
    input[type="url"]{ font-size: 16px; }
}

/* iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus portrait/landscape */
@media screen and (device-aspect-ratio: 9/16) {
    select, textarea, input[type="text"], input[type="password"],
    input[type="datetime"], input[type="datetime-local"],
    input[type="date"], input[type="month"], input[type="time"],
    input[type="week"], input[type="number"], input[type="email"],
    input[type="url"]{ font-size: 16px; }
}

.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: 'RoundedMplus1c';
}
                
@font-face {
    font-family: 'RoundedMplus1c';
    src: url('subset-RoundedMplus1c-Bold.woff2') format('woff2'),
        url('subset-RoundedMplus1c-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Wallet Modal Overlay Styles */
#wallet-gate {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
}

#wallet-modal {
    background: #181c24;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 40px 32px 32px 32px;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    border: 2px solid #3a3f4b;
}

#wallet-message {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 28px;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
    letter-spacing: 0.5px;
}

#connect-wallet-btn {
    background: linear-gradient(90deg, #ffcc00 0%, #ff8800 100%);
    color: #222;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 16px;
    padding: 14px 36px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
}

#connect-wallet-btn:hover, #connect-wallet-btn:focus {
    background: linear-gradient(90deg, #ff8800 0%, #ffcc00 100%);
    color: #000;
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.18);
}

/* Verification Modal Overlay Styles */
#verify-modal {
    position: fixed;
    z-index: 10000;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
}

#verify-modal-content {
    background: #23283a;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    padding: 48px 36px 36px 36px;
    min-width: 340px;
    max-width: 95vw;
    text-align: center;
    border: 2.5px solid #ffcc00;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#verify-modal-img {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(255,204,0,0.12);
    background: #181c24;
    object-fit: contain;
}

#verify-message {
    color: #fff;
    font-size: 1.18rem;
    margin-bottom: 28px;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

#verify-btn {
    background: linear-gradient(90deg, #ffcc00 0%, #ff8800 100%);
    color: #222;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 16px;
    padding: 14px 36px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    margin-top: 8px;
}

#verify-btn:hover, #verify-btn:focus {
    background: linear-gradient(90deg, #ff8800 0%, #ffcc00 100%);
    color: #000;
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.18);
}

#verify-error {
    font-size: 1rem;
    font-family: 'RoundedMplus1c', Arial, sans-serif;
    margin-top: 12px;
}

#verify-spinner svg {
    display: block;
    margin: 0 auto;
}
