/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow: hidden;
  font-family: "Luckiest Guy", serif;
  font-weight: 400;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

:root {
  --white-color: #fff;
  --back-color: #000;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #8d300e;
}

::-webkit-scrollbar-thumb {
  background-color: #c66f43;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.noSelect:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none !important;
}

/* .animateElement {
  filter: blur(1px);
  transform: scale(0.8) translateY(20px);
} */

/* Loading */
/* Fullscreen loader container */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 242, 161, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 11000;
}

/* Progress bar container */
.progress-container {
  width: 400px;
  height: 40px;
  background-color: rgba(194, 227, 255, 1);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  position: relative;
}

.progress-container .loaderIcon {
  position: absolute;
  top: 0%;
  width: 34px;
  height: 100%;
  left: 0%;
}

/* Actual progress bar */
.progress-bar {
  height: 100%;
  width: 0%;
  background-color: rgba(133, 197, 59, 1);
  transition: width 0.2s ease;
}

/* Loading text */
.loading-text {
  margin-top: 20px;
  font-size: 20px;
  color: #000000;
}

/* ========================= Navbar ========================== */
/* =========================================================== */

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 37px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  /* transition: 0.3s ease; */
}
nav.active {
  backdrop-filter: blur(10px);
  background: #ffffff57;
}
/* nav.hidden {
  top: -100%; */
