* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Strasua';
    src: url('../fonts/Strasua-Regular-BNUDNctV.woff2') format('woff2'),
        url('../fonts/Strasua-Regular-CDe-BBPv.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --alok-accent: #D71DA5;
  --alok-accent-rgb: 215, 29, 165;
  --alok-accent-deep: #721098;
  --alok-accent-deep-rgb: 114, 16, 152;
  --alok-accent-light: #8b5cf6;
  --alok-accent-light-rgb: 139, 92, 246;
  --primary: var(--alok-accent-deep);
  --primary-light: var(--alok-accent-light);
  --primary-dark: var(--alok-accent-deep);
  --primary-contrast: var(--alok-accent);
  --accent: var(--alok-accent);
  --accent-light: var(--alok-accent-light);
  --success: #10b981;
  --success-light: #34d399;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --glass-bg: rgba(15, 23, 42, 0.35);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-backdrop: blur(16px);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, var(--primary), var(--primary-contrast));
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.8s ease;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(var(--alok-accent-rgb), 0.6);
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-contrast), var(--primary));
    transition: all 0.8s ease;
    box-shadow: 0 6px 20px rgba(var(--alok-accent-rgb), 0.9);
}


html, body {
    background: #000;
    text-align: center;
    overflow-x: clip;
    font-family: "Montserrat", sans-serif;
    line-height: 2;
}

::selection {
    background-color: var(--primary);
    color: var(--text-primary);
}

/* For Firefox */
::-moz-selection {
    background-color: var(--primary);
    color: var(--text-primary);
}

img {
    max-width: 100%;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.cursor-outer {
    width: 35px;
    height: 35px;
    border: 2px solid rgba(var(--alok-accent-rgb), 0.6);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background: rgba(var(--alok-accent-rgb), 1);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(var(--alok-accent-rgb), 0.8), 0 0 20px rgba(var(--alok-accent-rgb), 0.5);
    transition: transform 0.08s ease-out;
}

.nav-button {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  top: 20px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-contrast));
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  /* display: none; */
  transition: opacity 0.25s ease, transform 0.25s ease;
  

  & span {
    display: block;
    width: 18px;
    min-height: 3px;
    background: #fff;
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.3s ease;

    &:nth-child(2) {
      width: 24px;
    }
  }

  &.active span {
    width: 25px;
  }
}

.nav-button.hidden-by-scroll {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
}

.mobile-logo, .mobile-logo.active {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.container-nav-menu {

  & .artist-nav {
    display: none;
  }
}

.nav-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-button.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .nav-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  } 


body.mobile-menu-open {
  overflow: hidden!important;

  & .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    & .container-nav-menu.active {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
    }

    & .artist-nav {
      display: block;

      & img {
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        /* box shadow gradient primary and contrast */
        box-shadow: 0 10px 30px rgba(var(--alok-accent-rgb), 0.1), 0 0 50px rgba(var(--alok-accent-rgb), 0.1);
      }
    }

    & ul {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
      

      & li {
        order: 1;
        text-align: left;
        display: block;
        width: 100%;

        &.logo-icon {
          order: 0;
          margin-bottom: 10px;

          & a {
            border: none;
            padding: 0;
          }
        }

        &:last-child {
          & a {
            border: none;
           
          }
        }
        & a {
          font-size: 22px;
          text-align: left;
          display: block;
          padding: 5px 20px;
          border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
          width: 100%;
        }
      }
    }
  }
}

.hero-main {
    width: 100vw;
    height: 100vh;
    /* min-height: 100vh;  */
    background: #000;
    background-size: cover;
    position: relative;
    /* overflow: hidden; */
}

.hero-main::before {
    content: '';
    width: 100%;
    height: 40vh;
    position: absolute;
    top: 0;
    left: 0;
    /* gradient vertical com opacity */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 2;
}

.hero-main::after {
    content: '';
    width: 100%;
    height: 50vh;
    position: absolute;
    bottom: 0;
    left: 0;
    /* gradient vertical com opacity */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    z-index: 2;
}

.hero-main .container, .container {
    width: 100%;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    /* padding: 0 30px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-main .images-hero {
    width: 100%;
    min-width: 980px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.hero-main .images-hero img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite; 
}

.hero-main .image-hero {
    position: absolute;
    animation: float 3s ease-in-out infinite; 
    /* blur */
    filter: blur(3px);
}

.hero-main .image-hero-01 {
    max-width: 560px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation-delay: 0s;
    filter: blur(0);
}

.hero-main .image-hero-01 img {
    position: relative;
    z-index: 4;
}

.hero-main .image-hero-02 {
    max-width: 266px;
    left: 240px;
    bottom: 270px;
    z-index: 2;
}

.hero-main .image-hero-03 {
    max-width: 365px;
    right: 240px;
    bottom: 300px;
    z-index: 1;
}

.hero-main .image-hero-04 {
    max-width: 365px;
    left: 49%;
    transform: translateX(-50%);
    bottom: 450px;
    z-index: 0;
}

