/* ==========================================================================
   1. VARIABLES GLOBALES Y RESETEO BASE
   ========================================================================== */
:root {
  --bg-dark: #08040a;
  --neon-magenta: #ff007f;
  --neon-cyan: #00f0ff;
  --text-light: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dark: #52525b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  color: var(--text-light);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

body::selection {
  background-color: var(--neon-cyan);
  color: #000000;
}

.font-rockstar {
  font-family: "Anton", impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   X. NAVEGACIÓN PRINCIPAL FLOTANTE
   ========================================================================== */
.main-nav {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: border-color 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: monospace;
  font-size: 11px;
  font-weight: bold;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  padding: 4px 8px;
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.nav-link.magenta-hover:hover {
  color: var(--neon-magenta);
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.6);
}

@media (max-width: 767px) {
  .main-nav {
    top: 16px;
    width: 92%;
    max-width: 400px;
    padding: 14px 0;
    border-radius: 16px;
  }

  .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-list li {
    flex-shrink: 0;
  }

  .nav-link {
    white-space: nowrap;
    display: block;
    padding: 4px 0;
  }

  .nav-list::after {
    content: "";
    padding-right: 24px;
  }
}

/* ==========================================================================
   2. EFECTOS ESPECIALES
   ========================================================================== */
.gta-text {
  background: linear-gradient(to right, var(--neon-magenta), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
  z-index: 999;
  background-size: 100% 4px;
  pointer-events: none;
  transform: translateZ(0);
}

@media (max-width: 767px) {
  .crt::after {
    display: none;
  }
}

.diagonal-box {
  clip-path: polygon(0 2vw, 100% 0%, 100% calc(100% - 2vw), 0% 100%);
  padding-top: 6vw;
  padding-bottom: 6vw;
  background-image: radial-gradient(circle at center, rgba(255, 0, 127, 0.04) 0%, transparent 60%);
  background-attachment: fixed;
}

.glass-panel {
  background: rgba(15, 10, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.text-magenta {
  color: var(--neon-magenta);
}

.text-cyan {
  color: var(--neon-cyan);
}

.text-white {
  color: #ffffff;
}

.bg-magenta {
  background-color: var(--neon-magenta);
}

.bg-cyan {
  background-color: var(--neon-cyan);
}

.bg-white {
  background-color: #ffffff;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.tape {
  position: absolute;
  width: 90px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 20;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.street-photo {
  border: 8px solid #111;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 127, 0.1);
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  border-radius: 2px;
}

/* ==========================================================================
   3. NAVEGACIÓN HUD
   ========================================================================== */
.hud-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  mix-blend-mode: difference;
}

.nav-left,
.nav-right {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 12px;
}

.nav-right {
  gap: 16px;
}

.nav-svg {
  opacity: 0.7;
  display: none;
}

@media (min-width: 640px) {
  .nav-svg {
    display: block;
  }
}

.live-feed-text {
  color: var(--neon-cyan);
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.eq-bar {
  width: 3px;
  background-color: var(--neon-cyan);
  animation: eq-play 1s infinite ease-in-out alternate;
}

.eq-bar:nth-child(1) {
  animation-delay: 0.1s;
  background-color: var(--neon-magenta);
}

.eq-bar:nth-child(2) {
  animation-delay: 0.3s;
}

.eq-bar:nth-child(3) {
  animation-delay: 0s;
  background-color: var(--neon-magenta);
}

.eq-bar:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes eq-play {
  0% {
    height: 2px;
  }

  100% {
    height: 12px;
  }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #030105;
  z-index: 40;
  will-change: background-color;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBoNDB2NDBIMHoiIGZpbGw9Im5vbmUiLz4KPHBhdGggZD0iTTAgNDBoNDBNNDAgMHY0MCIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+");
  transform: perspective(500px) rotateX(60deg) translateY(-100px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  width: 100%;
  padding: 0 24px;
  cursor: default;
}

/* =======================================================
   Adaptación del logo
   Limitando la altura máxima a 95vh aseguramos que
   siempre deje espacio en portátiles.
   ======================================================= */
.hero-logo {
  width: 100%;
  max-height: 95vh;
  /* Obliga al logo a encogerse si la pantalla es bajita */
  object-fit: contain;
  /* Mantiene la proporción sin deformarse */
  filter: drop-shadow(0 0 50px rgba(255, 0, 127, 0.4));
  transform: translateZ(0);
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  .hero-content {
    transform: translateY(-3vh);
  }

  /* Lo sube ligeramente un 3% para centrado óptico */
}

@media (max-width: 767px) {
  .hero-logo {
    max-width: 90vw;
    max-height: 55svh;
  }
}

.glow-magenta {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.4) 0%, rgba(255, 0, 127, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -10;
  transform: translateZ(0);
  will-change: opacity;
}

.glow-cyan {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, rgba(0, 240, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -10;
  transform: translateZ(0);
  will-change: opacity;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid var(--neon-cyan);
  border-radius: 14px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  display: block;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--neon-cyan);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouse-scroll-anim 1.5s infinite;
  box-shadow: 0 0 6px var(--neon-cyan);
}

@keyframes mouse-scroll-anim {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 14px);
    opacity: 0;
  }
}

.swipe-icon {
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  animation: swipe-up-anim 1.8s ease-in-out infinite;
}

.swipe-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes swipe-up-anim {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(-15px);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 100svh;
  }

  .hero-scroll-indicator {
    bottom: 120px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }
}

/* ==========================================================================
   5. DIVISORES DE TRANSICIÓN 
   ========================================================================== */
.divider-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #050208;
  z-index: 10;
  background-image: radial-gradient(circle at center, rgba(0, 240, 255, 0.15) 0%, transparent 70%), radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 16px 16px;
}

.div-bg-alt {
  background-color: #050208;
  background-image: radial-gradient(circle at center, rgba(255, 0, 127, 0.15) 0%, transparent 70%), radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.div-bg-dark {
  background-color: #030105;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0%, transparent 70%), radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.div-text {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 16px;
  max-width: 56rem;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}

.text-shadow-dark {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 1));
}

.div-subtitle {
  color: var(--neon-cyan);
  letter-spacing: 0.3em;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.line-decor {
  width: 32px;
  height: 1px;
  background-color: var(--neon-cyan);
}

.gloss-text {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.div-title {
  font-family: 'Anton', impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  line-height: 0.9;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 768px) {
  .div-title {
    font-size: 8rem;
  }
}

.div-photo {
  position: absolute;
  z-index: 10;
  opacity: 0;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.photo-pos-1 {
  top: 18%;
  left: 2%;
}

.tape-pos-1 {
  top: -10px;
  left: 10%;
  transform: rotate(4deg);
}

.photo-pos-2 {
  bottom: 18%;
  right: 2%;
}

.tape-pos-2 {
  top: -15px;
  left: 16px;
  transform: rotate(-12deg);
}

.photo-pos-3 {
  top: 18%;
  right: 2%;
}

.tape-pos-3 {
  top: -10px;
  left: 40%;
  transform: rotate(3deg);
}

.photo-pos-4 {
  bottom: 18%;
  left: 2%;
}

.tape-pos-4 {
  top: -8px;
  right: 20%;
  transform: rotate(-6deg);
}

.format-portrait {
  width: clamp(12rem, 50vw, 16rem);
}

.format-landscape {
  width: clamp(16rem, 75vw, 22rem);
}

.format-square {
  width: clamp(14rem, 60vw, 18rem);
}

@media (min-width: 768px) {
  .format-portrait {
    width: clamp(14rem, 20vw, 20rem);
  }

  .format-landscape {
    width: clamp(20rem, 30vw, 32rem);
  }

  .format-square {
    width: clamp(16rem, 24vw, 26rem);
  }

  .photo-pos-1 {
    top: 15%;
    left: 5%;
    width: clamp(14rem, 20vw, 22rem);
  }

  .photo-pos-2 {
    bottom: 15%;
    right: 8%;
    width: clamp(15rem, 22vw, 25rem);
  }

  .photo-pos-3 {
    top: 15%;
    right: 12%;
    width: clamp(15rem, 22vw, 25rem);
  }

  .photo-pos-4 {
    bottom: 15%;
    left: 8%;
    width: clamp(14rem, 20vw, 22rem);
  }
}

.photo-gray-hover {
  filter: grayscale(100%);
  transition: all 0.5s;
}

.photo-gray-hover:hover {
  filter: grayscale(0%);
}

.photo-contrast {
  filter: contrast(125%);
}

.photo-grayscale {
  filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .divider-section {
    height: auto;
    min-height: 100svh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    gap: 40px;
    overflow: hidden;
  }

  .div-text {
    position: relative;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .div-photo {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    max-width: 320px;
    margin: 0 auto;
  }

  .tape {
    display: none;
  }
}

/* ==========================================================================
   6. MULTIMEDIA
   ========================================================================== */
.multimedia-section {
  background-color: #0b0512;
  position: relative;
  z-index: 20;
  box-shadow: 0 0 50px rgba(0, 0, 0, 1);
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 32px;
}

.multimedia-header {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .multimedia-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-tag {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Anton", impact, sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.multimedia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .multimedia-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.video-panel {
  padding: 8px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.5s;
}

@media (min-width: 1024px) {
  .video-panel {
    grid-column: span 8 / span 8;
    transform: rotate(-1deg);
  }

  .video-panel:hover {
    transform: rotate(0deg);
  }
}

.video-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, var(--neon-magenta), var(--neon-cyan));
  border-radius: 12px;
  filter: blur(8px);
  opacity: 0.2;
  transition: opacity 1s;
  z-index: -1;
}

.video-panel:hover .video-glow {
  opacity: 0.4;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: all 0.7s;
}

.video-panel:hover .video-iframe {
  filter: grayscale(0%);
}

.spotify-panel {
  padding: 24px;
  border-radius: 12px;
  position: relative;
}

@media (min-width: 1024px) {
  .spotify-panel {
    grid-column: span 4 / span 4;
    transform: rotate(1deg);
  }
}

.panel-title {
  font-family: "Anton", impact, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.panel-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.spotify-wrapper {
  width: 100%;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  height: 352px;
}

.spotify-iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   7. SECCIÓN SQUAD
   ========================================================================== */
.squad-wrapper {
  background-color: #0d0716;
  overflow: hidden;
  position: relative;
  z-index: 20;
  height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.squad-header {
  padding-left: 32px;
  padding-top: 96px;
  flex-shrink: 0;
  z-index: 20;
  pointer-events: none;
}

@media (min-width: 768px) {
  .squad-header {
    padding-left: 64px;
  }
}

.squad-scroll-container {
  display: flex;
  width: 500vw;
  flex-grow: 1;
  align-items: center;
  padding-bottom: 48px;
}

.squad-panel {
  width: 100vw;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .squad-panel {
    padding: 0 64px;
  }
}

.member-card {
  max-width: 64rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

@media (min-width: 768px) {
  .member-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: clamp(24px, 4vw, 48px);
    gap: clamp(24px, 4vw, 32px);
  }
}

.clip-left {
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.clip-right {
  clip-path: polygon(0 0, 98% 0, 100% 100%, 2% 100%);
}

.member-image-wrapper {
  background-color: #000;
  position: relative;
  overflow: hidden;
  border: 2px solid #27272a;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}

@media (min-width: 768px) {
  .member-image-wrapper {
    aspect-ratio: 1 / 1;
    width: 85%;
    margin: 0 auto;
    max-height: none;
  }
}

.member-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0%) contrast(115%);
  transition: filter 0.7s ease, transform 0.7s ease;
}

@media (min-width: 768px) and (hover: hover) {
  .member-img {
    filter: grayscale(100%) contrast(125%);
    transition: all 0.7s;
  }

  .member-image-wrapper:hover .member-img {
    filter: grayscale(0%);
    transform: scale(1.04);
  }
}

.bg-p1 {
  background-image: url("images/sara.avif");
}

.bg-p2 {
  background-image: url("images/carlos.avif");
}

.bg-p3 {
  background-image: url("images/jaime.avif");
}

.bg-p4 {
  background-image: url("images/irene.avif");
}

.bg-p5 {
  background-image: url("images/nico.avif");
}

.player-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 12px;
  letter-spacing: 0.1em;
  transform: skewX(-10deg);
  color: #000;
}

.tag-magenta {
  background-color: var(--neon-magenta);
}

.tag-cyan {
  background-color: var(--neon-cyan);
}

.position-right {
  left: auto;
  right: 16px;
  transform: skewX(10deg);
}

.member-info {
  padding: 0 16px;
}

.member-role {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.member-name {
  font-family: 'Anton', impact, sans-serif;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

@media (min-width: 768px) {
  .member-name {
    font-size: 3.75rem;
  }
}

@media (max-height: 800px) and (min-width: 768px) {
  .squad-header {
    padding-top: 48px;
  }
}

.member-bio {
  font-size: 14px;
  color: var(--text-muted);
  font-family: monospace;
  line-height: 1.5;
}

.member-hardware {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  font-family: monospace;
  margin-top: 16px;
}

.hw-label {
  color: var(--text-dark);
}

.hw-value {
  font-weight: bold;
}

@media (max-width: 767px) {
  .squad-wrapper {
    height: auto !important;
    overflow: visible !important;
  }

  .squad-scroll-container {
    width: 100% !important;
    flex-direction: column !important;
    padding-bottom: 32px;
  }

  .squad-panel {
    width: 100% !important;
    padding: 24px 16px;
  }

  .squad-header {
    padding-top: 24px;
    padding-left: 20px;
  }

  .member-card {
    padding: 16px;
    gap: 20px;
  }

  .member-image-wrapper {
    width: 65vw;
    max-width: 280px;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .member-info {
    padding: 0 8px;
  }

  .member-name {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .member-role {
    margin-bottom: 12px;
  }

  .member-bio {
    font-size: 13px;
    line-height: 1.5;
  }

  .member-hardware {
    margin-top: 12px;
    padding-top: 12px;
  }
}

/* ==========================================================================
   7.5 SECCIÓN REPERTORIO
   ========================================================================== */
.track-item {
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background-color 0.3s ease;
  padding: 20px 32px;
}

.track-item:hover {
  background-color: rgba(255, 0, 127, 0.03);
}

.track-title {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}

.bank-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 0, 127, 0.08);
  color: var(--neon-magenta);
  padding: 16px 32px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.2em;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: monospace;
}

.bank-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 10px currentColor);
}

.bank-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.track-name-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.repertorio-header {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .track-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .track-item {
    padding: 16px 20px;
    font-size: 14px;
  }

  .track-title {
    font-size: 16px;
  }

  .bank-divider {
    padding: 14px 20px;
    font-size: 13px;
  }

  .bank-icon {
    width: 32px;
    height: 32px;
  }

  .repertorio-header {
    margin-bottom: 32px;
  }
}

/* ==========================================================================
   8. MERCHANDISING
   ========================================================================== */
.merch-section {
  background-color: #0a0512;
  position: relative;
  z-index: 20;
  box-shadow: 0 0 50px rgba(0, 0, 0, 1);
}

.merch-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .merch-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.merch-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--neon-cyan);
  padding: 16px 20px;
  max-width: 480px;
  font-family: monospace;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.merch-disclaimer strong {
  color: var(--text-light);
}

.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .merch-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.merch-subgrid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.merch-card {
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.merch-large {
  height: 100%;
}

.border-magenta-glow {
  border: 1px solid rgba(255, 0, 127, 0.3);
}

.border-magenta-glow:hover {
  border-color: var(--neon-cyan);
}

.border-cyan-glow {
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.border-cyan-glow:hover {
  border-color: var(--neon-magenta);
}

.border-dim {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background-color: #050505;
  overflow: hidden;
}

.merch-large .merch-img-wrapper {
  padding-bottom: 85%;
}

.merch-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(115%) brightness(0.9);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.merch-card:hover .merch-img {
  transform: scale(1.05);
  filter: contrast(125%) brightness(1);
}

.merch-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Anton", impact, sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  color: #000000;
  z-index: 10;
  transform: skewX(-10deg);
}

.merch-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.merch-item-title {
  font-family: "Anton", impact, sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.merch-large .merch-item-title {
  font-size: 2.25rem;
}

.merch-item-desc {
  font-family: monospace;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.merch-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: monospace;
  font-size: 11px;
  color: #71717a;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.merch-thumbnails {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background-color: #050507;
  border-top: 1px solid #18181b;
}

.thumb-label {
  font-family: monospace;
  font-size: 10px;
  color: var(--text-dark);
  letter-spacing: 0.15em;
}

.thumbs-track {
  display: flex;
  gap: 8px;
}

.thumb-btn {
  width: 42px;
  height: 42px;
  background-color: #000;
  border: 1px solid #27272a;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.25s ease;
  padding: 0;
}

.thumb-btn:hover {
  opacity: 0.8;
  border-color: #71717a;
}

.thumb-btn.active {
  opacity: 1;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   9. SECCIÓN CONTACTO Y FORMULARIO
   ========================================================================== */
.contacto-section {
  padding: 128px 32px;
  background-color: var(--bg-dark);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.contacto-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.05);
  border: none;
}

@media (min-width: 768px) {
  .contacto-container {
    padding: 48px;
  }
}

.clip-form {
  clip-path: polygon(0 2%, 100% 0, 98% 100%, 2% 98%);
}

.form-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, var(--neon-cyan), var(--neon-magenta));
}

.form-side-line {
  position: absolute;
  right: 16px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}

.form-content {
  position: relative;
  z-index: 10;
}

.form-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.form-title {
  font-family: "Anton", impact, sans-serif;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  font-family: monospace;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-email {
  color: var(--neon-cyan);
  font-family: monospace;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-form {
  font-family: monospace;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: var(--neon-cyan);
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid var(--neon-cyan);
  color: #ffffff;
  padding: 14px 16px;
  font-family: monospace;
  border-radius: 0;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-magenta);
  border-bottom-color: var(--neon-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
  background-color: rgba(15, 5, 20, 0.8);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #52525b;
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.form-message.success {
  display: block;
  background-color: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
}

.form-message.error {
  display: block;
  background-color: #fce8e6;
  color: #c5221f;
  border: 1px solid #fad2cf;
}

.custom-select-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.select-caret {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--neon-cyan);
  pointer-events: none;
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.form-select:focus+.select-caret {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: var(--neon-magenta);
}

.form-select option {
  background-color: #08040a;
  color: #ffffff;
  padding: 12px;
}

.form-textarea {
  resize: none;
}

.form-submit-container {
  padding-top: 16px;
}

.form-submit-btn {
  width: 100%;
  display: block;
  text-align: center;
  background-color: var(--neon-magenta);
  color: #ffffff;
  font-family: "Anton", impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 20px 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background-color: var(--neon-cyan);
  color: #000000;
  transform: scale(1.02);
}

.main-footer {
  background-color: #040106;
  padding: 64px 32px;
  text-align: center;
  font-family: monospace;
  font-size: 10px;
  color: #52525b;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 20;
}

.footer-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-logo {
  height: 120px;
  width: auto;
  opacity: 0.3;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.footer-gameover {
  color: rgba(0, 240, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-dot {
  width: 4px;
  height: 4px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
}

/* ==========================================================================
   X. REDES SOCIALES (FOOTER)
   ========================================================================== */
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

.btn-youtube:hover {
  color: #ff0000;
  border-color: #ff0000;
  background-color: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3), inset 0 0 10px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
}

.btn-instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
  background-color: rgba(225, 48, 108, 0.05);
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.3), inset 0 0 10px rgba(225, 48, 108, 0.1);
  transform: translateY(-4px);
}

.btn-tiktok:hover {
  color: #00f2fe;
  border-color: #00f2fe;
  background-color: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3), inset 0 0 10px rgba(0, 242, 254, 0.1);
  transform: translateY(-4px);
}

.btn-twitch:hover {
  color: #9146ff;
  border-color: #9146ff;
  background-color: rgba(145, 70, 255, 0.05);
  box-shadow: 0 0 15px rgba(145, 70, 255, 0.3), inset 0 0 10px rgba(145, 70, 255, 0.1);
  transform: translateY(-4px);
}

.btn-x:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.btn-bluesky:hover {
  color: #0085ff;
  border-color: #0085ff;
  background-color: rgba(0, 133, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 133, 255, 0.3), inset 0 0 10px rgba(0, 133, 255, 0.1);
  transform: translateY(-4px);
}

.btn-linktree-featured {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto !important;
  padding: 12px 24px;
  background-color: rgba(57, 224, 155, 0.08);
  color: #39e09b !important;
  border: 1px solid #39e09b !important;
  border-radius: 8px;
  font-family: monospace;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(57, 224, 155, 0.25);
  animation: pulse-linktree 2.5s infinite ease-in-out;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-linktree-featured svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-linktree-featured:hover {
  background-color: #39e09b !important;
  color: #000000 !important;
  border-color: #39e09b !important;
  box-shadow: 0 0 25px rgba(57, 224, 155, 0.8), 0 0 45px rgba(57, 224, 155, 0.4);
  transform: translateY(-4px) scale(1.03);
}

@keyframes pulse-linktree {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(57, 224, 155, 0.2), inset 0 0 8px rgba(57, 224, 155, 0.05);
  }

  50% {
    box-shadow: 0 0 24px rgba(57, 224, 155, 0.6), inset 0 0 12px rgba(57, 224, 155, 0.15);
  }
}

.footer-dev {
  color: #525252;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: -12px;
}

.footer-dev .heart-icon {
  color: #ff2d75;
  font-size: 0.75rem;
  margin: 0 2px;
  animation: pulse-heart 2s infinite ease-in-out;
}

.footer-dev a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-dev a:hover {
  color: #ff2d75;
}

@keyframes pulse-heart {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}