    .menu-hamburguesa-container {
      position: fixed;
      top: 20px;
      left: 24px;
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .menu-hamburguesa-btn {
      background: rgba(0,255,255,0.18);
      border: none;
      border-radius: 12px;
      padding: 7px 11px;
      color: #fff;
      cursor: pointer;
      font-size: 1.3em;
      margin-bottom: 8px;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .menu-hamburguesa-btn:active {
      background: rgba(0,255,255,0.35);
    }
    .botones-panel {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-top: 0;
      margin-bottom: 8px;
      background: rgba(20,20,20,0.80);
      border-radius: 14px;
      padding: 10px 8px;
      box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    }
    .botones-panel.show {
      display: flex;
    }
    .boton-ajuste-vertical {
      width: 150px;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,255,255,0.18);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 10px 16px;
      font-size: 1.08em;
      cursor: pointer;
      transition: background 0.2s;
    }
    .boton-ajuste-vertical:active {
      background: rgba(0,255,255,0.35);
    }
    @media (max-width: 500px) {
      .menu-hamburguesa-container {
        left: 6px;
        top: 6px;
      }
      .boton-ajuste-vertical {
        width: 120px;
        font-size: .96em;
        padding: 8px 10px;
      }
    }
    /* --- ESTILOS TABLÓN DE NOVEDADES MODIFICADOS --- */
    #novedades-modal {
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      background: rgba(20,24,32,0.78);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000; /* Por debajo de la imagen fullscreen (que usa 9999) */
      padding: 0;
      animation: fadeIn 0.5s;
    }
    #novedades-box {
      background: rgba(36,38,56,0.98);
      border-radius: 18px;
      box-shadow: 0 4px 40px #000a;
      min-width: 260px;
      max-width: 380px;
      width: 95vw;
      max-height: 70vh;
      padding: 24px 18px 12px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    #novedades-content {
      width: 100%;
      max-height: 42vh;
      overflow-y: auto;
      overflow-x: hidden;
      margin-bottom: 8px;
    }
    #novedades-box h2 {
      margin-top: 0;
      font-size: 1.6em;
      color: #00f6ff;
      text-align: center;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
      text-shadow: 1px 2px 12px #0008;
    }
    .novedad-linea {
      font-size: 1.08em;
      color: #fff;
      margin-bottom: 8px;
      text-align: center;
      word-break: break-word;
      max-width: 98%;
    }
    .novedad-img {
      display: block;
      margin: 14px auto 14px auto;
      max-width: 230px;
      max-height: 110px;
      border-radius: 14px;
      border: 3px ridge #00e6ff;
      box-shadow: 0 3px 12px #005a8c33;
      object-fit: contain;
    }
    #novedades-vale {
      margin-top: 4px;
      background: linear-gradient(90deg,#00f6ff,#0f0c29 120%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.08em;
      font-family: inherit;
      padding: 6px 28px;
      box-shadow: 0 3px 12px #0007;
      cursor: pointer;
      transition: background .2s;
    }
    #novedades-vale:hover {
      background: linear-gradient(90deg,#0ff,#302b63 120%);
    }
    @media (max-width:700px) {
      #novedades-box { min-width: 95vw; max-width: 97vw; padding: 8px 2vw 5px 2vw; }
      .novedad-img { max-width: 92vw; max-height: 80px;}
    }
