:root {
  --font-color: #ffffff;
  --hover-color2: #04dec1;
  --hover-color: #ff00bf;
}

@font-face {
  font-family: "Peridot PE Variable";
  src: url("public/fonts/fonnts.com-Peridot_PE_Variable_Regular.otf")
    format("opentype");
}

@font-face {
  font-family: "Helvetica LT Pro";
  src: url("public/fonts/HelveticaLTPro-Roman.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background 
html {
  background: url(public/aboutBackground.svg) no-repeat center center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  font-family: Helvetica, sans-serif;
  background-attachment: scroll;
}

/* For safari iOS *
html:after {
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  left: 0;
  right: 0;
  z-index: -1;
  background: url(public/aboutBackground.svg) center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
*/
body {
  overflow-x: hidden; /* Prevent horizontal scrollbar from appearing */
  background: url(public/aboutBackground.svg) no-repeat center center fixed;
  background-size: cover;
  -ms-overflow-style: none; /* IE and Edge */
  -moz-background-size: cover;
  -o-background-size: cover;
  scrollbar-width: none; /* Firefox */
  background-attachment: fixed;
  font-family: Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background: url(public/aboutBackground.svg) no-repeat center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Hover links */
.hover:hover {
  text-shadow: 0 4px 11.2px var(--hover-color);
  color: var(--hover-color) !important;
  transition: text-shadow 0.3s ease-in, color 0.3s ease-in;
}

.hover {
  transition: text-shadow 0.3s ease-in, color 0.3s ease-in;
}

.hover2:hover {
  filter: drop-shadow(0px 4px 5.7px var(--hover-color));
  transition: filter 0.3s ease-in;
}
.hover2 {
  transition: filter 0.3s ease-in;
}

.hover3:hover {
  filter: drop-shadow(0px 0px 8.2px var(--hover-color2));
  transition: filter 0.3s ease-in;
}
.hover3 {
  transition: filter 0.3s ease-in;
}

.active-link {
  text-shadow: 0 4px 11.2px var(--hover-color2);
  color: var(--hover-color2) !important;
  transition: text-shadow 0.3s ease-in, color 0.3s ease-in;
}

/* */
@media screen and (max-width: 1024px) {
  .background-container {
    left: 50%;
    margin-left: -512px;
  }

  .community-container {
    width: 100%;
  }
}

/* Navigation */
header {
  display: flex;
  height: fit-content;
  justify-content: space-around;
  align-items: center;
  padding: 3.25rem 4rem;
  min-width: 100%;
  top: 0%;
  left: 0%;
  position: fixed;
  z-index: 10;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
}

.logo {
  width: clamp(103px, 10vw, 193px);
  height: clamp(48px, 5vw, 90px);
}

nav {
  display: flex;
  width: fit-content;
  gap: 48px;
}

nav a.nav-link {
  box-sizing: border-box;
  display: flex;
  height: auto;
  text-decoration: none;
  align-items: center;
  font-family: "Peridot PE Variable", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--font-color);
}

.links-container {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.sm-container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

/* Dropdown Navigation */

.dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.dropdown input[type="checkbox"] {
  display: none;
}

.dropdown input[type="checkbox"]:checked ~ .dropdown-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  position: absolute;
  width: 48vw;
  margin-left: clamp(300px, 40vw, 770px);
  top: 70%;
  border-top: 1px solid;
}

.dropdown:nth-child(2) input[type="checkbox"]:checked ~ .dropdown-content {
  margin-left: clamp(80px, 20vw, 400px);
}

.dropdown input[type="checkbox"]:checked ~ .dropdown-select .dropdown-arrow {
  transform: rotate(180deg);
  filter: invert(27%) sepia(98%) saturate(5000%) hue-rotate(300deg)
    brightness(110%) contrast(110%);
}

.dropdown input:checked + label {
  text-shadow: 0 4px 11.2px var(--hover-color);
  color: var(--hover-color);
  transition: text-shadow 0.3s ease-in, color 0.3s ease-in;
}

.dropdown-arrow {
  width: 18px;
  height: 18px;
  fill: white;
  margin-left: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.dropdown-select {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Peridot PE Variable", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
}

.dropdown-content a {
  float: none;
  color: var(--font-color);
  font-family: "Helvetica LT Pro", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2px;
  line-height: 120%;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  padding-top: 16px;
  gap: 32px;
  text-wrap: nowrap;
}

/* Mobile Dropdown Navigation */
.footer-dropdown {
  background: transparent;
  border: none;
  position: relative;
  margin-bottom: 0;
  width: 100%;
}

.footer-dropdown-select {
  cursor: pointer;
  width: 100%;
  height: fit-content;
  gap: 16px;
  font-family: "Peridot PE Variable", sans-serif;
  text-wrap: nowrap;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--font-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-dropdown-content {
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  flex-direction: column;
  display: none;
}

.footer-dropdown-content a {
  color: var(--font-color);
  font-family: "Peridot PE Variable";
  font-size: 0.875rem;
  letter-spacing: 0px;
  line-height: 32px;
  text-decoration: none;
  display: flex;
  text-wrap: nowrap;
}

.footer-dropdown.active .footer-dropdown-select {
  text-shadow: 0 4px 11.2px var(--hover-color);
  color: var(--hover-color);
  transition: text-shadow 0.3s ease-in, color 0.3s ease-in;
}

.footer-dropdown-select:hover .footer-link {
  text-shadow: 0 4px 11.2px var(--hover-color);
  color: var(--hover-color);
  transition: text-shadow 0.3s ease-in, color 0.3s ease-in;
}

.footer-dropdown-select:hover .dropdown-arrow {
  filter: invert(27%) sepia(98%) saturate(5000%) hue-rotate(300deg)
    brightness(110%) contrast(110%);
  transition: filter 0.3s ease-in;
}

.footer-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  filter: invert(27%) sepia(98%) saturate(5000%) hue-rotate(300deg)
    brightness(110%) contrast(110%);
  transition: filter 0.3s ease-in, transform 0.2s ease-in;
}

.footer-dropdown:not(.active) .dropdown-arrow {
  transform: rotate(0deg);
  transition: transform 0.3s ease, filter 0.3s ease-in;
}

/* Progress Bar */
.progress-tracker,
#pagination {
  position: fixed;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  height: 60vh;
  height: 60dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  gap: 1rem;
  display: none;
}

.tracker-line {
  height: 100%;
  position: relative;
}

.tracker-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  transition: height 0.5s ease, top 0.5s ease;
}

.tracker-bar {
  position: fixed;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.tracker-segment,
.pagination-bullet {
  width: 9px;
  height: 87px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tracker-segment.active,
.pagination-bullet.active {
  background: #04dec1;
}

.footer-legal {
  overflow: auto;
}

.footer-legal .disclaimer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disclaimer p {
  font-size: 0.675rem;
  line-height: 120%;
  font-weight: 400;
  width: fit-content;
  text-decoration: none;
  color: var(--font-color);
}

/* Mobile version for progress bar */
@media screen and (max-width: 430px) {
  .progress-tracker,
  #pagination {
    flex-direction: row;
    left: 50%;
    top: auto;
    bottom: 1%;
    transform: translateX(-50%);
    width: 95%;
    height: auto;
  }

  .tracker-line {
    width: 100%;
    height: 2px;
  }

  .tracker-progress {
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .tracker-bar {
    flex-direction: row;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    justify-content: space-between;
  }

  .tracker-segment,
  .pagination-bullet {
    width: 68px;
    height: 6px;
  }
}

/* Burger Menu Styles */
@media screen and (max-width: 1024px) {
  header {
    display: none;
  }
  .mini-screen-header {
    display: flex;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    min-width: 100%;
    padding: 0.5rem 1rem;
    top: 0%;
    left: 0%;
    position: fixed;
    z-index: 11;
  }
  /* Burger button styles */
  .burger-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 11;
    transition: all 0.3s ease;
  }

  .burger-menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--font-color);
    transition: all 0.3s ease;
  }

  /* Sidebar */
  .sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: clamp(309px, 50vw, 661px);
    height: 100%;
    background-color: #191919;
    transition: right 0.3s ease;
    z-index: 11;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 31px;
  }

  .sidebar-menu.active {
    right: 0;
  }

  .sidebar-upper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding-inline: 20px;
    height: 87.5%;
  }

  .link-column {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 12px;
    row-gap: 48px;
    height: fit-content;
    width: 100%;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    gap: 12px;
  }

  .footer-link {
    text-decoration: none;
    font-family: "Peridot PE Variable", sans-serif;
    text-wrap: nowrap;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 32px;
    letter-spacing: 0;
    width: fit-content;
    color: var(--font-color);
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    background-color: #000000;
    font-family: "Peridot PE Variable", sans-serif;
    gap: 6px;
    padding: 14px 20px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 30px;
    letter-spacing: 0px;
  }

  .legal-links {
    display: flex;
    gap: 32px;
    font-family: "Peridot PE Variable", sans-serif;
    width: fit-content;
  }

  .legal-link {
    text-decoration: none;
    color: var(--font-color);
  }

  /* Close button */
  .sidebar-close {
    background: url("public/cross-symbol.svg") no-repeat;
    background-position: center;
    border: none;
    color: var(--font-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 6;
    height: 64px;
    width: 64px;
    padding: 8px 16px;
    position: relative;
    left: 85%;
  }

  .sidebar-close span {
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0px;
    vertical-align: middle;
    font-family: "Peridot PE Variable", sans-serif;
  }
  /* Overlay when sidebar is open */
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* Desktop Sidebar (min-width: 1025px) */
@media screen and (min-width: 1025px) {
  .sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: clamp(309px, 50vw, 661px);
    height: 100%;
    background-color: #191919;
    transition: right 0.3s ease;
    z-index: 11;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mini-screen-header > * {
    display: none;
  }

  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
  }

  .sidebar-menu.active,
  .sidebar-overlay.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .sidebar-upper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding-inline: 20px;
    height: 87.5%;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    gap: 12px;
  }

  .link-column {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 12px;
    row-gap: 48px;
    height: fit-content;
    width: 100%;
  }

  .footer-link {
    text-decoration: none;
    font-family: "Peridot PE Variable", sans-serif;
    text-wrap: nowrap;
    font-size: 0.875rem;
    line-height: 32px;
    letter-spacing: 0px;
    font-weight: 400;
    width: fit-content;
    color: var(--font-color);
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    background-color: #000000;
    font-family: "Peridot PE Variable", sans-serif;
    gap: 6px;
    padding: 14px 20px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 30px;
    letter-spacing: 0px;
  }

  .legal-links {
    display: flex;
    gap: 32px;
    font-family: "Peridot PE Variable", sans-serif;
    width: fit-content;
  }

  .legal-link {
    text-decoration: none;
    color: var(--font-color);
  }

  .sidebar-close {
    background: url("public/cross-symbol.svg") no-repeat;
    background-position: center;
    border: none;
    color: var(--font-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 6;
    height: 64px;
    width: 64px;
    padding: 8px 16px;
    position: relative;
    left: 90%;
  }
}

