body {
    background-image: url('img3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
    
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: -1;
}


.navbar {
    display: flex;
    align-items: center;
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 27px;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 80%;
    margin: 20px auto;
    margin-top: 0;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-container img{
    border-radius: 50%;
    border: 2px solid black;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.829);
  }
  
  .logo-new {
    width: 40px;
    height: 40px;
  }
  
  .brand-name {
    font-size: 30px;
    font-family: "Rubik Glitch", system-ui;
    font-weight: bold;
    background-color: transparent;
    border-radius: 5px;
    letter-spacing: 2px;
    color: white;
    -webkit-text-stroke: 0.2px black;

  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    -webkit-text-stroke: 1px black;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #007bff; /* Optional hover color */
  }
  
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-buttons a{
    background-color: white;
    border: 1px solid black;
    width: 75px;
    height: 30px;
    text-align: center;
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    color: black;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.829);
    text-decoration: none;

  }

  .container {
    text-align: center;
    font-family: "Rubik Glitch", system-ui;
    font-size: 100px;
    color: white;
    -webkit-text-stroke: 1px black;
    margin-top: 400px;

  }

  .container h1{
    margin-bottom: 2px;

  }

  .container p{
    font-size: 40px;
    margin-top: 0;
  }

  .flag-image {
    position: absolute;
    top: 10%; /* Adjust this based on your layout */
    left: 15%; /* Adjust this based on your layout */
    width: 500px; /* Set the image width */
    height: auto; /* Maintain aspect ratio */
    z-index: -1;
}

.flag-image img {
    width: 100%;
    height: auto;
}

a button  {
    background-color: #2596be;
    font-family: "Chewy", system-ui;
    font-weight: bold;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size:35px;
    border-radius: 5px;
    cursor: pointer;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    transition: background-color 0.3s ease;
    box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid black;
    border-bottom: 6px solid black;
    -webkit-text-stroke: 1px black;

}


.roadmap-container {
  position: relative;
  width: 50%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.roadmap-title {
  font-size: 80px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  font-family: "Rubik Glitch", system-ui;
  margin-top: 50px;
  -webkit-text-stroke: 1px black;
  font-weight: 400;

}

.timeline {
  position: relative;
  width: 20px;
  background: white;
  height: 100%;
  margin: auto;
}

.card{
  display: flex;
  align-items: center;
}



.card-img{
  width: 400px;
  height: 400px;
}
.phase {
  position: relative;
  width: 40%;
  background: #81cbe6;
  color: black;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.phase h3 {
  background: #2596be;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  display: inline-block;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid black;
  border-bottom: 6px solid black;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
}

.phase h4{
  font-family: "Chewy", system-ui;
  margin: 0;
  font-size: 30px;
  color: white;
  -webkit-text-stroke:2px black;

}

.phase p{
  font-family: "Chewy", system-ui;
  font-size: 22px;
  font-weight: 0;
  color: rgb(44, 42, 42);

}

.phase-left {
  left: 0;
  text-align: left;
  
}

.phase-right {
  left:10%;
  text-align: left;
}

.phase::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid black;
  z-index: -1;
}

.phase-left::before {
  right: -15px;
}

.phase-right::before {
  left: -15px;
}

.token_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.tokenomics-title {
  font-size: 70px;
  color: #fff;
  font-family: "Rubik Glitch", system-ui;
  -webkit-text-stroke: 0.2px black;
  margin-bottom: 0;
  margin-top: 200px;

}
.description {
  max-width: 600px;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}
.tokenomics-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}

.info-box {
  background-color: #86b5e7;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  transition: background-color 0.3s ease;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid black;
  border-bottom: 6px solid black;
}
.info-box p {
  margin: 5px 0;
  font-size: 20px;
  font-weight: bold;
  font-family: "Rubik Glitch", system-ui;
  color: white;
  -webkit-text-stroke: 1px black;
  font-size: 30px;
  height:auto;
  text-align: center;
  justify-content: baseline;


}

.frog-icon {
  top: 2%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.tokenomics-list {
  list-style: none;
  padding: 0;
}

.tokenomics-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tokenomics-list li img {
  width: 35px; /* Adjust size based on your icon */
  height: 35px;
}

.tokenomics-list li span {
  font-family: "Rubik Glitch", system-ui;
  font-size: 24px;
  color: #fff;
  -webkit-text-stroke: 1px black;
}

.tokenomics-list li p {
  font-family: "Chewy", system-ui;
  -webkit-text-stroke: 1px black;
  margin: 0;
  font-size: 20px;
  color: #fff; /* Lighter gray for the description */
}


.community-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: transparent; /* Matching brown background */
  color: #fff;
  border-radius: 15px;
  margin: 20px;
}

.community-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.community-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.community-text {
  text-align: center;
  max-width: 60%;
}

.community-title {
  font-size: 4rem;
  font-family: "Rubik Glitch", system-ui;
  color: #fff;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px black;
}


.community-description {
  font-size: 2rem;
  font-family: "Chewy", system-ui;
  -webkit-text-stroke: 1px black;
  line-height: 1.6;
  margin-bottom: 30px;
}

.community-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.button {
  text-decoration: none;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  color: #fff;
  background-color: #d1b085; /* Button color */
  box-shadow: 0 4px #8c6a48;
  transition: all 0.2s ease-in-out;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px #8c6a48;
}

