@charset "UTF-8";





/***********************************
1. RESET
************************************/
/* Modelo de caja universal */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Elimina márgenes por defecto */
body, h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}
/* Configuración base del body */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Imágenes y medios responsivos */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/* Formularios */
input, button, textarea, select {
  font: inherit;
  margin: 0;
}
/* Listas sin estilo */
ul, ol {
  list-style: none;
  padding: 0;
}
/* Reducir animaciones para accesibilidad */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Enlaces */
a {
  text-decoration: none;
  transition: 0.3s ease;
}
/* Focus accesible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #f0f0f0;
  outline-offset: 3px;
}
/* Tablas */
table {
  border-collapse: collapse;
  width: 100%;
}
/* Evitar caret en todo el sitio */
* {
  caret-color: transparent !important;   /* quita el caret */
  outline: none !important;              /* quita focus ring */
  -webkit-tap-highlight-color: transparent; /* quita highlight en móviles */
  user-select: none;                      /* opcional: evita selección de texto accidental en divs y botones */
}
/* Para inputs y textareas, mantén caret solo si se desea */
input, textarea {
  user-select: text;    /* permite selección de texto */
  caret-color: auto;    /* caret visible */
  outline: auto;        /* focus visible */
}





/***********************************
2. COMPONENTS
************************************/
/*** PRELOADER ***/
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-circle {
  width: 60px;
  height: 60px;
  border: 6px solid #333333;
  border-top-color: #f0f0f0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.loader-text {
  font-family: Inter-Bold;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#loader-percent {
	margin-top: -80px;
    font-family: Inter-Bold;
    color: #99ff55;
    font-size: 140px;
    letter-spacing: -10px;
}
@media (min-width: 0px) and (max-width: 600px){  
    #loader-percent {
    font-size: 100px;
    }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}





/***********************************
HTML / BODY / SCROLLBAR CUSTOM
***********************************/
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
	
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE/Edge antiguo */
}
/* SCROLLBAR */
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-thumb {
  background-color: #000000;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #000000;
}
body::-webkit-scrollbar-track {
  background: #f0f0f0;
}





