html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

/* ----------------------------- LOADING PAGE ----------------------------- */

#preloader {
  background: black;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloadtext {
  font-family: "Courier New", Courier, monospace;
  font-size: 2.5rem;
  color: rgb(12, 184, 12);
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  border-right: 2px solid rgb(12, 184, 12);
  animation: infiniteTyping 3s steps(7) infinite;
}

@keyframes infiniteTyping {
  0% {
    width: 0;
  }
  50% {
    width: 7ch; /* 7 characters for "LOADING" */
  }
  100% {
    width: 0;
  }
}

@-webkit-keyframes infiniteTyping {
  0% {
    width: 0;
  }
  50% {
    width: 7ch;
  }
  100% {
    width: 0;
  }
}

@-moz-keyframes infiniteTyping {
  0% {
    width: 0;
  }
  50% {
    width: 7ch;
  }
  100% {
    width: 0;
  }
}

/* ========================= Splash ========================= */

.backdropsplash {
  position: fixed;
  inset: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 1);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.backdropsplash.disabled {
  visibility: hidden;
  opacity: 0;
  transition: visibility 2.5s, opacity 2.5s linear;
  pointer-events: none;
}

.enterlogo {
  font-family: "Courier New", Courier, monospace;
  font-size: 2.5rem;
  color: rgb(12, 184, 12);
}

.enterlogo:hover {
  scale: 1.05;
  cursor: pointer;
}

/* ========================= BACKGROUND ========================= */

.backgroundSection {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1vw;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 2rem;
}

.headerBtnContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-right: 1em;
}

.headerBtn {
  pointer-events: all;
  cursor: pointer;
}

.headerBtn:hover {
  color: rgb(215, 215, 215);
}

