/* Clear Music — static ready-to-live styles */

:root {
  --color-bg: #000;
  --color-surface: #1a1a1a;
  --color-text: #f2f2f2;
  --color-text-muted: #a3a3a3;
  --color-accent: #22c55e;
  --color-accent-hover: #16a34a;
  --color-header-bg: #0f2d2d;
  --color-nav-bg: rgba(40, 50, 55, 0.7);
  --color-green: #94c021;
  --color-header-bg: #0f2d2d;
  --color-btn-artists: #38bdf8;
  --color-btn-login: #1e3a3a;
  --font-sans: "Satoshi";
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

textarea {
  font-family: var(--font-sans);
}

.container {
  max-width: 1520px;
  margin-inline: auto;
  padding-inline: 15px;
}

/* --- Header --- */
.site-header {
  background: transparent;
  width: 100%;
  padding-block: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.header-inner {
  flex-wrap: nowrap;
  width: 100%;
}

/* Desktop: logo (left) | nav (center) | actions (right) with space-between */
.header-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

/* Mobile sidebar content — hidden on desktop */
.header-nav-wrapper {
  display: none;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-text);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.logo-img {
  display: block;
  height: 62px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

/* Nav menu — frosted pill (desktop) */
.nav-menu {
  flex: 0 1 auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-link {
  display: block;
  color: var(--color-text);
  padding-inline: 10px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  background: var(--color-green);
}

/* Header action buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 8px 15px;
  border-radius: 24px;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-artists {
  background: #00afd1;
  color: #fff;
}

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

.btn-login {
  background: var(--color-btn-login);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-login:hover {
  background: #2a4a4a;
  color: #fff;
}

.btn-login-icon {
  flex-shrink: 0;
}

/* --- Hero Section --- */
.hero_section {
  background-image: url("/assets/images/main-banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
  padding-bottom: 120px;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.8) 60%,
    rgba(0, 0, 0, 0.7) 75%,
    rgba(0, 0, 0, 1) 100%
  );
}

.hero_section_content {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

/* Hero search + create bar (glass bar) */
.hero_section_search_create {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  min-height: 56px;
  padding: 6px 15px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero_search_filter,
.hero_search_create {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.hero_search_filter {
  background: transparent;
  padding: 0px;
}

.hero_search_create {
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero_search_filter img,
.hero_search_create img {
  display: block;
}

.hero_search_input_wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 14px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.hero_search_input {
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 18px;
  outline: none;
}

.hero_search_input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero_search_sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.hero_search_icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero_search_notify {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.gray_gradient_text span {
  background: linear-gradient(to bottom, #fff, #a8a9ad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gray_gradient_text span.h1-line-break {
  flex-basis: 100%;
  height: 0;
  overflow: hidden;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.hero_section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;

  h1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 80px;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
  }

  p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    margin: 0;
  }
}

.hero_search_notify img {
  display: block;
}

/* Music type strip — horizontal scroll, yellow-green bar */
.music_type_list {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding-block: 24px;
  background: #dfff00;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.music_type_list::-webkit-scrollbar {
  display: none;
}

.music_type_item {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.music_type_item:hover {
  opacity: 0.85;
}

.music_type_icon {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
}

.tracks_list_section {
  padding-block: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tracks_list_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px;
  padding-right: 10px;
}

.tracks_list_header h3 {
  margin: 0px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.tracks_list_header_icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tracks_list_header_icon img {
  border: 1px solid #ffffff;
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tracks swiper — full width, nav at bottom */
.tracks_list_container {
  width: 100%;
  padding-inline: 0;
  padding-bottom: 0;
  margin-top: 30px;
}

.tracks_swiper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

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

.tracks_swiper_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 24px;
}

.tracks_swiper_prev,
.tracks_swiper_next {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.tracks_swiper_prev:hover,
.tracks_swiper_next:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.tracks_swiper_prev:disabled,
.tracks_swiper_next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.tracks_swiper_prev img,
.tracks_swiper_next img {
  display: block;
}

.tracks_swiper_slide,
.tracks_swiper .swiper-slide {
  flex: 0 0 auto;
  width: calc((100% - 80px) / 5);
  min-width: 400px;
}

.track_card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  height: 350px;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

.track_card_image {
  flex: 1 1 100%;
  min-height: 0;
  transition: flex 0.35s ease;
}

.track_card:hover .track_card_image {
  flex: 0 0 45%;
}

.track_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.track_card_content {
  flex: 0 0 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #000;
  transition: flex 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.track_card:hover .track_card_content {
  flex: 1 0 40%;
  min-height: 110px;
  padding: 20px;
}

.track_card_title {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.track_card_subtitle {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}

.track_card_content button {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  border: none;
  outline: none;
  cursor: pointer;
}

/* -----------footer section ------------- */

.site-footer {
  background: url("../images/footer-bg.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding-block: 140px 40px;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-grid .address-item:nth-child(-n + 3) {
  grid-column: span 2;
}

.address-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.address-item:hover {
  background: linear-gradient(90deg, #1bb6a1 0%, #2492aa 30%, #0691a0 100%);
}

.address-item img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: cover;
}

.address-item span {
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
}

.footer-logo {
  width: 91px;
  height: auto;
  display: block;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------how it works section--------------- */

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

/* ---------------testimonials section--------------- */

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

.testimonials_container {
  position: relative;
  min-width: 1100px;
  margin-inline: auto;
  min-height: 375px;
  margin-top: 2rem;
}

/* Outer article: fixed layout width (no transform — rotation/skew was inflating measured bounds). */
.testimonial_card {
  position: absolute;
  width: 500px;
  max-width: 100%;
  min-width: 0;
  z-index: var(--card-z, 0);
  opacity: 0;
  transform: translateY(2rem) scale(0.96);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    z-index 0s;
  cursor: default;
}

.testimonials_section--revealed .testimonial_card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonials_section .testimonial_card:nth-child(1) {
  transition-delay: 0.08s, 0.08s, 0s;
}

.testimonials_section .testimonial_card:nth-child(2) {
  transition-delay: 0.22s, 0.22s, 0s;
}

.testimonials_section .testimonial_card:nth-child(3) {
  transition-delay: 0.36s, 0.36s, 0s;
}

.testimonials_section .testimonial_card:nth-child(4) {
  transition-delay: 0.5s, 0.5s, 0s;
}

.testimonials_section .testimonial_card:nth-child(5) {
  transition-delay: 0.64s, 0.64s, 0s;
}

.testimonial_card__inner {
  padding: 22px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  transform: rotate(var(--card-rotation, 0deg));
  transform-origin: center center;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}

.testimonial_card:hover {
  z-index: 100;
}

.testimonial_card:hover .testimonial_card__inner {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Design-accurate positions: bottom-left, top-mid, middle, bottom-right, top-right */
/* Design: bottom-left → top-right cluster; rotations -5°, -4°, 3°, 5°, -2° */
.testimonial_card--1 {
  left: 0%;
  top: 10%;
} /* Michael R. – bottom-left */
.testimonial_card--2 {
  left: 28%;
  top: 0%;
} /* Daniel P. – top-middle */
.testimonial_card--3 {
  left: 17%;
  top: 32%;
} /* Sofia L. – middle */
.testimonial_card--4 {
  left: 40%;
  top: 38%;
} /* Leo M. – bottom-right */
.testimonial_card--5 {
  left: 52%;
  top: 15%;
} /* Alex K. – top-right */

.testimonial_card--white {
  background: #fff;
  color: #0a0a0a;
}

.testimonial_card--green {
  background: #32cd32;
  color: #0a0a0a;
}

.testimonial_card--cyan {
  background: #00e5d4;
  color: #0a0a0a;
}

.testimonial_card--yellow {
  background: #d0ff14;
  color: #0a0a0a;
}

.testimonial_stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial_stars .star {
  display: block;
  flex-shrink: 0;
}

.testimonial_stars .star--outline {
  opacity: 0.85;
}

.testimonial_stars .star--filled {
  filter: brightness(0);
}

.testimonial_text {
  margin: 0 0 20px;
  color: #0a0a0a;
}

.author_container {
  padding-top: 20px;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.testimonial_author {
  font-weight: 700;
  font-size: 22px;
  color: inherit;
}

.community-section-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.community-section_left {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.community-section_right {
  width: 32%;
  padding-left: 30px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.community_music-player {
  width: 100%;
  min-height: 280px;
  padding: 22px 22px 26px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: url("../images/card-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.community_music-player-top {
  position: relative;
  z-index: 1;
}

.community_music-player-now {
  display: flex;
  align-items: center;
  gap: 12px;
}

.community_music-player-now img {
  width: 22px;
  height: 22px;
}

.community_music-player-now span {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
}

.community_music-player-disk-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.community_music-player-disk {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community_music-player-disk img {
  animation: title-tag-spin 5s linear infinite;
}

.community_music-player-disk-core {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.community_music-player-track {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.community_music-player-track-name {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
}

.community_music-player-linear-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.community_music-player-linear {
  flex: 1;
  height: 2px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
}

.community_music-player-linear-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 20px;
  background: #0f9783;
}

.community_music-player-linear-knob {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0f9783;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(148, 192, 33, 0.18);
}

.community_music-player-time {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  min-width: 62px;
  text-align: right;
}

.community_music-player-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 20px;
}

.community_music-control {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.community_music-control img {
  opacity: 0.6;
  transition: all 0.2s ease;
}

.community_music-control-play {
  width: 40px;
  height: 40px;
}

.community_music-control:hover {
  transform: translateY(-2px);
}

.uploading_card {
  width: 100%;
  background-color: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.uploading-img {
  width: 60px;
  height: 60px;
  border-radius: 100%;

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

.uploading-text {
  width: calc(100% - 60px);
  padding-left: 20px;
}

.uploading-text-arera textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 120px;
  border-radius: 24px;
  background-color: transparent;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  resize: none;
  display: block;
}

.uploading-text-arera textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.uploading-text-arera textarea:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uploading-text-arera textarea:focus::placeholder {
  color: transparent;
}

.uploading-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.uploading-items ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.uploading-items ul li {
  display: block;
}

.uploading-items ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s ease;
}

.uploading-items ul li a img {
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
}

.uploading-items ul li a:hover {
  color: #94c021;
}

.uploading-items ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(20%) saturate(3857%)
    hue-rotate(29deg) brightness(99%) contrast(74%);
}

.uploading-profile {
  width: calc(100% - 60px);
  padding-left: 20px;
}

.uploading-profile-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.uploading-profile-name {
  width: calc(100% - 60px);
}

.uploading-profile-name h4 {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
}

.uploading-profile-name span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.uploading-edit {
  width: 36px;
  height: 36px;
  display: block;
  cursor: pointer;
}

.uploading-profile-content {
  width: 100%;
  margin-top: 20px;
}

.uploading-music-player {
  width: 100%;
  border-radius: 24px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.uploading-music-round {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
}

.uploading-music-wrap {
  width: calc(100% - 150px);
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.uploading-music-title {
  width: 30%;
}

.uploading-music-title h4 {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
}

.uploading-music-title span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.uploading-music-time {
  width: 70%;
  padding-left: 20px;
}

.uploading-music-time-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.uploading-music-progress {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.uploading-music-progress-fill {
  position: relative;
  height: 100%;
  border-radius: 20px;
  background: #94c021;
}

.uploading-music-progress-fill::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #94c021;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(148, 192, 33, 0.15);
}

.uploading-music-time-text {
  white-space: nowrap;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}

.uploading-music-icon {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #00afd1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-left: auto;
}

.uploading-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;

  img {
    width: 100%;
    height: auto;
    display: block;
  }
}

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

.trending-box-title {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.trending-box-title h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #32cd32;
}

.trending-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trending-box ul::-webkit-scrollbar {
  display: none;
}

.trending-box ul li {
  width: 100%;
}

.trending-main-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 20px;
  background-color: #050505;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trending-main-box-left {
  width: 60%;
  padding-right: 15px;
}

.trending-main-box-left p {
  color: rgba(255, 255, 255, 0.7);
}

.trending-main-box-right {
  width: 40%;
  text-align: right;
}

.community_profile_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 20px;
  background-color: #050505;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community_profile_box-left {
  width: 70%;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
}

.community_profile_box-img {
  width: 52px;
  height: 52px;
}

.community_profile_box-name {
  width: calc(100% - 52px);
  padding-left: 15px;
}

.community_profile_box-name h4 {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.community_profile_box-name p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.community_profile_box-name p span {
  color: #fff;
}

.community_profile_box-right {
  width: 30%;
  text-align: right;
}

.community_profile_box-right a {
  color: #00afd1;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}

.community_profile_box-right p {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.dashboard-section {
  padding-block: 140px 30px;
  overflow: hidden;
}

.dashboard-title {
  font-size: 22px;
  line-height: 1.4;
}

.dashboard-boxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-value-grid {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.dashboard-value-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: url(../images/card-bg.png);
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.dashboard-value-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-value-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.dashboard-value-card__value {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.dashboard-value-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.dashboard-value-card__footer--plain {
  gap: 6px;
}

.dashboard-value-card__trend {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
}

.dashboard-chart-block {
  display: flex;
  gap: 20px;
}

.chart-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.chart-card-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.chart-card-head h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.chart-img {
  width: 100%;
}

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

.investment-progress-card {
  padding: 14px 12px 10px;
}

.investment-progress-wrap {
  width: 100%;
}

.investment-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.investment-progress-fill {
  display: block;
  height: 6px;
  margin-inline: 2px;
  border-radius: inherit;
  background-color: #0f9783;
}

.investment-progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.investment-progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.investment-progress-item:first-child {
  align-items: flex-start;
}

.investment-progress-item:last-child {
  align-items: flex-end;
}

.investment-progress-value,
.investment-progress-label {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
}

.investment-progress-label {
  color: rgba(255, 255, 255, 0.8);
}

.investment-progress-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  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;
}

.investment-progress-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

.see-all-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.geographic-distribution-wrap {
  display: block;
}

.geographic-distribution-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.geographic-distribution-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding-block: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.geographic-distribution-item:first-child {
  padding-top: 0;
}

.geographic-distribution-country {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.geographic-distribution-progress {
  display: flex;
  align-items: center;
  gap: 14px;
}

.geographic-distribution-track {
  display: block;
  width: 100px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  margin-block: 12px;
}

.geographic-distribution-track-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0f9783;
}

.geographic-distribution-track-fill--active {
  background: #0f9783;
}

.geographic-distribution-value {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
}

.age-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.distribution-tracker-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  height: 240px;
  overflow: auto;
  scrollbar-width: none;
}

.distribution-tracker-wrap::-webkit-scrollbar {
  display: none;
}

.processing-desc {
  font-size: 16px;
  line-height: 1.3;
  color: #8c8c8c;
}

.geographic-tracker-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}

.fan-demo-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 18px;
}

.fan-demo-item .geographic-distribution-track {
  width: 100%;
}

.fan-demo-item .geographic-distribution-country {
  min-width: 100px;
}

.fan-invest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}

.fan-invest-user {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fan-invest-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fan-invest-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fan-invest-user-info {
  min-width: 0;
}

.fan-invest-name {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 500;
}

.fan-invest-tier {
  margin: 0;
  color: #c7c7c7;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 300;
}

.fan-invest-stats {
  text-align: right;
  flex-shrink: 0;
}

.fan-invest-amount {
  margin: 0 0 4px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}

.fan-invest-futures {
  margin: 0;
  color: #c7c7c7;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 300;
}

.dashboard-btns-wrap {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

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

.investment-range p {
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
}

.perk-filter-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.perk-filter-btn {
  border: 1px solid #232323;
  border-radius: 999px;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  min-width: 140px;
  font-family: inherit;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.perk-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.perk-filter-btn.is-active {
  background: #00afd1;
  border-color: #00afd1;
  color: #000;
}

.track-returns-panel .transaction-history-wrap {
  display: none;
  margin-top: 20px;
}

.track-returns-panel.track-returns-panel--transactions .perk-list-wrap {
  display: none;
}

.track-returns-panel.track-returns-panel--transactions
  .transaction-history-wrap {
  display: block;
}

.perk-list-wrap {
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.perk-list-wrap::-webkit-scrollbar {
  display: none;
}

.perk-table {
  width: 100%;
  min-width: 880px;
  table-layout: auto;
}

.perk-table thead {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-table thead,
.perk-table tbody tr {
  display: table;
  width: 100%;
  table-layout: auto;
}

.perk-table tbody {
  display: block;
  max-height: 400px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.perk-table tbody::-webkit-scrollbar {
  display: none;
}

.perk-table th,
.perk-table td {
  padding: 14px 20px;
  color: #fff;
  line-height: 1.35;
  text-align: center;
  vertical-align: middle;
  width: 200px;
}

.perk-table th {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.perk-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 18px;
}

.perk-table td:first-child {
  width: 300px !important;
  text-align: left;
}

.perk-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.perk-table thead th:first-child {
  width: 300px;
}

.perk-table tbody tr:last-child td {
  border-bottom: none;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.perk-item span {
  min-width: 0;
  word-break: break-word;
}

.perk-item-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.perk-status-badge--available {
  color: #32cd32;
  background: rgba(50, 205, 50, 0.2);
}

.perk-status-badge--claimed {
  color: #00afd1;
  background: rgba(0, 175, 209, 0.2);
}

.perk-status-badge--locked {
  color: #666666;
  background: rgba(102, 102, 102, 0.2);
}

.perk-action-btn {
  min-width: 130px;
  height: 40px;
  font-size: 15px;
  line-height: 40px;
  padding: 0 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.perk-action-btn .main-btn-arrow {
  width: 20px;
  height: 20px;
}

.claim-history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.claim-history-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.claim-history-item__icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #00e5d4 0%, #007f76 100%);
}

.claim-history-item__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.claim-history-item__body {
  flex: 1;
  min-width: 0;
}

.claim-history-item__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.claim-history-item__meta {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}

.claim-history-status {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.claim-history-status--delivered {
  color: #32cd32;
  background: rgba(50, 205, 50, 0.2);
}

.claim-history-status--pending {
  color: #facc15;
  background: rgba(250, 204, 21, 0.2);
}

.artist-updates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.artist-updates-list::-webkit-scrollbar {
  display: none;
}

.artist-update-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.artist-update-item__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.artist-update-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-update-item__main {
  flex: 1;
  min-width: 0;
}

.artist-update-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.artist-update-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  flex: 1;
  min-width: 0;
}

.artist-update-item__time {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  white-space: nowrap;
}

.artist-update-item__desc {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 300;
  color: #fff;
}

.artist-update-item__stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.artist-update-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.artist-update-stat img {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.returns-roi-positive {
  color: #32cd32 !important;
}

.claim-history-item__value {
  display: flex;
  flex-direction: column;
}

.claim-history-item__value p {
  font-size: 16px;
  margin: 0;
}

/* Mobile: logo + hamburger; side navbar */

/* Buy shares modal */
.buy-shares-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.buy-shares-modal.is-open {
  display: block;
}

.buy-shares-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.buy-shares-modal__dialog {
  position: relative;
  width: min(1250px, calc(100% - 32px));
  margin: 22vh auto 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 20, 30, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  padding: 50px;
}

.buy-shares-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}

.buy-shares-modal__header h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}

.close-btn {
  border: none;
  outline: none;
  cursor: pointer;
}

.close-btn img {
  width: 24px;
  height: 24px;
}

.buy-shares-modal__content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 50px;
}

.buy-shares-modal__artist-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.buy-shares-modal__body {
  flex: 1;
}

.buy-shares-modal__body h4 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.buy-shares-modal__body h4 span {
  font-weight: 400;
}

.buy-shares-modal__body p {
  margin: 12px 0 30px;
}

.buy-shares-modal__fields {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 14px;
}

.buy-shares-modal__field {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.buy-shares-modal__field span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.buy-shares-modal__field strong {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.buy-shares-modal__field--shares {
  justify-content: space-between;
}

.share-count-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.buy-shares-modal__qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.buy-shares-modal__qty-btn img {
  width: 24px;
  height: 24px;
}

.buy-shares-modal__field--total {
  justify-content: space-between;
}

.buy-shares-modal__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.buy-shares-modal__actions .main-btn {
  width: 100%;
  justify-content: center;
}

body.buy-shares-modal-open {
  overflow: hidden;
}

.login-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-bottom: 80px;
  overflow: hidden;
}

.login-form-left {
  width: 100%;
  height: 696px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.login-form-left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-form-right {
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 50px 90px;
}

.login-form-right-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.login-form-right-title h2 {
  font-size: 50px;
  line-height: 1.4;
  margin-top: 10px;
}

.login-panel-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.login-panel-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-panel-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.login-panel-input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  padding: 0 28px;
  outline: none;
  transition: border-color 0.2s ease;
}

.login-panel-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.login-panel-password-wrap {
  position: relative;
}

.login-panel-input-password {
  padding-right: 70px;
}

.login-password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.login-password-toggle img {
  width: 24px;
  height: 24px;
}

.login-panel-forgot-link,
.login-panel-register-link {
  width: fit-content;
  margin-inline: auto;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.login-panel-forgot-link:hover,
.login-panel-register-link:hover {
  text-decoration: underline;
}

.login-panel-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.login-panel-divider::before,
.login-panel-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.login-panel-social-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.login-panel-social-link {
  min-height: 100px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.login-panel-social-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

.user-page-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.user-page-tab {
  width: 210px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background: #02060d;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.user-page-tab.active {
  color: #0a0e16;
  background: linear-gradient(180deg, #00d1ff 0%, #00b8ff 100%);
  border-color: transparent;
}

.user-page-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.02);
}

.user-edit-profile {
  padding: 50px;
  background-image: url(../images/profile-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
}

.user-profile-banner-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.user-profile-avatar-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.user-profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.user-profile-avatar-edit {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(4, 15, 21, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}

.user-profile-avatar-edit-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.user-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-profile-label {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
}

.user-profile-name {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.92);
}

.user-profile-edit-btn {
  margin-left: auto;
  margin-top: -88px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.user-profile-edit-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.edit-profile-form {
  padding: 50px;
}

.profile-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
  margin-bottom: 18px;
}

.profile-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

.profile-input-wrap {
  position: relative;
}

.profile-input-wrap input,
.profile-input-wrap select {
  width: 100%;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 0 18px;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.profile-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.profile-input-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
}

.profile-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.profile-calendar-btn {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-calendar-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.profile-input-wrap.calender input {
  padding-right: 46px;
}

.profile-input-wrap--date {
  cursor: pointer;
}

.profile-input-wrap--date .profile-date-display {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
}

.profile-input-wrap--date .profile-date-display::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.profile-input-wrap--date .profile-date-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 54px;
  opacity: 0;
  cursor: pointer;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color-scheme: dark;
  z-index: 1;
}

.profile-input-wrap--date .profile-date-native::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.profile-input-wrap--date .profile-calendar-btn {
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.profile-toggle-row {
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 16px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 12px;
}

.profile-toggle-row span {
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}

.profile-switch {
  position: relative;
  width: 54px;
  height: 30px;
  display: inline-block;
  flex-shrink: 0;
  cursor: pointer;
}

.profile-switch input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.profile-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease;
}

.profile-slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s ease;
}

.profile-switch input:checked + .profile-slider {
  background: #3a3a3a;
}

.profile-switch input:checked + .profile-slider::before {
  transform: translateX(24px);
  background: #94c021;
}

.my-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

.features-list-wrap {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.features-list-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: #090909;
}

.features-list-table table {
  width: 100%;
  border-collapse: collapse;
}

.features-list-table thead th {
  padding: 20px 28px;
  text-align: left;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.features-list-table tbody td {
  padding: 18px 28px;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.features-list-table tbody tr:last-child td {
  border-bottom: none;
}

.futures-track-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.futures-track-cell img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.futures-track-content h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

.futures-track-content p {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.42);
}

.futures-price,
.futures-total {
  display: block;
}

.futures-total {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.42);
}

.futures-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 40px;
  border-radius: 24px;
  background: #00afd1;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.futures-view-btn:hover {
  background: #17add0;
}

.futures-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.05);
}

.futures-pagination p {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
}

.futures-pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.futures-page-arrow,
.futures-page-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
}

.futures-page-arrow img {
  width: 16px;
  height: 16px;
}

.futures-page-link.is-active {
  background: #94c021;
  color: #ffffff;
  border-color: #94c021;
}

.futures-page-arrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

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

.balance-details-wrap {
  width: 100%;
}

.available-cash-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.available-cash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.available-cash-info p {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
}

.available-cash-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
}

.withdraw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 15px;
  border-radius: 24px;
  background: #00afd1;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.withdraw-btn:hover {
  background: #17add0;
}

.balance-totals-wrap h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.royalty-distributions-wrap h4 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.balance-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.balance-totals-table {
  width: 100%;
  border-collapse: collapse;
}

.balance-totals-table thead tr {
  background: rgba(255, 255, 255, 0.1);
}

.balance-totals-table tbody {
  background: rgba(255, 255, 255, 0.04);
}

.balance-totals-table th,
.balance-totals-table td {
  padding: 18px 28px;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

.balance-totals-table th {
  color: rgba(255, 255, 255, 0.6);
}

.balance-totals-table th {
  font-weight: 400;
  text-align: left;
}

.balance-totals-table th:last-child,
.balance-totals-table td:last-child {
  text-align: right;
}

.balance-totals-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.royalty-distributions-wrap {
  margin-top: 20px;
}

.royalty-distributions-wrap p {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
}

.selling-feature-graph {
  margin-top: 36px;
}

.selling-feature-header {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.selling-feature-stat {
  padding: 0 30px;
}

.selling-feature-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.selling-feature-stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.selling-feature-stat-top span,
.selling-feature-stat-top strong {
  font-size: 16px;
  line-height: 1;
}

.selling-feature-stat-top span {
  color: rgba(255, 255, 255, 0.86);
}

.selling-feature-stat-top strong {
  color: #ffffff;
  font-weight: 500;
}

.selling-feature-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: visible;
  display: flex;
  align-items: center;
}

.selling-feature-progress span {
  display: none;
}

.selling-feature-range {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #bbfa00 0%,
    #bbfa00 var(--range-pct, 40%),
    rgba(255, 255, 255, 0.14) var(--range-pct, 40%),
    rgba(255, 255, 255, 0.14) 100%
  );
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.selling-feature-range::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
  border-radius: 999px;
}

.selling-feature-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #bbfa00;
  border: 0;
  box-shadow: 0 0 0 3px rgba(187, 250, 0, 0.12);
  margin-top: -3px;
  cursor: pointer;
}

.selling-feature-range::-moz-range-track {
  height: 6px;
  background: transparent;
  border-radius: 999px;
}

.selling-feature-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #bbfa00;
  border: 0;
  box-shadow: 0 0 0 3px rgba(187, 250, 0, 0.12);
  cursor: pointer;
}

.selling-feature-range::-moz-range-progress {
  background: transparent;
  height: 6px;
}

.selling-feature-chart-wrap {
  border-radius: 22px;
  background:rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding-block:30px;
  margin-top:30px;
}

.selling-feature-chart-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline:18px;
  padding-bottom:20px;
}

.selling-feature-chart-title-row h4 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.selling-feature-chart-title-row span {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.selling-feature-chart {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 0 14px 0 8px;
}

.selling-feature-y-axis {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  align-content: stretch;
  min-height: 260px;
  padding: 12px 0 46px;
}

.selling-feature-y-axis span {
  align-self: end;
  color:rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1;
  text-align: right;
}

.selling-feature-bars {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.selling-feature-grid {
  position: absolute;
  inset: 8px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to top,
      rgba(255, 255, 255, 0.1) 0,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 56px
    ),
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 56px, calc(100% / 4) 100%;
  background-repeat: repeat, repeat;
}

.selling-feature-bar-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 260px;
}

.selling-feature-bar-group span {
  text-align: center;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.selling-feature-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
  height: var(--bar-h, 72px);
}

.selling-feature-bar--clearmusic {
  background:#00E5D4;
}

.selling-feature-bar--tunecore {
  background:#FFFFFF;
}

.selling-feature-bar--distrokid {
  background:#32CD32;
}

.selling-feature-bar--cdbaby {
  background:#D0FF14;
}

.selling-feature-bar-group img {
  display: block;
  width: auto;
  max-width: 72%;
  height: 25px;
  object-fit: contain;
  object-position: center;
  margin: 14px auto 0;
}

@media (max-width: 900px) {
  .selling-feature-bar-group img {
    max-width: 78%;
    height: 20px;
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .selling-feature-bar-group img {
    max-width: 130px;
    height: 18px;
    margin: 10px 0 0;
  }

  .selling-feature-bar-group span {
    text-align: left;
  }

  .selling-feature-bar {
    border-radius: 8px;
  }

  .selling-feature-bar--clearmusic {
    height: 110px;
  }

  .selling-feature-bar--tunecore,
  .selling-feature-bar--distrokid,
  .selling-feature-bar--cdbaby {
    height: 52px;
  }
}