@font-face {
  font-family: myhome;
  src: url(./fonts/myhome.ttf);
}

@font-face {
  font-family: marbella;
  src: url(./fonts/alternategothicno1.otf);
}

/* Box sizing rules */
:root {
  --background-color: #eeeeee;
  --bunee-color: #ffffed;
  --green: rgb(128, 239, 128);
  --red: #f2e4e8;

  --pastelpink: #ffccd5;
  --bunee-pink: #cecece;
}

.grayscaled {
  filter: grayscale(1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: 'overpass', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background-color);
  background-image: url(./media/shape.png);
  color: black;
  overflow-x: hidden;
  background-size: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5rem;
  font-size: 20px;
}

section,
header,
footer {
  width: 1400px;
  max-width: 98vw;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: absolute;
  z-index: 3;
}

#header-logo {
  width: 44px;
}

.socials,
.anchors {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-weight: bold;
  font-size: 18px;
}

.socials a,
.anchors a {
  text-decoration: none;
  color: white;
}

.socials-icon {
  height: 24px;
  transition: all .1s;
}

.socials-icon:hover {
  transform: scale(1.1);
}

#shape {
  position: absolute;
  z-index: -1;
}

.wrapper-hero {
  width: 100%;
  height: 90vh;
  /* min-height: 90vh; */
  max-height: 850px;
  /*background: radial-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 20%)), url(./media/vintage_upscayl_4x_realesrgan-x4plus-anime.png);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-items: center;
  position: relative;

  background-image: linear-gradient(rgba(255, 255, 255, 0) 70%, #cecece);
  background-size: cover;
  background-position: bottom;

  overflow: hidden;
}

#hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  gap: 60px;
}

#hero .hero-img {
  width: 900px;
  max-width: 95vw;

  position: absolute;
  bottom: 0;
  right: 0;

  filter: grayscale(1);
}

.hero-content {
  margin-top: 80px;
}

.hero-title {
  font-family: marbella;
  line-height: normal;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 10rem;
  /* color: var(--bunee-pink); */
  /* -webkit-text-stroke: 2px white; */
  paint-order: stroke fill;
  text-shadow: 3px 4px white;
  color: #272727;
  ;
}

.hero-text {
  font-size: 1.5rem;
  padding: 8px;
  color: var(--bunee-color);
  /* font-weight: 700; */
  max-width: 60ch;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  width: fit-content;
}

.attention-arrow {
  height: 60px;
  position: absolute;
  right: -40px;
  top: -4px;
}

.button {
  font-family: marbella;
  font-size: 1.75rem;
  text-decoration: none;
  color: inherit;
  background: var(--bunee-pink);
  padding: 6px 20px 2px 20px;
  color: #000000ab;
  border-radius: .5rem;
  line-height: 40px;
  /* box-shadow: 2px 3px #171130; */
  transition: all .5s;
  color: var(--bunee-color);
  background: #272727;
}

.button:hover {
  transform: scale(1.05);
}

.button.empty {

  background: transparent;

  border: 2px solid var(--bunee-color);

  border: 2px solid var(--bunee-color);
  color: var(--bunee-pink);
  background-color: var(--bunee-color);

  color: black;
}

.divider {
  z-index: 3;
  width: 100%;
  /* margin-bottom: -1px; */
  position: absolute;
  top: -1px;
  /* bottom: -2%; */
  left: 0%;
  right: 0%;
  transform: rotate(180deg);

  object-fit: cover;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 160px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: center;
}

.content span {
  padding: 6px 18px 12px 18px;
  border-radius: 40px;
  font-family: marbella;
  font-weight: 100;
  font-size: 26px;

  color: var(--bunee-color);

  transition: all 1s;
}

.content span:hover {
  transform: scale(1.05);
}

.content span.green {
  background-color: var(--bunee-pink);
}

.content span.red {
  background-color: var(--red);
}

.content img {
  width: 20px;
  height: 100%;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-47%);
  }
}

#about {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  gap: 40px;
  position: relative;
}

.arrow-right {
  left: -60px;
}