.telegram-btn {
  background-color: #81cbe6;
  font-family: "Chewy", system-ui;
  -webkit-text-stroke: 1px black;
  font-weight: bold;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size:35px;
  border-radius: 5px;
  cursor: pointer;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  transition: background-color 0.3s ease;
}

.twitter-btn {
  background-color: #81cbe6;
  font-family: "Chewy", system-ui;
  -webkit-text-stroke: 1px black;
  font-weight: bold;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size:35px;
  border-radius: 5px;
  cursor: pointer;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  transition: background-color 0.3s ease;

}

.footer-container p {
  font-size: 1rem; /* Slightly smaller font size for mobile */
  line-height: 1.4;
  color: white;
  text-align: center;
  font-family:Arial, Helvetica, sans-serif;

}

.footer-container span {
  font-size: 1rem; /* Ensure the highlight remains prominent */
}



/* Responsive Styles */
@media screen and (max-width: 1050px) {
  .navbar {
      text-align: center;
  }

  .nav-links{
    display: flex;

  }

  .brand-name {
    font-size: 35px;
  }
  .container {
      font-size: 90px;
      margin-top: 600px;
  }
  .container p {
      font-size: 40px;
  }
  .flag-image {
      width: 500px;
      left: 6%;
      top: 23%;
  }
  button {
      font-size: 40px;
  }

  .card .card-img img{
    width: 400px;
    height: 400px;
  }

  .roadmap-container{
    margin-top: 300px;
    width: 80%;
  }

  .roadmap-title{
    font-size: 100px;
  }
  .phase {
    position: relative;
    width: 50%;
    color: black;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  .tokenomics-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tokenomics-title{
    margin-top: 50px;
  }
}

@media screen and (max-width: 850px) {
  .navbar {
      max-width: 100%;
      padding: 10px;
  }

  .nav-links{
    display: none;
  }
  .brand-name {
      font-size: 30px;
  }
  .container {
    margin-top: 500px;
      font-size: 70px;
  }
  .container p {
      font-size: 30px;
  }
  .flag-image {
      width: 400px;
      left: 5%;
      top: 26%;
  }
  button {
      font-size: 30px;
  }
  .card .card-img {
    width: 300px;
    height: 300px;
  }

  .roadmap-container{
    margin-top: 200px;
  }

  .phase {
    position: relative;
    width: 40%;
    color: black;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }


  .tokenomics-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tokenomics-title{
    margin-top: 50px;
  }

  .community-section{
    padding: 10px;
    margin-top: 150px;
}
.community-content {
    position: relative;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
}

.community-image {
    position: absolute;
    width: 250px;
    top: -220px; /* Adjust position for overlapping */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    z-index: -1;
}

.community-text {
    max-width: 100%;
    font-size: 20px;
    padding-top: 0;
}

.community-description{
    font-size:1.6rem ;
}

.community-title {
    font-size: 3rem;
}

}

@media screen and (max-width: 480px) {
  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .nav-buttons a{
    width: 60px;
    font-size: 20px;
  }
  .brand-name {
    font-size: 30px;
  }
  .nav-links {
      text-align: center;
      padding: 0;
      display: none;
  }
  .container {
      font-size: 38px;
      margin-top: 400px;
  }
  .container p {
      font-size: 22px;
  }
  .flag-image {
      width: 300px;
      left: 0;
      top: 25%;
  }
  button {
      font-size: 28px;
      padding: 8px 16px;
  }

  .roadmap-container{
    align-items: center;
    width: 90%;
  }

  .roadmap-title{
    font-size: 60px;
    margin-top: 200px;
  }
  .card{
    display: flex;
    flex-direction: column;
  }

  .card .card-img img{
    width: 300px;
    height: 300px;
  }

  .phase h4{
    font-size: 25px;
  }

  .phase p{
    font-size: 20px;
  }
  .phase {
    position: relative;
    width: 70%;
    color: black;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }

  .tokenomics-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tokenomics-title{
    font-size: 50px;
    margin-top: 50px;
  }

  .pie-chart img{
    width: 400px;
    height: 400px;
  }
  
  .community-buttons{
    display: flex;
    flex-direction: column;
  }
  
}

@media (max-width: 380px) {
  .navbar {
      font-size: 16px;
      padding: 5px;
      max-width: 90%;
  }

  .brand-name {
      font-size: 20px;
  }

 
  .nav-buttons {
      gap: 3px;
  }

  .nav-buttons a {
      width: 60px;
      height: 22px;
      font-size: 18px;
  }

  .container {
      font-size: 35px;
      margin-top: 370px;
  }

  .container p {
      font-size: 20px;
  }

  .flag-image {
      width: 300px;
      left: 2%;
      top: 28%;
  }

  button {
      font-size: 23px;
      padding: 6px 12px;
  }

  .roadmap-title{
    font-size: 60px;
    margin-top: 75px;
  }

  .roadmap-container{
    margin-top: 40px;
  }

  .card .card-img img{
    width: 300px;
    height: 300px;
  }
  

  .tokenomics-content{
    display: flex;
    flex-direction: column;
  }

  .pie-chart img{
    width: 350px;
    height: 350px;
  }

  .tokenomics-title{
    font-size: 50px;
  }

 
}
