@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Walter+Turncoat&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* From Uiverse.io by ShrinilDhorda */
.btn-style2 {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border: 2px white solid;
  outline: none;
  border-radius: 0.4rem;
  cursor: pointer;
  text-transform: uppercase;
  background-color: rgb(14, 14, 26);
  color: rgb(234, 234, 234);
  font-weight: 700;
  transition: 0.6s;
  box-shadow: 0px 0px 60px #36b030;
  -webkit-box-reflect: below 10px
    linear-gradient(to bottom, rgba(20, 100, 37, 0), rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 480px) {
  .btn-style2 {
    width: 8rem;
    height: 4.5rem;
    font-size: 14px;
    padding: 5px 10px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 760px) {
  .btn-style2 {
    width: 8rem;
    height: 4.5rem;
    font-size: 14px;
    padding: 5px 10px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 320px) {
  .btn-style2 {
    width: 8rem;
    height: 4.5rem;
    font-size: 14px;
    padding: 5px 10px;
    flex-shrink: 0;
  }
}

.btn-style2:active {
  scale: 0.92;
}

.btn-style2:hover {
  background: #36b030;
  background: linear-gradient(
    270deg,
    rgba(252, 252, 252, 0.712) 0%,
    rgba(255, 255, 255, 0.873) 60%
  );
  color: rgb(0, 0, 0);
}

/* From Uiverse.io by StealthWorm */
.btn-style3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  overflow: hidden;
  height: 3rem;
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  background-image: linear-gradient(#ddcb62, #1faf1a),
    linear-gradient(
      137.48deg,
      #ffffff 10%,
      #dad049 45%,
      #57ec44 67%,
      #184412 87%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

#container-stars {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

strong {
  z-index: 2;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 4px white;
}

#glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.circle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: rgba(40, 83, 23, 0.636);
}

.circle:nth-of-type(2) {
  background: rgba(167, 199, 116, 0.704);
}

.btn-style3:hover #container-stars {
  z-index: -10;
  background-color: #c5c75d;
}

.btn-style3:hover {
  transform: scale(1.1);
}

.btn-style3:active {
  border: double 4px #297014;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn-style3:active .circle {
  background: #396331;
}

#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 90s linear infinite;
}

#stars::after {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
}

#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 60s linear infinite;
}

#stars::before {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-135rem);
  }
}

