@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --navbar-color: #111111;
  --navbar-links: #b6b6b6;
  --text-color: #ffffff;
  --pill-bg: rgba(255, 255, 255, 0.06);
  --btn-color: #62e9ff;
  --grad: linear-gradient(90deg, #00dafd 0%, #00a6e2 63%, #0085d1 100%);
  --black: #000000;
}

.container {
  max-width: 1560px;
}

a {
  text-decoration: none;
  display: inline-block;
}

/* Header Section */
.navbar {
  background: var(--navbar-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar .container {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  line-height: 0;
  width: 180px;
  padding-bottom: 0;
}

.logo-img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 20px;
}

.pill-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 1;
  background: var(--pill-bg);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35) inset,
    0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  color: var(--navbar-links);
  position: relative;
  transition: color 0.2s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 14px 50px;
}

.pill-nav .nav-link:last-child {
  padding-right: 32px;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--text-color);
}

.pill-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 56%;
  transform: translateX(-50%) scaleX(0.9);
  bottom: 8px;
  width: 28px;
  height: 2px;
  border-radius: 3px;
  background: var(--btn-color);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: center;
}

.pill-nav .nav-link.active {
  background-image: var(--grad);
  background-clip: text;
  color: transparent;
}

.pill-nav .nav-link.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.right-tools {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.right-tools .icon-link {
  padding: 0 1rem !important;
}

.right-tools .icon-link i {
  font-size: 0.95rem;
  line-height: 1;
}

.right-tools .nav-item {
  margin: 0 !important;
}

.right-tools .nav-item + .nav-item {
  margin-left: 2px !important;
}

.right-tools .nav-item:last-child {
  margin-left: 10px !important;
}

.btn-wallet {
  width: 9em;
  height: 3em;
  border-radius: 30em;
  border: 1px solid var(--btn-color);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navbar-links);
  background: transparent;
  z-index: 0;
  font-family: "Montserrat", sans-serif;
}

.btn-wallet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(
    90deg,
    #00dafd 0%,
    #00a6e2 63%,
    #0085d1 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-wallet:hover::before {
  transform: scaleX(1);
}

.btn-wallet:hover {
  color: var(--text-color);
}

.bid-btn.brutalist-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9em;
  height: 3em;
  cursor: pointer;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
  color: var(--text-color);
  background-color: var(--navbar-color);
  border: 1px solid #1c1c1c;
  outline: 1px solid #101010;
  border-radius: 5px;
  box-shadow: 6px 6px 0 var(--btn-color);
  transition: all 0.1s ease-out;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.bid-btn.brutalist-button::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  opacity: 0;
  z-index: 1;
}
@keyframes bidSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.bid-btn.brutalist-button:hover::before {
  opacity: 1;
  animation: bidSweep 2s infinite;
}

.bid-btn.brutalist-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--btn-color);
  background-color: var(--navbar-color);
  color: #fff;
}

.bid-btn.brutalist-button:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--btn-color);
  background-color: #fff;
  color: #000;
  border-color: #000;
  outline-color: #000;
}

.bid-btn.brutalist-button .button-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 1;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}

.bid-btn.brutalist-button:hover .button-text {
  transform: skew(-5deg);
}

.bid-btn.brutalist-button:active .button-text {
  transform: skew(5deg);
}

.bid-btn.brutalist-button .button-text span {
  font-size: 14px;
}

.bid-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
  text-align: center;
}

.offcanvas-dark {
  background: var(--navbar-color);
  color: var(--text-color);
}

.offcanvas-dark .nav-link {
  color: var(--navbar-links);
  font-weight: 600;
  padding: 0.65rem 0;
}

.offcanvas-dark .nav-link.active {
  color: #fff;
}

.offcanvas-dark .offcanvas-title {
  color: #fff;
}

.btn-close-ghost {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.35rem;
}
.btn-close-ghost i {
  pointer-events: none;
}

.mobile-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}

.mobile-tools .nav-link {
  padding: 0 0.5rem !important;
  line-height: 1;
  color: var(--navbar-links);
}

.mobile-tools .nav-link i {
  font-size: 1rem;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  margin-left: 0.5rem;
  border-color: rgba(255, 255, 255, 0.95);
}

