/* Liquid Glass - Modern Music Platform */
:root {
  --primary: #7e00ff;
  --primary-dark: #5c00ce;
  --primary-light: #a64dff;
  --secondary: #00e5ff;
  --accent: #ff00c8;
  --dark: #0a0a1a;
  --darker: #050510;
  --light: #f0f0ff;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html, body {
  height: 100%;
  font-family: "Now Regular", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--light);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--light);
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.5px;
}

h1 { font-size: 70px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  font-size: 15px;
  font-family: "Now Regular";
  color: rgba(240, 240, 255, 0.8);
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

/* Liquid Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
}

.glass-dark {
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(126, 0, 255, 0.2);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
}

/* Helper CSS */
.section-title {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.section-title.center-title {
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  color: var(--light);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h1 {
  font-size: 100px;
  color: rgba(126, 0, 255, 0.1);
  font-family: "Rockville Solid Regular";
  position: absolute;
  left: 0;
  top: -45px;
  width: 100%;
  z-index: -1;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Buttons */
.primary-btn {
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  padding: 14px 25px 12px;
  color: var(--light);
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  letter-spacing: 2px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
  transition: var(--transition);
  z-index: -1;
  border-radius: 50px;
}

.primary-btn:hover:before {
  width: 100%;
}

.primary-btn.border-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--light);
}

.primary-btn.border-btn:before {
  background: var(--primary);
}

.site-btn {
  font-size: 15px;
  color: var(--light);
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 30px;
  width: 100%;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.site-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(126, 0, 255, 0.3);
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: var(--darker);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--secondary);
  animation: loader 1s linear infinite;
}

@keyframes loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header */
.header {
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid rgba(126, 0, 255, 0.2);
}

.header.header--normal {
  position: relative;
  background: rgba(10, 10, 26, 0.9);
}

.header__logo img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    max-width: none;
    flex-shrink: 0;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__logo a {
  display: inline-block;
}

.header__nav {
  text-align: right;
}

.header__menu {
  padding: 31px 0 27px;
  display: inline-block;
  margin-right: 5px;
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
  position: relative;
}

.header__menu ul li.active a:after {
  opacity: 1;
}

.header__menu ul li:hover a:after {
  opacity: 1;
}

.header__menu ul li:hover .dropdown {
  top: 34px;
  opacity: 1;
  visibility: visible;
}

.header__menu ul li:last-child {
  margin-right: 0;
}

.header__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 56px;
  width: 150px;
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  padding: 2px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: 12px;
  border: 1px solid rgba(126, 0, 255, 0.2);
}

.header__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.header__menu ul li .dropdown li a {
  font-size: 14px;
  color: var(--light);
  font-weight: 400;
  padding: 8px 20px;
  text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
  display: none;
}

.header__menu ul li a {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.header__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  content: "";
  transition: var(--transition);
  opacity: 0;
}

.header__menu ul li a:hover {
  color: var(--secondary);
}

.header__right__social {
  display: inline-block;
}

.header__right__social a {
  display: inline-block;
  font-size: 16px;
  color: var(--light);
  margin-right: 16px;
  transition: var(--transition);
}

.header__right__social a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.header__right__social a:last-child {
  margin-right: 0;
}

.slicknav_menu {
    display: none;
    background: rgba(10, 10, 26, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 10px 0;
}

.slicknav_btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    border-radius: 8px;
    margin: 8px 0;
    padding: 10px 12px;
}

.slicknav_nav {
    background: transparent !important;
    padding: 0 !important;
}

.slicknav_nav ul {
    margin: 0 !important;
    padding: 0 !important;
}

.slicknav_nav li {
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slicknav_nav li:last-child {
    border-bottom: none;
}

.slicknav_nav a {
    color: var(--light) !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    transition: var(--transition);
    border-radius: 0 !important;
    margin: 0 !important;
}

.slicknav_nav a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    color: var(--light) !important;
}

.slicknav_nav .fa {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
  padding-top: 400px;
  padding-bottom: 295px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(126, 0, 255, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.15) 0%, transparent 50%);
  z-index: -1;
}

