@import url('../../css2');

.containerPage{
    flex-direction: column;
    padding: 0 1rem;
}

.textBlack{
    color: black !important;
}

.flexElement{
    display: flex;
    justify-content: center;
    align-items: center;
}

.autoMargin{
    margin: 0 !important;
}

.nonePadding{
    padding: 0 !important;
}

.gradient_text { 

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Press Start 2P", system-ui;
    font-weight: bold;
    animation: bgTextAnimation  infinite linear;
    animation-duration: 1s !important;
    -webkit-animation: bgTextAnimation  infinite linear;

    font-size: 1.5rem !important;
    letter-spacing: .5px;
}
  

.goldContainer{
    position: absolute;
    left: 0;
    top: 0;  
    width: 100%;
    height: 100%;
    object-fit: cover;

    z-index: 0;
    background-image: url('../uploads/2024/10/newgif.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.6;
}


.noneMargin{
    margin: 0 !important;
}

.topPage{
    margin-bottom: 50px;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
 

.goldContainer.v2{
    background-image: url('../uploads/2024/10/bg2.gif');
    
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

.z10{
    z-index: 10;
}

.navbar{
    width: 100%;
    height: auto;
    padding: 20px 0;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
 
    margin-bottom: 2rem;
    gap: 2rem;
}

.imgTitle{
    width: 20%;
    position: relative;
}

.imgTitle img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mirrorImg{
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}

/* navbar */
.navbar li{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.navbar li a{
    color: black;
    cursor: pointer;
    text-decoration: underline;

    font-size: 1em;
    font-family: "Press Start 2P", system-ui;

    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
}

.navbar li:hover a{
    color: white;
}

.navbar li img{
    height: 40px;
    width: auto;
    object-fit: contain;
}


/* about */
.about{
    width: 100%;
    height: auto;
    position: relative;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    
      font-family: "Press Start 2P", system-ui;  font-family: "Press Start 2P", system-ui;  font-family: "Press Start 2P", system-ui;font-family: "Press Start 2P", system-ui;

    font-weight: bold;
}

.wfullInMobile{
    width: 100%;
    min-width: 200px;
}

.aboutThisWeb{
    width: 80%;
    height: auto;
    margin: 0 auto;
}

.about .col{
    width: 30%;
    min-width: 380px;
    max-width: 90%;

    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 2rem;
}

.about .title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about .title span{
    color: black;
    font-size: 1.7em;

    /* letter-spacing: -1px; */
}

.about .title img{
    height: 50px;
    width: auto;
    object-fit: contain;
}

.aboutThis{
    color: black;
    font-size: .7em;
    line-height: 1;
    letter-spacing: .2px;
    
    display: flex; 
    align-items: start;
    flex-direction: column;
}

.howToImage{
    position: relative;
    width: 100%;
    background-color: #000000cc;
    border-radius: 20px;
    padding: 1.5rem 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;

    margin-bottom: 2rem;

    opacity: 1 !important;

    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    gap: 1%;
}

.colImage{
    display: flex;
    flex-direction: column;
    width: 45%;
}

.howToImage .imageContainer{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 1rem;
}

.howToImage img{
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


.contractAddress{
    width: 500px !important;
    min-width: 500px !important;
}

.mediaImg img{
    width: 50px !important;
    height: auto; 
    object-fit: contain;
}

.gifContainer{
    width: 100%;
    height: 300px;

    display: flex;
    align-items: center;
    position: relative;
}

.gifImgContainer{
    position: absolute;
    width: 20%;
    background-color: black;
}

.gifContainer img{
    width: 100%;
    height: auto;

    border: 5px dashed #ffd700;
    /* border-style: groove; */
}

/* pop up */
.pop-up{
    position: fixed;
    width: 100%;
    height: 100%;
 

    left: 0;
    top: 0;

    background-color: rgba(0, 0, 0, 0.555);
    backdrop-filter: blur(30px);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pop-up.active  {
    display: none;
    z-index: -9999;
}

.pop-up img{
    width: 300px;
    height: auto;
    object-fit: contain;

    position: relative; 
}

.enterBtn{
    position: relative;
    border-color: #ffd700;
    border-style: groove;
    border-width: 5px 5px 5px 5px;
    border-radius: 0px 0px 0px 0px;
 
    background-color: black !important;
    padding: .5rem 1.5rem;
}

.enterBtn .goldContainer{
    z-index: 0;
    opacity: 0.6;
}

.enterBtn span{
    z-index: 10;
    position: relative;
    color: rgb(255, 255, 255);

    font-size: 1.25rem;
    font-family: "Press Start 2P", system-ui;
}

/* tokenomics */
.tokenomicsContainer{
    position: relative;
    z-index: 20;
}

.tokenomicsContainer .elementor-column{
    position: relative;
    z-index: 10;
} 

.pbMedium{
    padding-bottom: 2rem;
}

/* media screen */
@media screen and (max-width:768px) {
    body{
        max-width: 100%;
        
        overflow-x: hidden;
    }

    .imgTitle{
        width: 30%; 
    }
    /* navbar */
    .navbar li{
        gap: 1rem;
    }

    .navbar li a{
        font-size:.7em; 
    }

    
    .navbar li img{
        height: 30px; 
    }

    /* popup */
    .pop-up{
        gap: 2rem;
    }

    .pop-up img{
        width: 80%; 
    }

    /* about */
    .about .col{
        width: 80%;
        min-width: 100%;

        padding: 0 1rem;

        align-items: center;
    }
 
    .about .title span{ 
        font-size: 5vw;
    }

    .aboutThis{
        font-size: .6em;
    }

    
    .wfullInMobile,
    .aboutThisWeb{
        width: 100% !important; 
        max-width: 100% !important; 
        min-width: 100%;
    }

    .topPage section{
        width: 100%;
    }
    
    .about .title img{
        height: 30px;
        width: auto;
        object-fit: contain;
    }
  
    .maxWContainerMobile{
        max-width: 100% !important;
 
        width: 260px !important;

        padding: 0 2rem;
    }

    .fontMedium{
        font-size: .85em !important;
    }

    .maxWContainerMobile span.z10{
        width: 80%;
        font-size: .5rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis;
    }

    .howToImage{
        padding: 1.5rem 1rem; 
    }

    .colImage{ 
        width: 100%;
    }

    .contractAddress{
        width: 90% !important;
        min-width: 90% !important;
    }

    .mediaImg img{
        width: 40px !important; 
    }

    .containerPage{
        flex-direction: column;
        padding: 0 1rem 0 .5rem;
    }

    .gifContainer{ 
        height: 100px; 
    }

    .gifContainer img{ 
        border: 3px dashed #ffd700; 
    }

    .tokenomicsContainer{
        height: 670px;
    }
}

/* animation */
.rotateImg{
    animation: rotateImg 10s infinite linear;
    -webkit-animation: rotateImg 10s infinite linear;
}

@keyframes rotateImg {
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
}
}

@keyframes bgTextAnimation {
    0%,100%{
        background: linear-gradient(90deg, red 0%, #ffd700 47.5%, white 100%); 
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    30%{
        background: linear-gradient(90deg, white 0%, red 47.5%, #ffd700 100%);
        
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    60%{
        background: linear-gradient(90deg, #ffd700 0%, white 47.5%,  red 100%);
        
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
 


.walk_animation{
    animation: walk_animation 20s linear infinite;
    -webkit-animation: walk_animation 20s linear infinite;
  }
  
  @keyframes walk_animation {
    0% {
      left: 50px;
      transform: translateY(0%) scaleX(1);
    }
    50% {
      left: calc(80% - 0px);
      transform: translateY(0%) scaleX(1);
    }
    50.01% {
      transform: translateY(0%) scaleX(-1);
      -webkit-transform: translateY(0%) scaleX(-1);
      -moz-transform: translateY(0%) scaleX(-1);
      -ms-transform: translateY(0%) scaleX(-1);
      -o-transform: translateY(0%) scaleX(-1);
  }
    100% {
      left: 50px;
      transform: translateY(0%) scaleX(-1);
    }
  }