main {
  display: flex;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

p {
  line-height: 1;
}

span {
  display: block;
  width: 2.5vmax;
  height: 2.5vmax;
  font-size: 2.5vmax;
  color: #9bff9b11;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

.tehcGuy {
  background-image: url(../images/tehcguy.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  width: auto;
  height: 70svh;
  aspect-ratio: 1174/736;
  z-index: 2;
  bottom: 0;
  right: 0;
}

.tehcGuy.koding {
  margin-bottom: -1rem;
  background-image: url(../images/tehcguykoding.gif);
  animation: tilt-n-move-shaking 0.25s infinite;
}

@keyframes tilt-n-move-shaking {
  0% {
    transform: translate(4px, 4px) rotate(0deg);
  }
  10% {
    transform: translate(-4px, -8px) rotate(-1deg);
  }
  20% {
    transform: translate(-12px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(12px, 8px) rotate(0deg);
  }
  40% {
    transform: translate(4px, -4px) rotate(1deg);
  }
  50% {
    transform: translate(-4px, 8px) rotate(-1deg);
  }
  60% {
    transform: translate(-12px, 4px) rotate(0deg);
  }
  70% {
    transform: translate(12px, 4px) rotate(-1deg);
  }
  80% {
    transform: translate(-4px, -4px) rotate(1deg);
  }
  90% {
    transform: translate(4px, 8px) rotate(0deg);
  }
  100% {
    transform: translate(4px, -8px) rotate(-1deg);
  }
}

.type1,
.type2,
.type3 {
  z-index: 1;
  position: absolute;
  color: white;
}
.type1,
.type2,
.type3 {
  display: none;
}

.type1.switch {
  font-size: 10rem;
  display: block;
  right: 50vw;
  bottom: 50vh;
  animation: appearAndDisappear 0.2s forwards infinite;
}

.type2.switch {
  font-size: 7.5rem;
  display: block;
  right: 30vw;
  bottom: 70vh;
  animation: appearAndDisappear 0.25s forwards infinite;
}

.type3.switch {
  font-size: 8rem;
  display: block;
  right: 10vw;
  bottom: 60vh;
  animation: appearAndDisappear 0.225s forwards infinite;
}

@keyframes appearAndDisappear {
  0% {
    opacity: 0; /* Start invisible */
    scale: 0;
  }
  25% {
    opacity: 1; /* Fully visible */
    scale: 1;
  }
  75% {
    opacity: 1; /* Stay fully visible */
    scale: 1.25;
  }
  100% {
    opacity: 0; /* Fade out to invisible */
    scale: 1.5;
  }
}

.mainContent {
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.titleContainer {
  margin-top: 5rem;
  margin-left: 2.5rem;
  gap: 2rem;
}

/* ========================= CONTRACT ADDRESS ========================= */

.address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

#btn-copy {
  width: 30px;
  transition: all 0.2s;
}

#btn-copy:hover {
  scale: 1.1;
}

.titleh1 {
  margin: 0 0 0.5rem 0; /* Remove default margins, add small bottom margin */
}

.titleh2 {
  margin: 0; /* Remove all margins from h2 inside address */
}

.titlep {
  margin: 0.5rem 0 0 0; /* Remove default margins, add small top margin */
}

.address {
  margin: 0.5rem 0; /* Control spacing around the address container */
}

/* ========================== Modal General ========================== */

.modal {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modalBtns {
  background-color: black;
  width: 20px;
  height: 20px;
  text-align: center;
  border: 1px solid rgb(0, 151, 0);
  pointer-events: all;
  cursor: pointer;
}

.modalBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  box-sizing: border-box;
  min-height: 0; /* Important for flexbox scrolling */
}

.modalHeader {
  display: flex;
  justify-content: space-between;
  background-color: rgb(0, 134, 0);
  padding: 0.25rem;
  flex-shrink: 0;
}

.modalHeader.switch {
  background-color: rgb(134, 0, 0);
  transition: 300ms ease-out;
}

.modalResize {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: grab;
  background: transparent;
  z-index: 5;
}

/* Restore exact original positioning from tehcnologia.css */
#container {
  height: 300px;
  width: 400px;
  margin-top: -150px;
  margin-left: -200px;
  top: 50%;
  left: 50%;
  border: 1px solid #ffffff;
  -webkit-perspective: 700;
  -moz-perspective: 700px;
  -webkit-animation: start 1s linear;
  overflow: hidden;
  scale: 0.65;
  position: absolute;
}

.modal.max #container {
  position: relative;
  margin: 0;
  top: auto;
  left: auto;
}

/* ========================== Tokenomics Modal ========================== */

.tokenomicsModal.closed {
  display: none;
}

.tokenomicsModal {
  z-index: 3;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 60%;
  height: 60%;
  background-color: rgba(0, 16, 0, 0.95);
  border: 2px solid rgb(0, 134, 0);
  border-radius: 5px;
  color: green;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.tokenomicsModal.switch {
  border: 2px solid rgb(134, 0, 0);
  color: red;
  transition: 300ms ease-out;
}

.tokenomicsModal.max {
  width: 100%;
  height: 100%;
  inset: 0;
}

.tokenomicsModal.min {
  display: none;
}

.tokenomicsModalTitle {
  color: black;
}

.tokenomicsModalRight,
.tokenomicsModalLeft {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tokenomicsModalIcon {
  background-image: url(../images/tokenomicsicon.png);
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.04;
}

.technologyModal .modalBody h2 {
  margin-bottom: 12.5rem; /* Add 1rem space below h2 */
}

.tehcnologia {
  position: relative;
  width: 100%;
  height: 450px; /* Fixed height container */
  margin: 0; /* Remove margins, spacing handled by h2 margin-bottom */
}

/* Fix positioning when modal is maximized */
.modal.max .tehcnologia {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tokenomicsClose {
  color: rgb(190, 0, 0);
  border: 1px solid rgb(190, 0, 0);
}

.stonksmeme {
  background-image: url(../images/stonks.gif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 360px;
  height: 270px;
  max-width: 100%;
  flex-shrink: 0;
}

.notstonksmeme {
  background-image: url(../images/notstonks.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 360px;
  height: 270px;
  max-width: 100%;
  flex-shrink: 0;
}

.pfTokenomics {
  background-image: url(../images/flogo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  max-width: 100%;
  flex-shrink: 0;
}

/* ========================== Technology Modal ========================== */

.technologyModal.closed {
  display: none;
}

.technologyModal {
  z-index: 3;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 60rem;
  height: 40rem;
  background-color: rgba(0, 16, 0, 0.95);
  border: 2px solid rgb(0, 134, 0);
  border-radius: 5px;
  color: green;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.technologyModal.switch {
  border: 2px solid rgb(134, 0, 0);
  color: red;
  transition: 300ms ease-out;
}

.technologyModal.max {
  width: 100%;
  height: 100%;
  inset: 0;
}

.technologyModal.min {
  display: none;
}

.technologyModalTitle {
  color: black;
}

.technologyModalRight,
.technologyModalLeft {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.technologyModalIcon {
  background-image: url(../images/technologyicon.png);
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.04;
}

.technologyClose {
  background-color: black;
  color: rgb(190, 0, 0);
  width: 20px;
  height: 20px;
  text-align: center;
  border: 1px solid rgb(190, 0, 0);
  pointer-events: all;
  cursor: pointer;
}

/* ========================== Utility Modal ========================== */
.utilityModal.closed {
  display: none;
}

.utilityModal {
  z-index: 3;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 60rem;
  height: 40rem;
  background-color: rgba(0, 16, 0, 0.95);
  border: 2px solid rgb(0, 134, 0);
  border-radius: 5px;
  color: green;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.utilityModal.switch {
  border: 2px solid rgb(134, 0, 0);
  color: red;
  transition: 300ms ease-out;
}

.utilityModal.max {
  width: 100%;
  height: 100%;
  inset: 0;
}
.utilityModal.min {
  display: none;
}

.utilityModalTitle {
  color: black;
}

.utilityModalRight,
.utilityModalLeft {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.utilityModalIcon {
  background-image: url(../images/utilityicon.png);
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.04;
}

.utilityClose {
  background-color: black;
  color: rgb(190, 0, 0);
  width: 20px;
  height: 20px;
  text-align: center;
  border: 1px solid rgb(190, 0, 0);
  pointer-events: all;
  cursor: pointer;
}

#slideshow {
  position: relative;
  width: 800px;
  height: 400px;
  overflow: hidden;
  border: 8px solid #ccc;
}

#slideshow img {
  position: absolute;
  width: 800px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-left: -400px;
  margin-top: -200px;
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  -webkit-transition-duration: 3s, 10s;
  -moz-transition-property: opacity, -moz-transform;
  -moz-transition-duration: 3s, 10s;
  -ms-transition-property: opacity, -ms-transform;
  -ms-transition-duration: 3s, 10s;
  -o-transition-property: opacity, -o-transform;
  -o-transition-duration: 3s, 10s;
  transition-property: opacity, transform;
  transition-duration: 3s, 10s;
}

#slideshow img {
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  transform-origin: bottom left;
}

#slideshow :nth-child(2n + 1) {
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}

#slideshow :nth-child(3n + 1) {
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}
#slideshow :nth-child(4n + 1) {
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -o-transform-origin: bottom right;
  transform-origin: bottom right;
}

#slideshow .fx:first-child + img ~ img {
  z-index: -1;
}

#slideshow .fx {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/* ========================== Whitepaper Modal ========================== */

.whitepaperModal.closed {
  display: none;
}

.whitepaperModal {
  z-index: 3;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 60rem;
  height: 40rem;
  background-color: rgba(0, 16, 0, 0.95);
  border: 2px solid rgb(0, 134, 0);
  border-radius: 5px;
  color: green;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.whitepaperModal.switch {
  border: 2px solid rgb(134, 0, 0);
  color: red;
  transition: 300ms ease-out;
}

.whitepaperModal.max {
  width: 100%;
  height: 100%;
  inset: 0;
}
.whitepaperModal.min {
  display: none;
}

.whitepaperModalTitle {
  color: black;
}

.whitepaperModalRight,
.whitepaperModalLeft {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whitepaperModalIcon {
  background-image: url(../images/whitepapericon.png);
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.04;
}

.whitepaperClose {
  background-color: black;
  color: rgb(190, 0, 0);
  width: 20px;
  height: 20px;
  text-align: center;
  border: 1px solid rgb(190, 0, 0);
  pointer-events: all;
  cursor: pointer;
}

/* ========================== FOOTER ========================== */

footer {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.footerLeft {
  display: flex;
  gap: 0.5rem;
  /* padding: 0 0 1rem 1rem; */
  margin: 0.5rem;
}

.imglinks {
  background-size: contain;
  display: inline-block;
  width: 517px;
  height: 517px;
  zoom: 0.15;
  transition: 300ms ease-out;
  cursor: pointer;
}

/* twitter */

.xBtn {
  position: relative;
}

.xBtnGreen {
  background: url(../images/xbtn.png) no-repeat;
  position: absolute;
}

.xBtnGreen.switch {
  background: url(../images/xbtnred.png) no-repeat;
}

.xBtnGreen:hover {
  background: url(../images/xbtnwhite.png) no-repeat;
}

/* dexscreener */

.dsBtn {
  position: relative;
}

.dsBtnGreen {
  background: url(../images/dsbtn.png) no-repeat;
  position: absolute;
}

.dsBtnGreen.switch {
  background: url(../images/dsbtnred.png) no-repeat;
  position: absolute;
}

.dsBtnGreen:hover {
  background: url(../images/dsbtnwhite.png) no-repeat;
}

/* pump.fun */

.pfBtn {
  position: relative;
}

.pfBtnGreen {
  background: url(../images/fbtn.png) no-repeat;
  position: absolute;
}

.pfBtnGreen.switch {
  background: url(../images/fbtnred.png) no-repeat;
}

.pfBtnGreen:hover {
  background: url(../images/fbtnwhite.png) no-repeat;
}

/* kode mode */

.kodemodeBtn {
  position: relative;
}

.kodeBtn {
  background-size: contain;
  display: inline-block;
  width: 1500px;
  height: 517px;
  zoom: 0.15;
  transition: opacity 300ms ease-out;
  cursor: pointer;
  position: absolute;
}

.kodemodeonBtn {
  background: url(../images/kodemodeon.png) no-repeat;
  z-index: 1;
}

.kodemodeonBtn.switch {
  background: url(../images/kodemodeoff.png) no-repeat;
}

.kodemodeonBtn:hover {
  background: url(../images/kodemodehover.png) no-repeat;
  transition: 300ms ease-out;
}

@media screen and (max-width: 1439px) {
  header {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  .tokenomicsModal,
  .technologyModal,
  .utilityModal,
  .whitepaperModal {
    width: 80%;
    height: 70%;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1150px) {
  .tehcGuy {
    height: auto;
    width: 100svw;
  }

  .type1.switch {
    font-size: 15vw;
    display: block;
    right: 50vw;
    bottom: 60vh;
    animation: appearAndDisappear 0.2s forwards infinite;
  }

  .type2.switch {
    font-size: 10vw;
    display: block;
    right: 30vw;
    bottom: 60vh;
    animation: appearAndDisappear 0.25s forwards infinite;
  }

  .type3.switch {
    font-size: 12.5vw;
    display: block;
    right: 10vw;
    bottom: 50vh;
    animation: appearAndDisappear 0.225s forwards infinite;
  }
}

@media screen and (max-width: 900px) {
  .modalBtns {
    font-size: 1rem;
  }

  .tokenomicsModal,
  .technologyModal,
  .utilityModal,
  .whitepaperModal {
    width: 90%;
    height: 80%;
    font-size: 0.85rem;
  }

  .modalBody {
    padding: 0.75rem;
  }

  .modalBody h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .modalBody h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 800px) {
  header {
    justify-content: center;
    padding: 1;
  }

  .headerBtnContainer {
    padding: 0;
  }

  .tehcGuy {
    height: auto;
    width: 120svw;
  }

  .titleh1 {
    font-size: 2vw;
  }

  .titleh2,
  #copyaddress,
  #btn-copy {
    font-size: 1vw;
  }

  .titlep {
    width: 100%;
    height: 30px;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(60, end);
  }

  .titleContainer {
    margin-top: 7.5rem;
    margin-left: 1.5rem;
    gap: 2rem;
  }

  #btn-copy {
    width: 5vw;
  }

  .imglinks {
    zoom: 0.1;
  }

  .kodeBtn {
    zoom: 0.1;
  }

  .type1.switch {
    bottom: 45vh;
  }

  .type2.switch {
    bottom: 40vh;
  }

  .type3.switch {
    bottom: 35vh;
  }

  .tokenomicsModal,
  .technologyModal,
  .whitepaperModal {
    width: 95%;
    height: 85%;
    font-size: 0.8rem;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
  }

  .utilityModal {
    width: 95%;
    height: 50%;
    font-size: 0.8rem;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
  }

  .modalHeader {
    padding: 0.2rem;
    font-size: 0.75rem;
  }

  .modalBtns {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .modalBody {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .modalBody h1 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .modalBody h2 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  /* Technology modal specific adjustments */
  .technologyModal .modalBody h2 {
    margin-bottom: 1rem; /* Reduce from 12.5rem */
  }

  /* Adjust the tehcnologia container for mobile */
  .tehcnologia {
    height: 300px; /* Reduce height on mobile */
  }

  #container {
    scale: 0.4; /* Make the animation smaller on mobile */
    margin-top: -100px;
    margin-left: -150px;
  }

  /* Slideshow adjustments for utility modal */
  #slideshow {
    width: 100%;
    max-width: 300px;
    height: 200px;
    border-width: 4px;
  }

  #slideshow img {
    width: 100%;
    height: 200px;
    margin-left: -50%;
    margin-top: -100px;
  }

  /* Meme images adjustments */
  .stonksmeme,
  .notstonksmeme {
    width: 250px;
    height: 190px;
    max-width: 90%;
  }

  /* Whitepaper image adjustment */
  .whitepaperModal img {
    max-width: 100%;
    height: auto;
  }

  /* Icon adjustments */
  .tokenomicsModalIcon,
  .technologyModalIcon,
  .utilityModalIcon,
  .whitepaperModalIcon {
    zoom: 0.03;
    width: 400px;
    height: 400px;
  }

  .maximise,
  .minimise {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .modalBtns {
    font-size: 1rem;
  }
  .tokenomicsModal,
  .technologyModal,
  .whitepaperModal {
    width: 98%;
    height: 90%;
    font-size: 0.75rem;
  }

  .utilityModal {
    width: 98%;
    height: 50%;
    font-size: 0.75rem;
  }

  .modalBody {
    padding: 0.4rem;
  }

  .modalBody h1 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .modalBody h2 {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  #container {
    scale: 0.3;
    margin-top: -80px;
    margin-left: -120px;
  }

  .tehcnologia {
    height: 250px;
  }

  #slideshow {
    max-width: 250px;
    height: 150px;
  }

  #slideshow img {
    height: 150px;
    margin-top: -75px;
  }

  .stonksmeme,
  .notstonksmeme {
    width: 200px;
    height: 150px;
  }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 800px) and (orientation: landscape) {
  .tokenomicsModal,
  .technologyModal,
  .utilityModal,
  .whitepaperModal {
    height: 95%;
  }

  .modalBody {
    padding: 0.3rem;
  }

  .modalBody h1 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .modalBody h2 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .modalBtns {
    font-size: 1rem;
  }
}