.arrow-left {
  right: -32px;
}

.subtitle {
  font-family: overpass-mono;
  color: #634736;
  text-shadow: 1px 1px #ffffff1c;
  font-weight: bold;
}

.about-img {
  width: 500px;
  background: linear-gradient(166deg, #cecece 0%, #cecece 100%);
  padding: 0px 10px;
  object-fit: contain;
  border-radius: 8px;
}

#about h2 {
  font-size: 8rem;
  line-height: normal;
  font-family: marbella;

  text-transform: uppercase;
  color: #272727;
  margin-top: -16px;

  text-shadow: 3px 4px #fff;
}

.about-text {
  font-weight: 700;
}

#tokenomics {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  width: 900px;
}

#tokenomics h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 7rem;
  font-family: marbella;
  line-height: normal;
  color: var(--bunee-color);
  text-shadow: 3px 4px var(--bunee-pink);
}

#tokenomics h2 img {
  width: 56px;
  margin-top: 26px;
}

.tokenomics-content {
  display: flex;
  align-items: center;
  background-color: rgb(204 225 255);
  width: 100%;
  height: 400px;
  border-radius: 24px;
  box-shadow: 8px 6px #eb69a7;

  color: #000000ab;
  font-weight: bold;

  background-image: url(./media/S-Tier-Texture-Pink.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  gap: 0px;
}

#tokenomics .tokenomics-content .tokenomics-img {
  width: 400px;
  margin-top: -200px;
  filter: drop-shadow(1px 1px 0px #000000ab);
}

.tokenomics-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  filter: brightness(1.1) contrast(0.9);
}

.tokenomics-right .attention-arrow {
  right: 0px;
}

.tokenomics-right .ticker-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.tokenomics-right .ticker {
  background-color: #eb69a7;
  font-weight: 800;
  padding: 10px 32px 6px;
  border-radius: 24px;
  width: fit-content;
  box-shadow: 1px 2px #000000ab;
  border: 1px solid #000000ab;

  text-align: center;
}

.tokenomics-right .ticker .smaller {
  font-size: 0.8rem;
}


.tokenomics-right .supply {
  font-family: marbella;
  font-size: 7rem;
  line-height: 42px;
  color: #eb69a7;
  -webkit-text-stroke: 4px #000000ab;
  paint-order: stroke fill;
  text-shadow: 2px 6px #000000ab;
}

.percentage {
  font-family: cursive;
  font-size: 3rem;
  margin-left: -16px;
}

.tokenomics-text {
  position: relative;
  font-size: 18px;


  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-left: 28px;

  font-weight: 600;
}

.tokenomics-text li::marker {
  content: url(./media/bullet_grayscale.png);
  font-weight: bold;
  filter: invert(79%) sepia(68%) saturate(1778%) hue-rotate(298deg) brightness(115%) contrast(103%);
}

.tokenomics-text ul li {
  font-weight: 600;
}

.tokenomics-text ul li span {
  margin-left: 2px;
}

.tokenomics-text .mini {
  text-align: center;
  background-color: #eb69a7;
  line-height: 24px;
  border-radius: 8px;
  font-family: marbella;
  display: flex;
  flex-direction: column-reverse;
  font-size: 26px;
  padding: 6px 12px;

  --gradient-direction: 66deg;
}

