*{
    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 {
    background-color: white;
    color: black;
    padding: 15px 5%; /* Adds side padding */
    text-align: center;
    border-bottom: 2px solid #444;
    animation: fadeIn 2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures elements are spaced */
    flex-wrap: wrap; /* Makes it responsive */
}
.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);
}
nav {
    display: flex;
    gap: 20px; /* Space between nav items */
    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.visible{
    opacity: 1;
    transform: translateY(0);
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px; /* Adds space for the line */
    transition: color 0.3s ease-in-out;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white; /* Line color */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

nav a:hover {
    color: white;
}

nav 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); /* Subtle scale effect */
}


    .hero {
        text-align: center;
        padding: 50px 20px;
        background-color: white;
        color: black;
        animation: slideInUp 2s ease;
        display: flex;
        align-items: center;
        justify-content: center; /* Center both items */
        flex-wrap: wrap; /* Ensure responsiveness */
        gap: 20px; /* Space between text and image */
        max-width: 100%;
          
        
    }
    
    .hero-text {
        flex: 1; /* Allow text to take up available space */
        max-width: 60%; /* Adjust as needed */

    }
    
    .hero-img {
        flex: 1;
        max-width: 140%;

    }
    
    .hero-img img {
        width: 70%; /* Ensure image takes up full container */
    }
    
.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); /* Responsive scaling */
    margin-bottom: 20px;
    color: black;
    text-transform: uppercase;
    width: 100%; /* Ensure it scales properly */
    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); /* Subtle scale effect */
}

.vision,.roadmap, .tokenomics {
    text-align: center;
    padding: 100px 20px;
}
.roadmap h2{
    font-size: 3rem;
    color: white;
}

   
.roadmap {
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: center; 
    justify-content: center;
    padding: 40px 20px;
 
    margin: auto;
    text-align: center;
    background-color: black;
    color: white;
}

/* Roadmap Image */
.roadmap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Make the image take equal space */
    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 */
.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);
}
/* Use Flexbox for layout on larger screens */
@media (min-width: 768px) {
    .roadmap {
        flex-direction: row; /* Side by side on desktop */
        align-items: center; /* Centers items vertically */
        justify-content: center; /* Centers the image & text */
        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 {
    background-color: white;
    color: black;
    animation: fadeIn 2s ease;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    flex-direction: column; 
    align-items: center; 
    justify-content: space-between;
    margin: auto;
    text-align: center;

}
.tokenomics-info{
    flex: 1; /* Make the image take equal space */
    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; /* Make the image take equal space */
    max-width: 100%;
    width: 60%;
    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 {
    text-align: center;
    padding: 100px 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;
}
/* From Uiverse.io by satyamchaudharydev */ 
#liquidity-pool, .solscan, .download-button {
    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; /* Adds space between buttons */
}

/* Make sure the parent container is also properly centered */
.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%; /* Responsive width */
    max-width: 350px; /* Limits width on larger screens */
    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; /* Centers it */
}

.new {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
  
    text-align: left;
    padding-right: 10px; /* Ensures spacing before the icon */
}

#svgIcon {
    flex-shrink: 0;
}

/* Ensuring proper width on all phones */
@media (max-width: 480px) {
    .Btn {
        width: 95%;
        max-width: 95%;
    }
}


#svgIcon svg {
    height: 1.3em;
    width: 1.3em;
    transition: fill 0.3s;
}



/* Tooltip */
.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 h2{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  #community h2.visible{
    opacity: 1;
    transform: translateY(0);
  }

/* From Uiverse.io by Zameerahmad01 */ 
ul {
    list-style: none;
  }
  
  .example-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    row-gap: 0.8rem;
    padding: 2rem;
    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;
  }
  
.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;
}
/* General form styling */
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; /* Ensures padding does not affect width */
}

/* Label styling */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* Input and textarea styling */
input,
textarea {
    width: calc(100% - 20px); /* Adjust width to prevent overflow */
    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;
}

/* Button styling */
.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 {
    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);
}


@media (max-width: 768px) {

/* Global Styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Michroma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    line-height: 1.8;
    width: 100%;
  
}

header {
    background-color: white;
    color: black;
    padding: 10px 30px ;
    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%;
}
.header-text{
    text-align: center;
}
header button{
    display: none;
}
nav {
    display:none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.hero {
    text-align: center;
    padding: 10px 30px ;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.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: 50px 30px;
    text-align: center;
    width: 100%;

}

.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; /* Reduce padding */
    max-width: 90%; /* Increase width for better fit */
}
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{
    width: 100%;
    max-width: 100%;
    padding: 10px 30px ;
}
#token{
    display: flex;
    justify-content: space-between;
    padding: 1rem .5rem 1rem .5rem;
  }
  .submit {
    text-align: center;
    padding: 12px;
}
.tokenomics{
    width: 100%;
    max-width: 100%;
}
.tokenomics-chart{
    max-width: 100%;
    width: 80%;
}
}





/* Media Query for Mobile (Small Screens) */
@media (max-width: 480px) {
    .Btn {
        padding: 10px 8px; /* Slightly reduce padding */
        font-size: 12px; /* Adjust font size */
        max-width: 100%; /* Ensure full width */
    }
}
