: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/communityBackground.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/communityBackground.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;
  color: var(--font-color);
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}
.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;
}

.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: 0;
  left: 0;
  width: 275%; /* Increased width to allow for horizontal parallax movement */
  height: 100vh; /* Full viewport height */
  background-image: url("public/communityGround.svg"); /* Placeholder image */
  background-size: cover; /* Cover the entire area */
  background-position: left; /* 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 */
}

.parallax-bg-container {
  position: fixed; /* Fixed position to enable parallax */
  top: 65%;
  left: 0;
  width: 100%; /* Increased width to allow for horizontal parallax movement */
  height: 100vh;
  will-change: transform; /* Optimize for animation */
  z-index: -1; /* Send it behind other content */
}

@media screen and (max-width: 1580px) {
  .parallax-bg-container {
    width: 150%;
  }
}

@media screen and (max-width: 1048px) {
  .parallax-bg-container {
    width: 230%;
  }
}

@media screen and (max-width: 768px) {
  .parallax-bg-container {
    width: 250%;
  }
}

@media screen and (max-width: 430px) {
  .parallax-bg-container {
    width: 350%;
  }
}
/* 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 */
}

/*Planet Background */
.parallax-eclipse {
  position: fixed; /* Fixed position to enable parallax */
  top: 25%;
  left: 20%;
  width: 150%;
  aspect-ratio: 24 / 7;
  /* height: 100vh; */
  /* background-image: url('https://placehold.co/1920x1080/0A2342/FFFFFF?text=Background+Image'); */
  background-image: url("public/communityPlanet.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 (max-width: 1024px) {
  .parallax-eclipse {
    top: 35%;
  }
}

@media screen and (max-width: 768px) {
  .parallax-eclipse {
    top: 45%;
  }
}
/* City Background */
.city-parallax {
  position: relative;
  top: -65%;
  left: -100%;
  width: 300%;
  transform: scale(0.4);
  height: 100vh; /* Full viewport height */
  background-image: url("public/communityCity.svg"); /* Placeholder image */
  background-repeat: repeat-x;
  background-size: contain; /* Cover the entire area */
  background-position: left; /* Position left to allow horizontal movement */
  will-change: transform; /* Optimize for animation */
  z-index: 0; /* Send it behind other content */
}

.city-parallax2 {
  position: fixed;
  top: -75%;
  left: -120%;
  width: 400%;
  transform: scale(0.4);
  height: 100vh; /* Full viewport height */
  background-image: url("public/communityCity2.svg"); /* Placeholder image */
  background-repeat: repeat-x;
  background-size: contain; /* Cover the entire area */
  background-position: left; /* Position left to allow horizontal movement */
  will-change: transform; /* Optimize for animation */
  z-index: -2; /* Send it behind other content */
}

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

/* Big Sun + Small Sun */
.big-sun {
  position: absolute;
  top: 0%;
  left: -5%;
  width: 15%;
  aspect-ratio: 24 / 7;
  /* height: 100vh; */
  /* background-image: url('https://placehold.co/1920x1080/0A2342/FFFFFF?text=Background+Image'); */
  background-image: url("public/communityBigSun.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: -1%;
  left: -8.5%;
  width: 7.5%;
  aspect-ratio: 24 / 7;
  /* height: 100vh; */
  /* background-image: url('https://placehold.co/1920x1080/0A2342/FFFFFF?text=Background+Image'); */
  background-image: url("public/communitySmallSun.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 */
}

/* 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 1 Layout */
.slide-content.one {
  gap: clamp(16px, 5vw, 32px);
  flex-direction: column;
  align-items: center;
}

.h1-container {
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: 100%;
  gap: 10px;
  margin-top: 0;
  align-self: center;
}

.h1-container h4 {
  font-weight: 700;
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  font-style: italic;
  line-height: 150%;
  letter-spacing: 0.2px;
  text-shadow: 0 4px 4px #00000040;
}
.h1-container h1 {
  font-size: clamp(2.5rem, 5vw, 5.313rem);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.5px;
  font-weight: 700;
  font-style: oblique;
  display: flex;
  flex-direction: column;
  margin: 0;
  word-break: keep-all;
  text-shadow: 0 4px 11.2px #000000b5;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  display: flex;
  width: 100%;
}

.p-container {
  max-width: 100%;
  padding-right: 20px;
  background-color: #1b1b1bb2;
}

@media screen and (max-width: 430px) {
  .p-container {
    padding-block: 20px;
  }
}

.hero-p {
  display: flex;
  padding: 1.125rem;
  gap: 20px;
  max-height: 220px;
  width: fit-content;
  max-width: 590px;
  font-family: "Helvetica LT Pro";
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: clamp(0.2px, 5vw, 150%);
  overflow-y: auto;
  text-shadow: 0 4px 11.2px #000000b5;
}
/* Slide 1 Tablet -  Small Desktop screen */
@media screen and (max-width: 1024px) {
  .slide-content.one {
    justify-content: center;
    gap: 32px;
  }
  .h1-container {
    width: 100%;
    padding: 0;
  }
}

/* Slide 2 Layout */
.content-slide.two {
  justify-content: center;
  padding-inline: 0px;
}

.slide-content.two {
  max-width: 100%;
  background: linear-gradient(#1b1b1b00, #1b1b1bc5, #1b1b1bc5, #1b1b1b00);
  background-blend-mode: multiply;
  height: 500px;
}

.slide-2-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.slide-2-content {
  display: flex;
  height: fit-content;
  padding: 96px 24px;
  gap: 10px;
  max-width: 872px;
  text-align: center;
}

/* 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;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: #ffffff40;
  margin-inline: 2rem;
}

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

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

.content-slide.three {
  background: linear-gradient(
    90deg,
    #1b1b1b00,
    #1b1b1bc5 10%,
    #1b1b1bc5 90%,
    #1b1b1b00
  );
  background-blend-mode: multiply;
}

.slide-three-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 5vw, 48px);
}

.slide-three-wrapper {
  display: flex;
  gap: clamp(32px, 5vw, 81px);
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  max-width: 90vw;
  max-height: 42vh;
  scroll-snap-type: x mandatory;
  padding: 16px;
}

@media screen and (max-width: 1024px) {
  .slide-three-wrapper {
    flex-direction: column;
    max-height: 100vh;
  }
  .slide-three-container {
    flex-direction: row;
  };
}

@media screen and (max-width: 431px) {
  .slide-three-wrapper:nth-child(2) {
    display: none;
  }
}

@media screen and (min-width: 431px) {

  .mobile-only {
    display: none;
    visibility: hidden;
  }
}

.slide-three-card {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  gap: clamp(4px, 3vw, 16px);
  max-width: 320px;
  flex: 0 0 100%;
  scroll-snap-align: center;
  transition: 0.2s ease;
}

.slide-three-card:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.slide-three-card h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: clamp(0.08px, 3vw, 0.2px);
}

.slide-3-img {
  width: 48px;
  height: 48px;
}
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) {
  .discord-slide-container {
    flex-direction: column;
  }

  .content-slide.three {
    justify-content: center;
  }
  .slide-content.three {
    flex-direction: column;
    height: fit-content;
    gap: 0px;
  }
}

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

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

.discord-slide-container {
  display: flex;
  align-items: center;
  gap: clamp(18px, 5vw, 90px);
}

.discord-info-wrapper {
  position: relative;
  display: flex;
  padding: clamp(20px, 5vw, 40px);
  gap: 20px;
  width: clamp(300px, 50vw, 640px);
  height: clamp(300px, 50vw, 380px);
  background: #1b1b1bb2;
}

.discord-info {
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 430px) {
  .discord-slide-container {
    gap: 0px;
  }
}

@media screen and (max-width: 768px) {
  .discord-info {
    justify-content: flex-start;
    align-items: stretch;
    padding-right: 20px;
  }
}

.discord-invite {
  color: #000000;
  width: fit-content;
  padding: 12px 24px;
  background: #04dec1;
  border: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  cursor: pointer;
}

.discord-invite a {
  color: #000000;
  text-decoration: none;
}

.carousel-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 50px;
}

.carousel-buttons {
  display: flex;
  gap: 24px;
}

.previous,
.next {
  cursor: pointer;
  color: var(--font-color);
  background-color: #ffffff80;
  border-radius: 28px;
  width: clamp(36px, 5vw, 48px);
  height: clamp(36px, 5vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.previous:hover,
.next:hover {
  background-color: #ffffff5b;
}

.dot-container {
  display: flex;
  gap: 12px;
}

.dot {
  cursor: pointer;
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 28px;
  display: inline-block;
  gap: 12px;
  transition: background 0.6s ease;
}

.dot.active,
.dot:hover {
  background: #04dec1;
}

/* Slide 5 Layout */
.content-slide.five {
  justify-content: center;
  padding-inline: 0px;
}

.slide-content.five {
  max-width: 100%;
}

.slide-5-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(#1b1b1b00, #1b1b1bc5, #1b1b1bc5, #1b1b1b00);
  background-blend-mode: multiply;
  height: 700px;
}

@media screen and (max-width: 768px) {
  .slide-5-container {
    flex-direction: column;
  }
}

.slide-5-container {
  display: flex;
  width: fit-content;
  height: fit-content;
  gap: clamp(12px, 3vw, 24px);
  padding-block: clamp(24px, 5vw, 96px);
  padding-inline: clamp(20px, 5vw, 90px);
}

.slide-5-card {
  border: 1px solid #7c8794;
  padding-inline: clamp(12px, 3vw, 24px);
  padding-top: clamp(12px, 3vw, 24px);
  padding-bottom: clamp(16px, 3vw, 32px);
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: clamp(12px, 3vw, 32px);
  overflow-y: auto;
}

/* Slide 6 Layout */
.FAQ {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
  width: 1172px;
  height: 583px;
  padding-block: clamp(20px, 5vw, 96px);
  padding-inline: 20px;
  background: #19191999;
}

.collapsible {
  background: transparent;
  color: var(--font-color);
  cursor: pointer;
  width: 100%;
  height: fit-content;
  gap: 16px;
  border: none;
  text-align: left;
  outline: none;
  font-family: "Helvetica LT Pro";
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: clamp(0.08px, 3vw, 0.2px);
  position: relative;
}

.collapsible:focus-visible {
  outline: 2px solid var(--font-color);
  outline-offset: 2px;
}

.content {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.2s ease-out;
}

hr {
  border: 1px solid #e0e0e0;
}
/* Mobile Layout Overall */
@media screen and (max-width: 430px) {
  .content-slide {
    padding-inline: 20px;
  }

  .slide-content.one {
    align-items: center;
    gap: 2rem;
  }

  .h1-container {
    padding-bottom: 0;
  }

  .p-container {
    width: 100%;
    padding-top: 0;
    margin-bottom: 0;
  }

  .hero-p {
    height: fit-content;
    width: 100%;
  }

  .extra-link-section {
    flex-direction: column;
    gap: 2rem;
  }

  .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;
}