
html{scroll-behavior: smooth;}
body,html{
  background-color: var(--black-tone);
  margin: 0;
  color: var(--white-tone);
  font-family: 'Uncut Sans', sans-serif !important;
      line-height: 1;
}
#main-container.light-mode{
  background-color: white !important;
  margin: 0;
  color: var(--white-tone);
  font-family: 'Uncut Sans', sans-serif !important;
  color: var(--black-tone); !important;
}
#main-container.dark-mode{
  background-color: var(--black-tone); !important;
  margin: 0;
  color: var(--white-tone);
  font-family: 'Uncut Sans', sans-serif !important;
  color: var(--white-tone) !important;
}

#main-container.light-mode a{
  color: var(--black-tone) !important;
}
#main-container.dark-mode a{
  color: var(--white-tone) !important;
}

#main-container.light-mode .btn-tone{
  background: var(--black-tone) !important;
  color: white !important
}
#main-container.dark-mode .btn-tone {
  background: var(--white-tone) !important;
  color: black !important;
}
#main-container{
  height: 100vh;
}
@media (max-width: 992px) {
	#main-container{
    height: auto;
  }
}
/*----------------LENIS----------------*/
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

main.home{
	padding: 0;
	margin: 0;
	cursor: grab;
	user-select: none;
}

.full-height{
  height: calc(-60px + 100vh);
}
.main-content{
  height: calc(100vh - 120px); overflow: auto; margin-top: 60px;
}
@media (max-width: 992px) {
	.main-content{
    height: auto; 
    overflow: unset; 
    margin-top: 60px;
  }
}
.hoverable{
  cursor: pointer;
  transition: all 0.3s;
}
.hoverable:hvoer{
  transform: scale(1.05)
}
/*----------------GLOBAL----------------*/
* { margin: 0; padding: 0; box-sizing: border-box; }

/*nav{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    background-color: black;
    z-index: 10;
    background: linear-gradient(180deg, black, transparent);
}
nav .logo{
    width: 200px;
    margin-right: -20px;
    margin-top: 3px;
}
nav a{
    font-size: 24px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    opacity: 0.4;
}
nav a.active, nav a:hover{
    opacity: 1;
    text-decoration: none;
}*/


/*----------------LOADER----------------*/
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loader.dark {
  background: black;
}
.loader.light {
  background: white;
}
.loader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#loader-pixels {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  background: transparent;
  pointer-events: none;
}