.offcanvas-backdrop {
  background: rgba(128, 128, 128, 0.96);
  backdrop-filter: blur(800px);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.97);
  transition: all 0.3s ease-in-out;
}

.offcanvas-backdrop.show {
  background: rgba(135, 135, 135, 0.98);
  backdrop-filter: blur(800px);
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.99);
}

/* Banner Section */
.banner-section {
  display: flex;
  justify-content: center;
  padding: 20px 0 0;
  text-align: center;
  background: var(--navbar-color);
}

.main-heading h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
  max-width: 639px;
  margin: 0 auto;
}

.main-heading .bold-text {
  font-weight: 800;
  color: var(--text-color);
}

.main-heading .gradient-text {
  font-weight: 600;
  background: linear-gradient(180deg, #00dafd 0%, #0085d1 78%);
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.banner-img {
  width: 500px;
  margin-bottom: -10px;
}

.banner-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.banner-row {
  margin: 45px 0 0;
  align-items: center;
}

.banner-row > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-subtext {
  width: 340px;
  color: var(--text-color);
  font-size: 23px;
  font-family: "Poppins", sans-serif;
  font-weight: 400px;
  margin: 0 auto;
}

.btn-start {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9em;
  height: 3em;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid var(--btn-color);
  color: var(--text-color);
  background: var(--grad);
  z-index: 0;
  transition: color 0.3s ease;
}

.btn-details {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9em;
  height: 3em;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid var(--btn-color);
  color: var(--navbar-links);
  background: transparent;
  z-index: 0;
  transition: color 0.3s ease;
}

.btn-start::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navbar-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
  color: var(--navbar-links);
}

.btn-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    #00dafd 0%,
    #00a6e2 63%,
    #0085d1 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-start:hover::before,
.btn-details:hover::before {
  transform: scaleX(1);
}

.btn-start:hover,
.btn-details:hover {
  color: var(--text-color);
}

.btn-row .btn + .btn {
  margin-left: 12px;
}

.stats-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.stat-num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  color: #00a6e2;
  font-size: 0.95rem;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #00dafd 0%, #0085d1 100%);
  margin: 10px 0 20px;
  border-radius: 2px;
  opacity: 0.9;
}

/* Auction Section */
.slider-section {
  background: #000;
  padding: 70px 0;
  position: relative;
  overflow-x: hidden;
}

.auctions-top {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 0;
  padding-inline: 50px;
}

.auctions-title {
  flex: 0 0 auto;
}

.eyebrow {
  color: var(--navbar-links);
  font: 18px "Poppins", sans-serif;
  margin: 0 0 2spx;
}

.title {
  font: 42px "Montserrat", sans-serif;
  margin: 0;
  color: var(--btn-color);
  font-weight: 600;
}

.auctions-sub {
  flex: 1 1 auto;
  text-align: center;
  color: var(--navbar-links);
  font: 14px "Poppins", sans-serif;
  margin: 0 12px;
  width: 450px;
}

.auction-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.auction-nav .swiper-button-prev,
.auction-nav .swiper-button-next {
  position: static !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 4;
}

.auction-nav .swiper-button-next {
  background: #fff;
  border-color: #fff;
  margin-left: 12px;
}

.auction-nav .swiper-button-prev::after,
.auction-nav .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.auction-nav .swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18l-6-6 6-6' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.auction-nav .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%23080808' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.auction-swiper .swiper-button-prev,
.auction-swiper .swiper-button-next {
  display: none !important;
}

.auction-nav .swiper-button-prev,
.auction-nav .swiper-button-next {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, filter 0.18s ease;
}

.auction-nav .swiper-button-prev:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0 0 6px rgba(0, 214, 255, 0.25));
}

.auction-nav .swiper-button-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
  background: linear-gradient(90deg, #00dafd 0%, #0085d1 100%);
  border-color: transparent;
  filter: drop-shadow(0 0 6px rgba(0, 214, 255, 0.35));
}

.auction-nav .swiper-button-prev:active,
.auction-nav .swiper-button-next:active {
  transform: translateY(0);
}

.slider-section .auctions-top {
  position: relative;
  z-index: 3;
}