@media screen and (max-width: 390px) {
  .sidebar-upper {
    height: 82.5%;
  }
}
/* Base */

body {
  color: var(--font-color);
  height: 100vh;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background Styling */
/* City Ground */
.parallax-bg {
  position: fixed; /* Fixed position to enable parallax */
  top: 37.5%;
  left: 0;
  width: 100%; /* Increased width to allow for horizontal parallax movement */
  height: 100vh; /* Full viewport height */
  background-image: url("public/aboutGround.svg"); /* Placeholder image */
  background-repeat: no-repeat;
  background-size: contain; /* Cover the entire area */
  background-position: center; /* Position left to allow horizontal movement */
  will-change: transform; /* Optimize for animation */
  z-index: -1; /* Send it behind other content */
  filter: brightness(0.8); /* Slightly dim the background */
}

@media screen and (min-width: 1441px) {
  .parallax-bg {
    top: 45%;
  }
}

@media screen and (max-width: 768px) {
  .parallax-bg {
    top: 27.5%;
    width: 150%;
    height: 110vh;
    left: -25%;
  }
}

@media screen and (max-width: 431px) {
  .parallax-bg {
    top: 7.5%;
    width: 250%;
    height: 150vh;
    left: -75%;
  }
}

/* Custom styling for the parallax background */
.parallax-bg2 {
  position: fixed; /* Fixed position to enable parallax */
  top: 0;
  left: 0;
  width: 100%; /* Increased width to allow for horizontal parallax movement */
  height: 100vh;
  will-change: transform; /* Optimize for animation */
  z-index: -2; /* Send it behind other content */
}

/*Eclipse Background */
.parallax-eclipse {
  position: fixed; /* Fixed position to enable parallax */
  top: 30%;
  left: 20%;
  width: 175%;
  aspect-ratio: 24 / 7;
  /* height: 100vh; */
  /* background-image: url('https://placehold.co/1920x1080/0A2342/FFFFFF?text=Background+Image'); */
  background-image: url("public/eclipse.svg"); /* Placeholder image */
  background-repeat: no-repeat;
  background-size: contain; /* Cover the entire area */
  background-position: left center; /* Position left to allow horizontal movement */
  z-index: -2;
}

@media screen and (min-width: 1441px) {
  .parallax-eclipse {
    top: 20%;
  }
}

@media screen and (max-width: 1024px) {
  .parallax-eclipse {
    top: 35%;
  }
}

@media screen and (max-width: 768px) {
  .parallax-eclipse {
    top: 45%;
  }
}
/* City Background */
.city-parallax {
  position: relative;
  top: -30%;
  left: 14%;
  width: 70%;
  height: 100vh; /* Full viewport height */
  background-image: url("public/aboutCity.svg"); /* Placeholder image */
  background-size: contain; /* Cover the entire area */
  background-repeat: no-repeat;
  background-position: left;
  will-change: transform; /* Optimize for animation */
  z-index: 0; /* Send it behind other content */
}

@media screen and (min-width: 1441px) {
  .city-parallax {
    top: -40%;
  }
}

@media screen and (max-width: 1024px) {
  .city-parallax {
    top: -28%;
  }
}

@media screen and (max-width: 768px) {
  .city-parallax {
    top: -15%;
    width: 50%;
    left: 25%
  }
}

@media screen and (max-width: 431px) {
  .city-parallax {
    top: 2.5%;
    width: 35%;
    left: 32.5%;
  }
}


@media screen and (max-width: 390px) {
  .city-parallax {
    top: 0%;
    width: 30%;
    left: 35%;
  }
}

/* Big Sun + Small Sun */
.big-sun {
  position: absolute;
  top: 27.5%;
  left: 2.5%;
  width: 22.5%;
  aspect-ratio: 24 / 7;
  /* height: 100vh; */
  /* background-image: url('https://placehold.co/1920x1080/0A2342/FFFFFF?text=Background+Image'); */
  background-image: url("public/largeSun.svg"); /* Placeholder image */
  background-repeat: no-repeat;
  background-size: contain; /* Cover the entire area */
  background-position: left center; /* Position left to allow horizontal movement */
  z-index: -2;
}

.small-sun {
  position: absolute;
  top: 35%;
  left: 0%;
  width: 15%;
  aspect-ratio: 24 / 7;
  /* height: 100vh; */
  /* background-image: url('https://placehold.co/1920x1080/0A2342/FFFFFF?text=Background+Image'); */
  background-image: url("public/smallSun.svg"); /* Placeholder image */
  background-repeat: no-repeat;
  background-size: contain; /* Cover the entire area */
  background-position: left center; /* Position left to allow horizontal movement */
  z-index: -2;
}

.horizontal-slides-wrapper {
  display: flex; /* Arrange slides horizontally */
  width: fit-content; /* Allow content to dictate width */
  will-change: transform; /* Optimize for animation */
}

/*
.bg-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ground-bg {
  background-image: url("public/aboutGround.svg");
  width: 9104px;
  height: 2871px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  z-index: 0;
  will-change: transform;
  position: absolute;
}
/* City Styling 
.city-bg {
  background-image: url("public/aboutCity.svg");
  width: 1805px;
  height: 608px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
}
/*Sun Styling 
.eclipse-bg {
  background-image: url("public/eclipse.svg");
  width: 2237px;
  height: 2000px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  z-index: -1;
}

.big-sun-bg {
  background-image: url("public/largeSun.svg");
  width: 480px;
  height: 478px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  z-index: -1;
}

.small-sun-bg {
  background-image: url("public/smallSun.svg");
  width: 245px;
  height: 244px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  z-index: -1;
}
*/

/* Horizontal Scrolling */

.horizontal-scroll-section {
  position: relative;
  background: transparent;
}

.content-slide {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-inline: 60px;
  gap: 10px;
  flex: 0 0 100vw;
}

.slide-content {
  display: flex;
  max-width: 1440px;
  gap: 125px;
  width: 100%;
  height: 84vh;
  justify-content: center;
  align-items: center;
  color: var(--font-color);
  font-size: 2rem;
}

/* Slide 3 Layout */
.vertical-scroll::-webkit-scrollbar {
  width: 11px;
}

.vertical-scroll::-webkit-scrollbar-track {
  background: #ffffff40;
}

.vertical-scroll::-webkit-scrollbar-thumb {
  background: #b4b4b4;
}

.vertical-scroll::-webkit-scrollbar-thumb:hover {
  background: #979797;
}

.slide-3-container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: clamp(36px, 8vw, 136px);
}