@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes gradient_301 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@media screen and (max-width: 768px) {
  .btn-style3 {
    width: 4rem;
    height: 2.5rem;
    font-size: 14px;
    padding: 5px 10px;
    flex-shrink: 0;
  }

  strong {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 480px) {
  .btn-style3 {
    width: 4rem;
    height: 2.5rem;
    font-size: 14px;
    padding: 5px 10px;
    flex-shrink: 0;
  }

  strong {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 320px) {
  .btn-style3 {
    width: 4rem;
    height: 2.5rem;
    font-size: 14px;
    padding: 5px 10px;
    flex-shrink: 0;
  }

  strong {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* From Uiverse.io by 0xnihilism */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 300px;
  height: 100%;
  padding: 40px;
}

/* Common styles for both buttons */
.brutalist-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 142px;
  color: #e5dede;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  color: rgb(0, 0, 0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Styles for the first button */
.button-1 {
  background-color: #fae190;
  border: 3px solid #ffffff;
  border-radius: 12px;
  box-shadow: 4px 4px 1px #000000;
}

.button-1:hover {
  background-color: #45e045;
  border-color: #030504;
  transform: translate(-6px, -6px) rotate(1deg);
  box-shadow: 10px 10px 0 #000000, 15px 15px 20px rgba(64, 164, 122, 0.2);
}

.button-1::before,
.button-1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.6s;
}

.button-1::before {
  left: -100%;
}
.button-1::after {
  left: 100%;
}

.button-1:hover::before {
  animation: swipeRight 1.5s infinite;
}
.button-1:hover::after {
  animation: swipeLeft 1.5s infinite;
}

@keyframes swipeRight {
  100% {
    transform: translateX(200%) skew(-45deg);
  }
}

@keyframes swipeLeft {
  100% {
    transform: translateX(-200%) skew(-45deg);
  }
}

/* Hover effects */
.brutalist-button:hover .openai-logo {
  transform: translateY(-10px);
}

.brutalist-button:hover .openai-icon {
  width: 40px;
  height: 40px;
}

.bruta.brutalist-button:hover .openai-text {
  opacity: 1;
  max-height: 60px;
  margin-top: 8px;
}
/* social btn screen responsiveness */
@media screen and (max-width: 480px) {
  .button-1 {
    width: 2rem;
    height: 3.5rem;
    font-size: 14px;
    padding: 5px 20px;
    flex-shrink: 0;
  }
}

/* Styles for the OpenAI logo and text */
.openai-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}

.openai-icon {
  width: 80px;
  height: 64px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.openai-text {
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

.button-text span:first-child {
  font-size: 12px;
  font-weight: normal;
}

.button-text span:last-child {
  font-size: 16px;
}

/* Hover effects */
.brutalist-button:hover .openai-logo {
  transform: translateY(-10px);
}

.brutalist-button:hover .openai-icon {
  width: 40px;
  height: 40px;
}

.brutalist-button:hover .button-text,
.brutalist-button:hover .openai-text {
  opacity: 1;
  max-height: 60px;
  margin-top: 8px;
}

/* Animation for the OpenAI logo */
@keyframes spin-and-zoom {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.brutalist-button:hover .openai-icon {
  animation: spin-and-zoom 4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.brutalist-button:hover .openai-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brutalist-button:active .openai-icon,
.brutalist-button:active .openai-text,
.brutalist-button:active .button-text {
  transform: scale(0.95);
}

@font-face {
  font-family: "Burger Free";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/burgerfree.woff) format(woff),
    url(../fonts/burgerfree.otf) format(opentype);
}

@font-face {
  font-family: "Friends Zone";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/friendszone.woff) format(woff),
    url(../fonts/friendszone.otf) format(opentype);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  font-family: "Burger Free", system-ui;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #101228;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img,
video {
  display: block;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 0 10px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  background: #fae190;
  border: 3px solid #101228;
  font-family: "Burger Free", system-ui;
  font-size: 24px;
  padding: 22px 40px;
  box-shadow: 4px 9px 0px #101228;
  text-decoration: none;
  border-radius: 999px;
  height: 74px;
  transition: background 100ms ease-in-out;
  color: #101228;
  flex-shrink: 0;
}

.cex__item .btn {
  height: 120px;
  transition: background 100ms ease-in-out;
  box-shadow: none;
  background: none;
  border: none;
}

.cex__container {
  border: white 5px solid;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .cex__title {
    font-size: 3.5rem;
    padding: 5px 10px;
    flex-shrink: 0;
  }
}

.cex img {
  max-width: 215px;
}

@media screen and (max-width: 1023.98px) {
  .btn {
    font-size: 18px;
    padding: 16px 28px;
    height: 56px;
    box-shadow: 3px 6px 0px #101228;
  }

  .cex__text {
    font-size: 2rem;
    text-align: center;
  }

  .cex__item .btn {
    font-size: 18px;
    padding: 16px 28px;
    height: 120px;
    box-shadow: none;
    background: none;
    border: none;
  }
}

.btn:hover {
  background: #ffb580;
}

.cex__item .btn:hover {
  background: none;
}

.btn_icon {
  width: 74px;

  padding: 0;
}

.cex__item .btn_icon {
  width: 120px;
  padding: 0;
}

@media screen and (max-width: 1023.98px) {
  .btn_icon {
    width: 56px;
  }

  .btn_icon svg,
  .btn_icon img {
    max-width: 320px;
  }

  .cex__item .btn_icon {
    width: 120px;
  }

  .cex__item .btn_icon svg,
  .btn_icon img {
    max-width: 125px;
  }
}

h2 {
  font-size: 128px;
  color: #ffffff;
  text-shadow: #101228 5px 0px 0px, #101228 6.92869px 0.996602px 0px,
    #101228 6.71622px 1.9729px 0px, #101228 6.36692px 2.909px 0px,
    #101228 5.8879px 3.78584px 0px, #101228 5.28893px 4.58555px 0px,
    #101228 4.5822px 5.29183px 0px, #101228 3.78212px 5.8903px 0px,
    #101228 2.90498px 6.36876px 0px, #101228 1.96865px 6.71747px 0px,
    #101228 0.992221px 6.92932px 0px, #101228 -0.00442571px 7px 0px,
    #101228 -1.00098px 6.92806px 0px, #101228 -1.97715px 6.71498px 0px,
    #101228 -2.91303px 6.36508px 0px, #101228 -3.78956px 5.88551px 0px,
    #101228 -4.58889px 5.28603px 0px, #101228 -5.29472px 4.57885px 0px,
    #101228 -5.89269px 3.77839px 0px, #101228 -6.3706px 2.90095px 0px,
    #101228 -6.71871px 1.96441px 0px, #101228 -6.92995px 0.98784px 0px,
    #101228 -6.99999px -0.00885142px 0px, #101228 -6.92743px -1.00536px 0px,
    #101228 -6.71372px -1.98139px 0px, #101228 -6.36324px -2.91705px 0px,
    #101228 -5.88311px -3.79328px 0px, #101228 -5.28313px -4.59223px 0px,
    #101228 -4.57551px -5.29762px 0px, #101228 -3.77466px -5.89507px 0px,
    #101228 -2.89692px -6.37243px 0px, #101228 -1.96016px -6.71995px 0px,
    #101228 -0.983458px -6.93057px 0px, #101228 0.0132771px -6.99999px 0px,
    #101228 1.00974px -6.92679px 0px, #101228 1.98564px -6.71247px 0px,
    #101228 2.92107px -6.36139px 0px, #101228 3.797px -5.88071px 0px,
    #101228 4.59557px -5.28022px 0px, #101228 5.30051px -4.57215px 0px,
    #101228 5.89746px -3.77094px 0px, #101228 6.37426px -2.89289px 0px,
    #101228 6.72119px -1.95591px 0px, #101228 6.93119px -0.979076px 0px,
    #101228 4.68359px 17.5635px 0px;
}

@media screen and (max-width: 640px) {
  h2 {
    font-size: 100px;
  }
}

.header {
  position: absolute;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  padding: 50px 0;
}

@media screen and (max-width: 1023.98px) {
  .header {
    padding: 25px 0;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 1023.98px) {
  .header__container {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 5px;
  }
}

.header__logo_icon {
  display: none;
}

.header__logo img {
  height: 74px;
}

@media screen and (max-width: 768px) {
  .header__logo img {
    height: 50px; /* Reduce size for mobile */
  }
}
@media screen and (max-width: 480px) {
  .header__logo img {
    height: 40px; /* Further reduce for smaller screens */
  }
}
@media screen and (max-width: 320px) {
  .header__logo img {
    height: 40px; /* Further reduce for smaller screens */
  }
}

@media screen and (max-width: 1100px) {
  .header__logo {
    margin-right: auto;
  }
}

@media screen and (max-width: 1023.98px) {
  .header__logo img {
    height: 56px;
  }
}

@media screen and (max-width: 480px) {
  .header__logo_full {
    display: none;
  }

  .header__logo_icon {
    display: block;
  }
}

.header__nav {
  display: flex;
  background: #fff;
  flex-wrap: nowrap;
  gap: 5px;
  border: 3px solid #101228;
  box-shadow: 4px 9px 0px #101228;
  color: #101228;
  border-radius: 999px;
  overflow: hidden;
  font-size: 44px;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

.header__nav a {
  padding: 22px 24px;
  transition: background 100ms ease-in-out;
}

.header__nav a:hover {
  background: #edeef8;
}

.header__nav a:first-child {
  padding-left: 40px;
}

.header__nav a:last-child {
  padding-right: 40px;
}

@media screen and (max-width: 1100px) {
  .header__nav {
    position: absolute;
    z-index: 888;
    right: 315px;
    top: 69px;
    display: flex;
    flex-direction: column;
    border-radius: 37px;
    text-align: center;
    transform: translateY(-150%);
    transition: transform 300ms ease-in-out;
  }

  .header__nav a {
    padding: 22px !important;
  }
}

@media screen and (max-width: 1023.98px) {
  .header__nav {
    top: 25px;
    font-size: 18px;
    border-radius: 28px;
    right: 228px;
  }

  .header__nav a {
    padding: 16px !important;
  }
}

@media screen and (max-width: 640px) {
  .header__nav {
    top: 69px;
    right: 10px;
  }
}

.header__burger {
  display: none;
}

@media screen and (max-width: 1100px) {
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 74px;
    padding: 0;
    gap: 5px;
  }

  .header__burger span {
    width: 38px;
    height: 6px;
    background: currentColor;
    border-radius: 99px;
  }
}

@media screen and (max-width: 1023.98px) {
  .header__burger {
    width: 56px;
    gap: 4px;
  }

  .header__burger span {
    width: 24px;
    height: 4px;
  }
}

@media screen and (max-width: 1100px) {
  .header_open .header__nav {
    transform: translateY(0);
  }

  .header_open .header__burger span {
    transition: transform 300ms ease-in-out;
    position: absolute;
  }

  .header_open .header__burger span:nth-child(1) {
    transform: rotate(45deg);
  }

  .header_open .header__burger span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .header_open .header__burger span:nth-child(3) {
    display: none;
  }
}

.hero {
  background: url(./assets/img/bg-posts.png) bottom center no-repeat;
  padding: 200px 0 300px 0;
  position: relative;
  background-size: cover;
}

@media screen and (max-width: 1023.98px) {
  .hero {
    padding: 106px 0 250px 0;
  }
}

@media screen and (max-width: 640px) {
  .hero {
    padding: 106px 0 200px 0;
  }
}

@keyframes smooth-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

.hero__illustration {
  width: 150px; /* Adjust as needed */
  height: auto;
  animation: smooth-bounce 2.5s ease-in-out infinite;
  z-index: 100;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}

.hero__container {
  display: flex;
  gap: 30px 10px;
  align-items: stretch;
  max-width: 1280px;
  /* position: relative; */
  justify-content: space-around;
  /*flex-wrap: wrap;*/
  align-content: center;
  flex-flow: row wrap;
}

@media screen and (max-width: 1023.98px) {
  .hero__container {
    flex-direction: column;
    gap: 20px;
  }
}

.hero__illustration {
  width: 100%;
  /* display: flex; */
  min-width: 0;
  margin: auto;
}

@media screen and (max-width: 1023.98px) {
  .hero__illustration {
    max-width: 480px;
    width: 100%;
    animation: bounce 2s infinite;
    transform-origin: center bottom;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-20px);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.25);
  }
}

.hero__col {
  /* display: flex; */
  margin: auto;
  width: 48%;
  text-align: center;
}

@media screen and (max-width: 1023.98px) {
  .hero__col {
    max-width: 640px;
    width: 100%;
  }
}

.hero__title {
  font-size: 184px;
  color: #36b030;
  text-shadow: #101228 7px 0px 0px, #101228 6.92869px 0.996602px 0px,
    #101228 6.71622px 1.9729px 0px, #101228 6.36692px 2.909px 0px,
    #101228 5.8879px 3.78584px 0px, #101228 5.28893px 4.58555px 0px,
    #101228 4.5822px 5.29183px 0px, #101228 3.78212px 5.8903px 0px,
    #101228 2.90498px 6.36876px 0px, #101228 1.96865px 6.71747px 0px,
    #101228 0.992221px 6.92932px 0px, #101228 -0.00442571px 7px 0px,
    #101228 -1.00098px 6.92806px 0px, #101228 -1.97715px 6.71498px 0px,
    #101228 -2.91303px 6.36508px 0px, #101228 -3.78956px 5.88551px 0px,
    #101228 -4.58889px 5.28603px 0px, #101228 -5.29472px 4.57885px 0px,
    #101228 -5.89269px 3.77839px 0px, #101228 -6.3706px 2.90095px 0px,
    #101228 -6.71871px 1.96441px 0px, #101228 -6.92995px 0.98784px 0px,
    #101228 -6.99999px -0.00885142px 0px, #101228 -6.92743px -1.00536px 0px,
    #101228 -6.71372px -1.98139px 0px, #101228 -6.36324px -2.91705px 0px,
    #101228 -5.88311px -3.79328px 0px, #101228 -5.28313px -4.59223px 0px,
    #101228 -4.57551px -5.29762px 0px, #101228 -3.77466px -5.89507px 0px,
    #101228 -2.89692px -6.37243px 0px, #101228 -1.96016px -6.71995px 0px,
    #101228 -0.983458px -6.93057px 0px, #101228 0.0132771px -6.99999px 0px,
    #101228 1.00974px -6.92679px 0px, #101228 1.98564px -6.71247px 0px,
    #101228 2.92107px -6.36139px 0px, #101228 3.797px -5.88071px 0px,
    #101228 4.59557px -5.28022px 0px, #101228 5.30051px -4.57215px 0px,
    #101228 5.89746px -3.77094px 0px, #101228 6.37426px -2.89289px 0px,
    #101228 6.72119px -1.95591px 0px, #101228 6.93119px -0.979076px 0px,
    #101228 4.68359px 17.5635px 0px;
}

@media screen and (max-width: 540px) {
  .hero__title {
    font-size: 35vw;
  }
}

.hero__text {
  margin: 24px;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #101228;
  font-weight: 400;
  color: white;
  line-height: 1.33;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 640px) {
  .hero__text {
    font-size: 20px;
    font-family: "Walter Turncoat", serif;
    font-weight: 400;
    font-style: normal;
  }
}

.hero__socials {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .hero__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero__social-btn {
    width: 40px;
    height: 40px;
  }
}

.hero__social-btn {
  background: #fae190;
  width: 100px;
}

.hero__social-btn:hover {
  background: #ffdb80;
}

/* 1️⃣ Reduce the Header Logo for Mobile */
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 50px; /* Smaller size for mobile */
  }
}

@media screen and (max-width: 480px) {
  .header__logo img {
    height: 40px; /* Further reduce for very small screens */
  }
}

/* 2️⃣ Reduce .hero__social-btn Size for Mobile */
.hero__social-btn {
  width: 80px; /* Default size */
  height: 80px;
}

@media screen and (max-width: 768px) {
  .hero__social-btn {
    width: 50px; /* Reduce size on tablets */
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .hero__social-btn {
    width: 40px; /* Further reduce for small mobile screens */
    height: 40px;
  }
}

/* Ensure Social Buttons Stay in One Line */
.hero__socials {
  display: flex;
  flex-wrap: wrap; /* Ensures they don’t overflow */
  justify-content: center; /* Center them */
  gap: 5px; /* Reduce spacing between icons */
  max-width: 100%;
  overflow: hidden; /* Prevents overflow issues */
}

@media screen and (max-width: 480px) {
  .hero__socials {
    gap: 3px; /* Reduce spacing further for very small screens */
  }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 20px;
  gap: 12px;
}

.cex__social-btn {
  background: #fae190;
}

.cex__social-btn:hover {
  background: none;
}

@media screen and (max-width: 640px) {
  .hero__scroll {
    font-size: 18px;
    gap: 8px;
  }

  .hero__scroll img {
    max-width: 32px;
  }

  .hero__scroll img:last-child {
    max-width: 20px;
  }
}

.about {
  padding: 100px 80px 50px 80px;
  position: relative;
}

.about__left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about__right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 90vw;
}

.about__container {
  display: flex;
  align-items: center;
  gap: 100px;
}

@media screen and (max-width: 1280px) {
  .about__container {
    gap: 50px;
  }
}

@media screen and (max-width: 1023.98px) {
  .about__container {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 640px) {
  .about__container {
    width: 70px;
    gap: 20px;
  }
}

@media screen and (max-width: 1023.98px) {
  .about__col {
    max-width: 640px;
  }
}

.about__title {
  margin-bottom: 48px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.about__title img {
  position: absolute;
}

.about__title img:first-child {
  right: 105%;
  top: 70%;
}

.about__title img:last-child {
  left: 105%;
  top: -30%;
}

@media screen and (max-width: 0.98px) {
  .about__title {
    margin: 0 auto;
    margin-bottom: 32px;
  }

  .about__title img:first-child {
    top: 30%;
  }
}

@media screen and (max-width: 640px) {
  .about__title {
    margin-bottom: 20px;
  }
}

.about__text {
  font-size: 24px;
  line-height: 1.4;
  color: #ffffff;
  background: #36b030;
  padding: 50px;
  border-radius: 25px;
  border: #ffffff 10px solid;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 640px) {
  .about__text {
    font-size: 20px;
    font-family: "Walter Turncoat", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 15px;
  }
}

.about__illustration {
  width: 44%;
  border-radius: 16px;
}

@media screen and (max-width: 1023.98px) {
  .about__illustration {
    max-width: 640px;
    width: 100%;
  }
}

.tokenomics {
  padding: 50px 0;
  position: relative;
}

.tokenomics__left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.tokenomics__inner {
  background: url(./assets/img/tokenomics-background.png) left top no-repeat,
    #36b030;
  background-size: contain;
  border: 6px solid #101228;
  border-radius: 36px;
  display: flex;
  padding: 60px;
  align-items: center;
}

@media screen and (max-width: 800px) {
  .tokenomics__inner {
    background-size: cover;
  }
}

@media screen and (max-width: 640px) {
  .tokenomics__inner {
    padding: 60px 20px;
  }
}

@media screen and (max-width: 768px) {
  .tokenomics__inner {
    width: 100%;
    padding: 30px;
    border-radius: 20px;
  }
}

.tokenomics__col {
  padding: 20px 20px 20px 0px;
  width: 66%;
}

@media screen and (max-width: 1280px) {
  .tokenomics__col {
    width: 100%;
    padding: 0;
  }
}

.tokenomics__title {
  font-size: 100px;
  color: #36b030;
  margin-bottom: 60px;
}

@media screen and (max-width: 800px) {
  .tokenomics__title {
    font-size: 12.5vw;
    text-align: center;
    text-shadow: #101228 5px 0px 0px, #101228 4.90033px 0.993347px 0px,
      #101228 4.60531px 1.94709px 0px, #101228 4.12668px 2.82321px 0px,
      #101228 3.48353px 3.58678px 0px, #101228 2.70151px 4.20736px 0px,
      #101228 1.81179px 4.6602px 0px, #101228 0.849836px 4.92725px 0px,
      #101228 -0.145998px 4.99787px 0px, #101228 -1.13601px 4.86924px 0px,
      #101228 -2.08073px 4.54649px 0px, #101228 -2.94251px 4.04248px 0px,
      #101228 -3.68697px 3.37732px 0px, #101228 -4.28444px 2.57751px 0px,
      #101228 -4.71111px 1.67494px 0px, #101228 -4.94996px 0.7056px 0px,
      #101228 -4.99147px -0.291871px 0px, #101228 -4.83399px -1.27771px 0px,
      #101228 -4.48379px -2.2126px 0px, #101228 -3.95484px -3.05929px 0px,
      #101228 -3.26822px -3.78401px 0px, #101228 -2.4513px -4.35788px 0px,
      #101228 -1.53666px -4.75801px 0px, #101228 -0.560763px -4.96845px 0px,
      #101228 0.437495px -4.98082px 0px, #101228 1.41831px -4.79462px 0px,
      #101228 2.34258px -4.41727px 0px, #101228 3.17346px -3.86382px 0px,
      #101228 3.87783px -3.15633px 0px, #101228 4.4276px -2.32301px 0px,
      #101228 4.80085px -1.39708px 0px, #101228 4.98271px -0.415447px 0px,
      #101228 4.68359px 8.5635px 0px;
  }
}

.tokenomics__row {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .tokenomics__row {
    justify-content: center;
  }
}

.tokenomics__item {
  background: #fff;
  border-radius: 24px;
  border: 5px solid #101228;
  padding: 24px 28px;
  box-shadow: 4px 6px 0px #101228;
  align-items: center;
}

.tokenomics__item span {
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
  display: block;
}
.tokenomics__item p {
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
  display: block;
  align-items: center;
}

.tokenomics__item strong {
  font-size: 32px;
  display: block;
}

.tokenomics__illustration {
  width: 44%;
  transform: rotate(-3.3deg);
  /* border: 6px solid #101228;
  box-shadow: 4px 10px 0px #101228;
  border-radius: 42px*/
}

@media screen and (max-width: 1280px) {
  .tokenomics__illustration {
    display: none;
  }
}

.contract {
  background: #fff;
  box-shadow: 4px 9px 0px #101228;
  position: relative;
  height: 74px;
  border-radius: 38px;
  padding: 10px 24px;
  font-size: 24px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .contract {
    font-size: 20px;
    padding: 16px;
    height: auto;
  }
}

.contract__contract {
  width: calc(100% - 130px);
  word-break: break-all;
}

@media screen and (max-width: 1023.98px) {
  .contract__contract {
    width: calc(100% - 100px);
  }
}

.contract__btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 38px;
}

.buy {
  padding: 50px 0;
  position: relative;
}

.cex {
  padding: 50px 0;
  position: relative;
  background: url(../img/tokenomics-background-turbo.png) left top no-repeat,
    #36b030;
  background-size: cover;
}

.cex__items .cex__item .btn img {
  background: none;
}

.buy__left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 500px;
}

.buy__right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 500px;
}