/***********************************
HEADER
************************************/
header {
	width: auto;
	height: 88px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	transition: background 0.5s ease, height 0.5s ease, box-shadow 0.5s ease;
}
@media (max-width: 600px){  
	header { height: 60px; }
}
/* ===== HEADER SCROLL STATE ===== */
header.scrolled {
	height: 64px;
	background: rgba(0,0,0,0.75);
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

@media (max-width: 600px){
	header.scrolled {
		height: 52px;
	}
}
/* LOGO DESKTOP AL SCROLL (sí se hace chico) */
header.scrolled .logo {
	width: 100px;
	height: 44px;
	margin-top: 10px;
}
@media (min-width: 600px){  
header.scrolled .logo {
    background-image: url(../images/general/Dave_Midnight_white.svg);
	}
}
/***********************************
LOGO
************************************/
.logo {
    background-image: url(../images/general/Dave_Midnight.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 125px;
    height: 60px;
    margin-top: 19px;
    margin-left: 22px;
    position: absolute;
    z-index: 1;
    /* CRÍTICO */
    transition: 0.5s;
}
/* ===== MOBILE LOGO ===== */
@media (max-width: 600px){  
	.logo {
    background-image: url(../images/general/Dave_Midnight_icon.svg);
    background-position: center center;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: 28px;
    width: 60px;
    height: 60px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 50%;
    box-shadow: 1px 1px 10px rgba(0,0,0,.4);
    /* BLOQUEO TOTAL DE DEFORMACIÓN */
    aspect-ratio: 1 / 1;
	}
	/* EN MOBILE NO SE CAMBIA TAMAÑO */
	header.scrolled .logo {
		width: 60px;
		height: 60px;
		margin-top: 10px;
		margin-left: 10px;
	}
}
/***********************************
MENU / NAVBAR
************************************/
.navbar {
    background: transparent;
    padding: 10px 20px;
    position: fixed;
    top: 10px;
    right: 0;
    z-index: 1001;
    transition: top 0.5s ease;
}
header.scrolled .navbar {
	top: 4px;
}
/***********************************
HAMBURGER
************************************/
.hamburger {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span {
    height: 1px;
    background: #000000;
    transition: all 0.4s ease;
}
/* Blanco en scroll */
header.scrolled .hamburger span {
	background: #ffffff;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 10px);
    background: #f0f0f0;
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -10px);
    background: #f0f0f0;	
}
/***********************************
MENU DESKTOP
************************************/
.desktop-menu {
    list-style: none;
    display: none;
    gap: 40px;
    margin-right: 10px;
}
.desktop-menu li a {
    text-decoration: none;
    font-family: Inter-Bold;
    font-size: 22px;
    color: #000;
    transition: color 0.4s ease, font-size 0.4s ease;
}
/* Scroll */
header.scrolled .desktop-menu li a {
	color: #ffffff;
	font-size: 18px;
}
/* Hover underline */
@media (min-width: 600px){
    .desktop-menu li a {
        position: relative;
    }
    .desktop-menu li a::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0%;
        height: 1px;
        background-color: currentColor;
        transition: width 0.3s ease;
    }
    .desktop-menu li a:hover::after {
        width: 100%;
    }
}
/***********************************
RESPONSIVE VISIBILITY
************************************/
@media (min-width: 600px){
    .desktop-menu {
        display: flex;
        align-items: center;
    }
    .hamburger {
        display: none;
    }
    .menu-overlay {
        display: none !important;
    }
}
/***********************************
MENU MOBILE FULLSCREEN
************************************/
.menu-overlay {
	background-color: #000;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(100%);
	transition: transform 0.5s ease;
	z-index: 1000;
}
.menu-overlay.show {
    transform: translateX(0);
}
.menu-items {
    padding: 0;
    margin: -40px auto 0;
    list-style: none;
	text-align: center;
}
.menu-items li {
    margin: 20px 0;
}
.menu-items li a {
    font-family: Inter-Bold;
    font-size: 80px;
    color: #f0f0f0;
    letter-spacing: 3px;
}
@media (max-width: 600px){  
	.menu-items li a { font-size: 40px; }
}
/* Disable scroll when open */
.no-scroll { overflow: hidden !important; }





/***********************************
FLOWBAND / TEXT
***********************************/
/* WRAPPER PRINCIPAL */
.flowbands-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  z-index: 10;
}
.flowbands-row {
  display: flex;
  white-space: nowrap;
  line-height: 0.75;
  margin: 0;
  padding: 0;
  font-family: Inter-Bold;
  font-size: clamp(52px, 11vw, 110px);
  font-weight: 700;
  letter-spacing: -0.03em;
  position: relative;
  will-change: transform;
  /*animation: colorPulse 25s linear infinite;*/
}
/* ANIMACIÓN DE COLORES */
@keyframes colorPulse {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
.c1 { color: #ff7f50; }
.c2 { color: #47b2ff; }
.c3 { color: #ff47cb; }
.c4 { color: #99ff55; }
/* ITEMS */
.flowbands-item {
  margin-right: 4vw;
  text-shadow: 0 10px 30px #000000;
}
/* FADE OUT */
.flowbands-fade {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 75%,
    rgba(0,0,0,1) 100%
  );
  z-index: 20;
}
@media (min-width: 0px) and (max-width: 600px){  
    .flowbands-fade {
    display: none;
    }
}





/***********************************
FOOTER
***********************************/
:root {
  --fg: #f0f0f0;
  --muted: rgba(255,255,255,.6);
  --line: rgba(255,255,255,.12);
}
footer {
  padding: clamp(80px, 15vw, 120px) 20px 20px;
  overflow: hidden;
}
/* ================= PLANET ================= */
.planet-wrap {
  width: clamp(220px, 40vw, 320px);
  height: clamp(220px, 40vw, 320px);
  margin: 0 auto 70px;
  perspective: 900px;
}
.planet-system {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}
.planet {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset -20px -30px 60px rgba(0,0,0,.9),
    0 0 60px rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/general/Dave_Midnight_icon.svg);
    background-position: calc(50% + 10px) center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* ================= ORBIT ================= */
.orbit {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
.moon {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 10px;
  height: 10px;
  background: #f0f0f0;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255,255,255,.9);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* ================= MENU ================= */
.footer-nav {
  margin-bottom: 30px;
  font-family: Inter-Regular;
  font-size: 14px;
  color: var(--text);
  transition: 0.5s; 
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 36px);
}
.footer-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color .3s ease;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #f0f0f0;
  transition: width .35s ease;
}
.footer-nav a:hover {
  color: #f0f0f0;
}
.footer-nav a:hover::after {
  width: 100%;
}
/* ================= BOTTOM ================= */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter-Regular;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
/* ================= LEFT ================= */
.footer-copy {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: -4px;
}
/* ================= RIGHT ================= */
.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-legal a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color .3s ease;
  font-size: 12px;
}
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #f0f0f0;
  transition: width .35s ease;
}
.footer-legal a:hover {
  color: #f0f0f0;
}
.footer-legal a:hover::after {
  width: 100%;
}





/***********************************
3. PLAYER
************************************/
/* SECTION MAIN / MUSIC  */
.SECTION---MAIN---MUSIC {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: flex-start;
    align-items: flex-start;
}
/* =====================================================
   PLAYER / CAJA PRINCIPAL
===================================================== */
.box_PLAYER {
    width: 280px;
    height: auto;
    position: relative;
    flex: 0 0 280px;
    display: flex;
    z-index: 30;
    transition: 2s;
}
/* =====================================================
   PLAYER SINGLE
===================================================== */
.box_PLAYER---Single {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #121212;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 30px rgba(0,0,0,.3);
}
/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 400px) {
    .SECTION---MAIN---MUSIC {
        justify-content: center;
    }
}





/* =====================================================
   TITLE COVER
===================================================== */
.Title_COVER {
    width: 100%;
    height: auto;
    padding: 10px 0 10px 0;
    position: relative;
	
    font-family: Inter-Bold;
    font-size: 10px;
    text-align: center;
    color: #f0f0f0;
	letter-spacing: 2px;
	
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
}





/* =====================================================
   COVER
===================================================== */
.Single_COVER {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.Single_COVER img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.album-player.is-playing .Single_COVER img {
    transform: scale(1.04);
}





/* =====================================================
   DEGRADADO OVERLAY (ABAJO)
===================================================== */
.Single_COVER::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.35) 60%,
      rgba(0,0,0,0.00) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}
