p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  margin-bottom: 15px;
}

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

a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.main-title {
  font-size: 50px;
  line-height: 70px;
  font-weight: 700;
  background: #ffffff;
  background: linear-gradient(to bottom, #ffffff 41%, #a8a9ad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 10px;
}

.gray-gradient-text {
  background: #ffffff;
  background: linear-gradient(to bottom, #ffffff 41%, #a8a9ad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pt-100 {
  padding-top: 80px;
}

.pt-120 {
  padding-top: 100px;
}

.pt-300 {
  padding-top: 260px;
}

.pt-200 {
  padding-top: 180px;
}

.pb-200 {
  padding-bottom: 180px;
}

.pb-100 {
  padding-bottom: 80px;
}

.pb-120 {
  padding-bottom: 100px;
}

.pb-40 {
 padding-bottom: 40px;
}

.mt-80 {
  margin-top: 60px;
}

.mt-100 {
  margin-top: 80px;
}

.mb-100 {
  margin-bottom: 80px;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Header: hide on scroll down; show sticky + blur only on scroll up */
.site-header {
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.title-sm {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.site-header.is-header-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: none;
}

.site-header.is-header-fixed.is-header-hidden {
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0s linear;
}

.site-header.is-header-fixed.is-header-scrolling-up {
  background: rgba(15, 45, 45, 0.72);
  backdrop-filter: blur(16px);
  padding-block: 20px;
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.about-banner {
  width: 100%;
  background-image: url(../images/about-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
}

.banner-title-wrap {
  width: 100%;
  max-width: 1250px;
  text-align: center;
  margin: 0 auto;
}

.banner-title-wrap h2 {
  font-size: 80px;
  line-height: 100px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin: 20px 0;
}

.banner-title-wrap p {
  max-width: 900px;
  margin: 0 auto;
}

.banner-title-wrap .main-btn {
  margin-top: 25px;
}

.banner-title-btn {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.title-tag {
  padding: 4px;
  border-radius: 50px;
  min-width: 110px;
  height: 40px;
  display: inline-flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes title-tag-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.title-tag-img {
  width: 30px;
  height: 30px;
}

.title-tag-img img {
  width: 100%;
  height: auto;
  animation: title-tag-spin 5s linear infinite;
}

.title-tag span {
  padding: 0 10px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
}

.main-btn {
  min-width: 150px;
  height: 48px;
  text-decoration: none;
  line-height: 48px;
  font-size: 18px;
  padding: 0 30px;
  border-radius: 25px;
  background-color: #00afd1;
  color: #0a0a0a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
}

.main-btn.white-btn {
  background-color: #fff;
}

.main-btn.grey-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.main-btn.grey-btn .main-btn-arrow img {
  filter: grayscale(0) invert(1);
}

.main-btn.grey-btn .main-btn-arrow::after {
  background-image: url(../images/swiper-round.svg);
}

.main-btn:hover {
  background-color: #94c021;
}

.main-btn:hover .main-btn-arrow::after {
  animation: title-tag-spin 5s linear infinite;
}

.main-btn.is-disabled,
.main-btn.is-disabled:hover {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.main-btn-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-btn-arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/main-btn-round.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.about-banner-main-img {
  width: 100%;
  margin-top: 110px;
  position: relative;
}

.about-banner-main-img-inner {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about-banner-main-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* About hero: layered sticker banner + team (about.html) */
.about-banner-main-img-hero {
  perspective: 1200px;
  cursor: default;
}

.about-banner-main-img-bg-layer {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-banner-main-img-hero .about-banner-main-img-team {
  z-index: 2;
  pointer-events: none;
}

.about-banner-main-img-hero .about-banner-parallax-root {
  width: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.about-banner-main-img-bg,
.about-banner-main-img-team-photo {
  transform-origin: 50% 80%;
}

@keyframes about-hero-bg-pop {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-1.5deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.04) rotate(0.4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes about-hero-team-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 48px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.about-banner-main-img-hero .about-banner-main-img-bg {
  animation: about-hero-bg-pop 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-banner-main-img-hero .about-banner-main-img-team-photo {
  animation: about-hero-team-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.vision-section {
  width: 100%;
  min-height: 1000px;
  background-image: url(../images/about-vision-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
}

.vision-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.vision-section-inner h3 {
  font-size: 50px;
  line-height: 70px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 10px;
}

.vision-left {
  width: 33.3%;
  padding-right: 3%;
}

.vision-center {
  width: 33.3%;
}

.vision-center img {
  width: 100%;
  animation: title-tag-spin 12s linear infinite;
}

.vision-right {
  width: 33.3%;
  padding-left: 6%;
}

.section-story-behind {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
}

.storySwiper {
  margin-top: 50px;
}

.story-swiper-item {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.story-swiper-item:hover > img {
  transform: scale(1.1);
}

.story-swiper-item-text {
  width: 100%;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  min-height: 130px;
}

.story-swiper-item-text h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.story-swiper-item:hover .story-swiper-play-inner::after {
  animation: title-tag-spin 5s linear infinite;
}

.story-swiper-item:hover .story-swiper-play {
  background: rgba(255, 255, 255, 0.4);
}

.login-form-left:hover .story-swiper-play-inner::after {
  animation: title-tag-spin 5s linear infinite;
}

.login-form-left:hover .story-swiper-play {
  background: rgba(255, 255, 255, 0.4);
}

.login-form-left .story-swiper-play {
  top: 50%;
  transform: translateY(-50%);
}

.login-banner-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.login-banner-video .login-banner-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.login-banner-video-poster {
  position: absolute;
  inset: 0;
  background-image: url(../images/login-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.login-banner-video.is-playing .login-banner-video-poster {
  opacity: 0;
}

.login-banner-video .story-swiper-play {
  z-index: 2;
}

.login-banner-video .login-banner-icon-pause {
  display: none;
}

.login-banner-video.is-playing .login-banner-icon-play {
  display: none;
}

.login-banner-video.is-playing .login-banner-icon-pause {
  display: block;
}

.login-banner-video:hover .story-swiper-play,
.login-banner-video.is-playing .story-swiper-play {
  background: rgba(255, 255, 255, 0.4);
}

.login-banner-video:hover .story-swiper-play-inner::after,
.login-banner-video.is-playing .story-swiper-play-inner::after {
  animation: title-tag-spin 5s linear infinite;
}

.story-swiper-play {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-swiper-play:focus,
.story-swiper-play:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
}

.story-swiper-play-inner {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
}

.story-swiper-play-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/video-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
}

.story-swiper-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}

.swiper-btn-main {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 50px;
  gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  top: 0 !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #94c021;
}

.swiper-navigation-icon {
  display: none !important;
}

/* Disabled state when at first/last slide */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.swiper-button-prev:hover .swiper-button-img::after,
.swiper-button-next:hover .swiper-button-img::after {
  animation: title-tag-spin 5s linear infinite;
}

.swiper-button-img {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-button-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/swiper-round.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-content {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 50px;
}

.faq-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.faq-content ul li {
  width: 100%;
  list-style: none;
  border-bottom:1px solid rgba(255, 255, 255, 0.1);
  padding-bottom:50px;
}

.faq-content ul li h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.our-mission-video {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 30px;
}

.our-mission-video .story-swiper-play {
  top: 45%;
}

.our-mission-video.is-playing .story-swiper-play-inner::after {
  animation: title-tag-spin 5s linear infinite;
}

.our-mission-video:hover .story-swiper-play {
  background: rgba(255, 255, 255, 0.4);
}

.our-mission-video.is-playing .story-swiper-play {
  background: rgba(255, 255, 255, 0.4);
}

/* Mission video: video element and play/pause icon toggle; poster same height/size as video */
.our-mission-video .our-mission-video-el {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

/* Poster overlay: visible when paused, hidden when playing */
.our-mission-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/mission-video.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.our-mission-video.is-playing .our-mission-video-poster {
  opacity: 0;
  pointer-events: none;
}

.our-mission-video .our-mission-icon-pause {
  display: none;
}

.our-mission-video.is-playing .our-mission-icon-play {
  display: none;
}

.our-mission-video.is-playing .our-mission-icon-pause {
  display: block;
}

/* Let clicks reach the button / wrapper (play overlay) */
.our-mission-video .story-swiper-play-inner::after {
  pointer-events: none;
}

/* Video length indicator: circular progress ring as outer border of story-swiper-play-inner */
.our-mission-video {
  --video-progress: 0;
}

.our-mission-video .story-swiper-play {
  position: absolute;
}

.listen-listing {
  width: 100%;
  margin-top: 40px;
}

.listen-listing ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.listen-listing ul::after {
  content: "";
  width: 100%;
  height: 1px;
  border: 1px solid rgb(255 255 255 / 17%);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.listen-listing ul li {
  width: 100%;
  max-width: 220px;
  height: 88px;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.listen-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.listen-box span {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
}

.upcomingEvents {
  width: 100%;
  margin-top: 50px;
}

.event-box {
  width: 100%;
  height: auto;
  background-color: #050505;
  border-radius: 24px;
  overflow: hidden;
}

.event-box-img {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.event-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.event-box:hover .event-box-img img {
  transform: scale(1.1);
}

.event-box.is-sold-out .event-box-img img {
  filter: blur(2px);
}

.event-box-status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 140px;
  height: 54px;
  border-radius: 40px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 59, 67, 0.7);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
}

.event-box-content {
  width: 100%;
  padding: 30px 25px;
}

.event-box-content label {
  padding: 0 10px;
  line-height: 26px;
  height: 26px;
  border-radius: 24px;
  background-color: #94c021;
  display: inline-block;
  color: #0a0a0a;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.release-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.release-card-meta label {
  margin-bottom: 0;
}

.release-card-price {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.event-box-content h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.center-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.support-section {
  width: 100%;
  padding: 120px 100px;
  text-align: center;
  min-height: 500px;
  background-image: url(../images/support-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
}

.support-section .main-title {
  color: #fff !important;
  background-color: #fff;
  background: linear-gradient(to bottom, #ffffff 41%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

.support-btn-main {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.how-work-section {
  width: 100%;
}

.how-it-works-page {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.how-it-works-page main > section,
.how-it-works-page .site-footer {
  scroll-snap-align: start;
}

.how-work-section ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.how-work-section ul li {
  width: 100%;
  list-style: none;
}

/* Show each How It Works step as a full viewport section */
.how-work-section .how-work-steps {
  display: block;
  gap: 0;
}

.how-work-section .how-work-steps li {
  height: 100vh;
  height: 100svh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* How work box: staggered AOS-style animation — image → vector (fade) → content */
@keyframes how-work-img-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes how-work-vector-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes how-work-content-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.how-work-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.how-work-box .how-work-img,
.how-work-box .how-work-vector,
.how-work-box .how-work-content {
  opacity: 0;
}

.how-work-box.animated .how-work-img {
  animation: how-work-img-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0s;
}

.how-work-box.animated .how-work-vector {
  animation: how-work-vector-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
  animation-delay: 0.4s;
}

.how-work-box.animated .how-work-content {
  animation: how-work-content-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
  animation-delay: 0.65s;
}

.how-work-img {
  width: 45%;
  border-radius: 24px;
  overflow: hidden;
}

.how-work-img img {
  width: 100%;
  height: auto;
}

.how-work-vector {
  width: 15%;
  padding: 0 20px;
  position: relative;
  top: -90px;
}

.how-work-content {
  width: 40%;
}

.how-work-content label {
  height: 26px;
  font-size:18px;
  line-height: 26px;
  padding: 0 15px;
  border-radius: 24px;
  background-color: #94c021;
  display: inline-block;
  margin-bottom: 10px;
}

.how-work-content label.blue {
  background-color: #00afd1;
}

.how-work-content label.light-blue {
  background-color: #0f9783;
}

.how-work-content h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.qc-box {
  width: 100%;
  margin: 40px 0;
}

.qustion-main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.qustion-main.qustion-main-last {
  margin-top: 70px;
}

.qustion-main .main-btn {
  margin-top: 20px;
}

.qustion-main h3 {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.how-does-main {
  margin-top: 40px;
  width: 100%;
}

.how-does-main ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.how-does-main ul li {
  width: 100%;
}

.how-does-box {
  width: 100%;
  height: 100%;
  background-color: #050505;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-does-img {
  width: 100%;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-does-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-does-content {
  width: 100%;
  padding: 30px 25px;
}

.how-does-content h4 {
  font-size: 22px;
  line-height: 32px;
  color: #ffff;
  font-weight: bold;
  margin-bottom: 5px;
}

.qustion-graph {
  width: 100%;
  margin-top: 40px;
}

.qustion-graph img {
  width: 100%;
  display: block;
}

.section-artist-list {
  width: 100%;
  margin-top: 30px;
}

.section-artist-list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.artist-portal-box {
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  text-align: center;
  border-radius: 24px;
  background-color: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-portal-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: #d0ff14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.artist-portal-box h4 {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-center .main-btn {
  margin-top: 15px;
}

.main-relese-filter {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 100px;
  padding: 40px 0;
  background-image: url(../images/filter-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Global .container { overflow: hidden } clips nice-select’s absolute dropdown */
  overflow: visible;
}

.main-relese-filter .container,
.main-relese-filter .container > ul,
.main-relese-filter .container > ul > li,
.relese-filter-box {
  overflow: visible;
}

.main-relese-filter .nice-select {
  position: relative;
  z-index: 1;
  display: block !important; /* plugin copies .select from native select; ensure dropdown stays visible */
  min-width: 160px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  font-size: 18px;

  background-color: #000;
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-relese-filter .nice-select .option {
  width: 100%;
  background: #000 !important;
  background-color: #000 !important;
  color: #fff;
  padding: 10px 20px;
  line-height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* nice-select.css forces non-hovered options to transparent on list hover — fixes visibility over filter-bg */
.main-relese-filter .nice-select .list:hover .option:not(:hover) {
  background: #000 !important;
  background-color: #000 !important;
}

.main-relese-filter .nice-select .option:hover,
.main-relese-filter .nice-select .option.focus,
.main-relese-filter .nice-select .option.selected.focus {
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
  color: #fff;
}

.main-relese-filter .nice-select.open {
  z-index: 200;
}

/* Open dropdown: keep list fully opaque (nice-select animates opacity) and solid — do not use .main-relese-filter ul (targets ul.list too) */
.main-relese-filter .nice-select.open .list {
  opacity: 1 !important;
  pointer-events: auto !important;
  background: #000 !important;
  background-color: #000 !important;
}

.main-relese-filter .nice-select .list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  z-index: 201;
  width: 100%;
  background: #000 !important;
  background-color: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-relese-filter .nice-select:after {
  border: none;
  width: 24px;
  height: 24px;
  background-image: url(../images/nice-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -12px;
  transform: rotate(0deg);
}

.main-relese-filter .nice-select.open:after {
  transform: rotate(0deg);
}

/* Only the filter row grid — not .nice-select ul.list (dropdown) */
.main-relese-filter .container > ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.main-relese-filter .container > ul .main-btn {
  margin-top: 38px;
}

.relese-filter-box {
  width: 100%;
  position: relative;
}

.relese-filter-box label {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

/* Upload form artist select: match releases filter custom dropdown (releases-filter.js) */
.about-banner .container:has(.new-relase-box) {
  overflow: visible;
}

.about-banner:has(.balance-filter-grid),
.about-banner:has(.balance-filter-grid) .my-profile-container,
.about-banner:has(.balance-filter-grid) .user-page-content,
.about-banner:has(.balance-filter-grid) .user-edit-profile {
  overflow: visible;
}

.new-relase-form,
.new-relase-form__grid,
.new-relase-form .release-field,
.new-relase-form .relese-filter-box,
.distribution-settings-form,
.distribution-settings-form .relese-filter-box,
.edit-profile-form,
.edit-profile-form .relese-filter-box,
.balance-filter-grid,
.balance-filter-grid .relese-filter-box {
  overflow: visible;
}

.new-relase-form .nice-select,
.distribution-settings-form .nice-select,
.edit-profile-form .nice-select,
.balance-filter-grid .nice-select {
  position: relative;
  z-index: 1;
  display: block !important;
  min-width: 160px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.new-relase-form .nice-select .option,
.distribution-settings-form .nice-select .option,
.edit-profile-form .nice-select .option,
.balance-filter-grid .nice-select .option {
  width: 100%;
  background-color:#000;
  color: #fff;
  padding: 10px 20px;
  line-height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-relase-form .nice-select.open,
.distribution-settings-form .nice-select.open,
.edit-profile-form .nice-select.open,
.balance-filter-grid .nice-select.open {
  z-index: 200;
}

.new-relase-form .nice-select .list,
.distribution-settings-form .nice-select .list,
.edit-profile-form .nice-select .list,
.balance-filter-grid .nice-select .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  z-index: 201;
  width: 100%;
  background-color:#000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.new-relase-form .nice-select:after,
.distribution-settings-form .nice-select:after,
.edit-profile-form .nice-select:after,
.balance-filter-grid .nice-select:after {
  border: none;
  width: 24px;
  height: 24px;
  background-image: url(../images/nice-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -12px;
  transform: rotate(0deg);
}

.new-relase-form .nice-select.open:after,
.distribution-settings-form .nice-select.open:after,
.edit-profile-form .nice-select.open:after,
.balance-filter-grid .nice-select.open:after {
  transform: rotate(0deg);
}

/* My profile: match upload/distribution select visual style on native selects */
.edit-profile-form .relese-filter-box select.select,
.balance-filter-grid .relese-filter-box select.select {
  width: 100%;
  height: 50px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0 50px 0 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.edit-profile-form .relese-filter-box.profile-select-wrap::after,
.balance-filter-grid .relese-filter-box.profile-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background-image: url(../images/nice-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  border: 0;
}

.edit-profile-form .profile-select-wrap::after,
.balance-filter-grid .profile-select-wrap::after {
  display: none;
}

.relese-graph {
  width: 100%;
}

.relese-graph img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-relese-slider {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}

.latest_release_container {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}

.latest_release_inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.latestReleaseSwiper {
  width: 100%;
}

.latestReleaseSwiper .swiper-wrapper {
  align-items: stretch;
}

.latestReleaseSwiper .swiper-slide {
  height: auto;
}

.latestReleaseSwiper .story-swiper-play {
  top: 50%;
  transform: translateY(-50%);
}

.latestReleaseSwiper .event-box:hover .story-swiper-play-inner::after {
  animation: title-tag-spin 5s linear infinite;
}

.tracks_swiper .event-box:hover .story-swiper-play-inner::after {
  animation: title-tag-spin 5s linear infinite;
}

/* --- How it works: step cards carousel --- */
.how_it_works_section .how-it-works-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  max-width: 520px;
  margin-inline: auto;
}

.how-it-works-swiper-wrap {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
  padding-inline: 15px;
}

.howItWorksSwiper {
  overflow: visible;
}

.howItWorksSwiper .swiper-slide {
  height: auto;
}

.how-it-works-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border-radius: 24px;
  background-color: #050505;
}

.how-it-works-card--reverse {
  flex-direction: column-reverse;
}

.how-it-works-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
}

.how-it-works-card__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.how-it-works-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  flex-shrink: 0;
}

.how-it-works-card__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}

.how-it-works-card__badge--1 {
  background-color: #94c021;
}

.how-it-works-card__badge--2 {
  background-color: #00afd1;
}

.how-it-works-card__badge--3 {
  background-color: #0f9783;
}

.how-it-works-card__badge--4 {
  background-color: #94c021;
}

.how-it-works-card__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Music type hero strip: inner track for transform-based marquee (see main.js) */
.music_type_list {
  display: block;
  overflow: hidden;
}

.music_type_list_track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  will-change: transform;
}

.live-event-box {
  margin-top: 100px;
  border-radius: 24px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
}

.mike_and_live {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mike_icon_box {
  background-color: #050505;
  border-radius: 15px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mike_icon_wrap {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background-color: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.live_button {
  background-color: #2ba72b;
  border-radius: 10px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.live_event_schedule {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 50%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.live_event_schedule::-webkit-scrollbar {
  display: none;
}

.live_event_schedule:active {
  cursor: grabbing;
}

.live_event_item {
  flex: 0 0 auto;
  min-width: max-content;
}

.live_event_meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.live_event_meta_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #fff;
  white-space: nowrap;
}

.live_event_meta_item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.live_icon_box {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live_icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2ba72b;
}

.release_board {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30%;
}

.release_board_title {
  background-color: #050505;
  border-radius: 15px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  width: fit-content;
}

.release_board_list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  &::-webkit-scrollbar {
    display: none;
  }
}

.release_board_list li {
  white-space: nowrap;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}

.merch_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.merch_toggle p {
  margin: 0px;
}

.merch_toggle_switch {
  width: 72px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #2b2b2b;
  background: #141414;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: justify-content 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.merch_toggle_knob {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2ba72b;
  box-shadow: 0px 0px 12px rgba(39, 203, 63, 0.45);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.merch_toggle_switch[aria-pressed="false"] {
  justify-content: flex-end;
}

.merch_toggle_switch[aria-pressed="false"] .merch_toggle_knob {
  background: #4a4a4a;
  box-shadow: none;
}

.official-merch .section-title {
  margin-bottom: 40px;
}

.merchSwiper {
  width: 100%;
}

.merchSwiper .swiper-wrapper {
  align-items: stretch;
}

.merchSwiper .swiper-slide {
  height: auto;
}

.merch-card {
  background: #050505;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.merch-card-img {
  border-radius: 18px;
  overflow: hidden;
  height: 400px;
}

.merch-card-img img {
  transition: transform 0.3s ease;
}

.merchSwiper .swiper-slide:hover .merch-card-img img {
  transform: scale(1.1);
}

.merch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-card-content {
  padding: 30px;
}

.merch-card-content h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.merch-card-content .main-btn.grey-btn {
  min-width: fit-content;
}

.official-merch .swiper-btn-main {
  justify-content: center;
  margin-top: 26px;
}

.event_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.event_list_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.gallery-section {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
}

.gallery-list {
  width: 100%;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.gallerySwiper {
  width: 100%;
  overflow: visible;
}

.gallerySwiper .swiper-wrapper {
  align-items: center;
}

.gallerySwiper .swiper-slide {
  width: min(560px, 70vw);
  opacity: 0.48;
  transform: scale(0.78);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  z-index: 1;
}

.gallerySwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

.gallerySwiper .swiper-slide-prev,
.gallerySwiper .swiper-slide-next {
  opacity: 0.8;
  transform: scale(0.86);
  z-index: 2;
}

.gallery-card {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #0b0b0b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partner-section {
  width: 100%;
  background-image: url(../images/partner-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.partner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partner-content-right {
  width: 100%;
  max-width: 527px;
}

.partner-content-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-content-left h2 {
  margin: 0px;
}

.partner-content-left .title-tag {
  width: fit-content;
}

.partner-content-left p {
  width: 65%;
}

.partner-content-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.blog-list {
  padding-block: 50px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  overflow: hidden;
}

.blog-feature-card {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0b0b;
}

.blog-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.blog-feature-card:hover img {
  transform: scale(1.1);
}

.blog-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.blog-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-date {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.blog-card-content h3,
.blog-side-content h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  text-align: left;
}

.blog-card-content p,
.blog-side-content p {
  margin: 0;
  text-align: left;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card-content .main-btn,
.blog-side-content .main-btn {
  min-width: auto;
  width: fit-content;
  height: 36px;
  padding: 0 14px;
  font-size: 16px;
  line-height: 36px;
  border-radius: 18px;
}

.blog-card-content .main-btn .main-btn-arrow,
.blog-side-content .main-btn .main-btn-arrow {
  width: 20px;
  height: 20px;
}

.blog-side-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-side-card {
  overflow: hidden;
  background: #0b0b0b;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 248px;
}

.blog-side-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.blog-side-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.blog-side-card:hover .blog-side-img img {
  transform: scale(1.1);
}

.blog-side-content {
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-side-content p {
  max-width: 95%;
}

.featured-release-section {
  background-color: rgba(255, 255, 255, 0.05);
}

.blog-list-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
}

.main-blog-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  overflow: hidden;
}

.main-blog-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  justify-content: center;
}

.main-blog-content h3 {
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
}

.main-blog-content p {
  font-weight: 300;
  margin: 0px;
}

.main-blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  /* Keeps the blog image + stroke overlay at a consistent height */
  aspect-ratio: 739 / 564;
}

.main-blog-img-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.main-blog-img-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-blog-img-stroke {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  /* Maintain the SVG proportions if the asset is ever resized */
  aspect-ratio: 739 / 564;
  pointer-events: none;
}

.other-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow: hidden;
}

.other-blog-card {
  background-color: #050505;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.other-blog-img {
  height: 300px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

/* Make the real blog thumbnail fill the 300px container height */
.other-blog-img > img:not(.main-blog-img-stroke) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.other-blog-card .blog-side-content {
  width: 85%;
  margin-inline: auto;
}

.other-blog-card .blog-side-content button {
  margin-top: 20px;
}

.get-in-touch-section .section-title p {
  width: 60%;
}

.get-in-touch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.get-in-touch-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 24px;
  width: 70%;
  max-width: 820px;
  margin-inline: auto;
}

/* Contact form (match screenshot design) */
.get-in-touch-form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.get-in-touch-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.get-in-touch-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.get-in-touch-form .form-field label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.get-in-touch-form .form-field input,
.get-in-touch-form .form-field textarea {
  width: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 18px;
  font-size: 18px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.get-in-touch-form .form-field textarea {
  border-radius: 20px;
  resize: none;
  min-height: 140px;
  padding: 16px 18px;
}

.get-in-touch-form .form-field input::placeholder,
.get-in-touch-form .form-field textarea::placeholder {
  color: #fff;
}

.get-in-touch-form .form-submit {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.get-in-touch-form .contact-send-btn {
  width: 100%;
}

.get-in-touch-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.get-in-touch-block {
  width: 100%;
}

.get-in-touch-social-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
  margin: 0 0 16px;
}

/* Reuse footer tile styling, but remove its divider/padding. */
.get-in-touch-info .address-grid {
  border-bottom: none;
  padding-bottom: 0;
}

/* Desktop: follow tiles show 5 equal items. */
.get-in-touch-info .address-grid.follow-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* Prevent "first 3 items span wider" behavior from the footer. */
.get-in-touch-info .address-grid.follow-grid .address-item:nth-child(-n + 3) {
  grid-column: span 1;
}

.faq_list {
  width: 100%;
  max-width: 1320px;
  margin: 50px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: faq;
}

.faq_list .faq_item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
  margin-bottom: 50px;
  counter-increment: faq;
}

.faq_list .faq_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq_list .faq_item h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq_list .faq_item h4::before {
  content: counter(faq) ".";
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

.faq_list .faq_item p {
  margin: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.marketplace-panel {
  background: linear-gradient(
    140deg,
    rgba(0, 160, 255, 0.24) 0%,
    rgba(0, 0, 0, 0.22) 30%,
    rgba(0, 0, 0, 0.62) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
}

.marketplace-panel:nth-child(2) {
  background: linear-gradient(
    140deg,
    rgba(255, 204, 64, 0.24) 0%,
    rgba(0, 0, 0, 0.22) 30%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.marketplace-panel:last-child {
  background: linear-gradient(
    140deg,
    rgba(46, 229, 157, 0.26) 0%,
    rgba(0, 0, 0, 0.24) 30%,
    rgba(0, 0, 0, 0.62) 100%
  );
  border-radius: 18px;
}

.marketplace-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marketplace-panel-title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.marketplace-panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketplace-list {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.marketplace-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.marketplace-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.marketplace-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marketplace-row:last-child {
  border-bottom: none;
}

.marketplace-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.marketplace-row-mid {
  min-width: 0;
}

.marketplace-artist-name {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.marketplace-artist-sub {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marketplace-artist-sub {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

.marketplace-row-value {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
}

.marketplace-row-unit {
  font-size: 11px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.64);
}

.artist-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.artist-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.input-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 494px;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  box-sizing: border-box;
}

.input-search img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.input-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.input-search input::placeholder {
  color: #888888;
}

.input-search:focus-within {
  border-color: rgba(255, 255, 255, 0.14);
}

/* Remove default search cancel button in WebKit */
.input-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.artist-sort-by {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.artist-sort-by label {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.artist-sort-dropdown {
  min-width: 200px;
  overflow: visible;
}

.artist-sort-dropdown .nice-select {
  position: relative;
  z-index: 1;
  display: block !important;
  min-width: 160px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  font-size: 18px;
  background-color: #000;
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-sort-dropdown .nice-select .option {
  width: 100%;
  background: #000 !important;
  background-color: #000 !important;
  color: #fff;
  padding: 10px 20px;
  line-height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-sort-dropdown .nice-select .list:hover .option:not(:hover) {
  background: #000 !important;
  background-color: #000 !important;
}

.artist-sort-dropdown .nice-select .option:hover,
.artist-sort-dropdown .nice-select .option.focus,
.artist-sort-dropdown .nice-select .option.selected.focus {
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
  color: #fff;
}

.artist-sort-dropdown .nice-select.open {
  z-index: 200;
}

.artist-sort-dropdown .nice-select.open .list {
  opacity: 1 !important;
  pointer-events: auto !important;
  background: #000 !important;
  background-color: #000 !important;
}

.artist-sort-dropdown .nice-select .list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  z-index: 201;
  width: 100%;
  background: #000 !important;
  background-color: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-sort-dropdown .nice-select:after {
  border: none;
  width: 24px;
  height: 24px;
  background-image: url(../images/nice-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -12px;
  transform: rotate(0deg);
}

.sort-select-pill {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 200px;
  border: 1px solid #1a1a1a;
  border-radius: 9999px;
  background: #000;
  box-sizing: border-box;
}

.sort-select-field {
  flex: 1;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 10px 42px 10px 18px;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.sort-select-field:focus {
  outline: none;
}

.sort-select-pill:focus-within {
  border-color: rgba(255, 255, 255, 0.14);
}

.sort-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sort-select-chevron img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.sort-select-field option {
  color: #000;
}

.sort-select-pill--platform {
  min-width: 188px;
}

.sort-select-pill--platform .sort-select-field {
  padding-left: 44px;
}

.sort-select-platform-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.sort-select-pill--platform .sort-select-chevron {
  z-index: 2;
}

.sort-select-pill--platform .nice-select {
  float: none;
  width: 100%;
  min-height: 42px;
  padding: 10px 42px 10px 44px;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  box-shadow: none;
}

.sort-select-pill--platform .nice-select .current {
  display: block;
  color: #fff;
  line-height: 1.35;
}

.sort-select-pill--platform .nice-select:after {
  display: none;
}

.sort-select-pill--platform .nice-select .list {
  left: 0;
  right: 0;
  margin-top: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.sort-select-pill--platform .nice-select .option {
  position: relative;
  min-height: 44px;
  line-height: 44px;
  padding: 0 18px 0 46px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.sort-select-pill--platform .nice-select .option:hover,
.sort-select-pill--platform .nice-select .option.focus,
.sort-select-pill--platform .nice-select .option.selected.focus {
  background: rgba(255, 255, 255, 0.08);
}

.sort-select-pill--platform .nice-select .option.selected {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}

.sort-select-pill--platform .nice-select .option::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sort-select-pill--platform .nice-select .option[data-value="spotify"]::before {
  background-image: url("../images/spotify.svg");
}

.sort-select-pill--platform .nice-select .option[data-value="youtube"]::before {
  background-image: url("../images/youtube.svg");
}

.sort-select-pill--platform .nice-select .option[data-value="tiktok"]::before {
  background-image: url("../images/tik-tok.svg");
}

.artist-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  align-self: stretch;
}

.artist-market-card {
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #060606;
}

.artist-market-card__cover-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  background: #0a0a0a;
}

.artist-market-card__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-market-card__player {
  display: flex;
  align-items: center;
  gap: 12px;
}

.artist-market-card__playbtn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.artist-market-card__playbtn:focus-visible {
  outline: 2px solid #00afd1;
  outline-offset: 2px;
}

.artist-market-card__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.artist-market-card__icon--pause {
  display: none;
}

.artist-market-card.is-playing .artist-market-card__icon--play {
  display: none;
}

.artist-market-card.is-playing .artist-market-card__icon--pause {
  display: block;
}

.artist-market-card__progress {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  padding: 10px 0;
}

.artist-market-card__progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.artist-market-card__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: #0f9783;
  pointer-events: none;
}

.artist-market-card__time {
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
  text-align: right;
}

.artist-market-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.artist-market-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-market-card__meta {
  min-width: 0;
}

.artist-market-card__name {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.artist-market-card__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}

.artist-market-card__service-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.artist-market-card__service-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.artist-market-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.artist-market-card__stat {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.artist-market-card__stat-label {
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.artist-market-card__stat-value {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.artist-market-card__stat-value--review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.artist-market-card__rating-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.artist-market-card__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.tab-list-box {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.tab-list-btn {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
}

.tab-list-btn:hover {
  border-color: rgba(0, 224, 255, 0.8);
}

.tab-list-btn.is-active {
  background: #00afd1;
  border-color: #00afd1;
  color: #03131e;
}

.marketplace-details-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.artist-details-box {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.artist-details-img {
  width: 200px;
  height: 200px;
  min-width: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.artist-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketplace-details-img {
  height: auto;
  width: 636px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.artist-details-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.artist-details-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

.artist-details-grid {
  display: flex;
  align-items: center;
  gap: 20px;
}

.artist-details-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  min-height: 72px;
  padding: 14px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.artist-details-stat__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.artist-details-stat__value {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.artist-details-stat__value--review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.artist-details-stat__rating-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.artist-details-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin: 0px;
}

.artist-details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.artist-details-author__name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.artist-details-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.artist-details-location img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.service-overview {
  padding-block: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-overview__title {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.service-overview__cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.track-overview__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.8);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    background-color 320ms ease;
}

.service-overview-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0) 75%
  );
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 320ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.service-overview-card__icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0.04) 100%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.service-overview-card__icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.service-overview-card__icon-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.06) 100%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.service-overview-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.service-overview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(20, 20, 20, 0.88);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.service-overview-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-overview-card:hover .service-overview-card__icon {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
}

.service-overview-card:hover .service-overview-card__icon::before {
  opacity: 1;
  transform: scale(1);
}

.service-overview-card:hover .service-overview-card__icon-inner {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.16) 45%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.36),
    0 10px 20px rgba(0, 0, 0, 0.28);
  transform: scale(1.03);
}

.service-overview-card:hover .service-overview-card__icon img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.service-overview-card__content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.service-overview-card__content p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.service-overview-includes {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 17, 0.02);
  padding: 24px 22px;
}

.service-overview-includes__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.service-overview-includes__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 42px;
}

.service-overview-includes__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.service-overview-includes__list li::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("../images/list.svg") center / contain no-repeat;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-portfolio-card {
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #040404;
}

.service-portfolio-card__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 230px;
  object-fit: cover;
}

.service-portfolio-card__image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  object-fit: cover;
  height: 100%;
}

.service-portfolio-card:hover img {
  transform: scale(1.1);
}

.service-portfolio-card__body {
  margin-top: 30px;
}

.service-portfolio-card__title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.service-portfolio-card__desc {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.service-portfolio-card__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-portfolio-card__stat {
  min-height: 80px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-portfolio-card__label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
}

.service-portfolio-card__stat strong {
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.casestudy-highlight {
  padding-top: 50px;
}

.growth-and-investment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.growth-projection {
  width: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.growth-projection-chart {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 24px;
}

.growth-projection-chart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.investment-card {
  padding: 30px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-card p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.investment-card h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.warning-box {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background-color: rgba(239, 68, 68, 0.05);
}

.cart-section {
  padding-bottom: 50px;
}

.cart-list-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  overflow:hidden;
}

.cart-details-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 240px;
}

.cart-main-card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  padding-bottom: 70px;
  width: 100%;
}

.cart-main-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-main-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cart-main-card__divider {
  height: 1px;
  margin: 20px 0 22px;
  background: rgba(255, 255, 255, 0.08);
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
}

/* Product column = content width; middle column grows so qty stays visually centered */
.cart-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: center;
  column-gap: 18px;
  row-gap: 0;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.cart-item__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-item__info {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(320px, 55vw);
}

.cart-item__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
  font-weight: 300;
}

.cart-item__subtitle {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 300;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-shrink: 0;
  grid-column: 2;
  justify-self: center;
}

.cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #121212;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-qty-btn:hover {
  background: #252525;
}

.cart-qty-btn img {
  display: block;
}

.cart-qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cart-item__price {
  flex-shrink: 0;
  grid-column: 3;
  justify-self: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.cart-remove-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.cart-summary-card {
  flex: 0 0 min(360px, 100%);
  width: min(360px, 100%);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.cart-summary-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-rows {
  margin: 0;
  padding-top: 20px;
}

.cart-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
}

.cart-summary-row:last-of-type {
  margin-bottom: 0;
}

.cart-summary-row dt {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  font-weight: 300;
}

.cart-summary-row dd {
  margin: 0;
  font-weight: 400;
  color: #fff;
}

.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-total__label {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.cart-summary-total__value {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  background: #00bcd4;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    filter 0.2s ease,
    transform 0.15s ease;
}

.cart-checkout-btn:hover {
  filter: brightness(1.06);
  color: #000;
}

.cart-checkout-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
}

.cart-checkout-btn__icon img {
  display: block;
}

.cart-summary-card button {
  width: 100%;
}

.new-relase-box {
  width: 80%;
  margin-inline: auto;
  padding: 50px;
  padding-bottom: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 50px;
}

.new-relase-box h3 {
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-relase-form {
  margin-top: 30px;
}

.new-relase-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.new-relase-form .release-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.new-relase-form .release-field--full {
  grid-column: 1 / -1;
  width: 100%;
}

.new-relase-form .release-field label,
.new-relase-form .release-field-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.new-relase-form .release-req {
  color: #fff;
  margin-left: 2px;
}

.new-relase-form .release-field input[type="text"],
.new-relase-form .release-field select {
  width: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 18px;
  font-size: 18px;
  outline: none;
  font-family: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.new-relase-form .release-field input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.new-relase-form .release-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.new-relase-form .release-input-wrap--select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.new-relase-form .release-input-wrap--select select option {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.new-relase-form .release-field-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.new-relase-form .release-field-icon img {
  display: block;
}

.new-relase-form .release-input-wrap--date {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  min-height: 52px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.new-relase-form .release-date-stack {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 50px;
}

.new-relase-form .release-date-display {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: #fff;
  padding: 14px 18px;
  font-size: 18px;
  font-family: inherit;
  pointer-events: none;
  border-radius: 24px 0 0 24px;
}

.new-relase-form .release-date-display::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.new-relase-form .release-date-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color-scheme: dark;
}

.new-relase-form .release-date-calendar-btn {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0 24px 24px 0;
  transition: background-color 0.2s ease;
}

.new-relase-form .release-date-calendar-btn img {
  display: block;
}

.release-date-stack input {
  border: none !important;
  background: transparent !important;
}

.new-relase-form .release-cover-label,
.new-relase-form .release-cover-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.new-relase-form .release-cover-label {
  cursor: pointer;
}

.new-relase-form .release-upload-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  margin: 0;
  cursor: pointer;
}

.new-relase-form .release-upload-picker[hidden] {
  display: none !important;
}

.new-relase-form .release-upload-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.new-relase-form .release-upload-zone:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.new-relase-form .release-upload-zone.is-filled:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.new-relase-form .release-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.new-relase-form .release-upload-zone.is-filled .release-upload-input {
  inset: auto;
  right: 0;
  bottom: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.new-relase-form .release-upload-filled {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  width: 100%;
  pointer-events: auto;
}

/* `hidden` must win — a bare `display: flex` above would override the attribute */
.new-relase-form .release-upload-filled[hidden] {
  display: none !important;
}

.new-relase-form .release-cover-preview-img {
  display: block;
  max-width: min(280px, 100%);
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.new-relase-form .release-upload-filename {
  margin: 0;
  word-break: break-word;
}

.new-relase-form .release-upload-remove {
  width: auto;
  min-width: 160px;
  padding-inline: 24px;
}

.new-relase-form .release-upload-remove[hidden] {
  display: none !important;
}

.new-relase-form .release-upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  pointer-events: none;
}

.new-relase-form .release-upload-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-relase-form .release-upload-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

.new-relase-form__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.new-relase-form__actions .main-btn {
  width: 100%;
  min-width: 0;
}

/* New release confirmation modal */
.release-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.release-confirm-modal.is-open {
  display: flex;
}

.release-confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.release-confirm-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.release-confirm-modal__box {
  width: 100%;
  margin-bottom: 0;
  background-color: #000;
  padding: 30px;
}

.release-confirm-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.release-confirm-modal__head h3 {
  padding-bottom: 0;
  border-bottom: none;
  margin: 0;
}

.release-confirm-modal__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.release-confirm-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.release-confirm-modal__close img {
  display: block;
}

.release-confirm-modal__form {
  margin-block: 30px;
}

.release-confirm-modal .release-confirm-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.new-relase-form .release-value-display {
  width: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 18px;
  font-size: 18px;
  font-family: inherit;
  min-height: 52px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.new-relase-form .release-value-display--placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.new-relase-form .release-date-display.release-date-display--static {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  font-size: 18px;
  color: #fff;
  pointer-events: none;
  border-radius: 24px 0 0 24px;
}

.new-relase-form .release-input-wrap--confirm {
  cursor: default;
}

.new-relase-form .release-input-wrap--confirm .release-date-calendar-btn {
  pointer-events: none;
  cursor: default;
}

.release-upload-zone--confirm {
  cursor: default;
}

.release-upload-zone--confirm:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.release-confirm-cover-preview {
  display: block;
  max-width: min(280px, 100%);
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.release-confirm-modal-open {
  overflow: hidden;
}

.release-upload-remove .main-btn-arrow img {
  filter: invert(0) !important;
}

.share-terms-wrap {
  display: flex;
  width: 100%;
  gap: 30px;
  overflow:hidden;
}

.share-terms-preview {
  width: 27%;
  background: #0d0d0d;
  border-radius: 20px;
  padding: 20px;
}

.share-terms-preview .main-btn {
  width: 100%;
}

.share-terms-preview-title p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.share-terms-preview-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.share-terms-preview-figure {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
}

.share-terms-preview-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.share-terms-preview-stroke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.share-terms-preview-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.share-terms-preview-stat {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.share-terms-preview-stat-label {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.share-terms-preview-details {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.share-terms-preview-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.share-terms-preview-detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.share-terms-preview-detail-label {
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
}

.share-terms-preview-detail-value {
  flex: 0 1 auto;
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.share-terms-steps {
  width: 73%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.share-terms-steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-terms-steps ul li {
  transition: transform 0.2s ease;
}

.share-terms-steps ul li:has(> button.is-active),
.share-terms-steps ul li:has(> button[aria-selected="true"]) button {
  transform: translateX(1px);
}

.share-terms-steps ul li button {
  width: 200px;
  padding: 14px 18px;
  /* Rounded only on the left side (matches design tabs) */
  border-radius: 0;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border: 1px solid transparent;
  border-right: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  text-align: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.share-terms-steps ul li button:hover {
  color: rgba(255, 255, 255, 0.7);
}

.share-terms-steps ul li button:focus,
.share-terms-steps ul li button:active,
.share-terms-steps ul li button:focus-visible {
  border-color: rgba(255, 255, 255, 0.1);
}

.share-terms-steps ul li button.is-active,
.share-terms-steps ul li button[aria-selected="true"] {
  background-color:#0d0d0d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
}

.share-terms-steps ul li button.is-active::before,
.share-terms-steps ul li button[aria-selected="true"]::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -3px;
  width: 50px;
  height: 50px;
  background-image: url("../images/active-top.png");
  background-repeat: no-repeat;
}

.share-terms-steps ul li:first-child button.is-active::before,
.share-terms-steps ul li:first-child button[aria-selected="true"]::before {
  content: none;
  display: none;
  background-image: none;
}

.share-terms-steps ul li button.is-active::after,
.share-terms-steps ul li button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  bottom: -46px;
  right: -3px;
  width: 50px;
  height: 50px;
  background-image: url("../images/active-bottom.png");
  background-repeat: no-repeat;
}

.share-terms-steps:has(ul li:first-child button.is-active) .share-terms-steps-content,
.share-terms-steps:has(ul li:first-child button[aria-selected="true"]) .share-terms-steps-content {
  border-top-left-radius: 0;
}

.share-terms-steps-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-terms-steps-content {
  background-color:#0d0d0d;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  min-height: 768px;
}

.share-terms-steps-content h3 {
  font-size: 20px;
}

.share-terms-steps-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.song-list-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 20px;
  min-height: 160px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.song-list-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.song-list-card.is-active {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.song-list-card__cover {
  width: 100px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  border:1px solid rgba(255, 255, 255, 0.1);
}

.song-list-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.song-list-card__title {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.song-list-card__artist {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.song-price-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  min-height: auto;
}

.song-price-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.song-price-btn .btn-login-icon {
  width: 28px;
  height: 28px;
}

.song-list-card__content .main-btn img {
  filter: invert(0) !important;
}

.song-selection-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.artist-revenue-share {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.artist-revenue-share h4 {
  font-weight: 500;
  margin: 0;
}

.artist-revenue-share__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.artist-revenue-share__value {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.artist-revenue-share__range-wrap {
  margin-bottom: 20px;
}

.artist-revenue-share__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(
    to right,
    #d0ff14 0%,
    #d0ff14 var(--artist-share-percent, 70%),
    rgba(255, 255, 255, 0.14) var(--artist-share-percent, 70%),
    rgba(255, 255, 255, 0.14) 100%
  );
}

.artist-revenue-share__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d0ff14;
  border: 0;
  box-shadow: 0 0 0 3px rgba(208, 255, 20, 0.15);
  cursor: pointer;
}

.artist-revenue-share__range::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.artist-revenue-share__range::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #d0ff14;
}

.artist-revenue-share__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d0ff14;
  border: 0;
  box-shadow: 0 0 0 3px rgba(208, 255, 20, 0.15);
  cursor: pointer;
}

.artist-revenue-share__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.artist-revenue-share__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artist-revenue-share__field > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.artist-revenue-share__input-wrap {
  position: relative;
}

.artist-revenue-share__input-wrap input {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 24px;
}

.artist-revenue-share__input-wrap input:focus {
  outline: none;
  border-color: rgba(208, 255, 20, 0.85);
  box-shadow: 0 0 0 2px rgba(208, 255, 20, 0.18);
}

.artist-revenue-share__input-wrap input::-webkit-outer-spin-button,
.artist-revenue-share__input-wrap input::-webkit-inner-spin-button {
  margin: 0;
}

.artist-revenue-share__input-wrap--icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background-image: url("../images/share-percent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.artist-revenue-share__input-wrap--icon input {
  padding-right: 52px;
}

.fixed-price-settings__fields {
  grid-template-columns: 1fr;
  margin-top: 16px;
}

.fixed-price-settings__summary {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fixed-price-settings__summary-pill {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.2;
}

.yours-and-fans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-block: 20px;
}

.yours-and-fans-card__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.yours-and-fans-card__title img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.yours-and-fans-card__value {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
}

.yours-and-fans-card__value strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.yours-and-fans-card__value span {
  font-weight: 400;
  font-size: 16px;
}

.revenue-split-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revenue-split-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 300;
  margin-top: 10px;
  position: relative;
  padding-left: 14px;
}

.revenue-split-desc::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.share-term-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.share-terms-steps-three p {
  margin-bottom: 0;
}

.fixed-price-settings {
  margin-block: 30px;
}

.auto-renewable {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.auto-renewable p {
  font-weight: 500;
}

.auto-renewable p span {
  font-weight: 300;
}

.share-terms-steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: space-between;
}

.extra-value-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.extra-value-box-content p:first-child {
  font-weight: 500;
  margin: 0;
}

.extra-value-box-content p:last-child {
  font-weight: 300;
}

.summary-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.summary-item span {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.post-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-post-content {
  display: flex;
  align-items: start;
  gap: 20px;
}

.avater-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #32cd32 0%, #00afd1 100%);
}

.share-post-content-body {
  display: flex;
  flex-direction: column;
  width:100%;
}

.textare-box {
  border-radius: 24px;
  resize: none;
  min-height: 140px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  outline: none;
  width:100%;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

/* Footer layout */

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 48px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-contact-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-contact-item span {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}

.footer-logo {
  width:100%;
  height: 94px;
  margin-inline: auto;
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  justify-self: end;
}

.footer-social-title {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.footer-social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-social-link:hover img{
  width:32px;
  height: 32px;
  transition: width 0.3s ease, height 0.3s ease;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}

.listen-rotate-box {
  --listen-orbit-angle: 0deg;
  --listen-orbit-radius: 390px;
  width: 100%;
  min-height: 840px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.listen-rotate-orbit {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.listen-rotate-pill {
  width: 100%;
  max-width: 188px;
  min-height: 70px;
  padding: 12px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  text-decoration: none;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--orbit-item-angle) + var(--listen-orbit-angle)))
    translateY(calc(var(--listen-orbit-radius) * -1))
    rotate(90deg);
  transform-origin: center;
  z-index: 2;
  pointer-events: auto;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background-color 0.3s ease,
    border-radius 0.3s ease,
    width 0.3s ease,
    min-height 0.3s ease,
    padding 0.3s ease,
    gap 0.3s ease;
}

.listen-rotate-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(18, 18, 18, 0.95);
}

.listen-rotate-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.listen-rotate-pill span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  white-space: nowrap;
}

.listen-rotate-content {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.listen-rotate-tag {
  margin-bottom: 18px;
}

.listen-rotate-content p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: #ffffff;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill {
  width: 60px;
  min-height: 60px;
  border-radius: 50%;
  padding: 0;
  gap: 0;
  transform: translate(-50%, -50%) translate(var(--listen-hover-x), var(--listen-hover-y)) rotate(0deg);
  border-color:rgba(255, 255, 255, 0.4);
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill img {
  width: 37px;
  height: 37px;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill span {
  width: 0;
  opacity: 0;
  overflow: hidden;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill:nth-child(1) {
  --listen-hover-x: -270px;
  --listen-hover-y: 150px;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill:nth-child(2) {
  --listen-hover-x: -162px;
  --listen-hover-y: 150px;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill:nth-child(3) {
  --listen-hover-x: -54px;
  --listen-hover-y: 150px;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill:nth-child(4) {
  --listen-hover-x: 54px;
  --listen-hover-y: 150px;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill:nth-child(5) {
  --listen-hover-x: 162px;
  --listen-hover-y: 150px;
}

.listen-rotate-box.is-listen-content-hovered .listen-rotate-pill:nth-child(6) {
  --listen-hover-x: 270px;
  --listen-hover-y: 150px;
}

.distribute-track-container {
  display:flex;
  align-items: start;
  gap:30px;
}


.distribute-track-container .left {
  width:70%;
  display:flex;
  flex-direction: column;
  gap:30px;
}

.chart-card {
  width: 100%;
}

.chart-card-head {
  margin-bottom: 20px;
}

.chart-card-title {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.distribute-track-card {
  border-radius: 24px;
  background: rgba(15, 16, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.distribute-upload-zone {
  min-height: 117px;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  padding: 30px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.distribute-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.distribute-upload-zone:hover {
  border-color: rgba(0, 175, 209, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.distribute-upload-zone.is-dragover {
  border-color: rgba(0, 175, 209, 0.85);
  background: rgba(0, 175, 209, 0.08);
}

.distribute-upload-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(130% 120% at 22% 14%, #00E5D4 0%, #00c9cc 32%, #0a3c45 72%, #1b252f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.distribute-upload-icon img {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.distribute-upload-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.distribute-upload-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color:#fff;
}

.distribute-track-list {
  margin-block:20px 10px;
  padding: 0;
  max-height: 163px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.distribute-track-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.distribute-track-item {
  list-style: none;
  margin-bottom:15px;
  display: grid;
  grid-template-columns: 28px 58px minmax(180px, 1fr) auto;
  align-items: center;
  column-gap: 16px;
}

.distribute-track-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
}

.distribute-track-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.distribute-track-checkmark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 7px;
  transition: all 0.25s ease;
}

.distribute-track-checkbox input:checked + .distribute-track-checkmark {
  border-color: #ffffff;
  background-image: url("../images/seelcted.svg");
}

.distribute-track-art {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.distribute-track-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.distribute-track-name {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.distribute-track-meta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.68);
}

.distribute-track-meta > span {
  display: inline-flex;
  align-items: center;
}

.track-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.52);
}

.track-duration {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.track-duration-clock {
  width: 20px;
  height: 20px;
  display: block;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(148deg, #121212 0%, #0b0b0b 100%);
  padding:20px;
  display: grid;
  align-content: start;
  row-gap: 10px;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.platform-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.platform-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.platform-card-switch {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 56px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #262626;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    justify-content 0.25s ease;
}

.platform-card-switch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f4f4f4;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.42);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.platform-card input:checked + .platform-card-switch {
  justify-content: flex-end;
  border-color: rgba(43, 167, 43, 0.3);
  background: rgba(20, 55, 20, 0.85);
}

.platform-card input:checked + .platform-card-switch .platform-card-switch-dot {
  background: #2ba72b;
  box-shadow: 0 0 12px rgba(39, 203, 63, 0.45);
}

.platform-card-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.platform-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.platform-card-title {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
  color: #ffffff;
}

.platform-card-users {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
}

.distribution-settings-form {
  display: grid;
  gap: 16px;
}

.distribution-setting-field {
  display: grid;
  gap: 10px;
}

.distribution-setting-label {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.distribution-scope-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.distribution-scope-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(148deg, #121212 0%, #0b0b0b 100%);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.distribution-scope-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.distribution-scope-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url(../images/radio.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  flex-shrink: 0;
}

.distribution-scope-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.distribution-scope-text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.distribution-scope-option input:checked + .distribution-scope-radio::after {
  opacity: 1;
}

.distribution-presave-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(148deg, #121212 0%, #0b0b0b 100%);
  padding: 16px 14px 16px 16px;
  cursor: pointer;
}

.distribution-presave-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.distribution-presave-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

.distribution-presave-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color:#fff;
}

.distribution-presave-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.distribution-presave-card .platform-card-switch {
  position: static;
  flex-shrink: 0;
}

.distribution-presave-card input:checked + .platform-card-switch {
  justify-content: flex-end;
  border-color: rgba(43, 167, 43, 0.3);
  background: rgba(20, 55, 20, 0.85);
}

.distribution-presave-card input:checked + .platform-card-switch .platform-card-switch-dot {
  background: #2ba72b;
  box-shadow: 0 0 12px rgba(39, 203, 63, 0.45);
}

.distribution-settings-form .relese-filter-box .nice-select {
  background-color: rgba(255, 255, 255, 0.03);
}


.distribute-submit-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top:60px;
}

.distribute-track-container .right {
  width:30%;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.release-information-list {
  display:flex;
  flex-direction: column;
  gap:15px;
}

.release-info-item {
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap:10px;
}

.release-info-label {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #ffffff;
}

.release-info-value {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

.distribution-progress-chart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.distribution-progress-step {
  display: flex;
  flex-direction: column;
}

.distribution-progress-step-main {
  position: relative;
  --dp-icon: 44px;
  --dp-gap: 30px;
  --dp-vline: 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}

.distribution-progress-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  flex-shrink: 0;
}

.distribution-progress-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  flex-shrink: 0;
  align-self: flex-start;
}

.distribution-progress-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.distribution-progress-icon--active {
  background:
    radial-gradient(
      130% 120% at 22% 14%,
      #00e5d4 0%,
      #00c9cc 32%,
      #0a3c45 72%,
      #1b252f 100%
    );
}

.distribution-progress-icon img {
  display: block;
  position: relative;
  z-index: 1;
}

.distribution-progress-step.disabled .distribution-progress-icon {
  background:rgba(255, 255, 255, 0.05);
  border:1px solid rgba(255, 255, 255, 0.1);
}

.distribution-progress-step.disabled .distribution-progress-icon img {
  opacity: 0.42;
}

.distribution-progress-gap {
  flex-shrink: 0;
  width: 100%;
  min-height: 30px;
  height: 30px;
}

.distribution-progress-vline-rail {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.distribution-progress-vline {
  width: 1px;
  min-height: 76px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 1px;
}

.distribution-progress-status--connector {
  position: absolute;
  left: calc(var(--dp-icon) + 18px);
  top:60%;
  transform: translateY(-50%);
  right: 0;
  margin: 0;
  z-index: 1;
}

.distribution-progress-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 0;
}

.distribution-progress-title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.distribution-progress-step.disabled .distribution-progress-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
}

.distribution-progress-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.distribution-progress-step.disabled .distribution-progress-desc {
  color: rgba(255, 255, 255, 0.32);
}

.distribution-progress-status {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.distribution-progress-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: calc(var(--dp-icon) + 18px)
}

.distribution-progress-platforms img {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}