
::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
  border-left: 2px solid transparent; 
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
  border-radius: 0px;
}

/* Scrollbar horizontal */
::-webkit-scrollbar:horizontal {
  height: 8px;
  background-color: transparent;
  border-top: 2px solid transparent;
}

::-webkit-scrollbar-thumb:horizontal {
  background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
  border-radius: 0px;
}


/* Hide by default on desktop */
    .phone-navigation {
    display: block;
    }

/* Hide on desktop */
@media (min-width: 1325px) {
    .phone-navigation {
      display: none;
    }
  }


  .topbar-phone {
      font-family: 'Raleway', sans-serif;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      background-color: transparent !important;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 3000;
      margin: 0;
      overflow-x: hidden;
  }
  
  .topbar-phone .logo-container {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 10px; /* Added margin to lower the logo */
  }
  
  .topbar-phone .cart-btn {
      background: #12121a00;
      border-radius: 6px;
      border: none;
      font-size: 1px;
      color: #cacbd2;
      cursor: pointer;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .phone-loading-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: transparent !important;
    pointer-events: none;
    z-index: 11;
  }
  .phone-loading-bar.done {
    opacity: 0;
    transition: opacity 0.7s ease;
  }
  .phone-loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
    box-shadow: 0 0 12px rgba(198, 34, 201, 0.6);
    animation: phoneNavProgress 1.2s ease-in-out infinite;
    transform: translateX(-100%);
  }
  @keyframes phoneNavProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
  }

  .topbar-phone .left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .topbar-phone i {
    font-size: 24px;
  }

  .topbar-phone h1 {
    font-size: 18px;
    margin: 0;
  }

  .menu-phone-btn {
    background: #12121a00;
    border-radius: 6px;
    font-size: 24px;
    color: #cacbd2 !important;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  html.menu-open {
    overflow-y: scroll;
  }
  
  .sidebar-phone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background-color: #12121a;
    opacity: 0;
    visibility: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .sidebar-phone::-webkit-scrollbar {
    display: none;
  }

  .sidebar-phone.open {
    opacity: 1;
    visibility: visible;
  }

  .menu-phone-section {
    margin: 10px;
    background-color: #12121A;
    border-radius: 12px;
    overflow: hidden;
    font-weight: 500;
  }

  .menu-phone-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-decoration: none;
    color: #cacbd2;
    transition: all 0.2s ease;
    background-color: #141C2A;
  }
  
  .menu-phone-item:last-child {
    border-bottom: none;
  }
  .menu-phone-item:hover {
    background-color:#17202e;
  }

  .menu-phone-item:last-child {
    border-bottom: none;
  }

  .menu-phone-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600
  }

  .menu-phone-left i {
    font-size: 19px !important;
    padding: 5px !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-weight: 100 !important;
  }
  
  /* Colores de fondo únicos para cada icono */
  .menu-phone-section:nth-child(1) .menu-phone-item:nth-child(1) i {
    background-color: #c822cb; /* Verde para Inicio */
  }
  
  .menu-phone-section:nth-child(1) .menu-phone-item:nth-child(2) i {
    background-color: #2196F3; /* Azul para Game Hosting */
  }
  
  .menu-phone-section:nth-child(1) .menu-phone-item:nth-child(3) i {
    background-color: #27b06c; /* Púrpura para Cloud Hosting */
  }
  
  .menu-phone-section:nth-child(2) .menu-phone-item:nth-child(1) i {
    background-color: #c822cb; /* Verde para Area de Clientes */
  }
  
  .menu-phone-section:nth-child(2) .menu-phone-item:nth-child(2) i {
    background-color: #2196F3; /* Azul para Panel de control */
  }
  
  .menu-phone-section:nth-child(3) .menu-phone-item:nth-child(1) i {
    background-color: #5764EF; /* Naranja para Discord */
  }
  
  .menu-phone-section:nth-child(3) .menu-phone-item:nth-child(2) i {
    background-color: #E46436; /* Rosa para Crear Ticket */
  }
  
  .menu-phone-section:nth-child(3) .menu-phone-item:nth-child(3) i {
    background-color: #bd173b; /* Verde azulado para el correo */
  }
  
  .menu-phone-section:nth-child(4) .menu-phone-item i {
    background-color: #607D8B; /* Azul grisáceo para English */
  }

  .menu-phone-title {
    font-size: 16px;
  }

  .menu-phone-right {
    font-size: 16px;
  }
  
  .menu-phone-right i {
    background-color: transparent !important;
    padding: 0 !important;
  }