body {
	margin: 0;
	font-family: "Satoshi", sans-serif;
}
@font-face {
	font-family: "Satoshi";
	src: url("/fonts/Satoshi-Light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: "Satoshi";
	src: url("/fonts/Satoshi-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Satoshi";
	src: url("/fonts/Satoshi-Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Satoshi";
	src: url("/fonts/Satoshi-Bold.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
}
:root {
	--bg-color: #ce2e6e;
	--bg-color-2: #191c23;
	--color-white: #ffff;
	--primary-gradient: linear-gradient(90deg, #dc30ff 0%, #ff730f 100%);
  h1 {
    margin: 0;
    font-size: 70px;
    font-weight: bold;
    line-height: 114.99999999999999%;
  }
  h1 span {
    background: linear-gradient(90deg, #DC30FF 0%, #FF730F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  h2 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    line-height: 120%;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 30px;
      padding: 0px 20px;
    }
  }
  @media (max-width: 480px) {
    h2 {
      font-size: 20px;
      padding: 0px 20px;
    }
  }
  h2 span {
    background: linear-gradient(90deg, #DC30FF 0%, #FF730F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
  }
  .btn {
    padding: 14px 15px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
  }
  .primary {
    background-color: var(--bg-color);
    color: var(--color-white);
  }
  .secondary {
    background-color: var(--bg-color-2);
    color: var(--color-white);
  }
  @media (max-width: 480px) {
    .btn {
      width: max-content;
      padding: 10px 20px;
      font-size: 15px;
    }
  }
}
/* ------------------------------- */

/* hero section */
.hero-section {
	position: relative;
	display: flex;
	padding: 0px 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 890px;
	text-align: center;
	color: white;
	overflow: hidden;
	background-image: 
		linear-gradient(0deg, rgba(25, 28, 35, 0.85), rgba(25, 28, 35, 0.85)),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%),
		url("/assets/hero-banner.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-nav {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 10;
}
.hero-nav_wrapper {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 30px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 315px;
}
/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-links a {
  text-decoration: none;
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}
.nav-links a.register {
  padding: 12px 24px;
  background: var(--bg-color);
}
.nav-links a.login {
  padding: 12px 24px;
  border: 1px solid var(--color-white);
}
.nav-links a:hover {
  opacity: 0.85;
}
.hero-text_wrapper {
  display: grid;
	gap: 49px;
  padding: 0px 20px;
  justify-items: center;
}
.hero-section h1 {
	z-index: 1;
}
.hero-section button {
	font-family: satoshi;
	padding: 20px 24px;
	font-size: 24px;
	font-weight: 500;
	color: var(--color-white);
	line-height: 120%;
	background-color: var(--bg-color);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo img {
    width: 220px;
  }

  .hero-text_wrapper {
    width: 100%;
    padding: 0 24px;
    gap: 32px;
  }

  .hero-section h1 {
    font-size: 52px;
    line-height: 120%;
  }

  .hero-section button {
    font-size: 20px;
    padding: 18px 22px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 8px 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
	height: 700px;
  }
  .hero-nav {
    top: 12px;
  }

  .hero-nav_wrapper {
    padding: 0 10px;
    height: auto;
  }

  .logo img {
    width: 180px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .nav-links a.register,
  .nav-links a.login {
    padding: 8px 14px;
  }

  .hero-text_wrapper {
    width: 100%;
    padding: 0 20px;
    gap: 24px;
  }

  .hero-section h1 {
    font-size: 40px;
    line-height: 125%;
  }

  .hero-section button {
    width: 100%;
    max-width: max-content;
    font-size: 18px;
    padding: 16px 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
	height: 550px;
  }
  .logo img {
    width: 150px;
  }

  .hero-section h1 {
    font-size: 22px;
  }

  .hero-section button {
    width: 270px;
    font-size: 16px;
    padding: 14px 16px;
  }
}
/* ------------------------------- */


/* artist section */
.artist-section {
  padding: 99px 0;
  text-align: center;
  overflow: hidden;
  display: grid;
  gap: 72px;
  justify-items: center;
}

.artist-heading {
  padding: 0px 20px;
  max-width: 1100px;
}

.artist-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.artist-track {
  padding-top: 6px;
  display: flex;
  gap: 24px;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.artist-card {
  width: 240px;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.artist-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%; 
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0)); 
  pointer-events: none; 
  z-index: 2;
}

.bg-shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.30) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.05) 75%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 3;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.artist-card h4,
.artist-card p {
  text-shadow: 0 5px 6px rgba(0, 0, 0, 0.904);
}

.artist-card .info {
  position: absolute;
  bottom: 45px;
  width: 100%;
  display: grid;
  gap: 4px;
  z-index: 3;
}

.artist-card p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #ffffffec;
}

.artist-card:hover {
  transform: translateY(-6px);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .artist-card {
    width: 220px;
    height: 300px;
  }
  .artist-card .info  {
    bottom: 35px;
  }
  .artist-section {
    padding: 60px 0;
    gap: 45px;
  }
}
/* ------------------------------- */


/* ===== Tracks Section ===== */
.tracks-section {
  margin: 0 auto;
  padding: 80px 0px;
  justify-items: center;
  background:
    radial-gradient(55% 45% at 12% 8%,rgba(255, 78, 205, 0.14) 0%,rgba(255, 78, 205, 0.05) 35%,transparent 65%),
    radial-gradient(50% 40% at 88% 12%,rgba(255, 106, 61, 0.12) 0%,rgba(255, 106, 61, 0.04) 40%,transparent 68%),
    linear-gradient(180deg,#0c0c10 0%,#09090d 55%,#060609 100%);
}

.tracks-section_content {
  width: 100%;
  max-width: 85rem;
  gap: 56px;
  display: grid;
  justify-items: center;
}

.tracks-section_content h2{
  color: var(--color-white);
  text-align: center;
  max-width: 1050px;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding: 0px 20px;
}

.track-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}

.track-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.track-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 16px;
}

.track-overlay .streams {
  margin: 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.track-overlay_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.track-overlay_bottom img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.track-overlay .meta strong {
  display: block;
  color: var(--color-white);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
}

.track-overlay .meta span {
  color: #cbd5e1;
  font-size: 12px;
}

.track-card:hover img {
  transform: scale(1.08);
}

.track-card:hover::after {
  opacity: 1;
}

.tracks-btn-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-width: 320px;
  max-width: 600px;
}
.tracks-btn-wrapper .btn {
  margin: 0px 20px;
}
@media (max-width: 1200px) {
  .tracks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .tracks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .tracks-section {
    overflow: hidden;
    padding: 60px 0;
  }

  .tracks-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    width: 100%;
  }

  .tracks-row {
    display: flex;
    gap: 16px;
    will-change: transform;
  }

  .track-card {
    flex: 0 0 200px;
  }
}
@media (max-width: 480px) {
  .tracks-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    animation-play-state: paused;
  }

  .tracks-grid:hover {
    animation-play-state: running;
  }
  .track-overlay .streams {
    font-size: 14px;
  }
}
/* ------------------------------- */