@media all and (max-width: 1200px) {
    .hero-main .image-hero-04 {
        max-width: 200px;
        bottom: 540px;
    }
}

.images-hero .shape {
    display: block;
    width: 285px;
    height: 285px;
    border-radius: 50%;
    background: var(--alok-accent-deep);
    /* gradient radial diagonal 60 graus  */
    background: radial-gradient(circle at 30% 30%, var(--alok-accent), var(--alok-accent-deep));
    position: absolute;
    filter: blur(20px);
}

.images-hero .shape.shape-01 {
    left: -200px;
    bottom: 50px;
    z-index: 2;
}

.images-hero .shape.shape-02 {
    left: -80px;
    bottom: 190px;
    z-index: 2;
    background: radial-gradient(circle at 30% 30%, var(--alok-accent-deep), var(--alok-accent));
    filter: blur(40px);
}


.images-hero .shape.shape-03 {
    right: -80px;
    bottom: 190px;
    z-index: 2;
    background: radial-gradient(circle at 30% 30%, var(--alok-accent-deep), var(--alok-accent));
    filter: blur(40px);
}

.images-hero .shape.shape-04 {
    right: -150px;
    bottom: 60px;
    z-index: 2;
}

.hero-main .logo {
    max-width: 80vw;
    width: 100%;
    position: absolute;
    bottom: 5vh;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-main .logo .logo-border {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 655px;
    opacity: 0.1;
    z-index: 2;
    animation: animationLogoBorder 3s linear infinite;
}

@keyframes animationLogoBorder {
    0% {
        bottom: 30px;
        opacity: 0;
    }
    50% {
        opacity: 0.05;
    }
    100% {
        bottom: 60px;
        opacity: 0;
    }
}

/* Icons plataforms */

.plataforms-music {
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 11;
    max-width: 230px;
    transition: all 0.3s ease;
}

.plataforms-music small {
    display: block;
    width: auto;
    color: #fff;;
    font-style: italic;
    font-size: 11px;
}

.plataforms-music .list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 30px;
    background: #ffffff;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

.plataforms-music .list a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plataforms-music .list a img {
    /* filter: grayscale(100%); */
    position: relative;
    bottom: 0;
    transition: all 0.3s ease;
}

.plataforms-music .list a:hover img {
    /* filter: grayscale(0%); */
    bottom: 10px;
}

@media (max-width: 580px) {
  .container-nav-menu {
    display: none;
    height: 100dvh;
    gap: 30px!important;

    & .artist-nav {
      max-width: 40vw;

      & img {
        width: 100%;
        object-fit: cover;
      }
    }

    & ul {
      min-width: 50vw;
    }

    ul li.logo-icon {
      display: none!important;
    }

    ul li a {
      font-size: 18px!important;
    }
  }
  .plataforms-music .list a img {
      filter: none;
  }
  
  .plataforms-music .list a:hover img {
      filter: none;
      bottom: 0;
  }

  .nav-button {
      right: 20px;
  }
}

/* Embedded editor previews can be narrower than the browser viewport. */
@media (max-width: 980px) {
  .hero-main .images-hero {
    min-width: 0;
    width: 100%;
  }
}

/* SVG Logo Responsivo e Animável */
.logo-svg {
    width: 100%;
    height: auto;
    max-width: 655px;
    position: relative;
    z-index: 3;
    /* shadow */
    /* filter: drop-shadow(0 0 20px rgba(105, 18, 85, 0.6)); */
    animation: brightnessLogo 3s ease-in-out infinite;
    transition: all .3 ease;
}

@keyframes brightnessLogo {
    0%, 100% {
        filter: drop-shadow(0 0 50px rgba
        (105, 18, 85, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(105, 18, 85, 0.5));
    }
}

.logo-svg .letter {
    transform-origin: center;
}

#top .logo-svg {
    max-width: 655px;
}

@media (max-width: 768px) {
  #contact .list-items {
      flex-direction: column;
      gap: 18px!important;  
      border-radius: 15px!important;
      padding: 25px 20px!important;

      & li {
          text-align: left;
          line-height: 22px;
      }
  }  
}

@media (max-width: 480px) {
    .hero-main .logo {
        max-width: 90vw;
        bottom: 10vh;
    }
}

.hero-main .logo-vertical {
    position: absolute;
    z-index: 3;
    left: 5%;
    top: 12vh;
    width: 180px;
}

.header-main {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0;
}

.header-main .nav-main {
    padding: 20px 0;
}

.mobile-header {
    display: none;
}

.hamburger {
    display: none;
}

