@font-face {
  font-family: 'Lazy Alien'; /* Name of the font */
  src: url('../assets/fonts/lazy-alien.ttf') format('truetype'); /* Path to the font file */
  font-weight: normal; /* Optional: Specify the weight */
  font-style: normal; /* Optional: Specify the style */
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/IBM-Plex-Sans/IBMPlexSans-Regular.ttf')
    format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/IBM-Plex-Sans/IBMPlexSans-Medium.ttf')
    format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/IBM-Plex-Sans/IBMPlexSans-SemiBold.ttf')
    format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../assets/fonts/IBM-Plex-Sans/IBMPlexSans-Bold.ttf')
    format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* VARIABLES */
:root {
  /* Colors */
  --primary-color: #4435e7;
  --text-color: #f6ecff;
  --color-black: #000;

  /* Font and typography */
  --heading-font: 'Lazy Alien', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;

  /* Font sizes */
  --biggest-font-size: 6rem;
  --big-font-size: 3.8rem;
  --medium-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.8rem;

  /* Spacing */
  --padding-horizontal-section: 24px;
  --padding-vertical-section: 40px;

  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  margin: var(--header-height);
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
  background-color: #000;
  overflow-x: hidden;
}

h1,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  margin-top: 100px;
}

/* 1.HERO */
/* .get-started .heading,
.terms-of-service .heading {
  text-align: center;
}

.get-started .para,
.terms-of-service .para {
  text-align: center;
} */

.get-started .hero-sec-1,
.terms-of-service .hero-sec-1 {
  height: 80vh;
}

/* .get-started .text-container,
.terms-of-service .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */

/* .get-started .hero-sec-1 .text-container,
.terms-of-service .hero-sec-1 .text-container {
  align-items: center;
  justify-content: center;
} */

/* SECTIONS */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-left: var(--padding-horizontal-section);
  padding-right: var(--padding-horizontal-section);
  padding-top: var(--padding-vertical-section);
  padding-bottom: var(--padding-vertical-section);
}

.text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.heading {
  font-family: var(--heading-font);
  font-size: clamp(var(--big-font-size), 10vw, 9rem);
  font-weight: 500;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.small-heading {
  font-family: var(--heading-font);
  font-size: clamp(var(--medium-font-size), 14vw, 6rem);
  width: 100%;
  font-weight: 500;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1.25rem;
}

.para {
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: clamp(var(--normal-font-size), 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 2.25rem;
}

/* HERO */

.hero-heading {
  font-size: clamp(var(--biggest-font-size), 17vw, 15rem);
}

.hero-para {
  font-size: clamp(var(--medium-font-size), 2.7vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 54px 0;
}

.primary-button {
  background-color: var(--primary-color);
  color: #fff;
  font-family: var(--body-font);
  width: fit-content;
  padding: 14px 25px;
  border-radius: 16px;
  border: none;
  font-size: clamp(var(--normal-font-size), 1.5vw, 1.5rem);
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  z-index: 2;
}

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

.section-image {
  width: 100%;
  /* max-height: 350px; */
  height: auto;
}

/* NEW HEADER */
.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.8rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}

.header.on-scroll {
  background: var(--color-black);
  opacity: 1;
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--text-color);
  text-transform: uppercase;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 5rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black);
  opacity: 0.975;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}

.menu-link {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--text-color);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}

.socials-container {
  z-index: 1;
  display: flex;
  gap: 20px;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background-color: var(--color-black);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.social-button img {
  width: 1.3rem;
  height: 1.3rem;
  filter: invert(1) grayscale(1);
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--text-color);
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

/* INDIVIDUAL SECTIONS */
.style-pod-sec-4 .visual-container {
  transform: translateY(-20px);
}

.meet-sporex-sec-2 .section-image {
  margin-left: calc(var(--padding-horizontal-section) * -1);
  max-width: 100%;
}

.meet-sporex-sec-2 .visual-container {
  align-items: flex-start;
  justify-content: flex-start;
}

.marketplace .heading {
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--color-black);
  opacity: 1;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  padding-left: var(--padding-horizontal-section);
  padding-right: var(--padding-horizontal-section);
  padding-top: var(--padding-vertical-section);
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--text-color);
  margin-top: 5rem;
}

footer .social-button {
  background-color: #fff;
  width: 48px;
  height: 48px;
}

footer .socials-container {
  margin-bottom: 3.5rem;
}

footer .social-button img {
  filter: invert(0) grayscale(0);
  width: 32px;
  height: 32px;
}

footer .links-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  justify-content: center;
  gap: 24px;
}

footer .links-container li {
  text-align: left;
  height: 54px;
}

footer .footer-link {
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 800;
  text-align: left;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.top-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  gap: 1.5rem;
}

.legal-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  padding-bottom: 0.7rem;
}

/* MARKETPLACE */
.marketplace {
  margin-top: 155px;
}