/* streams section */
.streams-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  gap: 50px;
  justify-items: center;
  text-align: center;
}

.streams-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
}

.masonry-slider {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.column {
  flex: 1;
  height: 620px;
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.track img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.masonry-slider::before,
.masonry-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 5;
  pointer-events: none;
}

.masonry-slider::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 40%);
}

.masonry-slider::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 40%);
}

@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60%); }
}

@keyframes scrollUp {
  0% { transform: translateY(-60%); }
  100% { transform: translateY(0); }
}

.column.down .track {
  animation: scrollDown 25s linear infinite;
}

.column.up .track {
  animation: scrollUp 25s linear infinite;
}

@media (max-width: 1199px) {
  .masonry-slider {
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
  }

  .column {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .track {
    display: flex;
    flex-direction: row;
    width: max-content;
    will-change: transform;
  }

  .track img {
    width: 260px;
    flex-shrink: 0;
  }

   @keyframes scrollLeft {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }

  @keyframes scrollRight {
    0% {
      transform: translate3d(-50%, 0, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }

  .column:nth-child(1) .track,
  .column:nth-child(3) .track {
    animation: scrollLeft 22s linear infinite;
  }

  .column:nth-child(2) .track {
    animation: scrollRight 22s linear infinite;
  }

  .column:nth-child(4),
  .column:nth-child(5) {
    display: none;
  }
}

@media (max-width: 767px) {
  .track img {
    width: 180px;
  }
}

.playlist-btn {
    justify-content: center;
    width: 100%;
    min-width: 290px;
    max-width: max-content;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    background: var(--bg-color-2);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    flex-direction: row;
}

.playlist-btn img {
  width: 25px;
}
/* ------------------------------- */


/* ===== The 3rd Largest Independent Indie Label ===== */
.label-section {
  position: relative;
	display: flex;
  gap: 110px;
	padding: 145px 0px 119px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	overflow: hidden;
	background-image:
		linear-gradient(0deg, rgba(25, 28, 35, 0.85), rgba(25, 28, 35, 0.85)),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%),
		url("/assets/hero-banner.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ===== TOP CONTENT ===== */
.label-content {
  padding: 0px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 190px;
  justify-content: space-between;
}
.label-text {
  max-width: 535px;
  width: 100%;
}
.label-image {
  display: grid;
  gap: 24px;
  text-align: center;
}
.label-image img {
  width: 100%;
  max-width: 600px;
  height: 310px;
  border-radius: 24px;
  border: 1px solid #C4C4C4;
}

.verified {
  justify-content: center;
  align-items: center;
  font-size: 16px;
  opacity: 0.8;
  gap: 4px;
  display: flex;
  margin: 0;
}

.playlist-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.playlist-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 45s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.playlist-slider:hover .playlist-track {
  animation-play-state: paused;
}

.playlist-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.playlist-card {
  position: relative;
  width: 300px;
  aspect-ratio: 1 / 1; 
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.playlist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.playlist-card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.playlist-card_content span {
  font-size: 24px;
  font-weight: 700;
  text-shadow:
  0 1px 2px rgba(0, 0, 0, 1),
  0 4px 6px rgba(0, 0, 0, 1),
  0 8px 14px rgba(0, 0, 0, 0.95),
  0 14px 28px rgba(0, 0, 0, 0.9),
  0 22px 44px rgba(0, 0, 0, 0.8);
}

.playlist-card_content img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;          
}

.playlist-link:hover .playlist-card {
  transform: scale(1.05);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .label-content {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .label-section {
    padding: 50px 20px;
    gap: 50px;
  }
  .label-content {
    width: 100%;
    display: contents;
    padding: 0px 20px;
  }
  .label-image img {
    margin: 0 auto;
    height: auto;
  }
}
@media (max-width: 600px) {
  .playlist-card {
    min-width: 180px;
    height: 220px;
    width: 220px;
  }
  .label-image img {
    max-width: 450px;
  }
  .playlist-card_content span {
    font-size: 16px;
  }
}
/* ------------------------------- */


/* ===== Growth Proof Section ===== */
.proof-section {
  padding: 100px 20px;
  text-align: center;
  display: grid;
  gap: 65px;
  justify-items: center;
}
.proof-section_upper {
  display: grid;
  gap: 61px;
  justify-content: center;
}
.proof-images {
  max-width: 1300px;
  width: 100%;
  display: grid;
  gap: 19px;
}
.proof-image_upper {
  display: flex;
  gap: 23px;
}
.proof-image_upper img {
  width: 100%;
  min-width: 320px;
  max-width: 580px;
} 
.proof-images_lower {
  display: grid;
  justify-content: center;
}
.proof-images_lower img{
  width: 100%;
  max-width: 525px;
  min-width: 320px;
  height: 230px;
}

.proof-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-width: 320px;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .proof-image_upper {
    gap: 19px;
  }
}

@media (max-width: 920px) {
  .proof-image_upper {
    justify-content: center;
    display: grid;
  }
  .proof-image_upper img {
    width: 100%;
  }
  .proof-section {
    padding: 70px 20px;
  }
  .proof-images {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .proof-line {
    font-size: 15px !important;
  }
  .proof-section_upper {
    gap: 35px;
  }
  .proof-section {
    gap: 35px;
  }
}

/* ------------------------------- */

/* ===== ugc Section ===== */
.ugc-section {
  background-image:
		linear-gradient(0deg, rgba(25, 28, 35, 0.85), rgba(25, 28, 35, 0.85)),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%),
		url("/assets/hero-banner.webp");
  background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  padding: 150px 0px;
  overflow: hidden;
  color: #fff;
}

.ugc-container {
  display: grid;
  gap: 100px;
  justify-items: center;
  text-align: center;
}

.ugc-container_upper {
  display: grid;
  gap: 80px;
}

.ugc-slider {
  overflow: hidden;
  width: 100%;
  pointer-events: none;
}

.ugc-track {
  display: flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
  animation: ugc-scroll 60s linear infinite;
}

@keyframes ugc-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ugc-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.ugc-video {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-white);
}

.ugc-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-name {
  color: var(--color-white);
  display: block;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.tiktok-overlay {
  position: absolute;
  right: 12px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overlay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.profile-img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px;
}

.overlay-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;   
  display: block;
}

.overlay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-item::before {
  content: "";
}

.icon-wrap {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ugc-container_bottom {
  padding: 0px 20px;
  display: grid;
  gap: 40px;
  max-width: 1400px;
  justify-items: center;
}
.ugc-stats_upper {
  display: flex;
  gap: 18px;
}
.ugc-stats {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.ugc-stats img {
  max-width: 645px;
  min-width: 320px;
  width: 100%;
  border-radius: 12px;
}

.ugc-btn_wrapper {
  justify-items: center;
  width: 100%;
  min-width: 320px;
  max-width: 650px;
  display: grid;
  gap: 28px;
}
.ugc-btn-bg {
  padding: 24px;
  background: var(--bg-color);
  color: var(--color-white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
}
.ugc-btn {
  background: none;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  padding: 24px;
  border-radius: 12px;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ugc-card {
    max-width: 220px;
  }
  .tiktok-overlay {
    gap: 6px;
  }
  .ugc-section {
    padding: 50px 0;
  }
  .ugc-stats_upper {
    display: grid;
  }
  .ugc-container_upper {
    gap: 50px;
  }
  .ugc-name {
    font-size: 16px;
  }
  .ugc-video {
    height: 300px;
  }
  .ugc-track {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .ugc-btn-bg {
    width: max-content;
    font-size: 15px;
  }
  .ugc-btn  {
    font-size: 15px;
  }
}
/* ------------------------------- */


/* ===== YouTube Network Section ===== */
.youtube-network {
  max-width: 85rem;
  justify-items: center;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  gap: 33px;
}

.youtube-network p {
  text-align: center;
  margin: 0;
  font-size: 25px;
}

.section-title {
  max-width: 1090px;
  text-align: center;
}

.youtube-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.youtube-card {
  position: relative;
  width: 100%;
  height: 325px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.youtube-card:hover {
  transform: translateY(-4px);
}

.youtube-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 10%, rgba(0, 0, 0, 0.0) 55%);
  z-index: 1;
}

.youtube-card_info {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.youtube-card_info h4 {
  color: var(--color-white);
}

.youtube-card_info span {
  font-size: 18px;
  color: var(--color-white);
}

.yt-icon {
  width: 40px;
  height: 25px;
  padding: 6px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .youtube-network {
    padding: 64px 20px;
  }
}

@media (max-width: 768px) {
  .youtube-grid {
    gap: 10px;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .youtube-card_info {
    padding: 18px 10px;
  }
}

@media (max-width: 640px) {
  .youtube-card > img {
    object-fit: cover;
  }
  .youtube-network p {
    font-size: 18px;
  }
  .youtube-card {
    height: 180px;
  }
  .youtube-card_info h4 {
    font-size: 16px;
  }
  .youtube-card_info span {
    font-size: 14px;
  }
}
/* ------------------------------- */


/* ===== Shazam Discovery Section ===== */
.shazam-section {
  display: grid;
  gap: 35px;
  justify-items: center;
  padding: 80px 0px;
  text-align: center;
  overflow: hidden;
}

/* Slider */
.shazam-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.shazam-track {
  display: flex;
  gap: 23px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.shazam-slider:hover .shazam-track {
  animation-play-state: paused;
}

@keyframes shazam-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.shazam-card {
  min-width: 315px;
  height: 315px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
}

.shazam-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  position: absolute;
  bottom: 0;
  max-width: 290px;
  width: 100%;
  padding: 20px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: end;
  color: var(--color-white);
  font-size: 25px;
  line-height: 120%;
}

.card-info button {
  background: #099CFF;
  border: none;
  color: var(--color-white);
  padding: 10px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 24px;
}

.shazam-text {
  margin: 40px 0 20px;
  font-size: 14px;
}

.shazam-actions {
  justify-items: center;
  justify-content: center;
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 320px;
  max-width: 510px;
}
.shazam-actions .btn {
  margin: 0px 20px;
}

@media (max-width: 768px) {
  .shazam-title {
    font-size: 28px;
  }
  .shazam-card {
    min-width: 240px;
    height: 220px;
  }
  .card-info {
    width: 90%;
    max-width: 240px;
  }
  .card-info {
    font-size: 20px;
  }
  .card-info button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .shazam-section {
    padding: 30px 0px;
  }
}
/* ------------------------------- */


/* ===== Hiring Section ===== */
.hiring-wrapper {
  padding: 40px 16px;
}

.hiring-box {
  max-width: 85rem;
  height: 325px;
  margin: 0 auto;
  background: linear-gradient(90deg, #DC30FF 0%, #FF730F 100%);
  border-radius: 43px;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;      
  text-align: center;
  gap: 24px;
}

.hiring-box h2 {
  color: var(--color-white);
}

/* Button */
.hiring-btn {
  display: inline-block;
  background: var(--bg-color-2);
  color: var(--color-white);
  padding: 20px 110px;
  border-radius: 12px;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== Footer ===== */
.footer-bar {
  max-width: 85rem;
  margin: 30px auto 0;
  border-top: 1px solid #CFCFCF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-gray);
}
.footer-content {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  display: flex;
  padding: 30px 0px;
}

.footer-right {
  font-size: 24px;
  color: #272A31;
}

.logo-circle {
  width: 22px;
  height: 22px;
  background: #000;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.brand-name {
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-bar {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .hiring-box {
    padding: 40px 16px;
  }

  .hiring-box h2 {
    font-size: 22px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-right {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hiring-btn {
    width: 100%;
    padding: 14px 0;
  }
}