.loader-container.dark #loader-pixels {
  border: solid 1px black;
}
.loader-container.light #loader-pixels {
  border: solid 1px white;
}
.loader-container .pixel {
  width: 100%;
  height: 100%;
  will-change: opacity, transform;
}
.loader-container.dark .pixel {
  background: black;
  border: solid 1px black;
}
.loader-container.light .pixel {
  background: white;
  border: solid 1px white;
}
.loader-content{
  position: fixed;
  height: 100vh; z-index: 999999; width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader-container.dark .loader-content{
  background-color: black;
}
.loader-container.light .loader-content{
  background-color: white;
}

/* HTML: <div class="loader"></div> */

.loader-container.dark .loader-item{
  height: 3px;
  width: 75px;
  --c:no-repeat linear-gradient(#ffffff 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 21% 100%;
  animation: l7 1s infinite alternate;
}
.loader-container.light .loader-item{
  margin-top: 10px;
  height: 3px;
  width: 75px;
  --c:no-repeat linear-gradient(#010101 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 21% 100%;
  animation: l7 1s infinite alternate;
}

@keyframes l7 {
  0%,
  20%  {background-position: calc(0*100%/4) 0,calc(1*100%/4) 0,calc(2*100%/4) 0,calc(3*100%/4) 0}
  35%  {background-position: calc(0*100%/4) 0,calc(1*100%/4) 0,calc(2*100%/4) 0,calc(4*100%/4) 0}
  50%  {background-position: calc(0*100%/4) 0,calc(1*100%/4) 0,calc(3*100%/4) 0,calc(4*100%/4) 0}
  65%  {background-position: calc(0*100%/4) 0,calc(2*100%/4) 0,calc(3*100%/4) 0,calc(4*100%/4) 0}
  80%,
  100% {background-position: calc(1*100%/4) 0,calc(2*100%/4) 0,calc(3*100%/4) 0,calc(4*100%/4) 0}
}

/*----------------HOME----------------*/

.main-text{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 800px;
    max-width: 90%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.main-text h1{
  font-weight: 500;
}
@media (max-width: 992px) {
	.main-text{
		font-size: 10px;
	}
}

.grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 150%;
  height: 300%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid > div {
  position: relative;
}

@media (max-width: 992px) {
	.grid {
    width: 300%;
    height: 150%;
    grid-template-columns: repeat(5, 1fr);
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

figure {
  position: absolute;
  inset: 0.5rem;
  padding: 0;
  margin: 0;
}

/*----------------ARTISTAS----------------*/
.galgo-tabs{
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 20px;
  flex-wrap: wrap;
}
.galgo-tab-item{
  height: 35px;
  cursor: pointer;
  font-size: 20px;
}
.galgo-tabs.lg .galgo-tab-item{
  height: 40px;
  font-size: 30px;
}
#main-container.dark-mode .galgo-tab-item {
  color: var(--white-tone);
}
#main-container.light-mode .galgo-tab-item {
  color: #777777;
}
#main-container.dark-mode .galgo-tab-item.active, .galgo-tab-item:hover{
  border-bottom: solid 2px var(--white-tone);
  color: white;
}
#main-container.light-mode .galgo-tab-item.active, .galgo-tab-item:hover{
  border-bottom: solid 2px var(--black-tone);
  color: var(--black-tone);
}



.mobile-artist{
}
.m-artist-image{
	height: 300px;
  background-size: cover;
  background-position: center;
  border-bottom: solid 1px var(--border-color);

}
.mobile-artist-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #0000008f, transparent);
  padding: 15px;
  display: flex;
  align-items: flex-end;
  color: white;
}

@media (max-width: 992px) {
  .galgo-tabs{
    gap: 10px;
  }
  .galgo-tabs.lg .galgo-tab-item{
    height: 40px;
    font-size: 18px;
  }
}
/*----------------ARTISTA----------------*/
.artist-section{
  display: flex;
  gap: 50px;
}
.artist-section .artist-data{
  width: 40%;
}
.artist-section .artist-data .artist-image{
  width: 100%; height: 60vh; object-fit: cover;
}
.artist-info{
  padding: 0;
  margin-left: 60px;
}

.artist-section .artist-description{
  width: 60%;
  padding: 15px;
}
.artist-section .artist-name{
  position: relative;
    color: white;
    font-size: 100px;
    text-transform: uppercase;
    z-index: 10;
    margin-top: -60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}
.artist-section .description-content{
  font-size: 25px;
}

@media (max-width: 1400px) {
  .artist-info{
    padding: 0;
    margin-left: 40px;
  }
	.artist-section .artist-name{
      position: relative;
      color: white;
      font-size: 80px;
      text-transform: uppercase;
      z-index: 10;
      margin-top: -40px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
      white-space: nowrap;
  }
}

@media (max-width: 992px) {
	.artist-section{
    display: block;
  }
  .artist-section .artist-data{
    width: 100%;
  }
  .artist-section .artist-data .artist-image{
    width: 100%; height: 300px; object-fit: cover;
  }
  .artist-info{
    padding: 0 15px;
    margin-left: unset;
  }
  .artist-section .artist-name{
    color: white;
    font-size: 60px;
    text-transform: uppercase;
    z-index: 10;
    margin-top: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
  }
  .artist-section .artist-description{
    width: 100%;
  }
  .artist-section .description-content{
    font-size: 20px;
  }
}

/*----------------COLABS----------------*/
.colabs-section{
}
.colabs-section h1{
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 600;
}

.logo-grid {
  display: grid;
   grid-template-columns: repeat(5, 1fr); /* Máximo 5 columnas */
  gap: 24px;
  align-items: center;
  justify-items: center;
  padding: 20px;
}
.logo-item {
  height: 80px;
}
.logo-item img {
  max-width: 100%;
  max-height: 80px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 992px) {
	.colabs-section h1{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
  }
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Máximo 5 columnas */
    gap: 24px;
    align-items: center;
    justify-items: center;
    padding: 20px;
  }

}



/****************STREAMS***************/

.streams-section .stream-name{
	font-size: 36px;
	cursor: pointer;
	transition: all 0.3s;
  border-bottom: solid 1px var(--border-color);
  padding: 10px 0;
  color: #666;
  transform-origin: center left;
}
.streams-section .stream-name.active{
  transform: scale(1.03);
}