.buy__title {
  margin-bottom: 32px;
  text-align: center;
}

.cex__title {
  margin-bottom: 32px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .cex__text {
    font-size: 80px;
  }
}
.cex__text {
  margin-bottom: 90px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .buy__title {
    font-size: 80px;
  }
}

.buy__items {
  display: grid;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.buy__item {
  width: calc(50% - 10px);
  border: 6px solid #101228;
  box-shadow: 4px 17px 0px #101228;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  display: flex;
  margin-bottom: 17px;
}

.cex__items {
  display: grid;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 60px;
}

.cex__item {
  width: calc(20% - 5px);
  /* border: 6px solid #101228;
  box-shadow: 4px 17px 0px #101228;*/
  padding: 5px;
  border-radius: 32px;
  /* background: #fff;*/
  display: flex;
  margin-bottom: 0px;
  justify-content: center;
}

@media screen and (max-width: 1023.98px) {
  .buy__item {
    width: 100%;
    max-width: 640px;
  }
}

@media screen and (max-width: 640px) {
  .buy__item {
    padding: 24px 16px;
    border-radius: 24px;
  }
}

.buy__number {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 64px;
  background: #36b030;
  border: 6px solid #101228;
  border-radius: 20px;
  box-shadow: 3px 7px 0px #101228;
  transform: rotate(2.5deg);
  margin-right: 24px;
}

@media screen and (max-width: 640px) {
  .buy__number {
    width: 60px;
    height: 60px;
    font-size: 48px;
    border-width: 4px;
    margin-right: 16px;
  }
}

.buy__text {
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  .buy__text {
    font-size: 20px;
  }
}

.whitepaper {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
  margin: 30px 0;
  background-color: #36b030;
  border-radius: 20px;
  border: 10px #36b030 solid;
}
.whitepaper-text {
  padding-bottom: 50px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .whitepaper-text {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .whitepaper-text {
    text-align: center;
  }
}

.whitepaper h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  padding: 20px;
  text-shadow: #101228 5px 0px 0px, #101228 6.92869px 0.996602px 0px,
    #101228 6.71622px 1.9729px 0px, #101228 2.90498px 6.36876px 0px,
    #101228 1.96865px 6.71747px 0px, #101228 0.992221px 6.92932px 0px,
    #101228 -1.00098px 6.92806px 0px, #101228 -4.58889px 5.28603px 0px,
    #101228 -5.29472px 4.57885px 0px, #101228 -5.89269px 3.77839px 0px,
    #101228 -6.71871px 1.96441px 0px, #101228 -6.99999px -0.00885142px 0px,
    #101228 -6.92743px -1.00536px 0px, #101228 -6.71372px -1.98139px 0px,
    #101228 -6.36324px -2.91705px 0px, #101228 -5.88311px -3.79328px 0px,
    #101228 -5.28313px -4.59223px 0px, #101228 -4.57551px -5.29762px 0px,
    #101228 -3.77466px -5.89507px 0px, #101228 -2.89692px -6.37243px 0px,
    #101228 -1.96016px -6.71995px 0px, #101228 -0.983458px -6.93057px 0px,
    #101228 0.0132771px -6.99999px 0px, #101228 1.00974px -6.92679px 0px,
    #101228 1.98564px -6.71247px 0px, #101228 2.92107px -6.36139px 0px,
    #101228 3.797px -5.88071px 0px, #101228 4.59557px -5.28022px 0px,
    #101228 5.30051px -4.57215px 0px, #101228 5.89746px -3.77094px 0px,
    #101228 6.37426px -2.89289px 0px, #101228 6.72119px -1.95591px 0px;
}
@media screen and (max-width: 760px) {
  .whitepaper h2 {
    width: 4rem;
    height: 2.5rem;
    font-size: 1.5rem;
    padding: 5px 10px;
    flex-shrink: 0;
    text-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .whitepaper h2 {
    width: 4rem;
    height: 2.5rem;
    font-size: 1.5rem;
    padding: 5px 10px;
    flex-shrink: 0;
    text-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 320px) {
  .whitepaper h2 {
    width: 4rem;
    height: 2.5rem;
    font-size: 1.5rem;
    padding: 5px 10px;
    flex-shrink: 0;
    text-align: center;
    align-items: center;
  }
}

.whitepaper .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #36b030;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
}

.whitepaper .btn:hover {
  background-color: #2a8025;
}

@media screen and (max-width: 768px) {
  .whitepaper .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

/* Hero Illustration Animation */
.animated-logo {
  animation: bounce 2s infinite;
  transform-origin: center bottom;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-20px);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.25);
  }
}