.nav-menu {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.nav-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu li.logo-icon {
    margin: 0 22px;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
    font-family: 'Strasua', sans-serif;
}

.nav-menu li a:hover {
    color: var(--alok-accent);
}

.nav-menu li a img {
    min-width: 50px;
}


@keyframes fireAppear {
    0% {
        opacity: 0;
    }
    5.88% { /* 1s de 17s */
        opacity: 1;
    }
    17.65% { /* 3s (1s + 2s) de 17s */
        opacity: 1;
    }
    23.53% { /* 4s de 17s */
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.fire-01,
.fire-02 {
    position: absolute;
    max-width: 380px;
    width: 100%;
    height: 400px;
    bottom: 80px;
    opacity: 0;
    animation: fireAppear 17s infinite;
}

.fire-01 {
    z-index: 9;
    left: 50px;
}

.fire-02 {
    z-index: 2;
    right: 50px;
}

#smoke-canvas {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100vw;
    height: 60dvh;
    opacity: 0.6;
}


/* Section */
.section-default {
  width: 100vw;
  height: 100vh;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Section Bio */
#bio {
  background: #000;
  color: #fff;
  /* overflow: hidden; */
  position: relative;
  height: 100vh;
  /* z-index: 4; */
}

#bio h2 {
  font-family: 'Strasua', sans-serif;
  /* color gradient text abaixo */
   background: -webkit-linear-gradient(var(--alok-accent), var(--alok-accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
  
  /* & span {
    display: block;
    font-size: 24px;
    margin-bottom: 0px;
    -webkit-text-fill-color: #fff;
    color: #fff;
    background: none;
  } */
}

#bio .content-text {
    max-width: 80%;
    margin: 80px auto 0 auto;
    font-size: 26px;
    text-align: center;
    font-weight: 100;
    display: inline-block;

    & a {
        margin-top: 40px;
    }
}

#bio .logo-bio {
  display: block;
  margin-top: 0;
  font-family: 'Strasua', sans-serif;
  font-size: clamp(56px, 11vw, 148px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

#bio .logo-bio .bio-artist-name {
  display: block;
  font-size: inherit !important;
  margin-bottom: 0;
  line-height: 0.82;
  background: linear-gradient(180deg, var(--alok-accent) 0%, var(--alok-accent-deep) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#music-notes {
  position: absolute;
  width: 100%;
  z-index: 10;
  bottom: -40%;
  height: 0;
  pointer-events: none;
  animation: musicNotesMove 6s ease-in-out infinite;
}

@keyframes musicNotesMove {
  0%, 100% {
    bottom: -40%;
  }
  50% {
    bottom: -35%;
  }
}

#music-notes .music-note {
  position: absolute;
  display: block;
  color: var(--alok-accent);
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 700;
  line-height: 1;
  opacity: 0.72;
  text-shadow: 0 0 24px rgba(var(--alok-accent-rgb), 0.75);
  animation: musicNoteFloat 5s ease-in-out infinite;
}

#music-notes .music-note-01 {
  left: 8%;
  top: 0;
  transform: rotate(-14deg);
}

#music-notes .music-note-02 {
  left: 25%;
  top: 130px;
  color: var(--alok-accent-light);
  animation-delay: -1.4s;
  transform: rotate(12deg);
}

#music-notes .music-note-03 {
  right: 24%;
  top: 100px;
  animation-delay: -2.6s;
  transform: rotate(-8deg);
}

#music-notes .music-note-04 {
  right: 7%;
  top: -20px;
  color: var(--alok-accent-light);
  animation-delay: -3.8s;
  transform: rotate(14deg);
}

@keyframes musicNoteFloat {
  0%, 100% {
    margin-top: 0;
  }
  50% {
    margin-top: -22px;
  }
}


/* PHOTOS */
#photos {
    background-color: #000;
    background: #000;
    height: 100vh;
    padding: 0;
    z-index: 0;
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: none;
      /* background-size: cover; */
      position: absolute;
      left: 0; 
      top: 0;
      opacity: 0.05
    }
}

#photos .photos-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 60px;
    align-items: center;
    height: 100vh;
}

.photos-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    position: relative;

    &::before {
      content:"";
      display: block;
      width: 120%;
      height: 80%;
      position: absolute;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      top: 40%;
      transform: translateY(-50%);
      filter: blur(10px);
    }
}

.photos-info h2, #agenda h2, .section-default header h2 {
    font-family: 'Strasua', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.1;
    background: -webkit-linear-gradient(var(--alok-accent), var(--alok-accent-deep));
    background: linear-gradient(var(--alok-accent), var(--alok-accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.photos-info h2 span, #agenda h2 span, .section-default header h2 span {
    display: block;
    font-size: 0.4em;
    color: #fff;
    -webkit-text-fill-color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.photos-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    max-width: 90%;
}

.photos-info .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.photos-info .btn-primary svg {
    width: 20px;
    height: 20px;
}

#photos .count-followers {
  font-size: 60px;
  color: var(--primary-contrast);
  font-family: 'Strasua', sans-serif;
  opacity: 0.3;
}

/* Gallery Grid */
.photos-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.photos-gallery::after, .photos-gallery::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54vh;
  pointer-events: none;
  background: #000000;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
}

.photos-gallery::before {
  top: 0;
  bottom: auto;
  background: linear-gradient(180deg,rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    will-change: transform;
}

.gallery-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.gallery-image:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 1;
    padding: 0;

    & span {
      display: block;
      position: relative;
      top: -4px;
    }
}