.slider-section .auction-swiper {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.auction-swiper {
  width: 100%;
  overflow: visible;
}

.auction-swiper .swiper-wrapper {
  align-items: stretch;
}

.auction-swiper .swiper-slide {
  min-width: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
}

.auction-slide {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: var(--navbar-color);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  padding: 30px 0;
  box-sizing: border-box;
  z-index: 0;
}

.auction-slide .img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.auction-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.tag-top {
  position: absolute;
  top: -5px;
  right: 80px;
  padding: 6px 10px;
  color: var(--navbar-links);
  font: 12px "Poppins", sans-serif;
  border-radius: 8px;
  line-height: 1;
  pointer-events: none;
  width: 100px;
}

.tag-top > span {
  font: 20px "Poppins", sans-serif;
  color: var(--btn-color);
}

.mini-card {
  position: absolute;
  left: 30px;
  bottom: -9px;
  background: var(--navbar-color);
  border-radius: 10px;
  padding: 8px 10px;
  pointer-events: none;
  min-width: 150px;
  z-index: 9999;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1.2;
}

.mini-row + .mini-row {
  margin-top: 6px;
}

.mini-label {
  font-size: 10px;
  color: var(--text-color);
  margin-left: 10px;
}

.mini-val {
  font-size: 10px;
  color: var(--btn-color);
  margin-left: 10px;
}

/* Brand Section */
.brands-section {
  background: #ffffff;
  padding: 2px 0;
  overflow: hidden;
}

.brands-ticker {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.brands-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: brands-marquee 25s linear infinite;
}

.brand {
  width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 60px 0 0;
  box-sizing: border-box;
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

.brand-ama img {
  height: 40px;
}
.brand-slk img {
  height: 95px;
}
.brand-para img {
  height: 58px;
}
.brand-chs img {
  height: 110px;
}
.brand-bin img {
  height: 110px;
}

@keyframes brands-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.about-section {
  background: var(--navbar-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
}

.left-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-title {
  font: 600 42px/1.2 "Poppins", sans-serif;
  margin: 0 0 14px;
  color: var(--text-color);
}

.about-sub {
  font: 400 "Poppins", sans-serif;
  color: var(--text-color);
  max-width: 380px;
  margin: 0 0 28px;
  font-size: 13px;
}

.about-cta {
  margin-top: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 700px;
}

.steps-grid > .step-card:nth-child(odd) {
  margin: 0 13px 26px 0;
}

.steps-grid > .step-card:nth-child(even) {
  margin: 0 0 26px 13px;
}

.step-card {
  background: var(--navbar-color);
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: 1px solid var(--btn-color);
  border-radius: 15px;
  padding: 28px 10px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    outline-color 0.18s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
  outline-color: var(--btn-color);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 0 rgba(0, 214, 255, 0));
  transition: filter 0.18s ease;
}

.step-card:hover .step-icon {
  filter: drop-shadow(0 0 8px rgba(0, 214, 255, 0.25));
}

.step-icon img {
  width: 54px;
  height: auto;
  display: block;
}

.step-title {
  font: 600 18px/1.25 "Poppins", sans-serif;
  margin: 6px 0 10px;
}

.step-text {
  font: 400 "Poppins", sans-serif;
  color: var(--navbar-links);
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  font-size: 12px;
}

/* Market Section */
.slider-section .auction-swiper {
  padding: 10px 0 24px;
}

.slider-section .auction-swiper .swiper-slide {
  width: 320px;
  height: auto;
}

.slider-section .artist-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: 0.22s ease;
  display: flex;
  flex-direction: column;
}

.slider-section .artist-card:hover {
  transform: translateY(-4px);
}

.slider-section .artist-cover {
  height: 170px;
  background: #0f1114;
}

.slider-section .artist-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.slider-section .artist-head {
  position: relative;
  text-align: center;
  padding: 0 18px 14px;
  margin-top: -36px;
}

.slider-section .artist-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 4px solid #1a1a1a;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.55);
}

.slider-section .artist-role {
  font: 500 12px/1.2 "Poppins", sans-serif;
  color: var(--navbar-links);
  margin: 0;
}

.title-two {
  font-size: 50px;
}

.slider-section .artist-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 16px;
  margin: 10px 0 12px;
}

.slider-section .artist-stats > div {
  text-align: center;
  min-width: 80px;
}

.slider-section .artist-stats > div + div {
  margin-left: 24px;
}