.album-player.is-playing .Single_COVER::after {
    opacity: 1;
}





/* =====================================================
   TRACK TITLE (ENCIMA DEL DEGRADADO)
===================================================== */
.Single_COVER .player-track-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 18px;
    font-family: Inter-Regular;
    font-size: 18px;
    letter-spacing: 0.3px;
    color: #f0f0f0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
	
	display: none; /************************ OFF *******************************/
}
.album-player.is-playing .Single_COVER .player-track-title {
    opacity: 1;
    transform: translateY(0px);
}





/* =====================================================
   CONTENIDO (INFO + BOTONES + PROGRESO)
   Creamos un wrapper para mantener padding interno
===================================================== */
.Single_CONTENT {
    display: flex;
    flex-direction: column;        
    gap: 12px;
    padding: 18px; /* padding solo para la info */
    box-sizing: border-box;
    font-family: Inter-Regular;
}





/* =====================================================
   PLAYER WRAPPER
===================================================== */
.Single_TRACKS {
    display: flex;
    flex-direction: column;
    gap: 12px;
}





/* =====================================================
   PROGRESS + TIME
===================================================== */
.player-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.current-time,
.total-time {
    font-family: Inter-Regular;
    font-size: 12px;
    color: #777777;
    padding: 2px 4px;
    display: inline-block;
    width: 38px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
.player-progress {
    flex: 1;
    height: 4px;
    background: #2b2b2b;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
}
.player-progress-bar {
    width: 0%;
    height: 100%;
    background: #ff7f50;
    border-radius: 2px;
    transition: width .1s linear;
}





/* =====================================================
   CONTROLS
===================================================== */
.player-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
}
.player-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #777777;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}
/* SVG base */
.player-btn svg {
    width: 26px;
    height: 26px;
    fill: #777777;
    transition: fill .25s ease;
}
/* Hover / active */
.player-btn:hover svg,
.player-btn:active svg {
    fill: #ff7f50;
}
.player-btn:hover,
.player-btn:active {
    border-color: #ff7f50;
}
/* Mobile: sin hover visual */
@media (max-width: 600px) {
    .player-btn:hover svg,
    .player-btn:active svg {
        fill: #777777;
    }
    .player-btn:hover,
    .player-btn:active {
        border: 1px solid #777777;
    }
}
/* Estado reproduciendo */
.album-player.is-playing .player-btn svg {
    fill: #ff7f50;
}
.album-player.is-playing .player-btn {
    border-color: #ff7f50;
}
/* =====================================================
   PLAYLIST
===================================================== */
.album-playlist {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.album-playlist li {
    /*background-color: #101010;*/
    padding: 4px 0 4px 0;
    font-family: Inter-Regular;
    font-size: 15px;
    color: #777777;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}
.album-playlist li:hover {
    color: #ff7f50;
	/*color: #216447;*/
}
@media (max-width: 600px) {
.album-playlist li:hover {
    color: #777777;
}
}
.album-playlist li.is-active {
    color: #ff7f50;
    /*transform: translateX(4px);*/
}





/***********************************
4. THEME
************************************/
/* FONTS / INTER (TTF) */
@font-face {
  font-family: Inter-Thin;
  src: url("../fonts/Inter-Thin.ttf") format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: Inter-Extra-Light;
  src: url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: Inter-Light;
  src: url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Inter-Regular;
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Inter-Medium;
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Inter-Semi-Bold;
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Inter-Bold;
  src: url("../fonts/Inter-Bold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Inter-Extra-Bold;
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Inter-Black;
  src: url('../fonts/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}





/***********************************
ROOT / VAR
***********************************/
:root {
  --bg: #000000;
  --text: #f0f0f0;
  --transition: 0.5s ease;
}





/***********************************
TIPOGRAFÍA
***********************************/
h2 {
  margin: 0 0 16px -4px;
  font-family: Inter-Bold;
  font-size: 120px;
  line-height: 100px;
  color: var(--text);
  letter-spacing: -2px;
  transition: 0.5s; 
}
@media (min-width: 0px) and (max-width: 600px){  
h2 {
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -1px;
}
}
h3 {
  margin: 0;
  padding-right: 40px;
  position: relative;
  right: 0%;
  font-family: Inter-Bold;
  font-size: 200px;
  line-height: 130px;
  text-align: right;
  color: var(--text);
  letter-spacing: -8px;
  text-shadow: 2px 2px 30px rgba(0,0,0,.6);
  z-index: 20;
  transition: 2s; 
}
@media (min-width: 0px) and (max-width: 1300px){  
h3 {
  font-size: 70px;
  line-height: 48px;
  text-align: right;
  letter-spacing: -2px;
  z-index: 30;
}
}
h4 {
  margin: 0 0 -70px 0;
  position: relative;
  font-family: Inter-Bold;
  font-size: 90px;
  text-align: left;
  color: var(--text);
  letter-spacing: -5px;
  text-transform: uppercase;
  transition: 2s; 
}
@media (max-width: 400px) { 
h4 {
  margin: 0 auto -70px auto;
  font-size: 70px;
  text-align: center;
  letter-spacing: -2px;
}
}
p {
  font-family: Inter-Regular;
  font-size: 24px;
  line-height: 32px;
  color: var(--text);
  transition: 0.5s; 
}
.subtitle-home {
    font-family: Inter-Regular;
    font-size: 24px;
    line-height: 32px;
    font-weight: normal;
    color: var(--text);
    letter-spacing: normal;
    vertical-align: middle;
    transition: 0.5s; 
}





/***********************************
BUTTON
***********************************/
button.home {
    background-color: #f0f0f0;
    margin: 40px 0 0 0;
    padding: 10px 30px;
    font-family: Inter-Bold;position: absolute;
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    border: 2px solid #f0f0f0;
    border-radius: 40px;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
button.home:hover {
    background: transparent;
    color: #f0f0f0;
    border: 2px solid #f0f0f0;
    transform: translateY(-6px);
}





/***********************************
SCROLL ARROW
***********************************/
.scroll-arrow {
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);

    width:40px;
    height:100px;
	margin: 140px 0 0 0;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:50;
    animation:pulseArrow 2s ease-in-out infinite;
}
@media (max-width: 600px) {
    .scroll-arrow {
    width: 40px;
    height: 54px;
	margin: 60px 0 0 0;
  }
}
.scroll-arrow svg {
    width:100%;
    height:100%;
}
.scroll-arrow line,
.scroll-arrow polyline {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@keyframes pulseArrow {
    0% {
        transform:translate(-50%, -50%) translateY(-12px);
        /*opacity:0.5;*/
    }
    50% {
        transform:translate(-50%, -50%) translateY(12px);
        /*opacity:1;*/
    }
    100% {
        transform:translate(-50%, -50%) translateY(-12px);
        /*opacity:0.5;*/
    }
}





/***********************************
5. LAYOUT
************************************/
/* WELCOME CONTENT */
.welcome-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px 0 20px;
  max-width: 1200px;
  text-align: left;
  z-index: 2;
  transition: 0.5s; 
}
.welcome-content-intro {
  max-width: 100%;
  margin-top: -100px;
}





/***********************************
VIDEO BACKGROUND
************************************/
.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.video-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-background .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    var(--bg) 100%
  );
  z-index: 2;
}





/***********************************
TITLE MUSIC (CUTOUT EFFECT)
************************************/
.video-title {
  position: absolute;
  margin-top: -80px;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  font-family: Inter-Bold;
  text-align: center;
  color: var(--text);
  text-transform: uppercase;
  font-size: clamp(90px, 15vw, 240px);
  letter-spacing: clamp(-5px, -0.6vw, -1px);
  animation: musicGlow 4s ease-in-out infinite;
}
/***********************************
ANIMATION
************************************/
@keyframes musicGlow {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.03);
    filter: blur(0.3px);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 0.85;
  }
}


/***********************************************************
SECTION NEW MUSIC / HOME
************************************************************/
.LAYOUT-home-master {
  width: 80%;
  margin: 0 0 0 16%;
}
@media (max-width: 788px) {
    .LAYOUT-home-master {
		width: 100%;
		margin: 0 auto 0 auto;
    }
}

/***********************************
SECTION MORE MUSIC 
************************************/
.release-section {
  background: linear-gradient(to bottom, #121212 60%, #000000 100%);
  width: 100%;
  margin-top: -470px;
  padding: 80px 8% 120px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  animation: waveTop 6s ease-in-out infinite;
  transition: 2s;
}
@keyframes waveTop {
  0% {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }
}
    @media (max-width: 1200px){  
    .release-section {
      margin-top: -200px;
    }
}


.release-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 700px;
  height: 700px;
  z-index: 0;
}
.release-grid {
  margin-left: 6%;
  padding-top: 60px; 
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* LEFT */
.release-info {
  display: flex;
  flex-direction: column;
}
.release-tag {
  font-size: 14px;
  letter-spacing: 3px;
  font-family: Inter, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.release-title {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6vw, 120px);
  line-height: 0.9;
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.release-description {
  font-family: Inter, sans-serif;
  font-size: 18px;
  max-width: 520px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}
/* RIGHT SLIDER */
.release-slider {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}
.slider-box {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  box-shadow: 0px 30px 70px rgba(0,0,0,0.6);
}
/* SLIDES */
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.2s ease-in-out, transform 4s ease-in-out;
}
.slider-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
/* RESPONSIVE */
@media (max-width: 980px) {
  .release-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .release-slider {
    max-width: 100%;
  }
  .slider-box {
    width: 100%;
    height: 330px;
	margin-top: 70px;
    border-radius: 20px;
  }
}





/***********************************************************
MASTER SECTION MUSIC -------- ALBUMS, SINGLES, REMIXES
************************************************************/
.LAYOUT-music-master {
  width: 100%;
  display: flex;
  flex-direction: column;
}
/***********************************
SUB SECTIONS
************************************/
.music-block {
  position: relative;
  width: 100%;
  padding: clamp(80px, 8vw, 120px) 0;
  /* auto height (depende del contenido) */
  height: auto;
  /* background parallax */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  /*clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  animation: waveTop 6s ease-in-out infinite;*/
}
/***********************************
TRANSICIÓN ENTRE SECCIONES 
************************************/
.music-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 120px;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    var(--bg) 100%
  );

  pointer-events: none;
}
/***********************************
BACKGROUND IMAGES
************************************/
.music-block.album {
    background-image: url(../images/section/music/album.jpg);
}
.music-block.single {
    background-image: url(../images/section/music/single.jpg);
}
.music-block.remix {
    background-image: url(../images/section/music/remix.jpg);
}
/***********************************
OVERLAY
************************************/
.music-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.48) 0%,
    rgba(0,0,0,0.60) 60%,
    rgba(0,0,0,0.80) 100%
  );
  z-index: 1;
}
/***********************************
CONTENT
************************************/
.music-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
/***********************************
MOBILE FIX
************************************/
@media (max-width: 900px) {
  .music-block {
    background-attachment: scroll;
  }
}





