*{
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
body {
    font-family: 'Michroma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    line-height: 1.8;
  
}
/*Header styling*/
header {
    background-color: white;
    color: black;
    padding: 20px;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #444;
    animation: fadeIn 2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    flex-wrap: wrap; 
    box-sizing: border-box;
    position: fixed;
    z-index: 1000;
}

.header-logo {
    margin-right: 20px;
}
.header-text{
    font-size: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.header-text.visible{
    opacity: 1;
    transform: translateY(0);
}
/*Navbar styling*/
.nav-design {
    display: flex;
    gap: 20px; 
    background-color: black;
    padding: 1.5rem 3rem;
    border-radius: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.nav-design.visible{
    opacity: 1;
    transform: translateY(0);
}
.nav-design a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

.nav-design a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white; 
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-design a:hover {
    color: white;
}

.nav-design a:hover::after {
    width: 50%;
    left: 0;
}
header button{
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Michroma', sans-serif;
    cursor: pointer;
    display: block;
    transition:.4s ease-out;
}
header button:hover {
    background-color: black;
    color: white;
    transform: scale(1.05);
}

/*Hero styling*/
    .hero {
        text-align: center;
        padding: 100px 20px;
        background-color: white;
        color: black;
        animation: slideInUp 2s ease;
        display: flex;
        align-items: center;
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 20px; 
        max-width: 100%;
        z-index: 1;
        position: relative;
        padding-top: 120px; /* Added padding to avoid overlap with header */
    }
    
    .hero-text {
        flex: 1; 
        max-width: 60%; 

    }
    
    .hero-img {
        flex: 1;
        max-width: 140%;

    }
    
    .hero-img img {
        width: 70%; 
    }
    
.hero-text{
    padding: 2rem;

}
.lucrative-token{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.lucrative-token.visible{
    opacity: 1;
    transform: translateY(0);
}
@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.lucrative-token {
    animation: rotateImage 5s linear infinite, floatImage 3s ease-in-out infinite;
}


.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px;
    color: black;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.hero h1.visible{
    opacity: 1;
    transform: translateY(0);
}
.hero p {
    font-size: 1em;
    margin-bottom: 30px;
    color: black;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.hero p.visible{
    opacity: 1;
    transform: translateY(0);
}
.hero img {
    display: block;
    margin: 0 auto;
    position: relative;
    right: -20px;
}
.hero button {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Michroma', sans-serif;
    cursor: pointer;
    display: block;
    margin: 10px auto 0;
    transition:.4s ease-out;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.hero button.visible{
    opacity: 1;
    transform: translateY(0);
}
.hero button:hover {
    background-color: black;
    color: white;
    transform: scale(1.05); 
}

/*Roadmap styling*/
.vision,.roadmap, .tokenomics {
    text-align: center;
    padding: 150px 20px;
}
.roadmap h2{
    font-size: 3rem;
    color: white;
}

   
.roadmap {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    padding: 40px 20px;
 
    margin: auto;
    text-align: center;
    background-color: black;
    color: white;
}


.roadmap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; 
    width: 100%;
    margin-bottom: 20px;
}

.roadmap-img img {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}
.roadmap-image{
    opacity: 0;
    transform: translateY(50px)
}
.roadmap-image.visible{
    opacity: 1;
    transform: translateY(0);
}
.roadmap-text {
    flex: 1; 
    width: 100%;
    color: white;
    border: 1px solid white;
    border-radius: 15px;
    padding: 2rem;
 
}
.roadmap-text p{
    opacity: 0;
    transform: translateY(50px);
}
.roadmap-text p.visible{
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item p{
    color: white;
   
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.roadmap-item p.visible{
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    /* Mobile screen nav menu display none for devices upto 768 px*/
    #small-nav-links, .burger-menu {
        display: none;
    }

    /* Adding top and bottom margins for this sections to make it less smashed */
    
    .roadmap {
        margin-top: 150px;
        margin-bottom: 100px;
    }

    .tokenomics-info-first-paragraph {
        line-height: 1.5;
    }

    .roadmap {
        flex-direction: row;
        align-items: center; 
        justify-content: center; 
        text-align: left;
    }

    .roadmap-img {
        flex: 1;
        margin-right: 20px;
        width: 80%;
    }

    .roadmap-text {
        flex: 1;
    }
}

.vision, .roadmap {
    color: black;
    animation: slideInLeft 2s ease;
}

/*Tokenomics styling*/
.tokenomics {
    background-color: white;
    color: black;
    animation: fadeIn 2s ease;
    display: flex;
    flex-wrap: wrap; 
    flex-direction: column; 
    align-items: center; 
    justify-content: space-between;
    margin: auto;
    text-align: center;

}
.tokenomics-info{
    flex: 1;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.tokenomics-info.visible{
    opacity: 1;
    transform: translateY(0);
}
.tokenomics-info h1{
    font-size: 4rem;
}
.tokenomics-info p{
    font-size: 20px;
}
.tokenomics-chart{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; 
    max-width: 50%;
    width: 40%;
    margin-top: 5rem;
    padding: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.tokenomics-chart.visible{
    opacity: 1;
    transform: translateY(0);
}

/*Token-info styling*/
#token-info {
    text-align: center;
    padding: 150px 20px;
    background-color: black;
    color: white;
    animation: fadeIn 2s ease;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
#token-info.visible{
    opacity: 1;
    transform: translateY(0);
}
#token-info h2, #community h2, .contact h2{
    font-size: 2.5em;
    margin-bottom: 30px;
}
.token-info{
    padding: 2rem;
}
#token-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.tokenomics-legend {
    color: #4f4f4f;
    font-family: 'Michroma', sans-serif;
    font-size: 14px;
    margin-top: -1rem;
    margin-bottom: 2rem;
    text-align: center;
}
.tokenomics-legend span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #505050;
    margin-right: 8px;
    border-radius: 2px;
    vertical-align: middle;
}
#liquidity-pool, .solscan, .tronscan, .download-button, #token-address, #staking {
    width: 330px;
    height: 56px;
    overflow: hidden;
    border: none;
    color: black;
    background: none;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 0;
}
text .new{
    margin-bottom: 20;
}
  .Btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%; 
    max-width: 350px; 
    padding: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px auto;
}

.new {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
  
    text-align: left;
    padding-right: 10px; 
}

#svgIcon {
    flex-shrink: 0;
}


@media (max-width: 480px) {
    .Btn {
        width: 95%;
        max-width: 95%;
    }
}


#svgIcon svg {
    height: 1.3em;
    width: 1.3em;
    transition: fill 0.3s;
}


