* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100vw;
    height: auto;
}




.container {
    width: 100vw;
    height: auto;
    min-width: 300px;
    max-width: 1440px;
    margin: auto;
}

.container.active {
    height: 100vh;
    overflow: hidden;
}


/* header section*/

header {
    background: linear-gradient(to bottom right, #FF8800, #FFD700);
    padding: 1.5rem;
    width: 100%;
    height: auto;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
}



.icon-tab {
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon-subtab {
    position: relative;
    width: fit-content;
    height: fit-content;

    border: 1px solid #fff;
    padding: 3px;
    border-radius: 50%;

    display: flex;
    align-items: center;
}

#icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    animation: anim1 4s infinite;
}

@keyframes anim1 {

    0% {
        transform: rotate(0); 
    }

    15% {
        transform: scale(70%);
    }


    30% {
        transform: rotate(45deg) scale(90%); 
    }


    50% {
        transform: rotate(-45deg) scale(100%); 
    }

    70% {
        transform: rotate(-45deg) scale(120%); 
    }


    90% {
        transform: rotate(-45deg) scale(100%); 
    }

    100% {
        transform: rotate(0deg); 
    }

}
     



header h1 {
    font-size: 1.2rem;
    letter-spacing: 5px;
    position: relative;
    color: #fdfdfd;
    text-transform: uppercase;
    margin: 0;
}


header p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    word-spacing: 5px;
    color: rgb(255, 255, 255);
    opacity: 0.8;
}


#t1,#t2,#t3 {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    margin-bottom: 5px;
}

#t2 {
    width: 20px;
}

#t3 {
    width: 10px;
}

/* header section*/


/* Navigation section*/

.info-tab {
    width: 80%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(to bottom right, #FF8800, #FFD700);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;

    z-index: 200000;
    transform: translateX(-100vw);
    display: none;
}

.info-tab ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    text-align: center;

}

.info-tab ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}


.info-tab.active {
    display: block;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

#close-info {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    float: right;
    margin-top: 20px;

    font-size: 2rem;
    color: #fff;
}

.info-tab.closed {
    transform: translateX(-100vw);
    transition: all 0.6s ease-in-out;
}

/* Navigation section*/



/* advertisment*/

.advertisment {
    width: 100%;
    height: auto;

    overflow-x: hidden;
    color: white;
    /* background: linear-gradient(to right, #FF8800, #FFD700); */
    background-color: black;
    padding: 3px 0;
}

.advertisment p {
    font-size :10px;
    white-space: nowrap;

    animation: anim2 6s linear infinite;
}


@keyframes anim2 {

    0%,100% {
        transform: translateX(-100%); 
    }

    100% {
        transform: translateX(100%);
    }

}








/* about section*/

.about {
    background: red;
    padding: 2rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);

    display: flex;
    gap: 30px;
}



.about-imgs {
    width: 100%;
    height: 15rem;
    position: relative;
    
    margin-bottom: 2rem
}

#img1 {
    width: 80%;
    height: 100%;
    padding: 10px;
    font-size: 0.1em;
    position: absolute;
    top: 30px;
    right: -5px;
    
    animation: anim3 3s infinite;
    overflow: hidden;
}

@keyframes anim3 {
    
    0%{
        color: #FF8800; 
    }
    
    50% {
        color: #FFD700;
    }
    
    100% {
        color: black;
    }
    
}

#img2 {
    width: 80%;
    height: 100%;
    position: absolute;
}


#img2 img {
    width: 100%;
    height: 100%;
}


.about-dts {
    width: 100%;
    height: auto;
}

.about-dts h2 {
    color: black;
    text-align: left;
    margin: 3em 0 1em;
}

.about-dts p {
    color: black;
    text-align: left;
    font-size: 0.7em;
}


.about-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to bottom right, #FF8800, #FFD700);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

@media (max-width:480px) {
    .about {
        display: block;
    }

    .about-dts {
        width: 100%;
    }

    .about-imgs {
        width: 100%;
    }
}
/* about section*/










/*presale section*/

.presale-tab {
    width: 100%;
    background: #fff;
    padding: 2rem;
    margin-bottom: 30px;

    display: flex;
    gap: 3rem;
}


.sect1, .sect2 {
    width:50%;
    position: relative;
}


.connect-wallet-tab {
    width: 100%;
    height: auto;

    background:linear-gradient(to bottom right, #FF8800, #FFD700);
    border-radius: 10px;
    padding: 2rem;
}

.connect-wallet-tab h2 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
}


label {
    display: block;
    margin: 2rem 0 0;
}


input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    margin: 1rem 0;
}

button {
    background: black;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    cursor: pointer;
}

.info-box {
    background: #fff;
    border-radius: 5px;
    margin-top: 2rem;
}

.info-box p {
    color: black;
    text-align: left;
    font-size: 0.7em;
    margin-top: 10px;
}

.info-box ul {
    list-style: none;
    font-size: 0.7em;
}

.info-box ul li{
  padding: 10px;
}

.info-box ul li:first-of-type{
  margin-top: 10px;
}

.address-box {
    background: #fff;
    border: 2px dashed #ff9900;
    padding: 1rem;
    word-break: break-word;
    text-align: center;
    border-radius: 5px;
    margin-top: 2rem;

    animation: anim4 3s infinite;
}

@keyframes anim4 {
    
    0%{
        border-color: #FF8800; 
    }
    
    50% {
        border-color: #FFD700;
    }
    
    100% {
        border-color: black;
    }
    
}



@media (max-width:480px) {
    .presale-tab {
        display: block;
    }

    .sect1, .sect2 {
        width: 100%;
    }
}
/*presale section*/











/*tokenomics section*/
#tokenomics {
    padding: 2rem;
}


#tokenomics h2 {
    margin-bottom: 5px;
}

#tokenomics p {
    margin-bottom: 10px;
    margin-top: 0.5rem;
    font-size: 0.7rem;
}


#tokenomics ul {
    margin-top: 0.5rem;
    opacity: 0.9;
    list-style: none;
    font-size: 0.7rem;
}

#tokenomics ul li {
    padding: 10px;
    background:linear-gradient(to bottom right, #FF8800, #FFD700);
    border-radius: 10px;
    margin-top: 10px;
}

/*tokenomics section*/





/* footer section*/
#join {
    padding: 0 2rem;
}

#join h2 {
    margin-bottom: 1rem;
}

#join p {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
}


footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: white;
    margin-top: 3rem;
}
.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to bottom right, #FF8800, #FFD700);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}


/* footer section*/