@media screen and (max-width: 430px) {
  .slide-3-container {
    flex-direction: column;
  }
}
.about-links {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  gap: 40px;
}

.about-link a {
  font-weight: 700;
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  line-height: 120%;
  letter-spacing: 0.2px;
  font-family: "Helvetica LT Pro";
}

.about-link {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.about-link.active {
  position: relative;
}

.about-link:hover {
  filter: drop-shadow(0px 0px 8.2px var(--hover-color2));
  transition: filter 0.3s ease-in;
}

/* Slide 3 Content Transition */
.slide-3-content {
  transition: opacity 0.3s ease;
}

/* Make sure the content area scrolls properly */
.slide-3-content-wrapper {
  max-height: 100%;
  overflow-y: auto;
}

.about-link img {
  width: 32px;
  height: 32px;
}

.slide-3-content-wrapper {
  margin-bottom: 24px;
  width: clamp(356px, 50vw, 756px);
  background: #080c19b2;
}

.slide-3-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  height: 305px;
  gap: 12px;
  margin-right: 20px;
}

h5 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 120%;
  letter-spacing: clamp(0.08px, 3vw, 0.2px);
  font-family: "Helvetica LT Pro";
}

p {
  font-weight: 400;
  font-size: clamp(0.875rem, 3vw, 1rem);
  line-height: clamp(19px, 3vw, 150%);
  letter-spacing: 0.2px;
  font-family: "Helvetica LT Pro";
}

