:root {
  --bg: #ffffff;
  --soft-bg: #f7f7f4;
  --text: #151515;
  --muted: #6d6d6d;
  --line: #e8e8e2;
  --dark: #111111;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  padding-bottom: 90px;
}

@media (max-width: 576px) {
  body {
    padding-bottom: 100px;
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.portfolio-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 992px) {
  .portfolio-navbar:hover {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.28);
  }

  .portfolio-navbar:hover .navbar-brand,
  .portfolio-navbar:hover .nav-link {
    color: #111;
  }

  .portfolio-navbar:hover .nav-btn {
    border-color: #111;
  }
}

.navbar-brand {
  color: #fff;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
  transition: color 0.25s ease;
}

.navbar-brand span {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 3px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  margin-left: 16px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover {
  color: #111;
}

.nav-btn {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 8px 18px !important;
}


@media (max-width: 991px) {
  .portfolio-navbar {
    position: absolute;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.82);
    backdrop-filter: blur(16px);
  }

  .navbar-brand,
  .nav-link {
    color: #fff !important;
  }

  .nav-btn {
    border-color: rgba(255, 255, 255, 0.72);
  }

  .navbar-toggler {
    color: #fff;
  }

  .navbar-toggler i {
    color: #fff;
  }
}



.hero-section {
  position: relative;
  min-height: 100vh;
  background: #111;
  overflow: hidden;
}

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: #111;
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: #111;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 90px;
}

.hero-slide-text {
  max-width: 760px;
  color: #fff;
}

.hero-slide-text .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-slide-text h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.7rem);
  margin-bottom: 24px;
}

.hero-slide-text .hero-text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-slide-btn {
  border-radius: 999px;
  color: #111;
  font-weight: 800;
  padding-left: 26px;
  padding-right: 26px;
}

.hero-control {
  width: 72px;
  opacity: 1;
  z-index: 5;
}

.hero-slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
}

.hero-indicators {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-indicators button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  transition: all 0.25s ease;
}

.hero-indicators button.active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}