html, body {
      margin: 0;
      padding: 0;
      width: 100vw;
      min-width: 100vw;
      height: 100vh;
      overflow-x: hidden;
      overflow-y: auto;
    }
    body {
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
      min-height: 100vh;
      color: white;
      animation: backgroundMove 20s infinite alternate;
      width: 100vw;
      min-width: 100vw;
    }
    @keyframes backgroundMove {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }
    .fullscreen-img {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: 9999;
      display: block;
      transition: opacity 0.5s ease;
    }
    .hidden {
      display: none !important;
    }

    /* Botones del menú hamburguesa: mismo estilo para los tres */
    .boton-ajuste-vertical {
      width: 150px;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,255,255,0.18);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 10px 16px;
      font-size: 1.08em;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 10px 0 rgba(0,255,255,0.08);
      margin: 0;
    }
    .boton-ajuste-vertical:hover {
      background: rgba(0,255,255,0.32);
      box-shadow: 0 4px 18px 0 rgba(0,255,255,0.14);
    }
    .boton-ajuste-vertical:active {
      background: rgba(0,255,255,0.40);
    }
    .margen-grande-arriba {
      margin-top: 90px;
    }
    .section-title {
      margin-left: 64px;
      width: calc(100vw - 64px);
      max-width: calc(100vw - 64px);
      box-sizing: border-box;
      padding-left: 24px;
      padding-right: 24px;
      text-align: left;
      margin-bottom: 12px;
      font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
      font-size: 2.1rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-shadow: 0 2px 12px #000, 0 0px 2px #222;
      color: #fff;
      border-left: 5px solid #00ffff66;
      padding-left: 12px;
      margin-right: 0;
    }
    .menu-buttons-row-wrapper {
      display: flex;
      align-items: center;
      margin-left: 32px;
      width: calc(100vw - 32px);
      max-width: calc(100vw - 32px);
      box-sizing: border-box;
      padding-left: 0;
      padding-right: 0;
      position: relative;
      margin-bottom: 25px;
      min-height: 180px;
      margin-right: 0;
    }
    .menu-buttons-row {
      display: inline-flex;
      gap: 40px;
      overflow-x: auto;
      overflow-y: visible;
      white-space: nowrap;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-behavior: smooth;
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      box-sizing: border-box;
      padding: 32px 0;
      margin-left: 0;
      margin-right: 0;
    }
    .menu-buttons-row::-webkit-scrollbar {
      display: none;
    }
    .carousel-arrow {
      background: rgba(0,0,0,0.20);
      border: none;
      color: white;
      width: 56px;
      height: 90px;
      cursor: pointer;
      z-index: 5;
      border-radius: 14px;
      transition: background .2s, opacity .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      opacity: 100%;
      outline: none;
      user-select: none;
      box-shadow: 0 2px 16px #0007;
      padding: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .carousel-arrow svg {
      display: block;
      width: 48px;
      height: 48px;
      stroke-width: 4;
      stroke: #ff0000;
      fill: none;
    }
    .carousel-arrow.left { left: -28px; }
    .carousel-arrow.right { right: -8px; }
    .carousel-arrow.visible {
      visibility: visible !important;
      pointer-events: auto;
    }
    .carousel-arrow:active {
      background: rgba(0,255,255,0.08);
      opacity: 3;
    }
    .menu-button {
      padding: 0;
      border: none;
      background: none;
      cursor: pointer;
      transition: transform 0.3s ease;
      display: inline-block;
    }
    .menu-button img {
      width: 220px;
      height: 120px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    }
    .menu-button:hover img {
      transform: scale(1.06) translateY(-9px);
      box-shadow: 0 0 28px rgba(0, 255, 255, 0.55);
      filter: brightness(1.12);
        
    }
    /* NUEVO: hace el botón más claro y se eleva levemente en hover */
    .menu-button:hover {
      /* Puedes añadir un poco de sombra extra si quieres */
      /* Nota: el efecto principal está en el img, pero puedes poner aquí también si ves que queda mejor */
    }
    .settings {
      display: none;
      flex-direction: column;
      gap: 18px;
      background: rgba(255, 255, 255, 0.05);
      padding: 34px 34px 22px 34px;
      border-radius: 16px;
      align-items: center;
      z-index: 2;
      animation: fadeIn 0.5s ease forwards;
      justify-content: center;
      position: fixed;
      inset: 0;
      margin: auto;
      min-width: 350px;
      max-width: 95vw;
      min-height: 350px;
      max-height: 95vh;
      box-shadow: 0 8px 40px #000a;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transform: none;
    }
    .settings-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      width: 100%;
      justify-content: center;
    }
    .default-btn, .aboutblank-btn {
      background: rgba(0, 255, 255, 0.18);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 15px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
      font-family: inherit;
    }
    .aboutblank-btn {
      padding: 8px 18px;
      font-size: 15px;
      margin-top: 4px;
    }
    .default-btn:hover, .aboutblank-btn:hover {
      background: rgba(0, 255, 255, 0.32);
    }
    .settings.show {
      display: flex;
    }
    .settings input {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: none;
      padding: 10px;
      border-radius: 10px;
      font-size: 16px;
      width: 250px;
      transition: 0.3s ease;
      text-align: center;
    }
    .settings button {
      background: rgba(0, 255, 255, 0.2);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 12px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s ease;
      z-index: 10;
    }
    .settings button:hover {
      background: rgba(0, 255, 255, 0.4);
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    /* --- BUSCADOR DE BOTONES --- */
    #buscador-contenedor {
      z-index: 8;
      transition: box-shadow 0.3s, background 0.3s, top 0.3s;
    }
    #buscador-contenedor.compact {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      background: rgba(20,24,32,0.92);
      box-shadow: 0 2px 16px #000a;
      padding-top: 8px;
      padding-bottom: 8px;
      margin-top: 0 !important;
      animation: fadeIn 0.3s;
    }
    #resultados-busqueda {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
      margin: 44px 0 16px 0;
      animation: fadeIn 0.4s;
    }
    #resultados-busqueda .menu-button {
      margin: 0;
    }
    /* OCULTAR BUSCADOR Y RESULTADOS cuando ajustes está abierto */
    .settings.show ~ #buscador-contenedor,
    .settings.show ~ #resultados-busqueda {
      display: none !important;
    }
    @media (max-width: 1000px) {
      .menu-button img {
        width: 180px;
        height: 100px;
      }
      .menu-buttons-row-wrapper {
        max-width: calc(100vw - 12px);
        width: calc(100vw - 12px);
        margin-left: 6px;
      }
      .section-title {
        margin-left: 24px;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
      }
      .menu-buttons-row {
        max-width: 100vw;
      }
    }
    @media (max-width: 700px) {
      .menu-button img {
        width: 135px;
        height: 80px;
      }
      .carousel-arrow {
        width: 36px;
        height: 60px;
      }
      .carousel-arrow svg {
        width: 38px;
        height: 28px;
      }
      .section-title {
        font-size: 1.2rem;
        margin-left: 8px;
        width: calc(100vw - 8px);
        max-width: calc(100vw - 8px);
        padding-left: 6px;
      }
      .settings { min-width: 95vw; min-height: 200px; }
      .settings input { width: 80vw; }
      #buscador-contenedor input { width: 88vw !important; }
    }