/* ROADMAP Section */
.roadmap {
  width: 100%;
  min-height: 100vh; /* Full screen height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  background-color: #0f2c07; /* Dark background */
  color: white;
  border: white 2px solid;
  border-radius: 15px;
}

/* Title */
.roadmap h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Description */
.roadmap-text {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 30px;
}

/* Image Container */
.roadmap-image-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Image Styling */
.roadmap-img {
  width: 90%;
  max-width: 1000px; /* Ensures it doesn’t get too large */
  height: auto;
  border-radius: 20px; /* Optional for rounded corners */
  border: #ffffff 5px solid;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .roadmap h2 {
    font-size: 2.5rem;
  }

  .roadmap-text {
    font-size: 1.2rem;
    max-width: 90%;
  }

  .roadmap-img {
    width: 95%;
  }
}

@media screen and (max-width: 480px) {
  .roadmap h2 {
    font-size: 2rem;
  }

  .roadmap-text {
    font-size: 1rem;
  }

  .roadmap-img {
    width: 100%;
  }
}

.footer {
  padding: 50px 0;
  background: url(../img/tokenomics-background-turbo.png) left top repeat,
    #36b030;
  margin-top: auto;
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
}

@media screen and (max-width: 1023.98px) {
  .footer__container {
    flex-direction: column;
  }
}

.footer__logo img {
  height: 70px;
}

.footer__disclaimer {
  width: 33%;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 1023.98px) {
  .footer__disclaimer {
    max-width: 480px;
    width: 100%;
    text-align: center;
  }
}

.footer__socials {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .footer__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer__social-btn {
    width: 40px;
    height: 40px;
  }
}

.footer__social-btn {
}

.footer__social-btn:hover {
  background: 36B030;
}

.footer__btn {
  font-family: "Walter Turncoat", serif;
  font-weight: 400;
  font-style: normal;
}

a.footer__btn:hover {
  background: #ffdb80;
}

/*# sourceMappingURL=main.css.map */