.streams-section .stream-name:hover{
	transform: scale(1.03);
}


#main-container.light-mode .streams-section .stream-name.active{
  color: var(--black-tone) !important;
}
#main-container.dark-mode .streams-section .stream-name.active{
  color: var(--white-tone) !important;
}



.search-input-container{
  max-width: 400px;
}
.search-input{
  border-bottom: solid 1px var(--border-color);
}
.search-input input{
  height: 40px;
  border: none;
  background: transparent;
  font-size: 20px;
  color: white;
  padding: 0 15px;
}
.search-input input:focus, .search-input input:active{
  border: none !important
}

.search-section{
  display: flex;
  align-items: center; 
  justify-content: space-between;
  /*background-color: black; */
  z-index: 50; border-bottom: solid 1px var(--border-color); height: 60px; position: sticky; top: 0px;
}
#main-container.light-mode .search-section{
  background: var(--white-tone) !important;
}
#main-container.dark-mode .search-section {
  background: var(--black-tone) !important;
}


.streams-index-title{
  font-weight: 400; font-size: 30px
}

@media (max-width: 992px) {
  .search-section{
    top: 60px;
    display: block;
    padding: 10px 0;
    height: auto;
  }
  .streams-section .stream-name{
    font-size: 30px;
    padding: 5px 0;
  }
  .streams-section .stream-name.active{
    transform: scale(1);
  }

}

@media (max-width: 600px) {
  .search-input-container{
    max-width: 100%;
    margin-top: 4px;
  }
  .search-input input{
    height: 40px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: white;
    padding: 0 15px;
  }
  .streams-index-title{
    font-weight: 400; font-size: 22px
  }
  

}


/****************CONTACTO***************/
.g-pill{
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 8px;
  color: #ad9f9f;
  border: solid 1px var(--border-color);
  transition: all 0.3s;
}
.g-pill:hover{
  color: white;
  border: solid 1px white;
}

#main-container.light-mode .g-pill{
  color: #a7a6b9 !important
}
#main-container.dark-mode .g-pill {
  color: var(--white-tone) !important;
}
#main-container.light-mode .g-pill:hover{
  color: var(--black-tone) !important;
  border: solid 1px var(--black-tone);
}
#main-container.dark-mode .g-pill:hover{
  border: solid 1px var(--white-tone);
}



/****************FOOTER***************/
footer{
  border-top: solid 1px var(--border-color);
  font-size: 22px;
}
footer .footer-container{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer .footer-links{
  font-size: 18px;
}
footer .footer-links a{
  text-decoration: none;
}
footer .footer-links span{
  cursor: pointer;
}

.footer-white{
  background-color: white;
  color: black;
}
.footer-white a{
  color: black !important;
}
.footer-white img{
  mix-blend-mode: exclusion;
}


@media (max-width: 992px) {
	footer .footer-container{
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}



dialog {
    max-width: 90%; 
    margin: auto;
    border-radius: 8px;
    background: black;
    border: solid 1px #242424;
    color: white;
}
.dialog-header{
  padding: 20px;
  border-bottom: solid 1px #242424;
  font-size: 24px;
}
.dialog-body{
  padding: 20px;
}
.dialog-footer{
padding: 20px;
  border-top: solid 1px #242424;
}
dialog::backdrop{
  background-color: #09090999;
}




.form-group input, .form-group textarea{
  padding: 10px;
}
#main-container.light-mode .form-group input, #main-container.light-mode .form-group textarea{
  background-color: #d0d0d036 !important;
}
#main-container.dark-mode .form-group input, #main-container.dark-mode .form-group textarea{
  background-color: #01010136 !important;
}




#main-container.dark-mode .mobile-menu{
	background-color: var(--black-tone) !important;
}

#main-container.light-mode .mobile-menu{
	background-color: var(--white-tone) !important;
}

#main-container.dark-mode .mobile-menu .social-icons{
	color: var(--white-tone) !important;
}
#main-container.light-mode .mobile-menu .social-icons{
	color: var(--black-tone) !important;
}



#main-container.dark-mode .mobile-menu .social-icons a{
  background-color: var(--white-tone) !important;
	color: var(--black-tone) !important;
  padding: 8px;
  border-radius: 50%;
}
#main-container.light-mode .mobile-menu .social-icons a{
	background-color: var(--black-tone) !important;
	color: var(--white-tone) !important;
  padding: 8px;
  border-radius: 50%;
}