.lightbox-close:hover {
    background: rgba(255, 61, 210, 0.5);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/*  Agenda */

#agenda {
 background: #000;
 height: auto;
 min-height: 100vh;

  & .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  & header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
  }

  & .list-events {
    padding: 100px 0 50px 0;
    width: 100%;

    & ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: flex-start;
      align-items: flex-start;
      width: 100%;
      height: 400px;
      overflow: hidden;

      & li {
        color: var(--text-primary);
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        text-align: left;
        background: rgba(21, 3, 22, 0.8);
        padding: 20px 40px 20px 50px;
        border-radius: 80px;
        border: 1px solid rgba(var(--alok-accent-rgb), 0.18);

        & .day-name {
          min-width: 230px;
        }

        span {
          display: block;

          &.day {
            font-size: 18px;
            font-weight: 600;
            /* text gradient */
            background: -webkit-linear-gradient(var(--alok-accent), var(--alok-accent-deep));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Strasua', sans-serif;
            line-height: 22px;
          }

          &.title {
            font-size: 22px;
            font-weight: 500;
            line-height: 35px;
          }
        }

        & .locale {
            text-align: center;
            display: block;

            & span {
              text-align: center;
              font-weight: 2         00;
            }
            
            & img {
              margin: 0 auto;
            }
        }

        & a {
          background: rgba(var(--alok-accent-rgb), 0.16);
          color: var(--text-primary);
          padding: 8px 30px;
          border-radius: 40px;
          text-decoration: none;
          display: flex;
          justify-content: center;
          align-items: center;
          font-weight: 500;

          &:hover {
            background: linear-gradient(90deg, var(--primary), var(--primary-contrast));
            color: #fff;
          }
          
        }
      }
    }

    & a.btn-more {
      margin-top: 40px;
    }
  }
}

/* Spotify */

#musics {
  width: 100vw;
  height: 100dvh;
  background: #000;
  background-attachment: scroll;
  /* background-size: cover; */
  position: relative;
  color: var(--text-primary);

  &::before {
    width: 100%;
    height: 100%;
    content:"";
    display: block;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
  }

  & .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

    & .col-left {
      & header {
        margin-bottom: 30px;
      }

      & p {
        max-width: 80%;
        margin: 0 auto 30px auto;
      }

      & a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }
    }

    & .col-iframe {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100%;
      width: 50%;
    }
  }
}

/* Footer */

.text-center {
  text-align: center;
}

#contact {
  color: var(--text-primary);
  /* height: auto!important;
  min-height: auto!important; */
  background: #000;

  & .container {
    flex-direction: column;
    gap: 20px;
  }
}


#contact .ft-tabs {
  display: flex;
  gap: 40px;
  background: rgba(0, 0, 0, 0.083);
  padding: 12px;
  border-radius: 10px;
  align-items: start;
  width: 100%;
}

#contact .ft-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  max-width: 260px;
  align-self: start;
  position: relative;
}

#contact .ft-tab {
  display: block;
  width: 100%;
  text-align: left;
  background: rgba(26, 24, 26, 0.5);
  border: none;
  color: rgba(255,255,255,0.85);
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: all .18s ease;
  box-shadow: none;
  font-size: 18px;
  letter-spacing: 0.6px;
}

#contact .ft-tab:hover { transform: translateX(4px); }

#contact .ft-tab.active {
  background: linear-gradient(180deg, rgba(var(--alok-accent-rgb), 0.18), rgba(var(--alok-accent-rgb), 0.12));
  color: #fff;
  box-shadow: 0 10px 30px rgba(var(--alok-accent-rgb), 0.08);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  font-weight: 600;
}

#contact .ft-panels {
  position: relative;
  /* keep panels constrained so switching content doesn't push the tab column */
  box-sizing: border-box;
  background: rgba(26, 24, 26, 0.5);
  border-radius: 15px;
  padding: 24px 28px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 566px;
}

#contact .ft-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all .34s cubic-bezier(.22,.9,.3,1);
  /* limit panel height and scroll internally to avoid layout shifts */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  padding-right: 8px;
}

#contact .ft-panel.active { display: block; opacity: 1; transform: translateY(0); }

#contact .ft-panel h4 { margin: 0 0 8px 0; color: #fff; font-size: 18px; font-family: 'Strasua', sans-serif;
color: var(--alok-accent);
background: -webkit-linear-gradient(var(--alok-accent), var(--alok-accent-deep));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#contact .ft-panel p { margin: 6px 0; color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.6; }