/* } */
nav .center_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}
nav .center_content .logo {
  width: 206px;
}
nav .center_content .logo img {
  width: 100%;
}
nav .center_content ul.desktopNav {
  width: 1378px;
  border-radius: 100px;
  border: 2px solid #000000;
  background-color: rgba(194, 227, 255, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  padding: 19px 33px 19px 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 91px;
}
nav .center_content ul.desktopNav .crossIcon {
  display: none;
}
nav .center_content ul.desktopNav li a {
  font-size: 32px;
  color: #000000;
  display: inline-block;
}
nav .center_content ul.desktopNav li a:hover {
  color: #6ec746;
}
nav .center_content ul.desktopNav li a.btn {
  background-color: rgba(133, 197, 59, 1);
  width: 243px;
  min-height: 51px;
  border-radius: 100px;
  background-color: rgba(133, 197, 59, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 1);
  padding: 5px 20px 5px 33px;
  font-size: 32px;
  color: rgba(253, 247, 169, 1);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .center_content ul.desktopNav li a.btn:hover {
  box-shadow: unset;
}
nav .center_content .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  margin-left: 1rem;
}
nav .center_content .links .hamburgerIcon {
  display: none;
}
nav .center_content .links a {
  font-size: 33px;
  color: rgba(133, 197, 59, 1);
  position: relative;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .center_content .links a:hover .text-outline {
  -webkit-text-stroke: 7px black;
}
.text-outline {
  color: white;
  position: absolute;
  -webkit-text-stroke: 7px white;
  font-size: 33px;
}

.text-inner {
  color: rgb(133, 197, 59);
  font-size: 30px;
  z-index: 1;
  position: relative;
}

/* ========================= Header Section ========================== */
/* ================================================================== */

header {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (min-aspect-ratio: 16/9) {
  .video-background {
    width: 100%;
    height: 56.25vw; /* 100 * (9/16) */
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-background {
    width: 177.78vh; /* 100 * (16/9) */
    height: 100%;
  }
}

header .center_content {
  position: relative;
  z-index: 1;
  width: 1645px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 53px;
  margin-top: 4rem;
}
header .center_content h1 {
  font-size: 84px;
  line-height: 84px;
  color: rgba(133, 197, 59, 1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
header .center_content h1 .text-outline {
  font-size: 84px;
  -webkit-text-stroke: 12px white;
}
header .center_content h1 .text-inner {
  font-size: 84px;
}
header .center_content p {
  font-size: 40px;
  line-height: 40px;
  color: rgba(255, 255, 255, 1);
}
header .center_content .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
header .center_content .btns a {
  padding: 24px 43px 24px 45px;
  background-color: rgba(133, 197, 59, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 1);
  font-size: 32px;
  line-height: 32px;
  color: rgba(253, 247, 169, 1);
  border-radius: 100px;
}
header .center_content .btns a:last-child {
  padding: 24px 23px 24px 36px;
}
header .center_content .btns a:hover {
  box-shadow: unset;
}

/* ============================= Label ============================= */
/* ================================================================= */
.scrolling-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  border-top: 9px solid #ca7757;
  border-bottom: 9px solid #ca7757;
  padding: 18px 0;
  gap: 40px;
  display: flex;
}

.scrolling-text {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-left 10s linear infinite;
  gap: 40px;
}

.scrolling-text h1 {
  font-size: 33px;
  display: inline-block;
  color: rgba(133, 197, 59, 1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* =========================== aboutUs ===========================  */
/* =============================================================== */

.aboutUs {
  width: 100%;
  background-color: rgba(123, 194, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 171px;
  padding-top: 45px;
  overflow: hidden;
}
.aboutUs .center_content {
  width: 1704px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.aboutUs .center_content .leftSide {
  width: 919px;
  position: relative;
  z-index: 1;
}
.aboutUs .center_content .leftSide .image img {
  width: 100%;
  transform: scale(1.5);
}
.aboutUs .center_content .rightSide {
  width: 790px;
  min-height: 1082px;
  background-image: url("../images/aboutus/board.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 1;
  position: relative;
  padding-top: 8rem;
}
.aboutUs .center_content .rightSide h1 {
  line-height: 72px;
  font-size: 72px;
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
}
.aboutUs .center_content .rightSide p {
  font-size: 38px;
  line-height: 38px;
  color: rgba(217, 120, 41, 1);
  text-align: center;
  margin-top: 18px;
}
.aboutUs .center_content .rightSide a {
  width: 438px;
  min-height: 86px;
  background-color: rgba(133, 197, 59, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  font-size: 32px;
  color: rgba(253, 247, 169, 1);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.aboutUs .center_content .rightSide a:hover {
  box-shadow: unset;
}
.aboutUs .center_content .rightSide .grass {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: -48px;
}
.aboutUs .center_content .shape {
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}
.aboutUs .center_content .shape img {
  width: 100%;
  object-fit: cover;
}

/* ========================= tokenomics =========================  */
/* =============================================================== */

.tokenomics {
  width: 100%;
  padding: 210px 0 100px;
  background-image: url("../images/tokenomics/patteren.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(123, 194, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.tokenomics .center_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 73px;
}
.tokenomics .center_content h1 {
  font-size: 128px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  position: relative;
}
.tokenomics .center_content h1 .text-outline {
  font-size: 126px;
  -webkit-text-stroke: 22px white;
}
.tokenomics .center_content h1 .text-inner {
  font-size: 126px;
  color: rgba(0, 0, 0, 1);
}
.tokenomics .center_content .shortInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 114px;
}
.tokenomics .center_content .shortInfo .ticker,
.tokenomics .center_content .shortInfo .tax {
  width: 483px;
  min-height: 121px;
  border-radius: 20px;
  background-color: rgba(217, 120, 41, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tokenomics .center_content .shortInfo .tax {
  background-color: rgba(253, 247, 169, 1);
}
.tokenomics .center_content .shortInfo .ticker:last-of-type {
  background-color: rgba(203, 218, 63, 1);
}
.tokenomics .center_content .shortInfo .ticker h1,
.tokenomics .center_content .shortInfo .tax h1 {
  font-size: 48px;
  color: rgba(0, 0, 0, 1);
}
.tokenomics .center_content .shortInfo .ticker .shape {
  position: absolute;
  bottom: 98%;
}
.tokenomics .center_content .contract {
  width: 1677px;
  min-height: 121px;
  border-radius: 100px;
  background-color: rgba(194, 227, 255, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  padding: 18px 29px 18px 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
.tokenomics .center_content .contract h1 {
  font-size: 48px;
  color: rgba(0, 0, 0, 1);
  line-height: 48px;
}
.tokenomics .center_content .contract .copyBtn {
  padding: 16px 40px 16px 45px;
  background-color: rgba(133, 197, 59, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  border-radius: 100px;
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
}
.tokenomics .center_content .contract .copyBtn .copylabelMessage {
  position: absolute;
  top: -85%;
  background-color: #b7e4ff;
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #7997aa;
  border: 1px solid #000;
  visibility: hidden;
  opacity: 0;
  transition: unset;
}
.tokenomics .center_content .contract .copyBtn:hover .copylabelMessage,
.tokenomics .center_content .contract .copyBtn .copylabelMessage.active {
  visibility: visible;
  opacity: 1;
}
.tokenomics .center_content .contract .copyBtn .copylabelMessage p {
  font-size: 22px;
  text-transform: capitalize;
}
.tokenomics .center_content .contract .copyBtn:hover {
  box-shadow: unset;
}
.tokenomics .center_content .contract .copyBtn h1 {
  font-size: 48px;
  line-height: 48px;
  color: rgba(0, 0, 0, 1);
}

/* ========================== howToBuy ========================== */
/* ============================================================= */

.howToBuy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url(../images/how-to-buy/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #7cc5ed; */
  position: relative;
  background-color: #7cc5ed;
}
.howToBuy .lightOrangeBgColor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #ffa785;
}
.howToBuy .center_content {
  padding: 346px 0 190px; /*346px 0 177px*/
  width: 100%; /*1794px*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  background-image: url(../images/how-to-buy/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.howToBuy .center_content .content {
  width: 1794px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
}
.howToBuy .center_content h1 {
  font-size: 128px;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
}
.howToBuy .center_content h1 .text-outline {
  font-size: 128px;
  -webkit-text-stroke: 20px white;
}
.howToBuy .center_content h1 .text-inner {
  font-size: 128px;
  color: rgba(0, 0, 0, 1);
}
.howToBuy .center_content .cards {
  width: 100%;
  display: flex;
  gap: 388px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.howToBuy .center_content .cards .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.howToBuy .center_content .cards .row .card {
  width: 600px;
  min-height: 338px;
  border-radius: 20px;
  background-color: rgba(255, 171, 138, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px rgba(0, 0, 0, 1);
  padding: 78px 28px 49px 29px;
  display: flex;
  gap: 19px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.howToBuy .center_content .cards .row .card h1 {
  font-size: 36px;
  color: rgba(0, 0, 0, 1);
  line-height: 36px;
}
.howToBuy .center_content .cards .row .card p {
  font-size: 24px;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
.howToBuy .center_content .cards .row .card a {
  padding: 8px 31px 8px 30px;
  background-color: rgba(133, 197, 59, 1);
  border-radius: 100px;
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  font-size: 32px;
  color: rgba(253, 247, 169, 1);
  line-height: 32px;
  margin-top: 1rem;
}
.howToBuy .center_content .cards .row .card a:hover {
  box-shadow: unset;
}
.howToBuy .center_content .shape {
  position: absolute;
  transform: translateY(100px);
}

/* How to Buy Card Animations */
@keyframes cardBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(198, 111, 67, 0.5); }
  50% { box-shadow: 0 0 20px rgba(198, 111, 67, 0.8); }
}

.howToBuy .center_content .cards .row .card {
  animation: cardBounce 3s infinite, cardGlow 3s infinite;
  animation-play-state: paused;
}

/* Animate each card with different delays */
.howToBuy .center_content .cards .row:first-child .card:first-child {
  animation-delay: 0s;
  animation-play-state: running;
}

.howToBuy .center_content .cards .row:first-child .card:last-child {
  animation-delay: 0.75s;
  animation-play-state: running;
}

.howToBuy .center_content .cards .row:last-child .card:first-child {
  animation-delay: 1.5s;
  animation-play-state: running;
}

.howToBuy .center_content .cards .row:last-child .card:last-child {
  animation-delay: 2.25s;
  animation-play-state: running;
}

/* Add hover effect */
.howToBuy .center_content .cards .row .card:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}

/* ==================== roadmap ===================== */
/* ================================================== */

.roadmap {
  width: 100%;
  background-image: url(../images/roadmap/bg-1.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  background-color: rgba(255, 171, 138, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 400px 0 400px 0;
  position: relative;
}
.roadmap .center_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}
.roadmap .center_content .slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
}
.roadmap .center_content .slider .top {
  width: 100%;
  /* display: flex;
  gap: 93px;
  justify-content: center;
  align-items: center; */
}
.roadmap .center_content .slider .top .card {
  width: 600px;
  min-height: 338px;
  border-radius: 20px;
  background-color: rgba(123, 194, 255, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  padding: 64px 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 19px;
}
.roadmap .center_content .slider .top .card h1 {
  font-size: 36px;
  line-height: 36px;
  color: rgba(0, 0, 0, 1);
}
.roadmap .center_content .slider .top .card ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 19px;
}
.roadmap .center_content .slider .top .card ul li {
  font-size: 24px;
  color: rgba(255, 255, 255, 1);
  line-height: 24px;
  position: relative;
  padding-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.roadmap .center_content .slider .top .card ul li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  position: absolute;
  left: 0;
}
.roadmap .center_content .slider .controller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 71px;
  margin-right: 258px;
}
.roadmap .center_content .slider .controller .left,
.roadmap .center_content .slider .controller .right {
  width: 104px;
  height: 104px;
  border-radius: 50px;
  background-color: rgba(217, 217, 217, 1);
  position: unset;
  margin-top: unset;
}
.roadmap .center_content .heading {
  margin-right: 41px;
}
.roadmap .center_content .heading h1 {
  font-size: 128px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}
.roadmap .center_content .heading h1 .text-outline {
  font-size: 128px;
  -webkit-text-stroke: 20px white;
}
.roadmap .center_content .heading h1 .text-inner {
  font-size: 128px;
  color: rgba(0, 0, 0, 1);
}
.roadmap .center_content .tableAndTV {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.roadmap .center_content .tableAndTV .tv {
  position: absolute;
  bottom: 238px;
  left: 66px;
  z-index: 2;
}
.roadmap .center_content .tableAndTV .tv .left-shadow,
.roadmap .center_content .tableAndTV .tv .right-shadow {
  width: 56px;
  height: 6px;
  background-color: rgba(0, 0, 0, 1);
  backdrop-filter: blur(12px);
}
.roadmap .center_content .tableAndTV .tv .center-shadow {
  width: 549px;
  height: 12px;
  background-color: rgba(0, 0, 0, 1);
  backdrop-filter: blur(12px);
}
.roadmap .center_content .tableAndTV .table-top {
  width: 100%;
  height: 160px;
  background-color: rgba(107, 54, 48, 1);
  border-top: 5px solid rgba(0, 0, 0, 1);
  border-bottom: 5px solid rgba(0, 0, 0, 1);
  position: absolute;
  bottom: 238px;
  z-index: 1;
}
.roadmap .center_content .tableAndTV .table-bottom {
  width: 100%;
  height: 238px;
  background-color: rgba(79, 35, 32, 1);
  position: absolute;
  bottom: 0;
}

/* ==================== faqs ======================== */
/* ================================================== */

.faqs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 158px 0 190px;
  background-color: #00e9e9;
  position: relative;
}
.faqs .top {
  position: absolute;
  top: -8.5%;
  left: 0;
  width: 100%;
}
.faqs .top img,
.faqs .bottom img {
  width: 100%;
}
.faqs .bottom {
  position: absolute;
  bottom: -10.2%;
  left: 0;
  width: 100%;
}
.faqs .center_content {
  width: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.faqs .center_content .shapes img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.faqs .center_content .shapes img:first-child {
  z-index: 1;
  bottom: -95px;
}
.faqs .center_content .shapes img:last-child {
  width: 1145px;
  left: -102px;
}
.faqs .center_content .rightSide {
  display: flex;
  gap: 54px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}
.faqs .center_content .rightSide .heading {
  font-size: 128px;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
}
.faqs .center_content .rightSide .heading .text-outline {
  font-size: 128px;
  -webkit-text-stroke: 20px white;
}
.faqs .center_content .rightSide .heading .text-inner {
  font-size: 128px;
  color: #000;
}
.faqs .center_content .rightSide .accordion {
  display: flex;
  gap: 31px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer {
  width: 922px;
  background-color: rgba(255, 171, 138, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  border-radius: 20px;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer .horizontalLine {
  width: 94%;
  height: 0px;
  background: rgba(255, 255, 255, 1);
  margin: 0 auto;
}
.faqs
  .center_content
  .rightSide
  .accordion
  .questionAndAnswer
  .horizontalLine.active {
  height: 1px;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer .question {
  width: 100%;
  padding: 23px 32px 22px;
  cursor: pointer;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer .question h1 {
  font-size: 40px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer .answerParent {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0px 100px 0px 32px;
  transition: padding, grid-template-rows 500ms;
}

.faqs
  .center_content
  .rightSide
  .accordion
  .questionAndAnswer
  .answerParent.active {
  grid-template-rows: 1fr;
  padding: 16px 100px 16px 32px;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer .answer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* padding: 16px 100px 16px 32px; */
  overflow: hidden;
  gap: 8px;
}
.faqs .center_content .rightSide .accordion .questionAndAnswer .answer p {
  font-size: 34px;
  color: rgba(255, 255, 255, 1);
}
.faqs
  .center_content
  .rightSide
  .accordion
  .questionAndAnswer
  .answer
  p:first-child {
  flex-shrink: 0;
}

/* ====================== footer ======================= */
/* ===================================================== */

footer {
  width: 100%;
  background-image: url(../images/footer/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 280px 0;
}
footer .center_content {
  width: 1731px;
  min-height: 523px;
  border-radius: 20px;
  background-color: rgba(123, 194, 255, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  padding: 86px 115px 126px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
footer .center_content .rightSide {
  position: absolute;
  right: 47px;
  bottom: -5px;
}
footer .center_content .leftSide {
  display: flex;
  gap: 62px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
footer .center_content .leftSide h1 {
  font-size: 98px;
  line-height: 98px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}
footer .center_content .leftSide h1 .text-outline {
  font-size: 98px;
  -webkit-text-stroke: 18px white;
}
footer .center_content .leftSide h1 .text-inner {
  font-size: 98px;
  color: #000;
}
footer .center_content .leftSide .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
footer .center_content .leftSide .btns a {
  width: 243px;
  padding: 9px 42px;
  border-radius: 100px;
  background-color: rgba(133, 197, 59, 1);
  border: 2px solid rgba(0, 0, 0, 1);
  box-shadow: 4px 6px 4px 0 rgba(0, 0, 0, 1);
  font-size: 32px;
  line-height: 32px;
  color: rgba(253, 247, 169, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .center_content .leftSide .btns a:hover {
  box-shadow: unset;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

/* Navbar */
.hamburgerIcon {
  width: 20px;
  display: flex;
  gap: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-top: -4px;
}
.hamburgerIcon div {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background-color: rgb(133, 197, 59);
  box-shadow: 0px 0px 0px 2px #fff;
}

/* Media Query */
@media screen and (max-width: 1820px) {
  .faqs .center_content .shapes img:first-child {
    left: -10%;
  }
  .faqs .center_content .shapes img:last-child {
    left: -18%;
  }
  nav {
    padding: 37px 0;
  }
  nav .center_content {
    width: 90%;
  }
  nav .center_content ul.desktopNav {
    width: calc(100% - 330px);
    justify-content: space-between;
    gap: 20px;
  }
  header .center_content,
  .aboutUs .center_content,
  .tokenomics .center_content {
    width: 90%;
  }
  .tokenomics .center_content .contract,
  .tokenomics .center_content .shortInfo {
    width: 100%;
  }
}

@media screen and (max-width: 1600px) {
  nav {
    padding: 20px 0;
  }
  nav .center_content ul.desktopNav li a,
  nav .center_content ul.desktopNav li a.btn {
    font-size: 20px;
  }
  nav .center_content ul.desktopNav li a.btn {
    min-height: 42px;
    width: unset;
  }
  nav .center_content ul.desktopNav {
    padding: 14px 24px 14px 30px;
  }
  nav .center_content .links a {
    font-size: 18px;
  }
  nav .center_content .links a .text-outline,
  nav .center_content .links a .text-inner {
    font-size: 20px;
  }
  nav .center_content .links {
    gap: 22px;
    margin-left: 0;
  }
  nav .center_content .logo {
    width: 146px;
  }
  header {
    height: 856px;
  }
  header .center_content h1 {
    font-size: 64px;
    line-height: 64px;
  }
  header .center_content h1 .text-outline {
    font-size: 64px;
    -webkit-text-stroke: 8px white;
  }
  header .center_content h1 .text-inner {
    font-size: 64px;
  }
  header .center_content p {
    font-size: 28px;
    line-height: 28px;
  }
  header .center_content .btns a {
    padding: 12px 34px 12px 34px;
    font-size: 22px;
    line-height: 32px;
  }
  header .center_content .btns a:last-child {
    padding: 12px 22px 12px 26px;
  }
  header .center_content {
    gap: 36px;
  }
  .aboutUs .center_content .rightSide h1 {
    line-height: 42px;
    font-size: 42px;
  }
  .aboutUs .center_content .rightSide p {
    font-size: 24px;
    line-height: 24px;
    margin-top: 18px;
  }
  .aboutUs .center_content .rightSide {
    padding-top: 7rem;
    gap: 20px;
    width: 790px;
    min-height: 790px;
  }
  .aboutUs .center_content .rightSide a {
    width: 300px;
    min-height: 60px;
    font-size: 24px;
  }
  .aboutUs .center_content .rightSide .grass {
    bottom: 16px;
    left: -15px;
  }
  .aboutUs .center_content .rightSide .grass img {
    width: 600px;
  }
  .tokenomics .center_content h1 {
    font-size: 70px;
  }
  .tokenomics .center_content h1 .text-outline {
    font-size: 70px;
    -webkit-text-stroke: 11px white;
  }
  .tokenomics .center_content h1 .text-inner {
    font-size: 70px;
  }
  .tokenomics .center_content .shortInfo .ticker,
  .tokenomics .center_content .shortInfo .tax {
    width: 290px;
    min-height: 100px;
  }
  .tokenomics .center_content .shortInfo .ticker h1,
  .tokenomics .center_content .shortInfo .tax h1 {
    font-size: 30px;
  }
  .tokenomics .center_content .shortInfo .ticker .shape img {
    width: 200px;
  }
  .tokenomics .center_content .contract h1 {
    font-size: 30px;
    line-height: 30px;
  }
  .tokenomics .center_content .contract .copyBtn svg {
    width: 22px;
  }
  .tokenomics .center_content .contract .copyBtn h1 {
    font-size: 30px;
    line-height: 30px;
  }
  .tokenomics .center_content .contract .copyBtn {
    padding: 6px 30px 6px 30px;
    gap: 12px;
  }
  .tokenomics .center_content .contract {
    min-height: 87px;
    padding: 12px 18px 16px 38px;
    justify-content: space-between;
    gap: 28px;
  }
  .tokenomics .center_content .contract .copyBtn .copylabelMessage {
    top: -100%;
    padding: 12px 20px;
  }
  .tokenomics .center_content .contract .copyBtn .copylabelMessage p {
    font-size: 18px;
  }
  .tokenomics {
    padding: 120px 0 60px;
  }
  .howToBuy .center_content h1 {
    font-size: 70px;
  }
  .howToBuy .center_content h1 .text-outline {
    font-size: 70px;
    -webkit-text-stroke: 11px white;
  }
  .howToBuy .center_content h1 .text-inner {
    font-size: 70px;
  }
  .howToBuy .center_content .cards .row .card {
    width: 430px;
    min-height: 323px;
  }
  .howToBuy .center_content .cards .row {
    align-items: stretch;
  }
  .howToBuy .center_content .cards .row .card {
    width: 430px;
    min-height: unset;
    padding: 40px 24px 34px 22px;
    gap: 14px;
  }
  .howToBuy .center_content .cards .row .card h1 {
    font-size: 26px;
    line-height: 26px;
  }
  .howToBuy .center_content .cards .row .card p {
    font-size: 18px;
    line-height: 22px;
  }
  .howToBuy .center_content .cards .row .card a {
    padding: 6px 26px 6px 24px;
    font-size: 18px;
    line-height: 24px;
    margin-top: 1rem;
  }
  .howToBuy .center_content .cards .row .card a:hover {
    box-shadow: unset;
  }
  .howToBuy .center_content .content {
    width: 90%;
  }
  .howToBuy .center_content .shape img {
    width: 500px;
  }
  .howToBuy .center_content .cards {
    gap: 200px;
  }
  .howToBuy .center_content {
    padding: 170px 0 160px;
  }
  .roadmap {
    padding: 230px 0 254px 0;
  }
  .roadmap .center_content .slider .top .card {
    min-height: unset;
    padding: 34px 34px;
    gap: 16px;
  }
  .roadmap .center_content .slider .top .card h1 {
    font-size: 26px;
    line-height: 26px;
  }
  .roadmap .center_content .slider .top .card ul {
    gap: 14px;
  }
  .roadmap .center_content .slider .top .card ul li {
    font-size: 18px;
    padding-left: 26px;
    line-height: 18px;
  }
  .roadmap .center_content .slider .top .card ul li::before {
    width: 10px;
    height: 10px;
  }
  .roadmap .center_content .tableAndTV .tv {
    bottom: 165px;
  }
  .roadmap .center_content .tableAndTV .tv img {
    width: 500px;
  }
  .roadmap .center_content .tableAndTV .table-top {
    height: 90px;
    bottom: 165px;
    border-top: 3px solid rgba(0, 0, 0, 1);
    border-bottom: 3px solid rgba(0, 0, 0, 1);
  }
  .roadmap .center_content .heading h1 {
    font-size: 70px;
  }
  .roadmap .center_content .heading h1 .text-outline {
    font-size: 70px;
    -webkit-text-stroke: 10px white;
  }
  .roadmap .center_content .heading h1 .text-inner {
    font-size: 70px;
  }
  .roadmap .center_content .slider .controller .left,
  .roadmap .center_content .slider .controller .right {
    width: 50px;
    height: 50px;
  }
  .roadmap .center_content .slider .controller {
    gap: 40px;
    margin-right: 190px;
  }
  .roadmap .center_content .slider {
    gap: 22px;
  }
  .faqs .center_content .rightSide .heading .text-inner {
    font-size: 70px;
  }
  .faqs .center_content .rightSide .heading .text-outline {
    font-size: 70px;
    -webkit-text-stroke: 10px white;
  }
  .faqs .center_content .rightSide .heading {
    font-size: 70px;
  }
  .faqs .center_content .rightSide .accordion {
    gap: 21px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer {
    width: 510px;
    border-radius: 14px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .question {
    padding: 18px 22px 18px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .question h1 {
    font-size: 22px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .answerParent {
    padding: 0px 28px 0px 28px;
  }
  .faqs
    .center_content
    .rightSide
    .accordion
    .questionAndAnswer
    .answerParent.active {
    padding: 16px 28px 16px 28px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .answer {
    gap: 8px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .answer p {
    font-size: 18px;
  }
  .faqs .center_content .shapes img:first-child {
    width: 600px;
    left: 0%;
  }
  .faqs .center_content .shapes img:last-child {
    width: 600px;
    left: 0%;
  }
  .faqs {
    padding: 86px 0 86px;
  }
  .faqs .top {
    top: -12.5%;
  }
  .faqs .bottom {
    bottom: -15.2%;
  }
  footer .center_content {
    width: 78%;
  }
  footer .center_content .leftSide h1 {
    font-size: 48px;
    line-height: 48px;
  }
  footer .center_content .leftSide h1 .text-outline {
    font-size: 48px;
    -webkit-text-stroke: 7px white;
  }
  footer .center_content .leftSide h1 .text-inner {
    font-size: 48px;
  }
  footer .center_content .leftSide .btns a {
    width: 164px;
    padding: 8px 26px;
    font-size: 18px;
    line-height: 18px;
  }
  footer .center_content {
    min-height: 320px;
    padding: 40px 48px 40px;
  }
  footer .center_content .rightSide img {
    width: 388px;
  }
  footer .center_content .leftSide .btns {
    gap: 18px;
  }
  footer .center_content .leftSide {
    gap: 40px;
  }
  footer .center_content .rightSide img {
    width: 388px;
  }
  footer .center_content {
    min-height: 270px;
  }
  footer {
    padding: 200px 0;
  }
}

@media screen and (max-width: 1148px) {
  nav .center_content ul.desktopNav {
    width: calc(100% - 266px);
  }
  footer .center_content .rightSide {
    right: 2px;
  }
  footer .center_content {
    padding: 38px;
  }
  footer .center_content .leftSide .btns {
    gap: 14px;
  }
  .faqs .bottom {
    bottom: -13.2%;
  }
  .tokenomics .center_content .contract h1 {
    font-size: 28px;
    line-height: 28px;
  }
  .aboutUs .center_content .rightSide {
    padding-top: 10rem;
    width: 810px;
    min-height: 810px;
    gap: 14px;
    background-size: contain;
  }
  .aboutUs .center_content .rightSide h1 {
    line-height: 34px;
    font-size: 34px;
  }
  .aboutUs .center_content .rightSide p {
    font-size: 22px;
    line-height: 22px;
    margin-top: 10px;
  }
  .aboutUs .center_content .rightSide a {
    width: 270px;
    min-height: 56px;
    font-size: 22px;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 1080px) {
  nav .center_content .links .hamburgerIcon {
    display: flex;
  }
  nav .center_content {
    justify-content: space-between;
  }
  nav .center_content ul.desktopNav .crossIcon {
    width: 22px;
    position: absolute;
    top: 1.8rem;
    right: 1.2rem;
    display: flex;
    justify-content: center;
  }
  nav .center_content ul.desktopNav .crossIcon div {
    width: 4px;
    height: 22px;
    background-color: rgba(133, 197, 59, 1);
    border-radius: 5px;
    transform: rotate(45deg);
    position: absolute;
    box-shadow: 0 0 0px 2px #000000;
  }
  nav .center_content ul.desktopNav .crossIcon div:last-child {
    transform: rotate(-45deg);
  }
  nav .center_content ul.desktopNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    border: unset;
    border-radius: unset;
    z-index: 111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: unset;
    visibility: hidden;
    opacity: 0;
  }
  nav .center_content ul.desktopNav.active {
    visibility: visible;
    opacity: 1;
  }
  nav .center_content ul.desktopNav li,
  nav .center_content ul.desktopNav li {
    width: 100%;
  }
  nav .center_content ul.desktopNav li a {
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px dashed #000;
  }
  nav .center_content ul.desktopNav li:nth-of-type(5) a {
    border-bottom: unset;
  }
  nav .center_content ul.desktopNav li a.btn {
    padding: 7px 20px 3px 33px;
    margin-top: 20px;
    border-bottom: unset;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  nav .center_content ul.desktopNav li a,
  nav .center_content ul.desktopNav li a.btn {
    width: 100%;
    font-size: 18px;
  }
  header .center_content {
    align-items: center;
  }
  header .center_content h1 {
    text-align: center;
    font-size: 26px;
    line-height: 26px;
  }
  header .center_content h1 .text-outline {
    font-size: 32px;
    -webkit-text-stroke: 6px white;
  }
  header .center_content h1 .text-inner {
    font-size: 32px;
  }
  header .center_content p {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
  }
  header {
    height: 550px;
    background-position: left;
  }
  header .center_content {
    gap: 24px;
  }
  header .center_content h1 br {
    display: none;
  }
  header .center_content h1 {
    font-size: 32px;
    line-height: 32px;
  }
  header .center_content .btns {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  header .center_content .btns a:last-child {
    padding: 8px 24px 4px 24px;
  }
  header .center_content .btns a {
    width: 245px;
    padding: 8px 24px 4px 24px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0px rgba(0, 0, 0, 1);
  }
  .scrolling-text h1 {
    font-size: 26px;
  }
  .scrolling-container {
    padding: 14px 0 10px;
    gap: 30px;
    border-top: 4px solid #ca7757;
    border-bottom: 4px solid #ca7757;
  }
  .scrolling-text {
    gap: 30px;
  }
  .aboutUs .center_content .rightSide h1 {
    width: 66%;
    line-height: 22px;
    font-size: 18px;
    padding: 0 34px;
  }
  .aboutUs .center_content .rightSide h1 br {
    display: none;
  }
  .aboutUs .center_content .rightSide p {
    font-size: 16px;
    line-height: 18px;
    margin-top: 4px;
  }
  .aboutUs .center_content .rightSide a {
    width: 50%;
    min-height: 44px;
    font-size: 16px;
    padding-top: 4px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  .aboutUs .center_content {
    flex-direction: column;
  }
  .aboutUs .center_content .leftSide {
    width: 100%;
    display: none;
  }
  .aboutUs .center_content .leftSide .image img {
    transform: unset;
  }
  .aboutUs .center_content .rightSide {
    width: 600px;
    min-height: 600px;
    padding-top: 7rem;
  }
  .tokenomics .center_content h1 {
    font-size: 42px;
  }
  .tokenomics .center_content h1 .text-outline {
    font-size: 42px;
    -webkit-text-stroke: 8px white;
  }
  .tokenomics .center_content h1 .text-inner {
    font-size: 42px;
  }
  .tokenomics .center_content .shortInfo {
    flex-direction: column;
    gap: 18px;
    margin-top: 10rem;
  }
  .copyText {
    word-break: break-all;
  }
  .tokenomics .center_content .contract {
    flex-direction: column;
  }
  .howToBuy .center_content .cards .row {
    flex-direction: column;
    gap: 30px;
  }
  .howToBuy .center_content .cards .row .card {
    width: 100%;
    padding: 24px 20px 30px 20px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px rgba(0, 0, 0, 1);
  }
  .howToBuy .center_content .shape img {
    width: 70%;
  }
  .roadmap .center_content .tableAndTV .tv img {
    width: 100%;
  }
  .faqs .center_content .shapes img:first-child,
  .faqs .center_content .shapes img:last-child {
    width: 100%;
  }
  footer .center_content .leftSide .btns {
    width: 100%;
    flex-direction: column;
  }
  nav .center_content .logo {
    width: 96px;
  }
  nav .center_content .links a .text-outline,
  nav .center_content .links a .text-inner {
    font-size: 18px;
  }
  .aboutUs {
    padding-bottom: 18px;
    padding-top: 40px;
  }
  .tokenomics .center_content .shortInfo .ticker h1,
  .tokenomics .center_content .shortInfo .tax h1 {
    font-size: 20px;
  }
  .tokenomics .center_content .shortInfo .ticker,
  .tokenomics .center_content .shortInfo .tax {
    max-width: 240px;
    min-height: 68px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0px rgba(0, 0, 0, 1);
  }
  .tokenomics .center_content .shortInfo .ticker .shape {
    bottom: 95%;
  }
  .tokenomics .center_content .shortInfo .ticker:last-of-type .shape {
    display: none;
  }
  .tokenomics .center_content .contract h1 {
    font-size: 16px;
    line-height: 26px;
  }
  .tokenomics .center_content .contract .copyBtn {
    padding: 6px 22px 5px 22px;
    gap: 8px;
  }
  .tokenomics .center_content .contract .copyBtn h1 {
    font-size: 16px;
    line-height: 26px;
    padding-top: 2px;
  }
  .tokenomics .center_content .contract .copyBtn svg {
    width: 16px;
    height: unset;
  }
  .tokenomics .center_content .contract {
    max-width: 450px;
    border-radius: 20px;
    padding: 22px 18px 24px 18px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  .tokenomics .center_content .contract .copyBtn {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  .tokenomics .center_content {
    gap: 70px;
  }
  .tokenomics {
    padding: 70px 0 20px;
  }
  .howToBuy .center_content h1 {
    font-size: 42px;
  }
  .howToBuy .center_content h1 .text-outline {
    font-size: 42px;
    -webkit-text-stroke: 8px white;
  }
  .howToBuy .center_content h1 .text-inner {
    font-size: 42px;
  }
  .howToBuy .center_content .cards .row .card h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .howToBuy .center_content .cards .row .card p {
    font-size: 16px;
    line-height: 18px;
  }
  .howToBuy .center_content .cards .row .card a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
    padding: 9px 26px 5px 24px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  .howToBuy .center_content .cards {
    gap: 350px;
  }
  .howToBuy .center_content .shape {
    transform: translateY(100px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .roadmap {
    padding: 180px 0 280px 0;
  }
  .roadmap .center_content .heading h1 {
    font-size: 42px;
  }
  .roadmap .center_content .heading h1 .text-inner {
    font-size: 42px;
  }
  .roadmap .center_content .heading h1 .text-outline {
    font-size: 42px;
    -webkit-text-stroke: 8px white;
  }
  .roadmap .center_content {
    align-items: center;
    gap: 50px;
  }
  .roadmap .center_content .tableAndTV .tv {
    bottom: 100px;
    left: unset;
    width: 500px;
    transform: translateX(14%);
  }
  .roadmap .center_content .tableAndTV .table-top {
    height: 50px;
    bottom: 100px;
  }
  .roadmap .center_content .tableAndTV .table-bottom {
    height: 100px;
  }
  .roadmap .center_content .slider .controller {
    width: 100%;
    gap: 20px;
    margin: unset;
    justify-content: space-between;
  }
  .roadmap .center_content .slider .controller .left,
  .roadmap .center_content .slider .controller .right {
    width: 30px;
    height: 30px;
  }
  .roadmap .center_content .slider .top .card h1 {
    font-size: 18px;
    line-height: 18px;
  }
  .roadmap .center_content .slider .top .card ul li {
    font-size: 16px;
    padding-left: 18px;
    line-height: 16px;
  }
  .roadmap .center_content .slider .top .card ul li::before {
    width: 8px;
    height: 8px;
  }
  .roadmap .center_content .slider .top .card ul {
    gap: 12px;
  }
  .faqs {
    padding: 60px 0 80px;
  }
  .faqs .top {
    top: -13.5%;
  }
  .faqs .bottom {
    bottom: -15.2%;
  }
  .faqs .center_content .shapes {
    display: none;
  }
  .faqs .center_content .rightSide {
    width: 100%;
    gap: 60px;
  }
  .faqs .center_content .rightSide .accordion {
    width: 100%;
    gap: 18px;
  }
  .faqs .center_content .rightSide .heading {
    font-size: 42px;
  }
  .faqs .center_content .rightSide .heading .text-outline {
    font-size: 42px;
    -webkit-text-stroke: 8px white;
  }
  .faqs .center_content .rightSide .heading .text-inner {
    font-size: 42px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .question h1 {
    font-size: 16px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .question {
    padding: 12px 14px 8px;
  }
  footer .center_content {
    width: 500px;
    padding: 144px 26px 24px;
    min-height: 270px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
  }
  footer .center_content .rightSide {
    /* right: -2px; */
    /* bottom: -5px; */
    bottom: unset;
    top: -46px;
    width: 100%;
    border-bottom: 1px solid #000;
    right: unset;
    left: 0;
    height: 163px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .center_content .rightSide img {
    width: 160px;
  }
  footer .center_content .leftSide h1 {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
  }
  footer .center_content .leftSide h1 .text-outline {
    font-size: 20px;
    -webkit-text-stroke: 2px white;
  }
  footer .center_content .leftSide h1 .text-inner {
    font-size: 20px;
  }
  footer .center_content .leftSide {
    width: 100%;
    gap: 24px;
    align-items: center;
  }
  footer .center_content .leftSide .btns a {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
    padding: 10px 26px 8px;
    font-size: 16px;
    line-height: 16px;
  }
  footer {
    padding: 90px 0;
    background-position: left;
  }
  .faqs
    .center_content
    .rightSide
    .accordion
    .questionAndAnswer
    .answerParent.active {
    padding: 14px 20px 14px 20px;
  }
  .faqs .center_content .rightSide .accordion .questionAndAnswer .answer p {
    font-size: 14px;
  }
  .roadmap .center_content .heading {
    margin: unset;
  }
  .aboutUs .center_content .rightSide .grass {
    bottom: 8px;
    left: 0px;
  }
  .tokenomics .center_content .shortInfo .ticker .shape {
    bottom: 95%;
  }
  .howToBuy .center_content .content {
    width: 480px;
    gap: 60px;
  }
  .howToBuy .center_content {
    padding: 170px 0 120px;
  }
  .roadmap .center_content .slider .top .card {
    padding: 26px 24px 22px;
    gap: 18px;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
    border-radius: 14px;
  }
  .tokenomics .center_content .contract .copyBtn .copylabelMessage p {
    font-size: 16px;
  }
  .tokenomics .center_content .contract .copyBtn .copylabelMessage {
    padding: 8px 14px;
    top: -110%;
  }
  nav .center_content .links {
    gap: 18px;
  }
  .progress-container {
    box-shadow: 2px 4px 2px 0 rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
  }
  .faqs .center_content {
    width: 500px;
  }
}

@media screen and (max-width: 905px) {
  .faqs .bottom {
    bottom: -13.2%;
  }
}

@media screen and (max-width: 800px) {
  .faqs .bottom {
    bottom: -10.2%;
  }
  .roadmap .center_content .tableAndTV .tv {
    width: 300px;
  }
}

@media screen and (max-width: 598px) {
  .faqs .bottom {
    bottom: -8.2%;
  }
  }

@media screen and (max-width: 550px) {
  .progress-container {
    width: 90%;
  }
  .aboutUs .center_content .rightSide {
    width: 100%;
    min-height: 480px;
    padding-top: 4.4rem;
  }
  .aboutUs .center_content .rightSide h1 {
    line-height: 20px;
    font-size: 18px;
    padding: unset;
  }
  .aboutUs .center_content .rightSide p {
    font-size: 16px;
    line-height: 18px;
    margin-top: 4px;
  }
  .aboutUs .center_content .rightSide a {
    width: 75%;
    font-size: 16px;
  }
  .aboutUs .center_content .rightSide .grass {
    bottom: -14px;
    left: 0px;
  }
  .aboutUs .center_content .rightSide .grass img {
    width: 100%;
    transform: scale(1.24);
  }
  .howToBuy .center_content .content {
    width: 90%;
  }
  .howToBuy .center_content .shape {
    transform: translateY(70px);
  }
  .howToBuy .center_content .shape img {
    width: 100%;
  }
  .roadmap {
    padding: 80px 0 280px 0;
  }
  .roadmap .center_content .tableAndTV .tv {
    width: 240px;
    transform: translateX(27%);
  }
  .faqs .center_content {
    width: 90%;
  }
  footer .center_content {
    width: 78%;
  }
  .faqs .bottom {
    bottom: -4.2%;
  }
  .faqs .top {
    top: -5.5%;
  }
}

/* Gallery Section */
.gallery {
  width: 100%;
  padding: 150px 0;
  background-color: #4E2320;
  position: relative;
  overflow: hidden;
}

.gallery .decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.gallery .floating-turtle {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.2;
}

.gallery .turtle1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.gallery .turtle2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.gallery .turtle3 {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.gallery .center_content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.gallery .center_content h1 {
  position: relative;
  text-align: center;
}

.gallery .center_content h1 .text-outline {
  font-size: 126px;
  -webkit-text-stroke: 3px white;
  color: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.gallery .center_content h1 .text-inner {
  font-size: 126px;
  color: white;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.gallery .gallerySwiper {
  width: 100%;
  padding: 50px 0;
  position: relative;
}

.gallery .gallerySwiper .swiper-slide {
  width: 500px;
  height: 400px;
  transform: perspective(1000px) rotateY(0deg) scale(0.8);
  transition: all 0.6s ease;
  opacity: 0.5;
}

.gallery .gallerySwiper .swiper-slide .image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.gallery .gallerySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.gallery .gallerySwiper .swiper-slide-active {
  transform: perspective(1000px) rotateY(0deg) scale(1);
  opacity: 1;
}

.gallery .gallerySwiper .swiper-slide-active .image-container {
  transform: translateY(-10px);
}

.gallery .gallerySwiper .swiper-slide-prev {
  transform: perspective(1000px) rotateY(30deg) scale(0.8);
}

.gallery .gallerySwiper .swiper-slide-next {
  transform: perspective(1000px) rotateY(-30deg) scale(0.8);
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: white;
  background: rgba(255,255,255,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.gallery .swiper-button-next::after,
.gallery .swiper-button-prev::after {
  font-size: 20px;
}

.gallery .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.gallery .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.gallery .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: #fff;
}

/* Media Queries for Gallery */
@media screen and (max-width: 1600px) {
  .gallery .center_content h1 .text-outline,
  .gallery .center_content h1 .text-inner {
    font-size: 100px;
  }
  
  .gallery .floating-turtle {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 1200px) {
  .gallery .gallerySwiper .swiper-slide {
    width: 400px;
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .gallery .center_content h1 .text-outline,
  .gallery .center_content h1 .text-inner {
    font-size: 60px;
  }
  
  .gallery .gallerySwiper .swiper-slide {
    width: 300px;
    height: 240px;
  }
}

@media screen and (max-width: 480px) {
  .gallery .center_content h1 .text-outline,
  .gallery .center_content h1 .text-inner {
    font-size: 40px;
  }
  
  .gallery .gallerySwiper .swiper-slide {
    width: 250px;
    height: 200px;
  }
}

/* Gallery Navigation Styles */
.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background: #FFD700;
  border: 4px solid #000;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
  transition: all 0.2s ease;
  margin-top: -35px;
}

.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 1);
  background: #FFE44D;
}

.gallery .swiper-button-next:active,
.gallery .swiper-button-prev:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

.gallery .swiper-button-next::after,
.gallery .swiper-button-prev::after {
  font-family: "Luckiest Guy", serif;
  font-size: 30px;
  color: #000;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.gallery .swiper-button-prev::after {
  content: "<";
}

.gallery .swiper-button-next::after {
  content: ">";
}

@media screen and (max-width: 768px) {
  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-width: 3px;
    margin-top: -25px;
  }
  
  .gallery .swiper-button-next::after,
  .gallery .swiper-button-prev::after {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-width: 2px;
    margin-top: -20px;
  }
  
  .gallery .swiper-button-next::after,
  .gallery .swiper-button-prev::after {
    font-size: 20px;
  }
}