.hero__text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__text span {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.hero__text h1 {
  font-size: 110px;
  font-family: "Rockville Solid Regular";
  color: var(--light);
  margin-bottom: 20px;
  margin-top: 22px;
  text-shadow: 0 0 20px rgba(126, 0, 255, 0.5);
  background: linear-gradient(90deg, var(--light) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__text p {
  color: rgba(240, 240, 255, 0.8);
  margin-bottom: 20px;
  font-size: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__text .play-btn {
  font-size: 26px;
  color: var(--primary);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
  line-height: 90px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  border: 1px solid rgba(126, 0, 255, 0.3);
}

.hero__text .play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(126, 0, 255, 0.5);
}

.hero__text .play-btn i {
  position: relative;
  top: 2px;
  left: 2px;
}

.hero__text .play-btn:after {
  position: absolute;
  left: 15px;
  top: 15px;
  height: 60px;
  width: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.linear__icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -16px;
  animation: mymove 0.5s infinite alternate;
}

.linear__icon i {
  font-size: 50px;
  color: var(--light);
  opacity: 0.7;
}

@keyframes mymove {
  0% { bottom: 0; }
  100% { bottom: -10px; }
}

/* Track Section */
.track {
  padding-top: 120px;
  padding-bottom: 40px;
  overflow: hidden;
}

.track .section-title {
  margin-bottom: 105px;
}

.track__content {
  height: 502px;
  overflow-y: auto;
  padding-right: 10px;
}

.track__content::-webkit-scrollbar {
  width: 6px;
}

.track__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.track__content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
}

.track__all {
  text-align: right;
  margin-bottom: 100px;
}

/* Mix Items */
.youtube__item {
  transition: var(--transition);
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.youtube__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.youtube__item__pic {
  max-width: 100%;
  max-height: 100%;
  height: 400px;
  width: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.youtube__item__pic:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 26, 0.7) 100%);
  z-index: 1;
}

.youtube__item__pic .play-btn {
  font-size: 16px;
  color: var(--light);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
  line-height: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.youtube__item__pic .play-btn:hover {
  transform: scale(1.1);
  background: rgba(126, 0, 255, 0.3);
}

.youtube__item__pic .play-btn i {
  position: relative;
  top: 2px;
  left: 2px;
}

.youtube__item__text {
  padding: 25px 30px 20px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.youtube__item__text h4 {
  font-size: 26px;
  color: var(--light);
  line-height: 34px;
  font-weight: 700;
}

/* DJs Section */
.youtube__iteem__pic {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.youtube__iteem__pic:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(126, 0, 255, 0.3) 0%, rgba(0, 229, 255, 0.3) 100%);
  z-index: 1;
}

.youtube__iteem__pic .play-btn {
  font-size: 16px;
  color: var(--light);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
  line-height: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.youtube__iteem__pic .play-btn:hover {
  transform: scale(1.1);
  background: rgba(126, 0, 255, 0.3);
}

.youtube__iteem__pic .play-btn i {
  position: relative;
  top: 2px;
  left: 2px;
}

/* Pagination */
.pagination__links {
  text-align: center;
  padding-top: 10px;
  margin-top: 40px;
}

.pagination__links.blog__pagination {
  text-align: left;
}

.pagination__links a {
  display: inline-block;
  font-size: 15px;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  margin-right: 6px;
  margin-bottom: 5px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.pagination__links a:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
}

.pagination__links .active {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 5px 15px rgba(126, 0, 255, 0.3);
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    margin-top: 0 !important;
    padding-top: 100px !important;
    height: auto !important;
}

/* Contenedor principal del footer */
.footer .container {
    position: relative;
    z-index: 20;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(126, 0, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.footer.footer--normal {
  margin-top: 0;
}

.footer__address {
  margin-bottom: 50px;
}

.footer__address ul li {
  list-style: none;
  padding-left: 70px;
  position: relative;
  margin-bottom: 30px;
}

.footer__address ul li:last-child {
  margin-bottom: 0;
}

.footer__address ul li i {
  font-size: 18px;
  color: var(--primary);
  height: 50px;
  width: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid var(--glass-border);
}

.footer__address ul li p {
  color: rgba(240, 240, 255, 0.7);
  margin-bottom: 8px;
}

.footer__address ul li h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
}

.footer__social {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.footer__social::before {
  position: absolute;
  left: -46px;
  top: 3px;
  width: 1px;
  height: 130px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.footer__social::after {
  position: absolute;
  right: -50px;
  top: 3px;
  width: 1px;
  height: 130px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.footer__social h2 {
  color: var(--light);
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__social .footer__social__links a {
  font-size: 18px;
  color: var(--primary);
  height: 50px;
  width: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

.footer__social .footer__social__links a:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-5px);
}

.footer__social .footer__social__links a:last-child {
  margin-right: 0;
}

.footer__newslatter {
  margin-bottom: 50px;
}

.footer__newslatter h4 {
  font-size: 26px;
  color: var(--light);
  font-weight: 700;
  margin-bottom: 30px;
}

.footer__newslatter form {
  position: relative;
}

.footer__newslatter form input {
  height: 50px;
  font-size: 15px;
  color: var(--light);
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding-left: 20px;
  border-radius: 50px;
}

.footer__newslatter form input::placeholder {
  color: rgba(240, 240, 255, 0.7);
}

.footer__newslatter form button {
  font-size: 18px;
  color: var(--light);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: var(--transition);
}

.footer__newslatter form button:hover {
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
}

.footer__copyright__text {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright__text p {
  color: rgba(240, 240, 255, 0.7);
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .header__right__social {
    display: none;
  }
  
  .header__menu {
    margin-right: 0;
  }
  
  .header__menu ul li {
    margin-right: 15px;
  }
  
  .hero__text h1 {
    font-size: 80px;
  }
  
  .footer__social::before,
  .footer__social::after {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  
  /* 1. Ocultar la navegación de escritorio que está causando el conflicto */
  .header__nav {
    display: none !important;
  }
  
  /* 2. El menú móvil (Slicknav) debe mostrarse */
  .slicknav_menu {
    display: block !important;
    background: transparent !important; 
    padding: 0;
    margin: 0;
    width: auto; 
    position: static;
  }

  /* 3. Header para alinear Logo y Botón de Menú */
  .header {
    position: relative; 
    padding: 10px 0;
  }

  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: static; 
  }

  /* 4. Logo */
  .header__logo {
    flex: 0 0 auto;
    max-width: 60%;
    margin-right: 15px;
  }
  
  .header__logo img {
    max-height: 50px;
    width: auto !important;
  }
  
  /* 5. Botón y Lista Desplegable (para que ocupe todo el ancho) */
  .slicknav_btn {
    margin: 0 !important;
    float: right;
  }

  .slicknav_nav {
    position: flex;
    top: 75px; 
    left: 0;
    right: 0;
    width: 100% !important;
    margin: 0;
    background: rgba(10, 10, 26, 0.98) !important;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(126, 0, 255, 0.3);
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-radius: 0 0 16px 16px;
  }

  /* 6. Alineación de los Íconos y el Texto */
  .slicknav_nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Mantiene Icono + Texto en una línea */
    padding: 15px 25px !important;
    color: var(--light) !important;
  }
  
  .slicknav_nav .fa {
    display: inline-block !important;
    margin-right: 12px !important;
    width: auto !important;
    flex-shrink: 0;
  }

  /* Ajustes de espacio de la sección Hero */
  .hero { padding-top: 150px; padding-bottom: 100px; }
  .hero__text h1 { font-size: 50px; line-height: 1.1; }
  .section-title h1 { font-size: 60px; }
}

@media only screen and (max-width: 479px) {
  .hero__text h1 {
    font-size: 40px;
  }
  
  .section-title h1 {
    font-size: 50px;
    top: -30px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .youtube__item__text h4 {
    font-size: 20px;
  }
}