.slider-section .artist-stats .stat-num {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.slider-section .artist-stats .stat-label {
  display: block;
  font-size: 11px;
  color: var(--navbar-links);
}

.slider-section .artist-cta {
  padding: 0 16px 18px;
  margin-top: auto;
  text-align: center;
}
.slider-section .artist-cta .btn-start {
  width: 148px;
  border-radius: 10px;
  padding: 10px 16px;
}
.slider-section .artist-cta .btn-outline {
  background: transparent;
  color: #dcdcdc;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.slider-section .newsletter-card {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 34px 40px;
  box-shadow: 0 0 0 1px rgba(98, 233, 255, 0.06),
    0 18px 32px rgba(0, 0, 0, 0.45);
  width: 680px;
}

.slider-section .news-copy {
  max-width: 560px;
}
.slider-section .news-title {
  color: #fff;
  font: 700 24px "Poppins", sans-serif;
  margin: 0 0 10px;
}
.slider-section .news-sub {
  color: var(--navbar-links);
  font-size: 14px;
  margin: 0 0 18px;
  width: 450px;
}
.slider-section .news-form {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px;
  width: 450px;
}

.slider-section .news-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 10px 12px;
}

.slider-section .news-form input::placeholder {
  color: var(--navbar-links);
}
.slider-section .news-form .btn-start {
  margin-left: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
}
.slider-section .news-art {
  margin-left: 24px;
}
.slider-section .news-art img {
  width: 140px;
  height: auto;
  display: block;
  margin-right: 90px;
}

.artist-name {
  color: var(--text-color);
}

.stat-num-market {
  color: var(--text-color);
}