/* SECTION FULLSCREEN TITLE */
.fullscreen-section {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 2s;
  background: transparent;
  overflow: hidden;
  padding: 0 4%;
  margin: 0px 0 -200px 0;
}
.fullscreen-title {
  width: 100%;
  margin: 0;
  font-family: Inter-Extra-Bold;
  font-weight: 800;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  line-height: 0.82;
  font-size: clamp(50px, 10vw, 200px);
}
.fullscreen-title span {
  display: block;
  width: 100%;
  font-size: clamp(60px, 13vw, 260px);
}
.fullscreen-title span:first-child {
  text-align: left;
}
.fullscreen-title span:last-child {
  text-align: right;
}
/* Mobile ajuste fino */
@media (max-width: 600px) {
  .fullscreen-section {
	margin-top: -100px;
    padding: 0 6%;
  }
  .fullscreen-title {
    line-height: 0.9;
    letter-spacing: -0.03em;
  }	
}





/***********************************************************
MASTER SECTION ABOUT 
************************************************************/
.about-master {
    background-color: #16D29C;
    width: 100%;
    padding: 200px 10% 0px 10%;
    display: flex;
    flex-direction: column;
    color: #99ff55;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}
@media (max-width: 600px) {
.about-master {
    padding: 150px 10% 0px 10%;
}
}
.about-bio {
    font-family: Inter-Bold;
    color: #FFF81E;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -2px;
	z-index: 50;
    transition: 0.5s;
}
@media (max-width: 600px) {
.about-bio {
    font-size: 40px;
    line-height: 38px;
    letter-spacing: 0px;
}
}
.about-bio-quotes {
	margin: 0 0 -850px 0;
	position: relative;
    font-family: Inter-Extra-Bold;
    color: #f0f0f0;
    font-size: 200px;
    line-height: 166px;
    letter-spacing: -2px;
	text-transform: uppercase;
	z-index: -1;
    transition: 2s;
}
@media (max-width: 1175px) {
.about-bio-quotes {
    font-size: 120px;
    line-height: 100px;
    letter-spacing: -1px;
}
}
@media (max-width: 600px) {
.about-bio-quotes {
	margin: 0 0 -640px 0;
    font-size: 62px;
    line-height: 52px;
    letter-spacing: -1px;
}
}
.about-image-01 {
    background-image: url(../images/section/about/dave_01.png);
    background-position: center center;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    width: 400px;
    height: 600px;
    margin: 0 0 0 4%;
    position: relative;
    border-radius: 10px;
    box-shadow: 2px 2px 20px rgba(0,0,0,.16);
    z-index: -1;
    transition: 2s;
}
.about-image-02 {
    background-image: url(../images/section/about/dave_02.png);
    background-position: center center;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    width: 340px;
    height: 340px;
    margin: 0 0 0 28%;
    position: relative;
    transform: rotate(0deg);
    border-radius: 10px;
    box-shadow: 2px 2px 20px rgba(0,0,0,.16);
    z-index: -1;
    transition: 2s;
}
.about-image-03 {
    background-image: url(../images/section/about/dave_03.png);
    background-position: center center;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    width: 240px;
    height: 240px;
    margin: 0 0 0 24%;
    position: relative;
    border-radius: 50%;
    box-shadow: 2px 2px 20px rgba(0,0,0,.16);
    z-index: -1;
    transition: 2s;
}
@media (max-width: 600px) {
  .about-image-01 {
    width: 300px;
    height: 450px;
	margin: 0 0 0 0;
  }
  .about-image-02 {
    width: 300px;
    height: 300px;
	margin: 0 0 0 6%;
  }
  .about-image-03 {
    width: 200px;
    height: 200px;
	margin: 0 0 0 20%;
  }
}





/***********************************************************
MASTER SECTION PRIVACY 
************************************************************/
.privacy-master {
    width: 100%;
	height: auto;
    padding: 200px 10% 100px 10%;
	transition: 0.5s;
}
.privacy-info {
    font-family: Inter-Extra-Bold;
    font-size: 30px;
    line-height: 30px;
	text-transform: uppercase;
    transition: 0.5s;
}
/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-btn {
  background: transparent;
  border: 1px solid var(--text);
  font-family: Inter-Bold;
  color: var(--text);
  margin-bottom: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}
.tab-btn:hover {
  background: var(--text);
  color: var(--bg);
}
.tab-btn.active {
  background: var(--text);
  color: var(--bg);
  font-weight: bold;
}
/* Contenido */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}