/* Slide 4 Layout */

@media screen and (max-width: 768px) {
  .content-slide.four {
    justify-content: center;
  }
  .slide-content.four {
    flex-direction: column;
    height: fit-content;
    gap: 0px;
  }

  .whitepaper-form button {
    width: 40%;
  }

  .whitepaper-form {
    gap: 16px;
  }
}

.whitepaper-container {
  height: fit-content;
  max-width: 613px;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 5vw, 32px);
}

.whitepaper-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 45px;
  width: 100%;
  max-width: 646px;
  height: 100%;
}

.form-grid {
  display: grid;
  gap: clamp(4px, 2vw, 20px);
  max-width: 100%;
  grid-template-columns: 1fr;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

label {
  font-size: clamp(12px, 2vw, 14px);
  font-size: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "Peridot PE Variable", sans-serif;
  text-shadow: 0 4px 11.2px #000000b5;
}

.whitepaper-form input {
  border-radius: 0;
  border: 1px solid transparent;
  padding-block: clamp(8px, 1vw, 12px);
  padding-inline: clamp(12px, 1vw, 16px);
  gap: 10px;
  color: #000000;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  font-family: "Peridot PE Variable", sans-serif;
  box-shadow: 0 4px 11.2px 0 #000000b5;
}
.whitepaper-form button {
  margin-top: 20px;
  color: #000000;
  padding-block: clamp(2px, 2vw, 12px);
  padding-inline: clamp(8px, 2vw, 16px);
  background: #04dec1;
  border: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  cursor: pointer;
}

@media screen and (max-width: 390px) {
  .whitepaper-form input {
    padding-block: clamp(2px, 1vw, 12px);
    padding-inline: clamp(8px, 1vw, 16px);
  }
  .whitepaper-form button {
    padding-block: clamp(2px, 1vw, 12px);
    padding-inline: clamp(8px, 1vw, 16px);
  }
}

h2 {
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: clamp(90%, 3vw, 79px);
  letter-spacing: clamp(0.08px, 3vw, 0.16px);
  text-shadow: 0 4px 11.2px #000000b5;
  text-transform: uppercase;
}

.whitepaper-info {
  height: fit-content;
  background: #080c19b2;
  padding: 20px;
  width: 100%;
}

strong {
  font-size: clamp(0.875rem, 3vw, 1rem);
  line-height: clamp(19px, 3vw, 150%);
  letter-spacing: 0.2px;
  font-family: "Helvetica LT Pro";
}

li {
  font-weight: 400;
  font-size: clamp(0.875rem, 3vw, 1rem);
  line-height: clamp(19px, 3vw, 150%);
  letter-spacing: 0.2px;
  list-style-type: none;
  font-family: "Helvetica LT Pro";
}

li::before {
  content: "🔹 ";
}

/* Mobile Layout Overall */
@media screen and (max-width: 430px) {
  .music-container {
    bottom: 4%;
    left: 4%;
  }
  .music-bars {
    display: none;
  }

  .content-slide {
    padding-inline: 20px;
  }

  .whitelist-form {
    align-items: start;
    gap: 32px;
  }

  .form-group {
    gap: 0.125rem;
  }

  .whitelist-form button {
    width: 150px;
  }

  .community-container {
    width: 354px;
  }
}

.hidden {
  display: none !important;
}