@media (max-width: 768px) {
  .hero-slider-section,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-slide-img {
    object-fit: cover;
    object-position: center center;
  }

  .hero-slide-content {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-slide-text {
    max-width: 92%;
  }

  .hero-slide-text h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .hero-slide-text .hero-text {
    font-size: 1rem;
  }

  .hero-control {
    width: 54px;
  }

  .hero-slider-btn {
    width: 38px;
    height: 38px;
  }

  .hero-indicators {
    bottom: 24px;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  max-width: 850px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 32px;
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.hero-card-top i {
  font-size: 2.3rem;
}

.small-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.hero-card h2 {
  margin: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.stat-grid div {
  padding: 18px 12px;
  background: var(--soft-bg);
  border-radius: 18px;
  text-align: center;
}

.stat-grid strong {
  display: block;
  font-size: 1.7rem;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section-padding {
  padding: 90px 0;
}

.soft-bg {
  background: var(--soft-bg);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  overflow: visible;
  padding-bottom: 0;
  margin-bottom: 28px;
}

#genreFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: normal;
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 700;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.song-card,
.collab-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.song-card:hover,
.collab-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.song-cover {
  min-height: 210px;
  background: linear-gradient(135deg, #eeeeea, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.song-cover i {
  font-size: 3rem;
  color: #222;
}

.song-card-body,
.collab-card-body {
  padding: 24px;
}

.song-card h3,
.collab-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.meta-line {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.genre-pill {
  display: inline-block;
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.song-description {
  color: var(--muted);
  margin-bottom: 22px;
}

.song-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.song-links a {
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.song-links a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.collab-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.genre-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
}

.genre-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--muted);
}

.about-section {
  background: #111;
  color: #fff;
}

.about-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-section {
  background: linear-gradient(180deg, #f8f8f3 0%, #ffffff 100%);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(30px, 6vw, 70px);
  text-align: center;
}

.contact-card p {
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}

/* Mobile-first finishing */
@media (max-width: 991px) {
  .nav-link {
    margin-left: 0;
    padding: 12px 0;
  }

  .nav-btn {
    display: inline-block;
    margin-top: 6px;
  }

  .hero-content {
    padding-top: 58px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .section-padding {
    padding: 64px 0;
  }

  .hero-buttons,
  .contact-actions {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .song-cover {
    min-height: 170px;
  }
}


.song-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.song-cover {
  background: #f8f8f8;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.song-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  border-radius: var(--radius) var(--radius) 0 0;
}


@media (max-width: 576px) {
  .song-cover {
    border-radius: 18px 18px 0 0;
  }

  .song-cover-img {
    border-radius: 18px 18px 0 0;
  }
}



















.bio-section {
  background: #ffffff;
}

.bio-slider-wrapper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 14px;
}

.bio-carousel {
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.bio-carousel.is-dragging {
  cursor: grabbing;
}

.bio-carousel .carousel-inner {
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
}

.bio-carousel .carousel-item {
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
}

.bio-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.bio-carousel .carousel-control-prev,
.bio-carousel .carousel-control-next {
  width: 54px;
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
}

.bio-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.bio-content {
  padding-left: 30px;
}

.bio-content h2 {
  margin-bottom: 12px;
}

.bio-subtitle {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 24px;
}

#bioText p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 991px) {
  .bio-content {
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 576px) {
  .bio-slider-wrapper {
    padding: 10px;
    border-radius: 20px;
  }

  .bio-carousel {
    border-radius: 16px;
  }

  .bio-slider-btn {
    width: 38px;
    height: 38px;
  }
}










.bio-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.bio-skills li {
  background: #f7f7f4;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}














.songs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.pagination-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled),
.pagination-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pagination-prev,
.pagination-next {
  font-size: 0.85rem;
}










@media (max-width: 576px) {
  .songs-pagination {
    margin-top: 30px;
    gap: 7px;
  }

  .pagination-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}
















.collab-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.collab-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.collab-socials a:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}



@media (max-width: 576px) {
  .collab-socials a {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}





@media (max-width: 768px) {
  /* Hide hero slider arrows on mobile */
  .hero-control,
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none !important;
  }

  /* Hide bio slider arrows on mobile */
  .bio-carousel .carousel-control-prev,
  .bio-carousel .carousel-control-next {
    display: none !important;
  }
}









/* Clickable cover image audio overlay */
.song-audio-trigger {
  position: relative;
  cursor: pointer;
}

.song-audio-trigger.is-not-playable {
  cursor: default;
}

.song-cover-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: scale(0.94);
  transition: all 0.22s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.song-cover-play i {
  font-size: 1.05rem;
  line-height: 1;
  transform: translateX(1px);
}

.song-audio-trigger:hover .song-cover-play,
.song-audio-trigger.is-playing .song-cover-play {
  opacity: 1;
  transform: scale(1);
}

.song-audio-trigger.is-playing .song-cover-play {
  background: rgba(255, 255, 255, 0.82);
  color: #111;
}

/* Bottom fixed music player */
.bottom-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  width: min(920px, calc(100% - 32px));
  transform: translateX(-50%) translateY(130%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.bottom-player.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bottom-player-inner {
  display: grid;
  grid-template-columns: 52px 1fr 42px;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  padding: 14px 16px;
}

.player-play-btn,
.player-close-btn {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.player-play-btn {
  width: 52px;
  height: 52px;
  font-size: 1rem;
}

.player-close-btn {
  width: 38px;
  height: 38px;
  background: #f4f4f0;
  color: #111;
}

.player-close-btn:hover {
  background: #111;
  color: #fff;
}

.player-info {
  min-width: 0;
}

.player-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  min-width: 0;
}

.player-title-row strong {
  font-size: 1rem;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-title-row span {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-progress-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
}

.player-progress-wrap span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.player-progress {
  width: 100%;
  accent-color: #111;
  cursor: pointer;
}


@media (max-width: 576px) {
  .song-cover-play {
    opacity: 1;
    width: 48px;
    height: 48px;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.78);
  }

  .song-cover-play i {
    font-size: 0.95rem;
  }

.song-audio-trigger.is-playing .song-cover-play {
  background: rgba(255, 255, 255, 0.82);
  color: #111;
}

  .bottom-player {
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .bottom-player-inner {
    grid-template-columns: 46px 1fr 34px;
    gap: 10px;
    border-radius: 20px;
    padding: 12px;
  }

  .player-play-btn {
    width: 46px;
    height: 46px;
  }

  .player-close-btn {
    width: 32px;
    height: 32px;
  }

  .player-title-row {
    display: block;
    margin-bottom: 6px;
  }

  .player-title-row strong,
  .player-title-row span {
    display: block;
    max-width: 100%;
  }

  .player-title-row strong {
    font-size: 0.92rem;
  }

  .player-title-row span {
    font-size: 0.78rem;
  }

  .player-progress-wrap {
    grid-template-columns: 34px 1fr 34px;
    gap: 7px;
  }

  .player-progress-wrap span {
    font-size: 0.7rem;
  }
}












.listen-modal .modal-dialog {
  max-width: 460px;
}

.listen-modal-content {
  position: relative;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.listen-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.listen-modal-cover-wrap {
  background: #f7f7f4;
  border-bottom: 1px solid var(--line);
}

.listen-modal-cover {
  width: 100%;
  height: auto;
  display: block;
}

.listen-modal-body {
  padding: 28px;
}

.listen-modal-body h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.listen-modal-artist {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 22px;
}

.listen-modal-links {
  display: grid;
  gap: 11px;
}

.listen-link {
  display: grid;
  grid-template-columns: 24px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  transition: all 0.2s ease;
}

.listen-link:hover {
  background: var(--soft-bg);
  color: var(--text);
  transform: translateY(-2px);
  border-color: #d8d8d2;
}

.listen-link i:first-child {
  font-size: 1.1rem;
}

.listen-link-spotify i:first-child {
  color: #5ba875;
}

.listen-link-apple i:first-child {
  color: #b96b75;
}

.listen-link-youtube i:first-child {
  color: #b85c5c;
}

.listen-link-soundcloud i:first-child {
  color: #c07a4e;
}

.listen-link-arrow {
  color: var(--muted);
  font-size: 0.85rem;
}

.listen-no-links {
  color: var(--muted);
  margin: 0;
}



@media (max-width: 576px) {
  .listen-modal .modal-dialog {
    max-width: calc(100% - 26px);
    margin-left: auto;
    margin-right: auto;
  }

  .listen-modal-content {
    border-radius: 24px;
  }

  .listen-modal-body {
    padding: 22px;
  }

  .listen-modal-body h2 {
    font-size: 1.8rem;
  }

  .listen-link {
    padding: 13px 15px;
    border-radius: 16px;
  }
}













/* ================================
   Songs Looking For Vocalists
================================ */

.vocalist-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(118, 75, 255, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 201, 255, 0.18), transparent 30%),
    #070712;
  color: #fff;
  overflow: hidden;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #91e4ff;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.vocalist-card {
  position: relative;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.vocalist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(145, 228, 255, 0.55);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

.vocalist-cover {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.vocalist-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.vocalist-card:hover .vocalist-cover img {
  transform: scale(1.08);
}

.vocalist-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 18, 0.9), transparent 55%);
}

.vocalist-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 201, 255, 0.9);
  color: #02020a;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 201, 255, 0.25);
}

.vocalist-badge.female {
  background: rgba(255, 102, 178, 0.92);
  color: #fff;
}

.vocalist-badge.duet {
  background: rgba(255, 206, 84, 0.95);
  color: #111;
}

.vocalist-card-body {
  padding: 24px;
}

.vocalist-card-body h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 800;
}

.vocalist-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.vocalist-meta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.vocalist-meta i {
  width: 20px;
  color: #91e4ff;
}

.vocalist-card-body p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.7;
}

.vocalist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.vocalist-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.095);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.vocalist-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vocalist-actions .btn {
  font-weight: 700;
}

.vocalist-actions .btn-primary {
  background: linear-gradient(135deg, #7b5cff, #00c9ff);
  border: none;
}

.vocalist-actions .btn-primary:hover {
  filter: brightness(1.1);
}

/* ================================
   Collaboration Modal
================================ */

.collab-modal {
  background:
    radial-gradient(circle at top right, rgba(123, 92, 255, 0.25), transparent 35%),
    #10101d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.collab-modal .modal-header,
.collab-modal .modal-body,
.collab-modal .modal-footer {
  padding-left: 28px;
  padding-right: 28px;
}

.collab-modal .modal-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.collab-modal .form-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.9rem;
}

.collab-modal .form-control,
.collab-modal .form-select {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  border-radius: 14px;
}

.collab-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.collab-modal .form-control:focus,
.collab-modal .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(145, 228, 255, 0.7);
  box-shadow: 0 0 0 0.22rem rgba(145, 228, 255, 0.13);
  color: #fff;
}

.collab-modal .form-select option {
  color: #111;
}

.collab-modal .btn-primary {
  background: linear-gradient(135deg, #7b5cff, #00c9ff);
  border: none;
  font-weight: 800;
}

@media (max-width: 575px) {
  .vocalist-cover {
    height: 190px;
  }

  .vocalist-card-body {
    padding: 20px;
  }

  .collab-modal .modal-header,
  .collab-modal .modal-body,
  .collab-modal .modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}













/* ================================
   Radio / Press Mentions Section
================================ */

.radio-press-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 189, 89, 0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(123, 92, 255, 0.20), transparent 32%),
    #090912;
  color: #fff;
  overflow: hidden;
}

.radio-press-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.radio-press-section .container {
  position: relative;
  z-index: 2;
}

.press-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 26px;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.press-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 189, 89, 0.55);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.press-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffbd59, #ff5f8f);
  color: #101018;
  font-size: 1.45rem;
  box-shadow: 0 16px 34px rgba(255, 189, 89, 0.22);
}

.press-content {
  flex: 1;
}

.press-type {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffcf87;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.press-content h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 850;
}

.press-content p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.96rem;
}

.press-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.press-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.press-meta i {
  width: 20px;
  color: #ffbd59;
}

.press-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.press-link:hover {
  color: #ffbd59;
  transform: translateX(3px);
}

.press-stats {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.press-stat-box {
  padding: 20px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  height: 100%;
}

.press-stat-box h4 {
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffbd59, #ff5f8f, #91e4ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.press-stat-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
}

@media (max-width: 575px) {
  .press-card {
    flex-direction: column;
    padding: 22px;
  }

  .press-icon {
    width: 54px;
    height: 54px;
  }
}