.tokenomics-text .mini:nth-child(1) {
  background: linear-gradient(var(--gradient-direction), #E18AAA 21%, #E496B2 100%)
}

.tokenomics-text .mini:nth-child(2) {
  background: linear-gradient(var(--gradient-direction), #E496B2 21%, #E7A1B9 100%)
}

.tokenomics-text .mini:nth-child(3) {
  background: linear-gradient(var(--gradient-direction), #E7A1B9 21%, #EAADC1 100%)
}

.tokenomics-text .mini:nth-child(4) {
  background: linear-gradient(var(--gradient-direction), #EAADC1 21%, #ECB9C9 100%)
}

.tokenomics-text .mini:nth-child(5) {
  background: linear-gradient(var(--gradient-direction), #ECB9C9 21%, #EFC5D1 100%)
}

.tokenomics-text .mini:nth-child(6) {
  background: linear-gradient(var(--gradient-direction), #EFC5D1 21%, #F2D0D8 100%)
}

.tokenomics-text .mini:nth-child(7) {
  background: linear-gradient(var(--gradient-direction), #F2D0D8 21%, #F5DCE0 100%)
}

.tokenomics-right .contract {
  font-family: overpass-mono;
  border: 3px solid #eb69a7;
  width: fit-content;
  padding: 8px 16px 4px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 22px;
  margin-top: 10px;
  font-weight: 900;
  font-size: 20px;



  padding: 8px 20px 4px;
  border-radius: 16px;
  width: fit-content;
  box-shadow: 1px 2px #000000ab;
  border: 2px solid #000000ab;
  background-color: #eb69a7;
}

.how-to-buy-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  font-size: 7rem;
  font-family: marbella;
  color: var(--bunee-color);
  line-height: normal;
  text-shadow: 3px 4px var(--bunee-pink);
  margin-top: 120px;

  font-size: 8rem;
  line-height: normal;
  font-family: marbella;
  text-transform: uppercase;
  color: #272727;

  text-shadow: 3px 4px #fff;

}

.how-to-buy-title .arrow-left {
  right: -50px;
}

#how-to-buy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
}

.htb-row {
  display: flex;
  gap: 60px;
}

#how-to-buy .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000ab;
  width: 420px;
  height: 480px;
  max-width: 98vw;
  border-radius: 8px;
  padding: 40px;
  --gradient-direction: 66deg;
  gap: 32px;
  text-align: center;
  font-size: 1.25rem;
  clip-path: polygon(0% -10%, 100% -10%, 100% 100%, 0% 100%);

}

#how-to-buy .step {
  position: absolute;
  top: -19px;
  width: 100px;
  height: 36px;
  background-color: var(--bunee-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #000000ab;
  font-weight: 900;
  border: 2px solid #000000ab;
  font-size: 1rem;
  padding: 2px 0px 0px;
}

#how-to-buy .card:nth-child(1) {
  background-color: #706045;
  background: url(/media/blank_top.webp), url(/media/blank_bottom.webp), linear-gradient(var(--gradient-direction), #cecece 21%, #cecece 100%);

  background: #cecece;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top, bottom, center;
  box-shadow: 15px 12px 20px #06061b66;
}

#how-to-buy .card:nth-child(2) {
  background: url(./media/blank_top.webp), url(./media/blank_bottom.webp), linear-gradient(var(--gradient-direction), #cecece 0%, #cecece 100%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top, bottom, center;
}

#how-to-buy .card:nth-child(3) {
  background: url(./media/blank_top.webp), url(./media/blank_bottom.webp), linear-gradient(var(--gradient-direction), #cecece 23%, #cecece 100%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top, bottom, center;
}

#how-to-buy .card:nth-child(4) {
  background: url(./media/sparkle_top.webp), url(./media/sparkle_bottom.webp), linear-gradient(var(--gradient-direction), #cecece 0%, #cecece 100%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top, bottom, center;
}

#how-to-buy h2 {
  font-weight: bold;
  font-size: 24px;
}

#how-to-buy .instructions {
  font-weight: 300;
  font-size: 18px;
  z-index: 2;
}

#how-to-buy img {
  position: absolute;
  bottom: 0;
  /* bottom: -180px; */
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
  filter: drop-shadow(2px 4px 0px #000000ab);

  filter: grayscale(1);
}

.video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: absolute;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0) 70%, #cecece);

  pointer-events: none;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0) 70%, #cecece);
  z-index: 3;

}

video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}


.video-wrapper h2 {
  font-size: 7rem;
  font-family: marbella;
  line-height: normal;
  color: var(--bunee-color);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 3px 4px var(--bunee-pink);
}

.video-wrapper h2 img {
  margin-top: -32px;
  width: 60%;
  z-index: -1;
}

.video-container {
  position: relative;
  margin: auto;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  margin-top: 20px;
}