.marketplace .heading {
  margin-bottom: 2rem;
}

.dropdown {
  position: relative;
  text-transform: uppercase;
  width: 100%;
}

.dropdown > label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text-color);
}

.dropdown-container {
  position: relative;
}

.dropdown-button {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  font-family: var(--body-font);
}

.dropdown-button span {
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 1);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  margin-top: 5px;
  list-style: none;
  padding: 0;
  width: 100%;
  display: none;
  z-index: 3;
}

.dropdown-menu.visible {
  display: block;
}

.dropdown-item {
  padding: 10px 15px;
  cursor: pointer;
  text-align: left;
  color: var(--text-color);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.filters {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding-left: var(--padding-horizontal-section);
  padding-right: var(--padding-horizontal-section);
  margin-bottom: 3.5rem;
}

.hidden {
  display: none;
}

.marketplace-grid {
  --auto-grid-min-size: 250px;
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--auto-grid-min-size), 1fr)
  );
  grid-gap: 3rem;
  padding: 0 10vw;
  /* padding: clamp(86px); */
}

.marketplace-item {
  cursor: pointer;
  transition: transform 0.3s ease; /* Smooth transition for the transform effect */
}

.marketplace-item img {
  border-radius: 8px;
}

.marketplace-item:hover {
  position: relative;
  transform: translateY(-10px);
}

.marketplace-item:hover .marketplace-item img {
  transition-duration: 150ms;
}

.marketplace-top-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 10vw;
  color: var(--text-color);
  font-weight: 700;
  flex-direction: column;
  gap: 1.75rem;
}

.marketplace-top-part > p {
  font-size: var(--medium-font-size);
  display: flex;
  align-items: center;
  gap: 12px;
  text-wrap: nowrap;
}

.marketplace-top-part > p > ion-icon {
  font-size: 2.5rem;
}

.marketplace-top-part .navigation-buttons {
  display: flex;
  gap: 0.8rem;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 42px;
  border-radius: 6px;
  width: 42px;
  border: none;
  background-color: #fff;
}

.icon-button ion-icon {
  font-size: 1.5rem;
}

/* MARKETPLACE POPUP */
.popup {
  position: fixed;
  top: -100vh;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: top 0ms ease-in-out 300ms;
  z-index: 99999;
}
.popup.active {
  transition: top 0ms ease-in-out;
  top: 0vh;
}
.popup .popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 325px;
  padding: 50px 62px;
  background: #eee;
  opacity: 0.5;
  transition: all 300ms ease-in-out;
  border-radius: 18px;
}
.popup.active .popup-container {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.popup .popup-container .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #111;
  text-align: center;
  line-height: 30px;
  color: #eee;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-heading {
  font-family: var(--heading-font);
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--color-black);
  line-height: 0.9;
  margin-bottom: 0.9rem;
  text-align: center;
}

.popup-text {
  font-family: var(--body-font);
  color: var(--color-black);
  font-size: 1.1rem !important;
  font-weight: 600;
  margin-bottom: 1.4rem;
  text-align: center;
}

.popup-container .primary-button {
  font-family: var(--body-font);
  font-size: 1rem !important;
}

.collectibles .hero-heading {
  font-size: clamp(4rem, 12vw, 18rem) !important;
}

.collectibles .hero-sec-1 {
  flex-direction: column;
  gap: 5rem;
}

.collectibles .para {
  margin-bottom: 0;
}

.collectibles .primary-button {
  margin-top: 3rem;
}

.collectibles .hero-para {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}

@media screen and (max-width: 767px) {
  .style-pod-sec-4 {
    gap: 0;
    padding-bottom: 0;
  }
}

/* SCROLL ANIMATION */
.scroll-animation-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 300px;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}

.scroll {
  width: 60px;
  height: 60px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}

.scroll::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-left: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  transform: rotate(-45deg);
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

@keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}

@-webkit-keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}

/* Media Query Breakpoint */
@media screen and (min-width: 768px) {
  :root {
    --padding-horizontal-section: clamp(150px, 20vw, 500px);
    --padding-vertical-section: 64px;
  }

  .section {
    flex-direction: row;
  }

  .meet-sporex-sec-2,
  .style-pod-sec-4,
  .airdrops-sec-6,
  .collectibles .special-edition-colors {
    flex-direction: row-reverse;
  }

  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }

  .burger {
    display: none;
    visibility: hidden;
  }

  .para {
    margin-bottom: 2.8rem;
  }

  footer .small-heading {
    font-size: 2rem;
  }

  .footer-sec-1 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

  .privacy-policy {
    text-align: right;
  }

  .hero-para {
    margin: 0 0 108px 0;
  }

  .footer-legal-links {
    justify-content: flex-end;
  }

  .marketplace-top-part {
    flex-direction: row;
  }

  .marketplace {
    margin-top: 185px;
  }

  .collectibles main {
    margin-top: 250px;
  }
}