/* Contact list within panel */
#contact .ft-contact-list { list-style:none; padding:0; margin:6px 0 0 0; display:flex; flex-direction:column; gap:22px; }
#contact .ft-contact-item { display:flex; gap:12px; align-items:flex-start; }
#contact .ft-flag { width:28px; flex:0 0 28px; margin-top:2px; }
#contact .ft-contact-body { flex:1 1 auto; }
#contact .ft-region { font-weight:700; color:#fff; margin-bottom:6px; text-align: left; }
#contact .ft-contact-line { display:flex; gap:8px; align-items:center; color:rgba(255,255,255,0.85); }
#contact .ft-contact-line img.icon { width:16px; height:16px; opacity:0.9; }
#contact .ft-contact-line a { color:inherit; text-decoration:none; text-underline-offset:3px; }

#contact .footer-note { text-align:center; color:rgba(255,255,255,0.45); font-size:13px; width: 80%; margin: 12px auto 0 auto; }
#contact .footer-note a { color: var(--alok-accent);
  background: -webkit-linear-gradient(var(--alok-accent), var(--alok-accent-deep));
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  font-weight:500; }

@media (max-width:580px){
  #contact {
    min-height: auto;
    height: auto;
    background-position: right top;
  }
  #contact .ft-tabs-nav{ flex-direction:column; width: 100%; max-width: 100%; } 
  #contact .ft-tabs{ flex-direction:column; gap:20px; }
  #contact .ft-panels {
    min-height: auto;
    padding: 20px 20px;
    overflow-x: auto;
  }
  #contact .ft-tab {
    padding-left: 40px!important;
    padding-right: 40px!important;
  }
  #contact .ft-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  #contact .ft-contact-line {
    align-items: flex-start;
    text-align: left;
    line-height: 20px;
    margin: 12px 0;

    & img {
      position: relative;
      top: 2px;
    }
  }
}

/* Responsive */
@media (max-width: 768px) {
  #music-notes {
    opacity: 0.55;
  }

  #photos {
    padding-top: 60px;
    padding-bottom: 60px;
    /* gradient black vertical */
    background-color:#121212;
    background: linear-gradient(to bottom, #121212, #000000);
    min-height: 100vh;
    height: auto;
  }

  #photos {
  &::before {
      display: none;
    }
  }

  .photos-gallery::after, .photos-gallery::before {
    height: 50px;
  }

    #photos .photos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photos-info {
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .photos-info p {
        max-width: 100%;
    }

    .photos-gallery {
        height: 370px;
    }

    .gallery-image img {
        height: 300px;
    }
    
    #agenda {
      background-position: top center;

      &::before {
        content:"";
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        left: 0;
        top: 0;
      }
    }
    #agenda header {
      justify-content: center;
    }

    #agenda ul li {
      flex-direction: column;
      gap: 15px;
      text-align: center!important;
      border-radius: 30px!important;
    }

    #agenda ul li .locale {
      display: flex!important;
      justify-content: center;
      align-items: center;

      & img {
        position: relative;
        top: 5px;
      }
    }
}


@media (max-width: 580px) {
  .section-default {
      padding: 40px 0;
  }

  .mobile-logo.active {
    top: 40px;
    left: 12px;
  }

  #musics {
    background-position: -550px top;
  }
  

  #musics .container {
      flex-direction: column;
      gap: 20px;

      & .col-iframe {
          width: 100%;
          height: 500px;
          margin-top: 2px;
      }
  }

  #bio .content-text {
      font-size: 18px;
      max-width: 90%;
  }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .mobile-logo img {
        width: 50px;
        height: auto;
    }

    .hero-main .logo {
        bottom: 35px;
    }

    .hero-main .logo .logo-border {
        bottom: 40px;
    }
      
    .nav-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-button.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-main .logo-vertical {
        width: 16dvh;
    }

    .plataforms-music {
        right: inherit;
        left: 50%;
        transform: translateX(-50%);
        top: inherit;
        bottom: 220px;
        gap: 5px;
    }

    body.mobile-menu-open .plataforms-music {
        z-index: 5;
        transition: z-index 0s;
    }

    .fire-01,
    .fire-02 {
        max-width: 200px;
        height: 210px;
        bottom: 20px;
    }

    .fire-01 {
        left: -50px;
    }

    .fire-02 {
        right: -50px;
    }

    #agenda .list-events .day-name {
      min-width: auto!important;
    }
}


