.video-container video {
  display: block;
  margin: auto;
  box-shadow: 0 0 15px rgba(#000, 1);
}

.video-container canvas {
  --blur: 15px;
  position: absolute;
  top: calc(var(--blur) * -1);
  left: calc(var(--blur) * -1);
  width: calc(100% + var(--blur) * 2);
  height: calc(100% + var(--blur) * 2);
  z-index: -1;
  filter: blur(var(--blur)) brightness(40%);
  opacity: 0.7;
}

#faq {
  width: 900px;
  max-width: 90vw;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 120px;
}

#faq h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 5rem;
  font-family: marbella;
  color: var(--bunee-color);
  line-height: normal;
  text-shadow: 3px 4px var(--bunee-pink);
}

#faq h2 img {
  width: 22px;
  margin-top: 10px;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#content h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  font-size: 7rem;
  font-family: marbella;
  color: var(--bunee-color);
  line-height: normal;
  text-shadow: 3px 4px var(--bunee-pink);
  margin-top: 180px;
}

.img-grid {
  display: grid;
  width: 800px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 6px;
}

/* Core styles/functionality */

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  display: none;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}

.tab input:checked~.tab__content {
  max-height: 20rem;
}

/* Visual styles */
.accordion {
  width: 900px;
  max-width: 98vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tab {
  border-radius: 1rem;
  color: var(--theme);
  /*border: 1px solid rgba(255, 255, 255, 0.6);*/
  position: relative;



  background: rgb(60 60 118 / 40%);
}

.tab__label,
.tab__close {
  position: relative;
  border-radius: 1rem;
  display: flex;
  color: white;
  /*background: var(--theme);*/
  cursor: pointer;
  align-items: center;
  transition: all 1s;
  background: transparent;

  filter: brightness(1.2) contrast(0.8);
}

.tab__label[for="cb1"] {


  background: url(./media/S-Tier-Texture.webp), linear-gradient(346deg, #E18AAA 21%, #E4A0B7 100%);
  background-size: cover;
}

.tab__label[for="cb2"] {
  background: url(./media/A-Tier-Texture.webp), linear-gradient(346deg, #E4A0B7 0%, #ECBDC4 100%);
  background-size: cover;
}

.tab__label[for="cb3"] {
  background: url(./media/B-Tier-Texture.CKghBEaa.webp), linear-gradient(346deg, #ECBDC4 23%, #EFCFD4 100%);
  background-size: cover;
  ;
}

.tab__label[for="cb4"] {
  background: url(./media/C-Tier-Texture.D0UqEDur.webp), linear-gradient(346deg, #EFCFD4 0%, #F5DCE0 100%);
  background-size: cover;
}

:checked+.tab__label {
  transition: all 1s;
  border-bottom: 1px solid;
  border: unset;
  /*background: linear-gradient(transparent, transparent) padding-box, linear-gradient(90deg, #30bd921c, #8360c321) border-box !important;*/
}

:checked+.tab__label::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 2px;
  border-radius: 1rem;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}



.tab:has(> :checked) {
  border: unset;
}

.tab:has(> :checked)::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 2px;
  border-radius: 1rem;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

}

.tab:nth-child(1):has(> :checked)::before {
  background: linear-gradient(to top, #E18AAA, transparent);
}

.tab:nth-child(2):has(> :checked)::before {
  background: linear-gradient(to top, #E4A0B7, transparent);
}

.tab:nth-child(3):has(> :checked)::before {
  background: linear-gradient(to top, #EFCFD4, transparent);
}

.tab:nth-child(4):has(> :checked)::before {
  background: linear-gradient(to top, #F5DCE0, transparent);
}

.tab-title {
  font-family: marbella;
  flex-direction: row;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  gap: 10px;
  color: #644a49;
  color: #3d3838;
  text-align: center;
}

.tab__label {
  justify-content: center;
  padding: 1rem;
}

.tab__label::after {
  content: url(./media/arrow.png);
  width: 16px;
  height: 16px;
  text-align: center;
  transform: rotate(0deg);
  transition: transform 0.35s;
  filter: invert(1);
}

.tab input:checked+.tab__label::after {
  transform: rotate(180deg);
  filter: invert(26%) sepia(84%) saturate(849%) hue-rotate(249deg) brightness(91%) contrast(86%);
}

.tab__content p {
  margin: 0;
  padding: 1rem 3rem;
  opacity: 0.85;


}

.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.accordion--radio {
  --theme: var(--secondary);
}

/* Arrow animation */
.tab input:not(:checked)+.tab__label:hover::after {
  animation: bounce .5s forwards;
  animation-fill-mode: forwards;
  transform: rotate(180deg);
}


#partners {

  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 90vw;

  gap: 32px;

  margin-top: 120px;
}

#partners h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 5rem;
  font-family: marbella;
  color: var(--bunee-color);
  line-height: normal;
  text-shadow: 3px 4px var(--bunee-pink);
}

#partners img {
  width: 400px;
  max-width: 90vw;

  filter: drop-shadow(2px 3px var(--bunee-pink));
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #cecece;
  margin-top: 120px;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;

  font-weight: 300;
  font-size: 16px;

}

footer .socials-icon {
  height: 20px;
}

@media screen and (max-width: 900px) {
  #how-to-buy .card {
    --gradient-direction: 346deg;
  }

  .wrapper-hero {

    min-height: 90vh;
    height: unset;
    max-height: unset;
  }

  header {
    padding: 12px;
  }

  .hero-content {
    margin-top: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 5.3rem;
    line-height: 80px;
    margin-top: -24px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .anchors {
    display: none;
  }

  #hero {
    flex-direction: column;
    gap: 0px;
  }

  #about {
    flex-direction: column;
  }

  .tokenomics-content {
    flex-direction: column;
    height: 100%;
    max-width: 95vw;
    gap: 0px;

    box-shadow: unset;
  }

  .tokenomics-right .supply {
    font-size: 4rem;
  }

  .tokenomics-right .contract {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .tokenomics-right {
    align-items: center;
    max-width: 95vw;
    padding: 8px;
    margin-top: -40px;
    z-index: 2;
  }

  .marquee {
    height: 130px;
  }

  .about-img {
    max-width: 95vw;
  }

  .subtitle {
    text-align: center;
  }

  #tokenomics .tokenomics-content .tokenomics-img {
    margin-top: 0;
    max-width: 80vw;
  }

  #how-to-buy {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 98vw;
    gap: 40px;
    align-items: center;
  }

  .tab__content p {
    padding: 1rem 1.25rem;
  }

  footer .socials {
    gap: 6px;
  }

  #how-to-buy .card {

    height: 400px;
  }

  .how-to-buy-title {
    font-size: 4rem;
  }

  .video-wrapper h2 img {
    margin-top: 0px;
    text-align: center;
  }

  #faq h2 {
    font-size: 2.7rem;
    text-align: center;
    line-height: 40px;
    gap: 0px;
    text-align: center;
  }

  .percentage {
    font-size: 3rem;
    margin-left: -14px;
  }

  .video-wrapper h2 {
    font-size: 3.1rem;
    text-align: center;
  }

  .tokenomics-text {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    height: 100%;
  }

  .htb-row {
    flex-direction: column;
  }

  .tokenomics-text .mini {
    height: 100%;
    margin-left: 10px;
    justify-content: center;
  }

  #about h2 {
    font-size: 4.5rem;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  #tokenomics h2 {
    font-size: 4.5rem;
    text-align: center;
    text-align: center;
  }

  .socials {
    align-items: center;
  }

  #tokenomics {
    margin-top: 80px;
  }

  .hidden-mobile {
    display: none;
  }

  .button {
    font-size: 1.5rem;

    padding: 3px 12px 1px 12px;
  }

  .tokenomics-right .attention-arrow {
    right: -30px;
    top: 50px;
  }

  #content h2 {
    font-size: 4rem;
  }

  .divider {
    height: 30px;
  }

  .img-grid {
    display: grid;
    width: 900px;
    max-width: 95vw;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}