    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background-color: #010001;
      color: #ffffff;
      font-family: 'Montserrat', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 1.1rem;
      padding: 1rem;
      text-align: center;
      overflow-x: hidden;
      -webkit-user-select: none; /* Safari */
      -ms-user-select: none;     /* IE 10 y superior */
      user-select: none;         /* Estándar */
    }
    @font-face { font-family: 'MontserratLocal'; src: url('../FONTS/Montserrat-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }
    @font-face { font-family: 'MontserratLocal'; src: url('../FONTS/Montserrat-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
    @font-face { font-family: 'CaveatLocal'; src: url('../FONTS/Caveat-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }

    /* Botón del menú (Hamburguesa) */
    .menu-btn {
      position: fixed;
      top: 2rem;
      left: 1rem;
      z-index: 2000;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 10px;
      opacity: 0;
      transition: 0.3s;
      pointer-events: none;
    }
    .menu-btn.open { opacity: 1; pointer-events: auto; }
    .menu-btn span {
      display: block;
      width: 30px;
      height: 3px;
      background: #4a72b8 ;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 2px;
    }

    /* Transformación cuando el sidebar está ACTIVO */
    .menu-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: #c47a3a; }
    .menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
    .menu-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: #c47a3a; }

    /* Botón del menú (Hamburguesa) LIGTH*/
   

        body.light-mode .menu-btn span { background: #c47a3a ; }
    /* Transformación cuando el sidebar está ACTIVO-LIGHT */
    body.light-mode .menu-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: #4a72b8; }
    body.light-mode .menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
    body.light-mode .menu-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: #4a72b8; }

    .sidebar {
      position: fixed;
      top: 0;
      left: -320px;
      width: 300px;
      height: 100%;
      background: #080808;
      border-right: 1px solid #4a72b8;
      z-index: 1500;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 6rem 2rem 1.5rem 2rem; /* Espacio para que el botón no estorbe */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .sidebar.active { left: 0; box-shadow: 0px 0 30px #c47a3a; }

    .sidebar-nav h3 {
      color: #c5c5c5;
      text-shadow: 2px 2px 8px rgba(0, 255, 0, 0.3);
      font-size: 1.3rem;
      letter-spacing: .7px;
      margin-bottom: 2rem;
    }

    .nav-descargas {
      display: block;
      font-family: 'MontserratLocal', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      text-decoration: none; 
      margin: .4rem;
      text-align: center;
      white-space: nowrap;
      background: linear-gradient(180deg, #c47a3a, #4a72b8); 
      -webkit-background-clip: text; 
      background-clip: text; 
      color: transparent;
      transition: 0.3s; 
      filter: drop-shadow(1px 1px 5px rgba(255, 255, 255, 0.3));
    }
    .nav-descargas:hover { color: #c47a3a; padding-right: 10px; }
    .nav-descargas.v2:hover { color: #4a72b8a8; padding-right: 10px;}

    .sidebar-divider { height: 1px; background: rgba(69, 121, 211, 0.4); margin: auto; }
    .sidebar-info { color: #cccccc; font-size: 0.8rem; }

    /* ── Logo text ── */
    .logo {
      margin-bottom: 2.5rem;
      line-height: 1;
    }
    .logo-bitmix {
      font-family: 'MontserratLocal', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 15vw, 7rem);
      color: #c47a3a;
      letter-spacing: 0.02em;
      display: block;
    }
    .logo-bitmix sup {
      font-size: 0.2em; 
      vertical-align: super; 
      font-weight: 300; 
      margin-left: 0.1em;
      color: rgba(235, 199, 168, 0.502);
      position: relative;
      bottom: 2.7em;
      vertical-align: baseline;
    }
    .logo-divider {
      display: block;
      height: 3px;
      background: linear-gradient(90deg, transparent, #c47a3a, transparent);
      margin: auto;
      width: 500px;
      max-width: 90vw;
    }
    .studio-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: fit-content;
      margin: auto;
    }
    .logo-studio {
      font-family: 'MontserratLocal', sans-serif;
      font-weight: 400;
      font-size: clamp(1.6rem, 12vw, 5.8rem);
      color: #4a72b8;
      letter-spacing: 0.08em;
      display: block;
    }
    .logo-studio sup {
      font-size: 0.2em; 
      vertical-align: super; 
      font-weight: 300; 
      margin-left: 0.1em;
      color: rgba(235, 199, 168, 0.502);
      position: relative;
      bottom: 2.7em;
      vertical-align: baseline;
    }
    .logo-mx {
      font-family: 'CaveatLocal', cursive;
      font-style: italic;
      font-size: clamp(1.4rem, 10vw, 5rem);
      color: #4a72b8;
      position: absolute;
      right: 0.4em;
      bottom: -0.5em;
      line-height: 1;
    }
    /* ── Tagline ── */
    .tagline {
      font-size: clamp(0.85rem, 2.5vw, 1.1rem);
      color: #dddddd;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 2rem;
      margin-bottom: 2.5rem;
    }
    /* ── Coming Soon badge ── */
    .badge {
      display: inline-block;
      background: linear-gradient(135deg, #c47a3a 0%, #a05a20 100%);
      color: #fff;
      font-weight: 700;
      font-size: clamp(0.9rem, 4vw, 1.3rem);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.6rem 1.5rem;
      margin-top: 1rem;
      margin-bottom: 2.5rem;
      width: auto;
      max-width: 90vw;
      white-space: nowrap;
    }
    /* ── Description ── */
    .description {
      max-width: 560px;
      font-size: clamp(1.2rem, 2vw, 1rem);
      color: #dddddd;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      text-shadow: 2px 2px 8px #4a72b8;
    }
    .description span { color: #c47a3a; font-weight: 700; }
    /* ── Services pills ── */
    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3.5rem;
      max-width: 600px;
      width: 100%;
    }
    .pill {
      flex-grow: 1;
      flex-basis: auto;
      min-height: 3.1rem;
      align-self: center;
      text-align: center;
      background: rgba(74, 114, 184, 0.12);
      border: 1px solid rgba(74, 114, 184, 0.35);
      color: #7aa0d4;
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1rem; 
      border-radius: 999px;
      white-space: nowrap;
      cursor: pointer;
      transition: transform 0.3s ease, background 0.3s, box-shadow 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pill a {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center; justify-content: center; width: 100%; height: 100%; padding: 0.4rem 1rem;
    }
    .pill:hover { background: rgba(74, 114, 184, 0.30); transform: translateX(-4px) rotate(0deg); padding: 0.4rem 1rem; }
    .pill:active { transform: translateY(-1px) rotate(-1deg); box-shadow: inset 0 2px 5px rgba(0, 0, 0, .05); background: rgba(74, 114, 184, 0.4); padding: 0.4rem 1rem; }
    /* Quitamos el cursor de link para Programacion */
    
    /* ── Footer ── */
    footer {
      font-family: 'MontserratLocal', sans-serif;
      font-weight: 400;
      margin-top: 4rem;
      font-size: .90rem;
      color: #c5c5c5;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
      margin-top: auto;
      padding-top: 2rem;
      line-height: 1.5;
      -webkit-user-select: text; 
      -ms-user-select: text;
      user-select: text;
    }
    .sidebar-footer {
      font-family: 'MontserratLocal', sans-serif;
      font-weight: 400;
      font-size: .70rem;
      color: #c5c5c5;
      letter-spacing: 0.08em;
      text-align: center;
      margin-bottom: 1rem;
      margin-top: auto;
      padding-top: 2rem;
      line-height: 1.5;
      -webkit-user-select: text; 
      -ms-user-select: text;
      user-select: text;
    }
    .f-bitmix { font-family: 'MontserrtLocal', sans-serif; font-weight: 700; font-size: 1rem; color: #c47a3a; letter-spacing: 0.08em; }
    .f-studio { font-family: 'MontserratLocal', sans-serif; font-size: 1rem; color: #4a72b8; letter-spacing: 0.08em; }
    .f-mx { font-family: 'CaveatLocal', sans-serif; font-weight: 400; font-size: 1.3rem; color: #4a72b8; letter-spacing: 0.08em; }
    
    footer a { font-size: .90rem; color: #c5c5c5; text-decoration: none; }
    .sidebar-footer a { font-size: .65rem; color: #c5c5c5; text-decoration: none; }

    /*Animación de logo (por si estas de metiche)*/
    .logo-container { pointer-events: none; margin-top: 0; }
    .logo-animate {
      display: block;
      width: 100%;
      max-width: 500px;
      height: auto;
      margin: auto;
      display: block;
      pointer-events: none;
      animation: revealAndWait 10s ease-in-out infinite;
    }
    
    @keyframes revealAndWait { 
      0% { opacity: 0; transform: scale(1.1); filter: brightness(0.5) blur(8px); }
      10% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 255, 234, 0.4)); }
      40% { opacity: 1; transform: scale(1); filter: brightness(1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5)); }
      80% { opacity: 1; transform: scale(1); filter: brightness(1); }
      100% { opacity: 0; transform: scale(0.95); filter: blur(5px); }
    }
  
    /* --- ESTILOS DEL BOTÓN Dark / Light --- */
    .theme-switch-wrapper { display: flex; align-items: center; justify-content: center; margin-top: 35px; }
    .theme-switch { display: inline-block; position: relative; width: 50px; height: 26px; }
    .theme-switch input { opacity: 0; width: 0; height: 0; }

    .slider {
      position: absolute; cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      border: 1px solid #c47a3a;
      transition: .4s;
      border-radius: 34px;
    }
    .slider:before {
      position: absolute; content: "";
      height: 18px; width: 18px;
      left: 3px; bottom: 3px;
      background-color: #4a72b8;
      transition: .4s;
      border-radius: 50%;
    }
    input:checked + .slider { background-color: #4a72b8; border-color: #c47a3a; }
    input:checked + .slider:before { transform: translateX(24px); background-color: #c47a3a; }

    /* --- VARIABLES DEL MODO CLARO (.light-mode) --- */
    body.light-mode { background-color: #dadada; color: #1a1a1a; }
    body.light-mode .sidebar { background: #cccccc; border-right: 1px solid #c47a3a; }
    body.light-mode .sidebar.active { left: 0; box-shadow: 10px 0 30px #4a72b8; }
    body.light-mode .badge { background: linear-gradient(135deg, #4a72b8b0 0%, #2b5eb6b9 100%);}
    body.light-mode .tagline, body.light-mode .sidebar-info { color: #2b2b2b; }
    body.light-mode .description { text-shadow: 2px 2px 8px #c47a3a; color: #000000; font-weight: bold; }
    body.light-mode .description span { color: #4a72b8; font-weight: bold; text-shadow: 2px 2px 8px #c47a3a; }
    body.light-mode .sidebar-nav h3 { color: #1a1a1a; text-shadow: 1px 1px 5px rgba(0, 255, 0, 0.3); }
    body.light-mode footer, body.light-mode .sidebar-footer { color: #2e2e2e; }
    body.light-mode footer a, body.light-mode .sidebar-footer a { color: #999999; font-weight: 600; }
    body.light-mode .pill { background: rgba(181, 141, 71, 0.30); border: 1px solid #c47a3a; color: #855f2b; }