:root {
  --white: #FFF3E0;
  --black: black;
}

.body {
  background: linear-gradient(to right, #FFC107, #FF5722);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow-x: hidden;
}

.section_hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.wrapper_header {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 25px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.wrapper {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.header {
  width: 100%;
  height: 60px;
  background-color: var(--white);
  border: 3px solid var(--black);
  border-bottom-width: 6px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.menu_left {
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.menu_button {
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  margin-right: 15px;
  padding: 0;
  font-family: Changa One, Impact, sans-serif;
}

.menu_button:hover {
  color: #FFCA28;
  box-shadow: 0 0 15px rgba(255, 193, 7, 1);
  transition: box-shadow 0.3s ease, color 0.3s ease;
}

.menu_right {
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.join_button {
  background: linear-gradient(to right, #FFC107, #FF5722);
  border: 2px solid var(--black);
  border-bottom-width: 5px;
  border-radius: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: Changa One, Impact, sans-serif;
  color: #ffffff;
}

.join_button:hover {
  border-top-width: 5px;
  border-bottom-width: 2px;
  animation: pulse-strong 0.8s infinite;
}

.header_separator {
  width: 1.5px;
  height: 100%;
  background-color: var(--black);
  margin-left: 15px;
  margin-right: 15px;
}

.socials {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border: 3.5px solid var(--black);
  border-width: 2px 3.5px 3.5px 2px;
  border-radius: 6px;
  margin-left: 5px;
  padding: 0;
}

.socials.tg {
  background-image: url('../images/telegram.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.socials.tg:hover {
  border-top-width: 3.5px;
  border-left-width: 3.5px;
  border-right-width: 2px;
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

.socials.twitter {
  background-image: url('../images/twitter.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.socials.twitter:hover {
  border-width: 3.5px 2px 2px 3.5px;
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

.clouds_bg {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, #FFC107, #FF5722);
  background-position: 50%;
  background-size: 100%;
  position: static;
}

.section_clouds {
  width: 200vw;
  height: 100vh;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.block_chara {
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.bonk {
  width: auto;
  height: 68%; /* 20% kleiner: 85% * 0.8 = 68% */
  max-width: 100%;
  animation: float-strong 2.5s ease-in-out infinite;
}

.logo {
  width: 550px;
  max-width: 100%;
}

.block_logo {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: flex;
  position: relative;
  padding-top: 10px;
}

.block_ca {
  width: 100%;
  height: 50px;
  background-color: var(--white);
  border: 5px solid var(--black);
  border-width: 2px 5px 5px 2px;
  border-radius: 10px;
  justify-content: center kert;
  align-items: center;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

#ca-container {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#ca-container:hover {
  background-color: #f0f0f0;
}

#ca-text {
  cursor: pointer;
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  color: var(--black);
  transition: color 0.2s ease;
  user-select: text;
  -webkit-user-select: text;
}

#ca-text:hover {
  color: #FF5722;
}

#copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin-left: 10px;
  padding: 0;
  color: #FF5722;
}

#copy-btn:hover {
  transform: scale(1.2);
  color: #FFC107;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ca {
  display: none;
}

.section_about {
  z-index: 3;
  width: 100%;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 10px;
  display: flex;
  position: relative;
  box-sizing: border-box;
}

.block_about {
  width: 100%;
  max-width: 600px;
  background-color: var(--white);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.about-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px;
  background-color: #fff;
  border: 2px solid #D84315;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  animation: fadeInScale-strong 0.8s ease-out forwards;
}

.about-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-accent {
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #FFC107, #FF5722);
  border-radius: 12px 0 0 12px;
  margin-right: 12px;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}

.about-title {
  color: #FF8F00;
  font-size: 18px;
  font-family: Changa One, Impact, sans-serif;
  text-align: left;
  margin-bottom: 6px;
}

.about-para {
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  font-family: Changa One, Impact, sans-serif;
}

.separator_blue {
  width: 100vw;
  height: 60px;
  background-color: #FF6D00;
  border-top: 2px solid var(--black);
  border-bottom: 0 solid var(--black);
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
  animation: color-shift 3s linear infinite alternate;
}

.separator_in {
  width: 100%;
  height: 50%;
  background-color: #FF6D00;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.separator_in2 {
  width: 100%;
  height: 50%;
  background-color: #FF6D00;
}

.h1 {
  color: white;
  text-align: center;
  font-family: Changa One, Impact, sans-serif;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 20px;
  animation: bounceIn-strong 1.2s ease-out forwards;
}

.h1.blk {
  color: var(--black);
}

.section_rewards .h1 {
  margin-bottom: 20px;
}

.block_paragraph {
  width: 100%;
  max-width: 600px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
  box-sizing: border-box;
}

.para {
  color: #FF6D00;
  text-align: center;
  font-family: Changa One, Impact, sans-serif;
  font-size: 14px;
  line-height: 20px;
  animation: fadeIn 1s ease-out;
}

.para.disclaimer {
  font-size: 12px;
  color: #666;
}

.slide {
  width: 400px;
  margin-top: 0;
  position: absolute;
}

.coin_bg {
  width: 100vw;
  height: 200px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 0;
  display: flex;
  position: relative;
}

.image {
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

.slider {
  height: 400%;
  margin-left: 50px;
  position: absolute;
  top: auto;
  bottom: 67%;
  left: 0%;
  right: 0%;
  animation: slide-in 1s ease-out;
}

.separator_blue2 {
  z-index: 2;
  width: 100vw;
  height: 60px;
  background-color: #FF6D00;
  border-top: 2px solid var(--black);
  border-bottom: 0 solid var(--black);
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
  animation: color-shift 3s linear infinite alternate;
}

.tokenomics {
  width: 100%;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.div-block-6 {
  width: 400px;
  height: auto;
  background-color: #FF6D00;
  border-left: 4px solid #E64A19;
  border-right: 4px solid #E64A19;
  border-radius: 15px;
  margin-top: 40px;
  margin-right: 20px;
  padding: 10px;
}

.div-block-7 {
  height: 60px;
  background-color: #FF8F00;
  border: 2px solid #D84315;
  border-bottom: 4px solid #D84315;
  border-radius: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.tokenomics_details {
  width: auto;
  height: auto;
  background-color: var(--white);
  border: 2px solid var(--black);
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tokenomics_top {
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.toke_details {
  width: 180px;
  height: auto;
  background: linear-gradient(to right, #FFC107, #FF5722);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  color: white;
  animation: fadeInScale-strong 0.8s ease-out forwards;
}

.toke_details:hover {
  box-shadow: 0 0 15px rgba(255, 193, 7, 1);
  transform: translateY(-5px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tokenomics_title {
  color: white;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 2px;
  font-family: Changa One, Impact, sans-serif;
  font-size: 18px;
  line-height: 18px;
  display: flex;
}

.tokenomics_bottom {
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 0;
  display: flex;
}

.block_clouds {
  width: 100vw;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cloud_right, .clouds_left {
  width: 35%;
  height: auto;
  animation: float 4s ease-in-out infinite alternate;
}

.section_how {
  width: 100%;
  background: linear-gradient(to right, #FFC107, #FF5722);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.block_how {
  width: 900px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.div-block-8 {
  width: 350px;
  height: auto;
  background-color: var(--white);
  border: 2px solid var(--black);
  border-left-width: 4px;
  border-right: 4px solid #E64A19;
  border-radius: 15px;
  margin-right: 20px;
  padding: 10px;
}

.div-block-9 {
  height: 60px;
  background-color: #FF8F00;
  border: 2px solid #D84315;
  border-bottom: 4px solid #D84315;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  animation: fadeInScale 0.6s ease-out forwards;
}

.div-block-9:hover {
  box-shadow: 0 0 15px rgba(255, 193, 7, 1);
  transform: translateY(-3px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.image-3 {
  height: 400px;
}

.div-block-10 {
  width: 100%;
  height: 30%;
  background: linear-gradient(to right, #FFC107, #FF5722);
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-4 {
  width: 80%;
  margin-bottom: 0;
  position: relative;
  top: auto;
  bottom: -1%;
  left: auto;
  right: auto;
}

.div-block-11 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-5 {
  height: 650px;
}

.section_community {
  width: 100%;
  height: auto;
  background: linear-gradient(to right, #FFC107, #FF5722);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}

.bonk_footer {
  z-index: 2;
  height: 400px;
  margin-top: 5px;
  position: relative;
  animation: float-strong 3s ease-in-out infinite;
}

.div-block-12 {
  height: 25%;
  background-color: #FF8F00;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.para-copy {
  color: var(--white);
  text-align: center;
  font-family: Changa One, Impact, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.div-block-13 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.join_footer {
  width: 140px;
  height: 45px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  margin-right: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Changa One, Impact, sans-serif;
  font-size: 18px;
  color: #ffffff;
  display: flex;
}

.join_footer:hover {
  border-top-width: 4px;
  border-bottom-width: 2px;
  animation: pulse-strong 0.8s infinite;
}

.section_welcome {
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, #FFC107, #FF5722);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.welcome_title {
  color: white;
  text-align: center;
  font-family: Changa One, Impact, sans-serif;
  font-size: 40px;
  line-height: 40px;
}

.block_welcome {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.continue {
  width: 100%;
  height: 45px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Changa One, Impact, sans-serif;
  font-size: 18px;
  color: #D84315;
  display: flex;
}

.continue:hover {
  border-top-width: 4px;
  border-bottom-width: 2px;
  animation: pulse-strong 0.8s infinite;
}

.div-block-14 {
  background: linear-gradient(to right, #FFC107, #FF5722);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.wrapper_tokenomics {
  z-index: 1;
  width: 100vw;
  max-width: none;
  flex-flow: column;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.div-block-15 {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
  width: 100%;
}

.section_rewards {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(to right, #FFC107, #FF5722);
  display: flex;
  flex-flow: column;
  align-items: center;
}

.block_rewards {
  background: var(--white);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reward_input {
  border: 2px solid var(--black);
  border-radius: 10px;
  padding: 8px;
  font-family: Changa One, Impact, sans-serif;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

.reward_input:focus {
  box-shadow: 0 0 15px rgba(255, 193, 7, 1);
  transition: box-shadow 0.3s ease;
}

.reward_display {
  margin: 10px 0;
}

.section_token_stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.section_token_stats .h1 {
  margin-bottom: 15px;
}

.token_stats_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  width: 100%;
}

.section_cross_chain {
  width: 100%;
  background: linear-gradient(to right, #FFC107, #FF5722);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 10px;
  display: flex;
  position: relative;
}

.section_cross_chain .block_how {
  width: 100%;
  max-width: 600px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.section_cross_chain .div-block-8 {
  width: 100%;
  background-color: var(--white);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section_cross_chain .div-block-9 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px;
  background-color: #FF8F00;
  border: 2px solid #D84315;
  border-radius: 12px;
  justify-content: flex-start;
}

.section_cross_chain .step-number {
  width: 25px;
  height: 25px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  border: 1px solid var(--black);
  border-radius: 50%;
  color: white;
  font-family: Changa One, Impact, sans-serif;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  margin-right: 8px;
  flex-shrink: 0;
  animation: pulse 1s infinite;
}

.section_cross_chain .tokenomics_title {
  flex: 1;
  color: white;
  font-size: 16px;
  text-align: left;
  font-family: Changa One, Impact, sans-serif;
}

.section_cross_chain .para {
  margin-top: 5px;
  color: var(--black);
  font-size: 13px;
  line-height: 18px;
  text-align: left;
  font-family: Changa One, Impact, sans-serif;
}

.section_cross_chain .div-block-9 > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.section_cross_chain .block_paragraph {
  width: 100%;
  max-width: 600px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
  box-sizing: border-box;
}

.section_revenue_share {
  width: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 50px 10px;
  display: flex;
  position: relative;
  box-sizing: border-box;
}

.section_revenue_share .block_about {
  background-color: var(--white);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 30px;
  padding: 15px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section_revenue_share .revenue-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.section_revenue_share .revenue-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  border: 1px solid var(--black);
  border-radius: 50%;
  color: white;
  font-family: Changa One, Impact, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-right: 8px;
}

.section_revenue_share .para {
  flex: 1;
  font-size: 14px;
  line-height: 20px;
}

.faq_section {
  width: 100%;
  padding: 50px 10px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  display: flex;
  flex-flow: column;
  align-items: center;
}

.faq_container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.faq_item {
  background: var(--white);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 0.6s ease-out forwards;
}

.faq_item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq_question {
  cursor: pointer;
  font-family: Changa One, Impact, sans-serif;
  font-size: 16px;
  color: #D84315;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq_question span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq_answer.active + .faq_question span {
  transform: rotate(180deg);
}

.faq_answer {
  display: none;
  font-family: Changa One, Impact, sans-serif;
  font-size: 14px;
  color: var(--black);
  margin-top: 8px;
  line-height: 18px;
}

.faq_answer.active {
  display: block;
  animation: fadeIn-strong 0.7s ease-in;
}

@media screen and (max-width: 991px) {
  .block_chara {
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
  }

  .bonk {
    width: 70%;
    height: auto;
    max-width: 100%;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .block_logo {
    margin-left: 0;
    position: relative;
    top: 0;
    width: 90%;
    padding-top: 5px;
  }

  .logo {
    width: 100%;
    max-width: 400px;
  }

  .section_about, .section_cross_chain, .section_revenue_share {
    padding: 40px 10px;
  }

  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .block_about, .section_cross_chain .block_how, .section_revenue_share .block_about {
    padding: 12px;
    max-width: 500px;
  }

  .block_paragraph {
    max-width: 500px;
    margin-top: 8px;
  }

  .faq_section {
    padding: 40px 10px;
  }

  .section_cross_chain .div-block-8 {
    padding: 12px;
  }

  .about-card {
    padding: 10px;
    margin-bottom: 15px;
  }

  .about-title {
    font-size: 16px;
  }

  .about-para {
    font-size: 13px;
    line-height: 18px;
  }
}

@media screen and (max-width: 767px) {
  .section_hero {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
    pointer-events: auto; /* Enable pointer events for buttons */
  }

  #ca-container, #ca-text, #copy-btn, .join_button, .socials, .menu_button, .join_footer, .cta-guide {
    pointer-events: auto !important;
    z-index: 10;
  }

  .menu_button {
    display: none;
  }

  .menu_right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .join_button {
    font-size: 14px;
    line-height: 20px;
    min-height: 44px;
    min-width: 80px;
  }

  .socials {
    min-height: 44px;
    min-width: 44px;
  }

  .block_chara {
    width: 100%;
    height: auto;
    padding-bottom: 5px;
    position: relative;
    top: 0;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .bonk {
    width: 70%;
    height: auto;
    max-width: 100%;
  }

  .block_logo {
    top: 0;
    width: 100%;
    padding-top: 10px;
  }

  .logo {
    width: 80%;
    max-width: 300px;
  }

  .section_about, .section_cross_chain, .section_revenue_share {
    padding: 30px 10px;
  }

  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .h1 {
    font-size: 45px;
    line-height: 45px;
  }

  .block_paragraph, .block_about, .section_cross_chain .block_how, .section_revenue_share .block_about {
    max-width: 100%;
    padding: 10px;
  }

  .para {
    font-size: 13px;
    line-height: 18px;
  }

  .image {
    height: 80%;
  }

  .slider {
    height: 300%;
  }

  .tokenomics_details, .tokenomics_top, .tokenomics_bottom {
    width: 100%;
  }

  .block_how {
    width: 100%;
    flex-flow: column;
  }

  .section_community {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bonk_footer {
    height: 100%;
  }

  .div-block-14, .wrapper_tokenomics {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section_rewards {
    padding-left: 15px;
    padding-right: 15px;
  }

  .block_rewards {
    max-width: 500px;
  }

  .token_stats_container {
    flex-direction: column;
    align-items: center;
  }

  .toke_details {
    width: 100%;
    max-width: 300px;
  }

  .faq_section {
    padding: 30px 10px;
  }

  .faq_container {
    padding: 0 10px;
  }

  .faq_question {
    font-size: 15px;
  }

  .faq_answer {
    font-size: 13px;
  }

  .section_cross_chain .tokenomics_title {
    font-size: 15px;
  }

  .about-title {
    font-size: 15px;
  }

  .about-para {
    font-size: 13px;
    line-height: 18px;
  }
}

@media screen and (max-width: 479px) {
  .wrapper_header, .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ca {
    font-size: 10px;
    line-height: 10px;
  }

  .h1 {
    font-size: 35px;
    line-height: 35px;
  }

  .section_about, .section_cross_chain, .section_revenue_share {
    padding: 25px 10px;
  }

  .block_about, .section_cross_chain .block_how, .section_revenue_share .block_about {
    padding: 8px;
    border-radius: 20px;
  }

  .block_paragraph {
    max-width: 500px;
    margin-top: 8px;
  }

  .para {
    font-size: 12px;
    line-height: 16px;
  }

  .coin_bg {
    height: 150px;
  }

  .image {
    height: 60%;
  }

  .slider {
    height: 200%;
  }

  .tokenomics_top {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .toke_details {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .tokenomics_title {
    font-size: 14px;
    line-height: 14px;
  }

  .tokenomics_bottom {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .section_how {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-8 {
    width: 100%;
    margin-right: 0;
  }

  .div-block-13 {
    width: 100%;
  }

  .block_chara {
    padding-bottom: 5px;
  }

  .block_logo {
    top: 0;
    width: 100%;
    padding-top: 5px;
  }

  .logo {
    width: 70%;
    max-width: 250px;
  }

  .block_rewards {
    max-width: 300px;
  }

  .reward_input {
    margin-bottom: 8px;
  }

  .faq_section {
    padding: 25px 10px;
  }

  .faq_container {
    padding: 0 5px;
  }

  .faq_question {
    font-size: 14px;
  }

  .faq_answer {
    font-size: 12px;
  }

  .section_cross_chain .tokenomics_title {
    font-size: 14px;
  }

  .section_cross_chain .div-block-8 {
    padding: 8px;
  }

  .about-title {
    font-size: 14px;
  }

  .about-para {
    font-size: 12px;
    line-height: 16px;
  }

  .about-card {
    padding: 8px;
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 992px) {
  .block_about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .about-card {
    margin-bottom: 0;
  }
}

@keyframes float-strong {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-strong {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounceIn-strong {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn-strong {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale-strong {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes color-shift {
  0% {
    background-color: #FF6D00;
  }
  100% {
    background-color: #FF5722;
  }
}

@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* New styles for Bridge Guide Page */
.intro-para {
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 30px;
  animation: fadeIn-strong 1s ease-out;
}

.guide-block {
  background-color: var(--white);
  border: 2px solid var(--black);
  border-bottom-width: 4px;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.guide-steps, .guide-rewards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-card {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #D84315;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeInScale-strong 0.8s ease-out forwards;
}

.guide-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.step-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #FFC107, #FF5722);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  animation: pulse-strong 1.5s infinite;
}

.reward-card .step-icon {
  background: linear-gradient(to bottom, #FF8F00, #D84315);
}

.cta-guide {
  margin-top: 20px;
  display: block;
  text-align: center;
  animation: bounceIn-strong 1.2s ease-out;
}

@media screen and (min-width: 992px) {
  .guide-steps, .guide-rewards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .guide-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Minimal button fixes to ensure functionality */
#ca-container, #ca-text, #copy-btn, .join_button, .socials, .menu_button, .join_footer, .cta-guide {
  pointer-events: auto !important;
  z-index: 10;
}

.join_button, .join_footer, .cta-guide {
  min-height: 44px;
  min-width: 80px;
}

.socials {
  min-height: 44px;
  min-width: 44px;
}

.join_button:active, .socials:active, .menu_button:active, .join_footer:active, .cta-guide:active {
  transform: scale(0.95);
}