.tooltip {
    visibility: hidden;
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.Btn:active .tooltip {
    visibility: visible;
}

/*Community styling*/
  #community h2{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  #community h2.visible{
    opacity: 1;
    transform: translateY(0);
  }

ul {
    list-style: none;
  }
  /*icon styling*/
  .example-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 0.8rem;

    padding: 1rem;
    margin: 0;
  
  }
  .example-2 .icon-content {
    padding: .2rem 1rem;
    margin: 0;
    position: relative;
  }

  .example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: black;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  .example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
  }

  .example-2 .icon-content a i {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    text-align: center;
    color: black;
  }
  .icon-content{
    display: flex;
  }
  .example-2 .icon-content a i:hover {
    color: white;
  }

    .example-2 .icon-content a .filled {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: #000;
        transition: all 0.3s ease-in-out;
        
    
  }
  .example-2 .icon-content a:hover .filled {
    height: 100%;
  }
  
  .example-2 .icon-content a[data-social="Telegram"] .filled,
  .example-2 .icon-content a[data-social="Telegram"] ~ .tooltip {
    background-color: #0274b3;
  }
  
  .example-2 .icon-content a[data-social="Twitter"] .filled,
  .example-2 .icon-content a[data-social="Twitter"] ~ .tooltip {
    background-color: skyblue;
  }
  .example-2 .icon-content a[data-social="instagram"] .filled,
  .example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
    background: linear-gradient(
      45deg,
      #405de6,
      #5b51db,
      #b33ab4,
      #c135b4,
      #e1306c,
      #fd1f1f
    );
  }
  .example-2 .icon-content a[data-social="youtube"] .filled,
  .example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
    background-color: #ff0000;
  }
  
  /* GitHub styling */
  .example-2 .icon-content a[data-social="github"] .filled,
  .example-2 .icon-content a[data-social="github"] ~ .tooltip {
    background-color: #000000; /* GitHub black */
}

  /*Contact styling*/
.contact {
    text-align: center;
    padding: 100px 20px;
    background-color: white;
    color: black;
    animation: fadeIn 2s ease;
    margin-bottom: 50px;
   
}
.contact h2, .contact p{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.contact h2.visible, .contact p.visible{
    opacity: 1;
    transform: translateY(0);
}
.contact p{
    padding:1rem 3rem;
}

form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; 
}


label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}