/* Footer Section */
.footer-section {
  background: #1c1c1c;
  color: var(--navbar-links);
  padding: 54px 16px 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-eyebrow {
  padding-bottom: 40px;
}

.footer-wrap {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px 10px;
  min-width: 220px;
}

.brand-col {
  min-width: 260px;
  max-width: 360px;
}

.footer-title {
  margin: 60px 0 0;
}

.footer-logo {
  width: 170px;
  height: auto;
  margin: 0 auto;
}

.brand-title {
  font: 600 16px/1.2 "Poppins", sans-serif;
  color: #e9e9e9;
  margin: 6px 0 18px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.social-row a {
  width: 52px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  color: var(--text-color);
  background: transparent;
  font-size: 20px;
  transition: 0.25s ease;
}

.social-row a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.social-row a:nth-child(1):hover {
  color: #00acee;
}
.social-row a:nth-child(2):hover {
  color: #e4405f;
}
.social-row a:nth-child(3):hover {
  color: #1877f2;
}
.social-row a:nth-child(4):hover {
  color: #ff0000;
}

.brand-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px 0 20px;
}
.brand-links a {
  color: #e6e6e6;
  font: 500 14px/1.4 "Poppins", sans-serif;
  margin: 6px 0;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 0;
}

.store-row a {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 8px;
  transform: translateZ(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}
.store-row img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-head {
  font: 600 16px/1.2 "Poppins", sans-serif;
  color: #eeeeee;
  margin: 4px 0 16px;
}

.footer-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.footer-list li {
  margin: 20px 0;
  text-align: center;
}
.footer-list a {
  color: var(--navbar-links);
  font: 400 14px/1.45 "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-list a:hover {
  color: #f3f3f3;
  transform: translateY(-1px);
}

.footer-hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 14px 0 6px;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  /* Banner Section */
  .banner-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .banner-row > div:nth-child(1) {
    order: 1 !important;
  }
  .banner-row > div:nth-child(2) {
    order: 2 !important;
  }
  .banner-row > div:nth-child(3) {
    order: 3 !important;
  }
  .banner-row > div {
    width: 100%;
    max-width: 600px;
    margin-bottom: 35px;
  }
  .btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stats-wrap {
    text-align: center;
  }
  .stat {
    margin-bottom: 20px;
  }
  .divider {
    margin: 15px auto;
  }
  .banner-img {
    margin: 0 auto;
  }
  /* Auction Section */
  .tag-top {
    top: -7px;
    right: 40px;
    font-size: 10x;
  }
  .tag-top > span {
    font-size: 15px;
  }
  .auction-slide {
    max-width: 320px;
  }
  /* About Section */
  .about-section {
    min-height: auto;
    padding: 56px 0;
  }
  .about-section .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .left-copy,
  .steps-grid {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-title {
    font-size: 34px;
  }
  .about-sub {
    font-size: 12.5px;
    max-width: 420px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 696px;
  }
  .steps-grid > .step-card {
    margin: 14px 0;
  }
  .steps-grid > .step-card:nth-child(1),
  .steps-grid > .step-card:nth-child(2),
  .steps-grid > .step-card:nth-child(3),
  .steps-grid > .step-card:nth-child(4) {
    margin-left: 0;
    margin-right: 0;
  }
  .btn-about {
    margin-bottom: 50px;
  }
  /* Market Section */
  .slider-section .auction-swiper .swiper-slide {
    width: 300px;
  }
  .slider-section .artist-cover {
    height: 160px;
  }
  .slider-section .newsletter-card {
    width: 620px;
    padding: 32px 34px;
  }
  .slider-section .news-title {
    font-size: 22px;
  }
  .slider-section .news-sub {
    width: 400px;
    font-size: 13px;
    margin-bottom: 16px;
  }
  .slider-section .news-form {
    width: 400px;
    padding: 4px;
  }
  .slider-section .news-form input {
    font-size: 13px;
    padding: 9px 11px;
  }
  .slider-section .news-form .btn-start {
    font-size: 13px;
    padding: 9px 16px;
  }
  .slider-section .news-art img {
    width: 130px;
    margin-right: 70px;
  }
  .stat-num-market {
    color: var(--text-color);
  }
  /* Footer Section */
  .footer-wrap {
    max-width: 1040px;
  }
  .footer-col {
    margin: 0 22px 32px;
  }
  .footer-logo {
    width: 160px;
  }
  .store-row img {
    height: 42px;
  }
}

@media screen and (max-width: 992px) {
  /* Header Section */
  .pill-nav {
    display: none !important;
  }
  .right-tools {
    display: none !important;
  }
  .mobile-tools {
    display: flex !important;
  }
  .logo-img {
    width: 150px;
  }
  .navbar-toggler-icon {
    width: 25px;
    height: 25px;
  }
  .off-nav-item {
    margin: 0 auto;
  }
  .off-btn-wallet {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  a.nav-link.icon-link {
    margin-right: 20px;
  }
  /* Auction Section */
  .eyebrow {
    font-size: 14px;
  }
  .title {
    font-size: 25px;
  }
  .auctions-sub {
    font-size: 12px;

    width: 400px;
  }
  .auction-nav .swiper-button-prev,
  .auction-nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .auction-slide {
    max-width: 360px;
  }
  /* Brand Section */
  .brands-section {
    padding: 3px 0;
  }
  .brand {
    width: 160px;
    margin-right: 40px;
  }
  .brands-track {
    animation-duration: infinite;
  }
  /* About Section */
  .about-title {
    font-size: 30px;
  }
  .about-sub {
    font-size: 12px;
    max-width: 380px;
  }
  .step-title {
    font-size: 16px;
  }
  .step-text {
    font-size: 12px;
  }
  .step-card {
    padding: 24px 18px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 596px;
  }
  /* Market Section */
  .slider-section .auction-swiper .swiper-slide {
    width: 280px;
  }
  .slider-section .artist-cover {
    height: 150px;
  }
  .slider-section .artist-avatar {
    width: 68px;
    height: 68px;
    border-width: 3px;
    margin: 0 auto 10px;
  }
  .slider-section .artist-stats > div + div {
    margin-left: 18px;
    min-width: 72px;
  }
  .slider-section .newsletter-card {
    width: 520px;
    padding: 30px 26px;
    flex-direction: column;
    text-align: center;
  }
  .slider-section .news-copy {
    max-width: 520px;
    margin-bottom: 18px;
  }
  .slider-section .news-sub {
    width: 460px;
    margin: 0 auto 18px;
    font-size: 13px;
  }
  .slider-section .news-form {
    width: 460px;
    border-radius: 10px;
    padding: 8px;
    flex-direction: column;
  }
  .slider-section .news-form .btn-start {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    padding: 10px 16px;
    font-size: 13px;
  }
  .slider-section .news-art {
    margin: 18px 0 0 0;
  }
  .slider-section .news-art img {
    width: 120px;
    margin: 0 auto;
  }
  .slider-section .news-title {
    font-size: 20px;
  }
  /* Footer Section */
  .footer-wrap {
    max-width: 820px;
  }
  .brand-col {
    max-width: 480px;
    min-width: 280px;
  }
  .footer-col {
    min-width: 240px;
    margin: 0 18px 28px;
  }
  .footer-head {
    font-size: 15px;
  }
  .footer-list a {
    font-size: 13.5px;
  }
  .brand-title {
    font-size: 15px;
  }
  .social-row a {
    width: 40px;
    height: 40px;
  }
  .store-row img {
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  /* Banner Section */
  .main-heading h1 {
    font-size: 2rem;
  }
  .main-heading h1 {
    max-width: 539px;
  }
  .banner-img {
    width: 350px;
  }
  /* Auction Section */
  .auctions-top {
    display: flex;
    flex-wrap: wrap;
  }
  .auction-slide {
    max-width: 380px;
  }
  .auctions-top {
    display: flex;
    flex-direction: column;
  }
  .auctions-title {
    margin-bottom: 15px;
    text-align: center;
  }
  .auctions-sub {
    margin-bottom: 55px;
    text-align: center;
  }
  /* About Section */
  .about-title {
    font-size: 28px;
  }
  .about-sub {
    font-size: 11.5px;
    max-width: 340px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 496px;
  }
  .steps-grid > .step-card {
    margin: 12px 0;
  }
  .step-title {
    font-size: 15.5px;
  }
  .step-text {
    font-size: 11.5px;
  }
  .step-icon img {
    width: 44px;
  }
  .step-card {
    padding: 22px 18px;
  }
  /* Market Section */
  .slider-section .auction-swiper .swiper-slide {
    width: 240px;
  }
  .slider-section .artist-cover {
    height: 136px;
  }
  .slider-section .artist-name {
    font-size: 20px;
    color: var(--text-color);
  }
  .slider-section .newsletter-card {
    width: 420px;
    padding: 26px 22px;
  }
  .slider-section .news-copy {
    max-width: 420px;
  }
  .slider-section .news-title {
    font-size: 18px;
  }
  .slider-section .news-sub {
    width: 360px;
    font-size: 12.5px;
    margin-bottom: 14px;
  }
  .slider-section .news-form {
    width: 360px;
    padding: 6px;
  }
  .slider-section .news-form input {
    font-size: 12.5px;
    padding: 8px 10px;
  }
  .slider-section .news-form .btn-start {
    font-size: 12.5px;
    padding: 9px 14px;
  }
  .slider-section .news-art img {
    width: 108px;
  }
  /* Footer Section */
  .footer-wrap {
    max-width: 560px;
  }
  .footer-col {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 26px;
  }
  .brand-col {
    max-width: 520px;
  }
  .footer-col > a > img {
    width: 250px;
  }
  .brand-title {
    font-size: 14px;
  }
  .social-row a {
    width: 38px;
    height: 38px;
    margin: 0 7px;
  }
  .footer-head {
    font-size: 14.5px;
  }
  .footer-list a {
    font-size: 13px;
  }
  .footer-title {
    margin: 20px 0 0;
  }
}

@media screen and (max-width: 576px) {
  /* Header Section */
  a.nav-link.icon-link {
    margin-right: 5px;
  }
  /* Banner Section */
  .main-heading h1 {
    max-width: 239px;
    font-size: 17px;
  }
  .banner-img {
    width: 250px;
  }
  .banner-subtext {
    width: 240px;
    font-size: 14px;
  }
  .stat-num {
    font-size: 25px;
  }
  .stat-label {
    font-size: 14px;
  }
  .divider {
    width: 80px;
  }
  /* Auction Section */
  .eyebrow {
    font-size: 10px;
  }
  .title {
    font-size: 20px;
  }
  .auctions-top {
    justify-content: center;
    padding-inline: 16px;
  }
  .auction-nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .auction-nav .swiper-button-prev,
  .auction-nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .auction-nav .swiper-button-next {
    margin-left: 20px;
    margin-bottom: 5px;
  }
  .auctions-sub {
    max-width: 280px;
    margin: 0 auto 50px;
  }
  .tag-top {
    right: 20px;
    font-size: 8px;
    width: 60px;
  }
  .tag-top > span {
    font-size: 10px;
  }
  .mini-card {
    bottom: -7px;
    left: 1px;
  }
  .bid-btn.brutalist-button {
    width: 7em;
    height: 2em;
  }
  .bid-btn.brutalist-button .button-text span {
    font-size: 10px;
  }
  .auction-slide {
    max-width: 200px;
  }
  .mini-label {
    font-size: 10px;
  }
  .mini-val {
    font-size: 11px;
  }
  /* Brand Section */
  .brands-section {
    padding: 2px 0;
  }
  .brand {
    width: 130px;
    margin-right: 25px;
  }
  .brands-track {
    animation-duration: infinite;
  }
  .brand-ama img {
    height: 30px;
  }
  .brand-slk img {
    height: 65px;
  }
  .brand-para img {
    height: 48px;
  }
  .brand-chs img {
    height: 80px;
  }
  .brand-bin img {
    height: 80px;
  }
  /* About Section */
  .about-section {
    padding: 48px 0;
  }
  .about-title {
    font-size: 24px;
  }
  .about-sub {
    font-size: 11.5px;
    max-width: 300px;
  }
  .steps-grid {
    width: 296px;
  }
  .step-card {
    padding: 20px 16px;
  }
  .step-title {
    font-size: 15px;
  }
  .step-text {
    font-size: 11px;
    max-width: 280px;
  }
  /* Market Section */
  .slider-section .auction-swiper .swiper-slide {
    width: 210px;
  }
  .slider-section .artist-cover {
    height: 120px;
  }
  .slider-section .artist-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
  }
  .slider-section .artist-name {
    font-size: 18px;
    color: var(--text-color);
  }
  .slider-section .artist-stats > div + div {
    margin-left: 14px;
    min-width: 66px;
  }
  .slider-section .newsletter-card {
    width: 280px;
    padding: 22px 16px;
    margin: 28px auto;
  }
  .slider-section .news-copy {
    max-width: 320px;
  }
  .slider-section .news-title {
    font-size: 17px;
  }
  .slider-section .news-sub {
    width: 260px;
    font-size: 12px;
    margin: 0 auto 12px;
  }
  .slider-section .news-form {
    width: 240px;
    padding: 6px;
    margin: 0 auto;
  }
  .slider-section .news-form input {
    font-size: 12px;
    padding: 7px 10px;
  }
  .slider-section .news-form .btn-start {
    font-size: 12px;
    padding: 8px 12px;
  }
  .slider-section .news-art img {
    width: 96px;
    margin-top: -20px;
  }
  /* Footer Section */
  .social-row a {
    width: 36px;
    height: 36px;
    font-size: 17px;
    border-radius: 8px;
    margin: 0 6px;
  }
  .footer-section {
    padding: 44px 14px 40px;
  }
  .footer-wrap {
    max-width: 100%;
  }
  .footer-col > a > img {
    width: 200px;
    margin-left: 10px;
  }
  .brand-title {
    font-size: 13.5px;
    margin-bottom: 14px;
  }
  .social-row a {
    width: 36px;
    height: 36px;
    margin: 0 6px;
    border-radius: 9px;
  }
  .brand-links a {
    font-size: 13.5px;
  }
  .store-row img {
    height: 38px;
  }
  .footer-head {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer-list li {
    margin: 7px 0;
  }
  .footer-list a {
    font-size: 12.5px;
  }
  .store-row {
    display: flex;
    flex-direction: column;
  }
  .store-row > a:first-child {
    margin-bottom: 20px;
  }
}

/* Min-Width-Media-Queries */
@media screen and (min-width: 992px) {
  .about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-card {
    margin: 0;
  }
  .steps-grid > .step-card:nth-child(1) {
    margin-right: 26px;
    margin-bottom: 26px;
  }
  .steps-grid > .step-card:nth-child(2) {
    margin-left: 26px;
    margin-bottom: 26px;
  }
  .steps-grid > .step-card:nth-child(3) {
    margin-right: 26px;
    margin-top: 26px;
  }
  .steps-grid > .step-card:nth-child(4) {
    margin-left: 26px;
    margin-top: 26px;
  }
}