.music-player-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 11;
    }

    /* ===== PLAYER BASE ===== */
    .music-player {
      background: var(--glass-bg);
      backdrop-filter: var(--glass-backdrop);
      border: 1px solid var(--glass-border);
      border-radius: 40px;
      padding: 20px 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: auto;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      cursor: pointer;
      position: relative;
    }

    .music-player.playing {
      box-shadow: 
        0 0 30px rgba(var(--alok-accent-rgb), 0.2),
        0 0 60px rgba(var(--alok-accent-rgb), 0.15),
        0 0 90px rgba(var(--alok-accent-rgb), 0.1),
        var(--shadow-md);
      animation: pulseGlow 3s ease-in-out infinite;
    }

    .music-player.expanded {
      width: 400px;
      border-radius: 28px;
      padding: 20px;
      flex-direction: column;
      cursor: default;
      overflow: hidden;
    }

    /* ===== ALBUM ART ===== */
    .album-art-container {
      position: relative;
      width: 48px;
      height: 48px;
      border-radius: 10px;
      overflow: hidden;
      flex-shrink: 0;
      transition: var(--transition);
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: none;
    }

    .music-player.expanded .album-art-container {
      display: block;
      width: 130px;
      height: 130px;
      border-radius: 12px;
      margin-bottom: 12px;
      align-self: center;
    }

    .album-art-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--text-primary);
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    /* ===== SONG INFO ===== */
    .song-info {
      flex: 1;
      min-width: 0;
      display: none;
    }

    .music-player.expanded .song-info {
      display: block;
      text-align: center;
      width: 100%;
    }

    .song-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }

    .music-player.expanded .song-title {
      font-size: 16px;
      margin-bottom: 6px;
    }

    .artist-name {
      font-size: 12px;
      color: var(--text-secondary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .music-player.expanded .artist-name {
      font-size: 12px;
    }

    /* ===== PROGRESS BAR ===== */
    .progress-container {
      display: none;
      width: 100%;
      margin: 12px 0;
    }

    .music-player.expanded .progress-container {
      display: block;
    }

    .progress-bar {
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      cursor: pointer;
      position: relative;
      overflow: visible;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
      width: 0%;
      transition: width 0.1s linear;
      position: relative;
    }

    .progress-fill::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      background: var(--accent-light);
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
    }

    .progress-bar:hover .progress-fill::after {
      width: 12px;
      height: 12px;
      right: -7px;
      box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
    }

    .time-display {
      display: none;
      font-size: 10px;
      color: var(--text-secondary);
      margin-top: 6px;
      text-align: center;
    }

    .music-player.expanded .time-display {
      display: block;
    }

    /* ===== CONTROLS ===== */
    .controls {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      justify-content: center;
    }

    .music-player.expanded .controls {
      width: 100%;
      flex-direction: row;
      gap: 10px;
      margin: 14px 0;
    }

    .control-btn {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: var(--transition);
      flex-shrink: 0;
      font-weight: 600;
    }

    .control-btn svg {
      width: 18px;
      height: 18px;
      fill: white;
    }

    .music-player.expanded .control-btn {
      width: 45px;
      height: 45px;
      font-size: 18px;
      border-radius: 50%;
    }

    .control-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--accent-light);
      transform: scale(1.05);
    }

    .control-btn.play-btn {
      background: linear-gradient(135deg, var(--primary), var(--primary-contrast));
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%; 
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    
    .control-btn.play-btn svg {
      width: 16px;
      height: 16px;
      fill: white;
      margin-left: 2px;
    }
    
    .control-btn.play-btn.playing svg {
      margin-left: 0;
    }

    .music-player.expanded .control-btn.play-btn {
      width: 52px;
      height: 52px;
    }
    
    .music-player.expanded .control-btn.play-btn svg {
      width: 20px;
      height: 20px;
    }

/* Modal (More) - appended */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: block;
  pointer-events: none;
  clip-path: circle(0 at 50% 100%);
  background: #000;
  transition: clip-path 0.6s ease;
  -webkit-backdrop-filter: blur(4px);
}
.modal-overlay.active { pointer-events: auto; clip-path: circle(150% at 50% 50%); }
.modal-reveal { position:absolute; inset:0; }
.modal-content {
  position: fixed;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  border-radius: 14px; padding: 48px; color: #fff; 
  /* box-shadow: 0 30px 80px rgba(0,0,0,0.7); */
  /* box shadow top primary and contrast color */
  box-shadow: 0 -50px 140px rgba(215, 29, 165, 0.3), 30px -50px 60px rgba(114, 16, 152, 0.1);
  pointer-events: auto;
}
.modal-close { position:absolute; top:-18px; right:-20px; width:44px; height:44px; border-radius:50%; border:2px solid rgba(255,255,255,0.08); background: var(--primary-contrast); color:#fff; font-size:24px; cursor:pointer; }
.modal-title { font-family:'Strasua', system-ui, -apple-system, 'Segoe UI', Roboto, Arial; font-size:28px; text-align:center; margin:0 0 18px; }
.modal-title span {
  /* color gradient */
  background: -webkit-linear-gradient(var(--alok-accent), var(--alok-accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-carousel { display:flex; align-items:center; gap:16px; margin-top:12px; position:relative; z-index:3; }
.carousel-viewport { flex:1 1 auto; overflow:hidden; width:100%; }
.carousel-track { display:flex; transform: translateX(0); will-change: transform; transition: transform 0.5s cubic-bezier(.22,.9,.3,1); }
.carousel-slide { flex: 0 0 100%; box-sizing: border-box; padding:18px 28px; position:relative; z-index:3; max-width:100%; }
.carousel-slide p { font-size:18px; line-height:2.2; color:#ffffff !important; opacity:1 !important; word-wrap:break-word; overflow-wrap:break-word; }
.carousel-arrow { background: linear-gradient(135deg, var(--primary), var(--primary-contrast)); border:none; min-width:56px; min-height:56px; border-radius:50%; color:#ffffff; font-size:28px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px rgba(0,0,0,0.45); transition: transform .18s ease, box-shadow .18s ease; border: 2px solid rgba(255,255,255,0.06); }
.carousel-arrow:hover { transform: translateY(-4px) scale(1.02); box-shadow:0 20px 40px rgba(0,0,0,0.5); }
@media (max-width:680px){ .modal-content{ padding:28px 18px; height:86vh; } .modal-title{ font-size:20px; } .carousel-arrow{ width:44px;height:44px;font-size:22px; } }


    .control-btn.play-btn:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      transform: scale(1.08);
      box-shadow: 0 0 16px rgba(var(--alok-accent-rgb), 0.4);
    }

    .control-btn.play-btn:active {
      transform: scale(0.95);
    }

    /* ===== VOLUME CONTROL ===== */
    .volume-control {
      display: none;
      align-items: center;
      gap: 6px;
      margin-left: 4px;
    }

    .music-player.expanded .volume-control {
      display: flex;
      margin-left: 0;
      width: 100%;
      justify-content: center;
      gap: 10px;
    }

    .volume-slider {
      width: 50px;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      position: relative;
    }
    
    .volume-slider::-webkit-slider-track {
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
    }
    
    .volume-slider::-webkit-slider-runnable-track {
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, 
        var(--accent) 0%, 
        var(--accent) var(--volume-percent, 70%), 
        rgba(255, 255, 255, 0.1) var(--volume-percent, 70%), 
        rgba(255, 255, 255, 0.1) 100%);
      border-radius: 2px;
    }
    
    .volume-slider::-moz-range-track {
      width: 100%;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
    }
    
    .volume-slider::-moz-range-progress {
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
    }

    .music-player.expanded .volume-slider {
      width: 100px;
      height: 4px;
    }
    
    .music-player.expanded .volume-slider::-webkit-slider-runnable-track {
      height: 4px;
    }
    
    .music-player.expanded .volume-slider::-moz-range-track,
    .music-player.expanded .volume-slider::-moz-range-progress {
      height: 4px;
    }

    .volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 10px;
      height: 10px;
      background: var(--accent-light);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 6px rgba(34, 211, 238, 0.4);
    }

    .volume-slider::-moz-range-thumb {
      width: 10px;
      height: 10px;
      background: var(--accent-light);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 6px rgba(34, 211, 238, 0.4);
    }

    .volume-btn {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      width: 34px;
      height: 34px;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: var(--transition);
      flex-shrink: 0;
      font-weight: 600;
    }

    .music-player.expanded .volume-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }

    .volume-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--accent-light);
      transform: scale(1.05);
    }

    /* ===== PLAYLIST ===== */
    .playlist-section {
      display: none;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--glass-border);
    }

    .music-player.expanded .playlist-section {
      display: block;
    }

    .playlist-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.4px;
      margin-bottom: 8px;
    }

    .playlist {
      display: flex;
      flex-direction: row;
      gap: 8px;
      width: 100%;
      max-width: 380px;
      overflow-x: auto;
      overflow-y: hidden;
      /* Scroll suave no mobile */
      -webkit-overflow-scrolling: touch;
      /* Permite arrastar com o dedo */
      overscroll-behavior-x: contain;
      /* Remove highlight azul no touch */
      -webkit-tap-highlight-color: transparent;
      /* Esconde a scrollbar mas mantém funcionalidade */
      scrollbar-width: none;
      -ms-overflow-style: none;
      /* Cursor para indicar drag */
      cursor: grab;
      padding: 5px 0;
    }
    
    .playlist::-webkit-scrollbar {
      display: none;
    }

    .playlist-item {
      padding: 10px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      font-size: 11px;
      color: var(--text-secondary);
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
      flex-shrink: 0;
      min-width: 140px;
      text-align: center;
      user-select: none;
      pointer-events: auto;
    }

    .playlist-item:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--accent-light);
      color: var(--text-primary);
    }

    .playlist-item.active {
      background: linear-gradient(135deg, rgba(var(--alok-accent-rgb), 0.25), rgba(var(--alok-accent-rgb), 0.25));
      border-color: var(--accent-light);
      color: var(--accent-light);
      font-weight: 500;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes pulseGlow {
      0%, 100% {
        box-shadow: 
          0 0 30px rgba(var(--alok-accent-rgb), 0.2),
          0 0 60px rgba(var(--alok-accent-rgb), 0.15),
          0 0 90px rgba(var(--alok-accent-rgb), 0.1),
          var(--shadow-md);
      }
      50% {
        box-shadow: 
          0 0 40px rgba(var(--alok-accent-rgb), 0.3),
          0 0 80px rgba(var(--alok-accent-rgb), 0.2),
          0 0 120px rgba(var(--alok-accent-rgb), 0.15),
          var(--shadow-md);
      }
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.7;
      }
    }

    .album-art-placeholder.playing {
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .music-player.expanded {
      animation: slideIn 0.3s ease-out;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .music-player-container {
        bottom: 20px;
        right: 10px;
      }

      .music-player.expanded {
        width: 90vw;
        max-width: 360px;
      }
    }

    @media (max-width: 480px) {
      .custom-cursor {
        display: none;
      }

      .music-player-container {
        top: 50%;
        transform: translateY(-50%);
        right: 16px;
      }

      .music-player {
        width: auto;
        padding: 16px 10px;
        gap: 8px;
      }

      .music-player.expanded {
        width: 95vw;
        max-width: 320px;
        padding: 16px;
      }

      .album-art-container {
        width: 44px;
        height: 44px;
      }

      .music-player.expanded .album-art-container {
        width: 110px;
        height: 110px;
      }

      .control-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
      }

      .music-player.expanded .control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }

      .control-btn.play-btn {
        width: 40px;
        height: 40px;
      }

      .music-player.expanded .control-btn.play-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
      }

      .volume-control {
        display: none !important;
      }

      .playlist {
        width: calc(100% + 48px);
        padding: 5px 0;
        margin: 0 -16px;
        padding-left: 40px;
        padding-right: 40px;
      }

      .playlist-item {
        min-width: 110px;
        font-size: 10px;
        padding: 8px 10px;
      }
    }

  /* Mobile-specific: ensure modal carousel text/arrow layout works on very small viewports */
  @media (max-width: 580px) {
    .modal-close {
      top: -10px;
      right: -5px;
    }
    
    .modal-content {
      padding: 14px 12px;
      height: 86vh;
      box-sizing: border-box;
      width: calc(100vw - 24px);
      max-width: 100vw;
      /* overflow-x: hidden; */
    }

    .modal-carousel {
      display: block;
      position: relative;
      padding-bottom: 84px; /* space for positioned arrows */
      margin-top: 8px;
    }

    .carousel-viewport {
      width: 100%;
      overflow: hidden;
      order: 1;
      box-sizing: border-box;
      padding: 0;
    }

    .carousel-track { 
      display: flex;
      transform: translateX(0);
      gap: 0;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    .carousel-slide {
      flex: 0 0 100%;
      width: 100%;
      padding: 10px 12px;
      max-width: 100%;
      box-sizing: border-box;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .carousel-slide p {
      font-size: 15px;
      line-height: 1.6;
      color: #fff !important;
      margin: 0;
      hyphens: auto;
    }

    /* Place arrows fixed near the bottom of the modal, centered */
    .carousel-arrow {
      position: absolute;
      bottom: 16px;
      z-index: 20;
      width: 46px;
      height: 46px;
      min-width: 46px;
      min-height: 46px;
      font-size: 18px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      box-shadow: 0 12px 26px rgba(0,0,0,0.45);
      pointer-events: auto;
      background: linear-gradient(135deg, var(--primary), var(--primary-contrast));
    }

    .carousel-arrow.prev { left: calc(50% - 64px); }
    .carousel-arrow.next { left: calc(50% + 16px); }

    /* Slightly reduce modal title size on very small screens */
    .modal-title { font-size: 18px; }
  }

/* MuseFy user-content layer: keep the composition while removing template
   photography and identity from the static mirror. */
.decorative-vertical-mark,
#top #logo-alok,
#btnMoreModal,
#moreModal {
  display: none !important;
}

.artist-logo-text {
  display: block;
  position: relative;
  z-index: 3;
  width: 100%;
  color: #fff;
  font-family: 'Strasua', sans-serif;
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(var(--alok-accent-rgb), 0.45);
  animation: brightnessLogo 3s ease-in-out infinite;
}

.artist-nav {
  max-width: 40vw;
  color: #fff;
  font-family: 'Strasua', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-main .image-hero {
  min-height: 180px;
  min-width: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(var(--alok-accent-rgb), 0.3),
    rgba(0, 0, 0, 0) 72%
  );
}

.hero-main .image-hero img:not([src]),
.hero-main .image-hero img[src=""] {
  visibility: hidden;
}

.artist-cutout-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
}

.artist-cutout-layer::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.15) 50%,
    #000 100%
  );
}

.artist-cutout-layer img {
  display: block;
  width: min(70vw, 720px);
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.72;
  filter: drop-shadow(0 0 50px rgba(var(--alok-accent-rgb), 0.2));
}

.artist-cutout-layer img[hidden] {
  display: none;
}

#bio {
  height: auto;
  min-height: 100vh;
}

#bio .container,
#musics .container {
  z-index: 1;
}

#bio .content-text > p {
  white-space: pre-line;
}

#photos .photos-gallery .gallery-image img:not([src]),
#photos .photos-gallery .gallery-image img[src=""] {
  visibility: hidden;
}

#photos .photos-gallery .gallery-image:has(img:not([src])),
#photos .photos-gallery .gallery-image:has(img[src=""]) {
  background: rgba(var(--alok-accent-rgb), 0.08);
}

#contact .ft-tabs:empty,
#contact .ft-panels:empty {
  display: none;
}