input,
textarea {
    width: calc(100% - 20px); 
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

input:focus,
textarea:focus {
    border-color: black;
    outline: none;
    box-shadow: black;
}

textarea {
    height: 120px;
    resize: vertical;
}


.submit {
    display: block;
    width: calc(100% - 20px);
    padding: 12px;
    background: black;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.submit:hover {
    background: #ccc;
    color: black;
}

#community {
    text-align: center;
    padding: 100px 20px;
    background-color: black;
    color: white;
    animation: fadeIn 2s ease;
    margin-bottom: 50px;
}

/*Footer styling*/
footer {
    background-color: white;
    color: black;
    text-align: center;
    padding: 50px 20px;
    margin-top: 100px;
    border-top: 2px solid #444;
    animation: fadeIn 2s ease;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
footer.visible{
opacity: 1;
transform: translateY(0);
}

/* SNS Badge Styling */
footer a.sns-badge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

footer a.sns-badge img {
    height: 24px;
    width: auto;
}

footer a.sns-badge span {
    font-family: 'Michroma', sans-serif;
    color: #ffffff;
    margin-left: 8px;
    font-size: 0.95rem;
    word-break: break-word;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    footer a.sns-badge span {
        font-size: 0.85rem;
    }

    footer a.sns-badge img {
        height: 20px;
    }
}

/*Media queries styling*/
@media (max-width: 768px) {

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Michroma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    line-height: 1.8;
    width: 100%;
  box-sizing: border-box;
}

header {
    background-color: white;
    color: black;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #444;
    animation: fadeIn 2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}
.header-text{
    text-align: center;
}
header button{
    display: none;
}
.modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
    margin-top: 120px;
}

.modal-wrapper.active {
    display: flex;
}

#small-nav-links {
    display: none;
    background-color: white;
    position: fixed;
    flex-direction: column;
    color: white;
    width: 190px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 100;
    right: 0;
    border: 1px solid black;
    height: 100vh;
}

#small-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 70px;
}

#small-nav-links ul li {
    margin: 0;
    padding: 0;
    text-align: center;
}


#small-nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0;
    transition: background-color 0.3s ease-in-out;
}

#small-nav-links.active {
    display: flex;
}

.burger-menu {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    cursor: pointer;
}

.burger-menu .line {
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

#large-screen-nav {
    display:none;
}

.nav-design a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.hero {
    text-align: center;
    padding: 120px 30px ;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    max-width: 90%;
}

.hero-img img {
    width: 100%;

}

.hero h1 {
    font-size: 1.8rem;
}

.hero p {
    font-size: 1rem;
}

.hero button {
    padding: 8px 16px;
    font-size: 1rem;
}
.hero-img{
 margin-right: 10%;
}

.roadmap, .tokenomics, .vision{
    padding: 100px 30px;
    text-align: center;
}

.roadmap-text{
    width: 100%;
padding: 15px;

} .tokenomics-info {
    width: 100%;

}

.roadmap-img img {
    width: 100%;

}

#token-info h2, #tokenomics h1, #roadmap h2{
    font-size:2rem ;
}


#svgIcon svg {
    height: 1.1em;
    width: 1.1em;
    transition: fill 0.3s;
}

.contact p{
    padding:1rem ;
}

.form-content {
    padding: 1rem 2rem; 
    max-width: 90%; 
}
label{
    font-size: .7rem;
}
.form1,
.form2 {
    margin: 1rem 0;
}
.form3{
    margin: 2rem 0;
}
.form3 label{
    margin-right: 1rem;
}

.submit {
    width: 60%;
    margin-left: 40%;
}
.Btn{
    width: 400px;
    padding:1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto 10px
    
}#token-info, #community, #contact, footer{
    max-width: 100%;
    padding: 90px 30px ;
}

#token{
    display: flex;
    justify-content: space-between;
    padding: 1rem .5rem 1rem .5rem;
  }
  .submit {
    text-align: center;
    padding: 12px;
}
.tokenomics{
    max-width: 100%;
}
.tokenomics-chart{
    max-width: 100%;
    width: 80%;
}
}

@media (max-width: 480px) {
    .Btn {
        padding: 10px 8px; 
        font-size: 12px; 
        max-width: 100%;
    }
}

@media (max-width: 355px) {

    .header-logo {
        margin-right: 5px;
    }

    #token-info h2, #community h2, #contact h2 {
        font-size: 1.5rem;
    }

    #tokenomics h1 {
        font-size: 1.6rem; !important
    }

    .container button, #liquidity-pool, .solscan, .download-button, #token-address, #staking {
        width: 200px; /* changed from 300px to 200px */
    }

    .container a {
        font-size: 70%;
    }

    .hero-text {
        padding: 0px;
    }

    .example-2 .icon-content {
        padding: .1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .Btn {
        padding: 10px 8px; 
        font-size: 12px; 
        max-width: 100%;
    }
}
