/* ==================================================
   BASE DARK – WHMCS Twenty-One (ServerARG)
   ================================================== */

:root {
  --bg-main: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2128;
  --border-soft: #2d333b;
  --text-main: #e6edf3;
  --text-muted: #9da7b1;
  --accent: #22c55e;
}

/* Fondo general */
body {
  background-color: var(--bg-main) !important;
  color: var(--text-main);
}

/* Contenedores base */
#main-body,
.main-content,
.container,
.content-padded {
  background: transparent !important;
}

/* Header */
.navbar,
.navbar-main {
  background-color: var(--bg-secondary) !important;
  border-bottom: 1px solid var(--border-soft);
}

/* Footer */
#footer,
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
}

/* Texto secundario */
.text-muted,
.small {
  color: var(--text-muted) !important;
}

/* ==================================================
   HOMEPAGE CARDS (Anuncios, Estado, FAQ, etc)
   ================================================== */

a[class^="card-accent-"] {
  background-color: var(--bg-card) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* Iconos */
a[class^="card-accent-"] i {
  color: var(--accent) !important;
}

/* Hover */
a[class^="card-accent-"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(34,197,94,0.15);
  border-color: var(--accent) !important;
}

/* ==================================================
   PRODUCT SPOTLIGHT (Minecraft Java Argentina)
   ================================================== */

.product-feature,
.domain-checker-container {
  background: linear-gradient(135deg, #020617, #020617) !important;
  border: 1px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 0 35px rgba(34,197,94,0.15);
  color: var(--text-main);
}

/* Títulos */
.product-feature h2,
.product-feature h3 {
  color: #ffffff !important;
}

/* Botón principal */
.product-feature .btn,
.domain-checker-container .btn {
  background-color: var(--accent) !important;
  border: none !important;
  color: #022c22 !important;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
}

.product-feature .btn:hover,
.domain-checker-container .btn:hover {
  background-color: #16a34a !important;
}

/* ==================================================
   CARDS INTERNAS (listas, tablas, paneles)
   ================================================== */

.card,
.list-group-item {
  background-color: var(--bg-card) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 12px;
}

/* Títulos */
.card-title,
.card h3,
.card h4 {
  color: #ffffff !important;
}

/* Links */
.card a {
  color: var(--accent) !important;
}

/* Hover suave */
.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}


/* ==================================================
   DESTACADO – MINECRAFT JAVA ARGENTINA
   ================================================== */

/* Card que contiene el bloque */
.card:has(.pricing-card-title) {
  background: linear-gradient(135deg, #020617, #020617) !important;
  border: 1px solid var(--accent) !important;
  box-shadow: 0 0 40px rgba(34,197,94,0.25);
}

/* Card body */
.card:has(.pricing-card-title) .card-body {
  background: transparent !important;
}

/* Título */
.pricing-card-title {
  color: #ffffff !important;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* Botón */
.card:has(.pricing-card-title) .btn {
  background-color: var(--accent) !important;
  color: #022c22 !important;
  border: none !important;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 20px;
}

.card:has(.pricing-card-title) .btn:hover {
  background-color: #16a34a !important;
}



/* ==================================================
   BARRA SUPERIOR (Administración)
   ================================================== */

.top-nav,
.secondary-nav,
.top-nav .nav,
.secondary-nav .nav {
  background-color: #0b0e13 !important;
  border-bottom: 1px solid var(--border-soft);
}

/* Texto */
.top-nav a,
.secondary-nav a {
  color: var(--text-main) !important;
}

/* Hover */
.top-nav a:hover,
.secondary-nav a:hover {
  color: var(--accent) !important;
}
/* ==================================================
   BREADCRUMB – ADMINISTRACIÓN (FORZAR DARK)
   ================================================== */

.master-breadcrumb {
  background-color: #0b0e13 !important;
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}

/* Quitar fondo blanco interno */
.master-breadcrumb .container,
.master-breadcrumb .breadcrumb {
  background: transparent !important;
}

/* Texto */
.master-breadcrumb .breadcrumb-item,
.master-breadcrumb .breadcrumb-item.active {
  color: var(--text-main) !important;
  font-weight: 500;
}

/* Separadores */
.master-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted) !important;
}

/* ===== BOTONES GLOBAL DARK ===== */
.btn {
  border-radius: 10px !important;
  font-weight: 600;
  transition: all .25s ease;
}

.btn-primary,
.btn-outline-primary {
  background-color: #22c55e !important;
  border-color: #22c55e !important;
  color: #022c22 !important;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  background-color: #16a34a !important;
  border-color: #16a34a !important;
  box-shadow: 0 0 18px rgba(34,197,94,.4);
  transform: translateY(-2px);
}

/* ===== LINKS ===== */
a {
  color: #22c55e;
}

a:hover {
  color: #4ade80;
  text-decoration: none;
}

/* ===== INPUTS / FORMS ===== */
.form-control,
.custom-select {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border: 1px solid #1f2937 !important;
}

.form-control:focus {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 .2rem rgba(34,197,94,.25);
}


/* ===============================
   FIX CARDS BLANCAS – TWENTY-ONE
   =============================== */

/* Cards del dashboard principal */
.client-home-panels a,
.client-home-panels .home-card,
.client-home-panels .card-accent-teal,
.client-home-panels .card-accent-blue,
.client-home-panels .card-accent-green,
.client-home-panels .card-accent-orange,
.client-home-panels .card-accent-purple {
  background: #020617 !important;
  border: 1px solid #1f2937 !important;
  color: #e5e7eb !important;
  border-radius: 14px !important;
}

/* Iconos */
.client-home-panels i {
  color: #22c55e !important;
}

/* Hover */
.client-home-panels a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(34,197,94,0.2);
  border-color: #22c55e !important;
}

/* Texto */
.client-home-panels span,
.client-home-panels strong {
  color: #e5e7eb !important;
}


/* ===============================
   SEARCH BAR – DARK FIX
   =============================== */

/* Contenedor */
.input-group.search {
  border-radius: 10px;
  overflow: hidden;
}

/* Input */
.input-group.search .form-control {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border: 1px solid #1f2937 !important;
  border-right: none !important;
}

/* Placeholder */
.input-group.search .form-control::placeholder {
  color: #9ca3af;
}

/* Botón lupa */
.input-group.search .btn-default {
  background-color: #020617 !important;
  border: 1px solid #1f2937 !important;
  border-left: none !important;
  color: #22c55e !important;
}

/* Hover */
.input-group.search .btn-default:hover {
  background-color: #020617 !important;
  color: #4ade80 !important;
}

/* Focus */
.input-group.search .form-control:focus {
  border-color: #22c55e !important;
  box-shadow: none;
}



/* ===============================
   NAVBAR – TEXTO LEGIBLE + ACCENT
   =============================== */

/* Links principales */
#nav > li > a {
  color: #e5e7eb !important; /* blanco suave */
  font-weight: 500;
  transition: all .2s ease;
}

/* Hover */
#nav > li > a:hover {
  color: #22c55e !important;
  text-shadow: 0 0 10px rgba(34,197,94,0.4);
}

/* Activo */
#nav > li.active > a,
#nav > li > a[aria-expanded="true"] {
  color: #22c55e !important;
  font-weight: 600;
}

/* Dropdown menu */
#nav .dropdown-menu {
  background-color: #020617 !important;
  border: 1px solid #1f2937;
}

/* Items dropdown */
#nav .dropdown-menu .dropdown-item {
  color: #e5e7eb !important;
}

#nav .dropdown-menu .dropdown-item:hover {
  background-color: #020617 !important;
  color: #22c55e !important;
}


/* ===============================
   ALERTS – DARK PREMIUM
   =============================== */

.alert {
  background-color: #020617 !important;
  border: 1px solid #1f2937 !important;
  color: #e5e7eb !important;
  border-radius: 12px;
  padding: 14px 18px;
}

/* Éxito */
.alert-success {
  border-left: 4px solid #22c55e !important;
}

.alert-success::before {
  content: "✔";
  color: #22c55e;
  margin-right: 10px;
}

/* Error */
.alert-danger,
.alert-error {
  border-left: 4px solid #ef4444 !important;
}

.alert-danger::before {
  content: "✖";
  color: #ef4444;
  margin-right: 10px;
}

/* Info */
.alert-info {
  border-left: 4px solid #38bdf8 !important;
}

.alert-info::before {
  content: "ℹ";
  color: #38bdf8;
  margin-right: 10px;
}

/* Warning */
.alert-warning {
  border-left: 4px solid #facc15 !important;
}

.alert-warning::before {
  content: "⚠";
  color: #facc15;
  margin-right: 10px;
}


/* ===============================
   TABLAS – DARK PREMIUM
   =============================== */

.table {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border-radius: 12px;
  overflow: hidden;
}

/* Header */
.table thead th {
  background-color: #020617 !important;
  color: #9ca3af !important;
  font-weight: 600;
  border-bottom: 1px solid #1f2937 !important;
}

/* Filas */
.table tbody tr {
  border-bottom: 1px solid #1f2937 !important;
  transition: background-color .2s ease;
}

.table tbody tr:hover {
  background-color: #020617 !important;
}

/* Celdas */
.table td {
  border-top: none !important;
}

/* Estados */
.text-success {
  color: #22c55e !important;
}

.text-danger {
  color: #ef4444 !important;
}

.text-warning {
  color: #facc15 !important;
}

.text-info {
  color: #38bdf8 !important;
}

/* Paginación */
.pagination .page-link {
  background-color: #020617 !important;
  border: 1px solid #1f2937 !important;
  color: #e5e7eb !important;
}

.pagination .page-link:hover {
  background-color: #020617 !important;
  color: #22c55e !important;
}

.pagination .active .page-link {
  background-color: #22c55e !important;
  border-color: #22c55e !important;
  color: #020617 !important;
}


/* ===============================
   SERVICIOS – DATATABLES DARK FIX
   =============================== */

#tableServicesList {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border-radius: 14px;
  overflow: hidden;
}

/* Header */
#tableServicesList thead th {
  background-color: #020617 !important;
  color: #9ca3af !important;
  border-bottom: 1px solid #1f2937 !important;
}

/* Filas */
#tableServicesList tbody tr {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border-bottom: 1px solid #1f2937 !important;
}

/* Hover */
#tableServicesList tbody tr:hover {
  background-color: #020617 !important;
}

/* Columnas internas */
#tableServicesList td {
  color: #e5e7eb !important;
}

/* Texto secundario */
#tableServicesList .text-muted,
#tableServicesList small {
  color: #9ca3af !important;
}

/* Producto */
#tableServicesList strong {
  color: #ffffff !important;
  font-weight: 600;
}

/* Ícono SSL */
#tableServicesList img {
  filter: brightness(0.85);
}

/* ===============================
   ESTADOS DE SERVICIO
   =============================== */

.status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Pendiente */
.status-pending {
  background-color: rgba(250,204,21,0.15) !important;
  color: #facc15 !important;
}

/* Activo */
.status-active {
  background-color: rgba(34,197,94,0.15) !important;
  color: #22c55e !important;
}

/* Suspendido / Cancelado */
.status-suspended,
.status-cancelled {
  background-color: rgba(239,68,68,0.15) !important;
  color: #ef4444 !important;
}


/* ===============================
   FORCE DARK – SERVICES DATATABLE
   =============================== */

/* Wrapper DataTables */
.dataTables_wrapper,
.dataTables_wrapper .dataTable,
.dataTables_wrapper table {
  background-color: #020617 !important;
  color: #e5e7eb !important;
}

/* Header */
.dataTables_wrapper thead,
.dataTables_wrapper thead th {
  background-color: #020617 !important;
  color: #9ca3af !important;
  border-bottom: 1px solid #1f2937 !important;
}

/* TODAS las filas */
.dataTables_wrapper tbody tr,
.dataTables_wrapper tbody tr.odd,
.dataTables_wrapper tbody tr.even {
  background-color: #020617 !important;
  color: #e5e7eb !important;
}

/* TODAS las celdas */
.dataTables_wrapper tbody td {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border-top: 1px solid #1f2937 !important;
}

/* Hover */
.dataTables_wrapper tbody tr:hover td {
  background-color: #020617 !important;
}

/* Texto secundario */
.dataTables_wrapper .text-muted,
.dataTables_wrapper small {
  color: #9ca3af !important;
}

/* ===============================
   ESTADOS (PILLS)
   =============================== */

.dataTables_wrapper .status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Pendiente */
.dataTables_wrapper .status-pending {
  background: rgba(250,204,21,.15) !important;
  color: #facc15 !important;
}

/* Activo */
.dataTables_wrapper .status-active {
  background: rgba(34,197,94,.15) !important;
  color: #22c55e !important;
}

/* Suspendido / Cancelado */
.dataTables_wrapper .status-suspended,
.dataTables_wrapper .status-cancelled {
  background: rgba(239,68,68,.15) !important;
  color: #ef4444 !important;
}


/* ===============================
   CLIENT AREA – TILES (TOP)
   =============================== */

.tiles .tile {
  background-color: #020617 !important;
  border: 1px solid #1f2937 !important;
  border-radius: 16px !important;
  color: #e5e7eb !important;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}

/* Quitar highlight de color */
.tiles .tile .highlight {
  display: none !important;
}

/* Icono */
.tiles .tile i {
  color: #22c55e !important;
}

/* Número */
.tiles .tile .stat {
  color: #ffffff !important;
  font-weight: 700;
}

/* Texto */
.tiles .tile .title {
  color: #9ca3af !important;
}

/* Hover */
.tiles .tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(34,197,94,.2);
  border-color: #22c55e !important;
}

/* ===============================
   CLIENT AREA – CARDS GRANDES
   =============================== */

.client-home-cards .card {
  background-color: #020617 !important;
  border: 1px solid #1f2937 !important;
  border-radius: 16px !important;
  color: #e5e7eb !important;
}

/* Header */
.client-home-cards .card-header {
  background-color: #020617 !important;
  border-bottom: 1px solid #1f2937 !important;
}

/* Footer */
.client-home-cards .card-footer {
  background-color: #020617 !important;
  border-top: 1px solid #1f2937 !important;
}

/* Quitar accents de color */
.card-accent-blue,
.card-accent-red,
.card-accent-gold,
.card-accent-asbestos {
  border-left: 3px solid #22c55e !important;
}

/* Títulos */
.client-home-cards .card-title {
  color: #ffffff !important;
  font-weight: 600;
}

/* Texto */
.client-home-cards p,
.client-home-cards span {
  color: #9ca3af !important;
}

/* List group (Noticias) */
.client-home-cards .list-group-item {
  background-color: #020617 !important;
  color: #e5e7eb !important;
  border-bottom: 1px solid #1f2937 !important;
}

.client-home-cards .list-group-item:hover {
  background-color: #020617 !important;
  color: #22c55e !important;
}

/* ===============================
   BOTONES INTERNOS (XS)
   =============================== */

.client-home-cards .btn-default {
  background-color: #020617 !important;
  border: 1px solid #22c55e !important;
  color: #22c55e !important;
  border-radius: 8px;
  font-weight: 600;
}

.client-home-cards .btn-default:hover {
  background-color: #22c55e !important;
  color: #020617 !important;
}


/* ===============================
   ANNOUNCEMENTS – DARK MODE
   =============================== */

.announcements {
  margin-top: 20px;
}

.announcements .announcement {
  background-color: #020617 !important;
  border: 1px solid #1f2937 !important;
  border-radius: 16px !important;
  padding: 24px;
  color: #e5e7eb !important;
  transition: all .25s ease;
}

/* Hover suave */
.announcements .announcement:hover {
  box-shadow: 0 15px 40px rgba(34,197,94,.15);
  border-color: #22c55e !important;
}

/* Título */
.announcements .announcement h1,
.announcements .announcement h1 a {
  color: #ffffff !important;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.announcements .announcement h1 a:hover {
  color: #22c55e !important;
}

/* Fecha */
.announcements .announcement .text-muted {
  color: #9ca3af !important;
}

/* Contenido */
.announcements .announcement article {
  color: #d1d5db !important;
  margin: 16px 0;
  line-height: 1.7;
}

/* Botón editar (admin) */
.announcements .show-on-hover {
  background-color: transparent !important;
  border: 1px solid #22c55e !important;
  color: #22c55e !important;
  border-radius: 8px;
}

.announcements .show-on-hover:hover {
  background-color: #22c55e !important;
  color: #020617 !important;
}

/* Botón "Seguir leyendo" */
.announcements .btn-default {
  background-color: transparent !important;
  border: 1px solid #22c55e !important;
  color: #22c55e !important;
  border-radius: 8px;
  font-weight: 600;
}

.announcements .btn-default:hover {
  background-color: #22c55e !important;
  color: #020617 !important;
}


/* =================================
   ANNOUNCEMENTS – FIX FONDO ARTICLE
   ================================= */

.announcements .announcement article {
  background-color: transparent !important;
  color: #d1d5db !important;
  padding: 0 !important;
}

/* Por si WHMCS mete un wrapper interno */
.announcements .announcement article *,
.announcements .announcement article p {
  background-color: transparent !important;
  color: #d1d5db !important;
}


/* =================================
   PROMO CODE TAB – TEXTO LEGIBLE
   ================================= */

.nav-tabs .nav-link {
  color: #9ca3af !important; /* gris claro legible */
  background-color: transparent !important;
}

.nav-tabs .nav-link:hover {
  color: #e5e7eb !important;
  background-color: rgba(255,255,255,0.05);
}

.nav-tabs .nav-link.active {
  color: #ffffff !important;
  background-color: rgba(0,0,0,0.3) !important;
  border-color: transparent !important;
  font-weight: 600;
}


.nav-tabs .nav-link.active {
  color: #22c55e !important;
  box-shadow: inset 0 -2px 0 #22c55e;
}

/* =================================
   Background gaming global (WHMCS FIX)
   ================================= */

html {
    background: url("../img/games-bg.png") no-repeat center top fixed;
    background-size: cover;
    background-color: #0b0f14;
}

/* body transparente */
body {
    background: transparent !important;
}

/* overlay oscuro */
html::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 20, 0.88);
    z-index: -1;
    pointer-events: none;
}

/* Quitar fondos blancos que tapan el background */
.main-body,
.content-wrapper,
.clientarea,
.primary-content,
.container,
.container-fluid {
    background: transparent !important;
}


/* ===============================
   Home game cards (ESTRUCTURA SIMÉTRICA)
   =============================== */

/* ===============================
   CONTENEDOR PRINCIPAL (GRID)
   =============================== */
.card-columns.home {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch; /* Estira las columnas al máximo de la fila */
}

/* ===============================
   ESTRUCTURA DE LA TARJETA
   =============================== */
.game-card {
    position: relative;
    border: none;
    overflow: hidden;
    background: #020617;
    color: #fff;
    
    /* Configuración Flex */
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important; /* Obliga a la card a llenar su columna */
    
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

/* Header imagen */
.game-card::before {
    content: "";
    display: block;
    height: 120px;
    background-size: 72px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #020617;
    flex-shrink: 0; /* Evita que la imagen se colapse */
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Cuerpo de la card - Espaciado Simétrico */
.game-card .card-body {
    background: transparent !important;
    padding: 1.5rem !important;
    text-align: center;
    
    /* Flex interno para empujar contenido */
    flex: 1 1 auto !important; 
    display: flex !important;
    flex-direction: column !important;
}

/* Títulos: Alineación vertical de texto */
.game-card h3 {
    color: #fff;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,.6);
    
    /* Reserva espacio para 2 líneas siempre */
    min-height: 3rem; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Párrafo: Absorbe el espacio sobrante */
.game-card p {
    color: #cbd5e1;
    margin-top: 0;
    margin-bottom: 1.5rem;
    
    /* Este es el secreto: crece para ocupar el hueco */
    flex-grow: 1 !important; 
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Botón: Anclado al fondo */
.game-card .btn {
    border-color: #22c55e;
    color: #22c55e;
    width: 100%;
    margin-top: auto !important; /* Lo empuja al final de la card */
    flex-shrink: 0;
    padding: 10px;
    font-weight: 600;
}

.game-card .btn:hover {
    background: #22c55e;
    color: #020617;
}

/* ===============================
   IMÁGENES DE JUEGOS
   =============================== */
.game-minecraft-java::before { background-image: url("/templates/twenty-one-dark/img/games/minecraft.png"); }
.game-cs-16::before { background-image: url("/templates/twenty-one-dark/img/games/cs-16.png"); }
.game-factorio::before { background-image: url("/templates/twenty-one-dark/img/games/factorio.png"); }
.game-ark-survival-evolved::before { background-image: url("/templates/twenty-one-dark/img/games/ark.png"); }
.game-hytale::before { background-image: url("/templates/twenty-one-dark/img/games/hytale.png"); }
.game-dayz::before { background-image: url("/templates/twenty-one-dark/img/games/dayz.png"); }
.game-minecraft-bedrock::before { background-image: url("/templates/twenty-one-dark/img/games/bedrock.webp"); }
.game-argentum::before { background-image: url("/templates/twenty-one-dark/img/games/hytale.png"); }
.game-garrys-mod::before { background-image: url("/templates/twenty-one-dark/img/games/Garrys_Mod.png"); }
.game-project-zomboid::before { background-image: url("/templates/twenty-one-dark/img/games/project_zomboid.png"); }
.game-rust::before { background-image: url("/templates/twenty-one-dark/img/games/rust.webp"); }
.game-fivem::before { background-image: url("/templates/twenty-one-dark/img/games/fivem.webp"); }
.game-unturned::before { background-image: url("/templates/twenty-one-dark/img/games/unturned.webp"); }
.game-ts3::before { background-image: url("/templates/twenty-one-dark/img/games/ts3.png"); }
.game-cs2::before { background-image: url("/templates/twenty-one-dark/img/games/cs2.png"); }
.game-terraria::before { background-image: url("/templates/twenty-one-dark/img/games/terraria.png"); }
.game-valheim::before { background-image: url("/templates/twenty-one-dark/img/games/valheim.png"); }

/* ===============================
   HOVER E INTERACTIVIDAD
   =============================== */
.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.game-card:hover::before {
    transform: scale(1.1);
    filter: brightness(1.2);
}

@media (hover: none) {
    .game-card:hover {
        transform: none;
        box-shadow: none;
    }
}



/* =====================================================
   NUCLEAR: OCULTAR AYUDA + CUENTA EN HOMEPAGE (WHMCS)
   ===================================================== */

/* Homepage únicamente */
body.client-home-page h2,
body.client-home h2 {
    display: none !important;
}

/* Bloque completo de acciones (botones) */
body.client-home-page .action-icon-btns,
body.client-home .action-icon-btns {
    display: none !important;
}

/* Contenedores padres que WHMCS reinyecta */
body.client-home-page .row.my-5,
body.client-home .row.my-5,
body.client-home-page .homepage-actions,
body.client-home .homepage-actions {
    display: none !important;
}



/* ===============================
   ABOUT SECTION – Homepage
   =============================== */

.about-section {
    background: rgba(2, 6, 23, 0.65);      /* fondo oscuro transparente */
    backdrop-filter: blur(10px);          /* blur tipo glass */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(34, 197, 94, 0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* Título */
.about-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Texto */
.about-section p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.65;
}

/* Imagen */
.about-image {
    max-width: 420px;
    border-radius: 14px;
    filter: drop-shadow(0 12px 35px rgba(0,0,0,0.65));
}


/* ===============================
   WHY CHOOSE US – Homepage
   =============================== */

.why-us-section {
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(34, 197, 94, 0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.why-us-title {
    color: #ffffff;
    font-weight: 700;
}

/* Card individual */
.why-us-card {
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

/* Hover */
.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34,197,94,0.2);
    border-color: rgba(34,197,94,0.4);
}

/* Iconos */
.why-us-card img {
    width: 80px;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.6));
}

/* Títulos */
.why-us-card h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Texto */
.why-us-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* ===============================
   MARCO PRINCIPAL (GLASS CONTAINER)
   =============================== */
.container.my-5 {
    background: rgba(2, 6, 23, 0.5); /* Fondo semitransparente oscuro */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 4rem 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borde sutil */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    
    /* Flexbox para alinear los bloques internos */
    display: flex;
    flex-direction: column;
    gap: 80px; /* Espacio simétrico entre bloques */
}

/* ===============================
   BLOQUES DE INFORMACIÓN
   =============================== */
.info-section {
    max-width: 800px;
    margin: 0 auto; /* Centra el bloque dentro del marco */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Imágenes Simétricas */
.info-section img {
    width: auto;
    max-width: 100%;
    height: 180px; /* Altura fija para que todas las secciones empiecen igual */
    object-fit: contain; /* Mantiene la proporción sin deformar */
    margin-bottom: 2rem;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.info-section:hover img {
    transform: scale(1.05);
}

/* Títulos */
.info-section h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

/* Párrafos */
.info-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 700px;
}

/* Eliminar margen del último párrafo */
.info-section p:last-child {
    margin-bottom: 0;
}

/* Adaptación para Celulares */
@media (max-width: 768px) {
    .container.my-5 {
        padding: 2.5rem 1rem !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    .info-section h2 {
        font-size: 1.7rem;
    }
    .info-section img {
        height: 140px; /* Más pequeño en móviles */
    }
}



/* ==================================================
   PRODUCT CARD – DARK VERTICAL STYLE (FIX WHMCS)
   ================================================== */

/* CONTENEDOR PRINCIPAL DE LA TARJETA */
#products .product {
    background: #0f1114 !important; /* <-- fondo NEGRO real */
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

/* MATAR FONDOS BLANCOS INTERNOS DE WHMCS */
#products .product header,
#products .product-desc,
#products .product footer {
    background: transparent !important;
    border: none !important;
}

/* ========== HEADER (NOMBRE DEL PLAN) ========== */
#products .product header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-bottom: 0;
    margin-bottom: 6px;
}

#products .product header span:first-child {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* OCULTAR STOCK DE ARRIBA (lo pondremos abajo) */
#products .product header .qty {
    display: none;
}

/* ========== PRECIO (CENTRADO Y GRANDE) ========== */
#products .product-pricing {
    margin: 10px 0;
    text-align: center;
}

#products .product-pricing .price {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

/* Ajustar textos “Mensual / Trimestral / etc” */
#products .product-pricing {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* ========== DESCRIPCIÓN (VERTICAL, LIMPIA) ========== */
#products .product-desc ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* ========== FOOTER (BOTÓN ABAJO) ========== */
#products .product footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto; /* EMPUJA TODO ABAJO */
}

/* BOTÓN GRANDE ABAJO */
#products .btn-order-now {
    width: 100%;
    max-width: 220px;
    background: #e53935;
    border: none;
    color: #ffffff;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
}

#products .btn-order-now:hover {
    background: #d32f2f;
}

/* STOCK ABAJO (como tu imagen) */
#products .product footer::after {
    content: attr(data-stock);
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Hacer que TODAS las cards midan igual */
.row-eq-height > div {
    display: flex;
}

.row-eq-height .product {
    width: 100%;
}


/* ==================================================
   HACER LAS CARDS MÁS VERTICALES (RECTANGULARES)
   ================================================== */

/* Estrechar visualmente la tarjeta */
#products .product {
    max-width: 320px;        /* <-- controla el ANCHO */
    margin: 0 auto;          /* centra la card en su columna */
    min-height: 480px;       /* <-- la hace más ALTA */
}

/* Separar mejor las columnas para que no se vean apretadas */
#products .row-eq-height > div {
    margin-bottom: 24px;
}

/* Hacer el botón un poco más angosto para que acompañe el formato vertical */
#products .btn-order-now {
    max-width: 200px;
}


/* =========================================
   CENTRADO DEL CONTENIDO DENTRO DE LA CARD
   ========================================= */

/* Centrar TODO el contenido de la tarjeta */
#products .product {
    text-align: center;
}

/* Centrar el header (nombre + stock) */
#products .product header {
    text-align: center;
}

/* Centrar el precio y el período */
#products .product-pricing {
    text-align: center;
    width: 100%;
}

/* Asegurar que el botón quede centrado */
#products .btn-order-now {
    display: block;
    margin: 12px auto 0 auto;
}


/* ===============================
   CENTRADO REAL DEL PRECIO Y BOTÓN
   (ajustado a TU HTML exacto)
   =============================== */

/* 1) Convertimos TU footer en columna centrada */
#products .product footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

/* 2) Forzamos que el bloque de precios ocupe todo el ancho y se centre */
#products .product .product-pricing {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 10px;
    display: block !important; /* clave */
}

/* 3) Centrar el botón y quitar floats/márgenes raros */
#products .product .btn-order-now {
    display: block !important;
    margin: 8px auto 0 auto !important;
    float: none !important;
}

/* 4) Quitar floats heredados del clearfix */
#products .product * {
    float: none !important;
}


/* =======================================================
   RE-ESCRIBE COMPLETAMENTE EL LAYOUT DEL PRODUCTO
   (compatible con tu HTML real de WHMCS)
   ======================================================= */

/* 1) Convertimos la tarjeta completa en columna vertical */
#products .product {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* 2) Header centrado (nombre + stock) */
#products .product header {
    width: 100%;
    text-align: center;
}

/* 3) Descripción centrada */
#products .product-desc {
    width: 100%;
    text-align: center;
}

/* 4) EL PUNTO CLAVE: rehacemos TOTALMENTE el footer */
#products .product footer {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* 5) Precio ocupa todo el ancho y se centra de verdad */
#products .product .product-pricing {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 12px;
}

/* 6) Botón abajo y centrado */
#products .product .btn-order-now {
    display: block !important;
    margin: 8px auto 0 auto !important;
    float: none !important;
}

/* 7) Eliminamos CUALQUIER float heredado de WHMCS */
#products .product * {
    float: none !important;
}


/* ===============================
   TÍTULO DEL PRODUCTO (ESTÉTICA PRO)
   =============================== */

#products .product header #product1-name,
#products .product header span:first-child {
    display: block;
    font-size: 1.35rem;              /* Más grande */
    font-weight: 800;                /* Bien contundente */
    letter-spacing: 0.3px;
    background: linear-gradient(120deg, #22c55e, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

    text-shadow: 0 2px 6px rgba(0,0,0,.5);
    margin-bottom: 4px;


}

/* Subtítulo / stock más sutil */
#products .product header .qty {
    color: #9da7b1 !important;
    font-size: 0.9rem;
    font-weight: 500;
}



/* =======================================================
   CHECKOUT / REVISAR Y PAGAR – DARK MODE FIX
   ======================================================= */

/* Contenedor principal del checkout */
.cart-body {
    background: #0d1117 !important;
    color: #e6edf3 !important;
}

/* Paneles y tarjetas dentro del checkout */
.cart-body .panel,
.cart-body .card,
.cart-body .panel-body,
.cart-body .card-body {
    background: #161b22 !important;
    border: 1px solid #2d333b !important;
    color: #e6edf3 !important;
    border-radius: 12px;
}

/* Filas y bloques internos */
.cart-body .well,
.cart-body .list-group-item,
.cart-body .checkout-container,
.cart-body .summary-container {
    background: #1c2128 !important;
    border: 1px solid #2d333b !important;
    color: #e6edf3 !important;
}

/* Títulos */
.cart-body h1,
.cart-body h2,
.cart-body h3,
.cart-body h4,
.cart-body .panel-title {
    color: #ffffff !important;
}

/* Texto secundario (antes gris casi invisible) */
.cart-body p,
.cart-body span,
.cart-body label,
.cart-body small {
    color: #9da7b1 !important;
}

/* Tablas (resumen de pedido) */
.cart-body table {
    background: transparent !important;
    color: #e6edf3 !important;
}

.cart-body table th {
    background: #0f172a !important;
    color: #ffffff !important;
    border-bottom: 1px solid #2d333b !important;
}

.cart-body table td {
    background: #0d1117 !important;
    color: #e6edf3 !important;
    border-top: 1px solid #2d333b !important;
}

/* Inputs y selects */
.cart-body input,
.cart-body select,
.cart-body textarea {
    background: #0f172a !important;
    color: #e6edf3 !important;
    border: 1px solid #2d333b !important;
}

/* Botones */
.cart-body .btn-primary {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    color: #022c22 !important;
    font-weight: 600;
}

.cart-body .btn-primary:hover {
    background-color: #16a34a !important;
}

/* Botón secundario */
.cart-body .btn-default {
    background: #161b22 !important;
    color: #e6edf3 !important;
    border: 1px solid #2d333b !important;
}


/* ====== CONTENEDOR PRINCIPAL DEL CHECKOUT ====== */
#order-standard_cart,
#order-standard_cart .cart-body,
#order-standard_cart .secondary-cart-body {
    background: #0f1113 !important;
}

/* ====== BLOQUE IZQUIERDO (PRODUCTO + TABLA) ====== */
#order-standard_cart .view-cart-items,
#order-standard_cart .view-cart-items table,
#order-standard_cart .view-cart-items thead,
#order-standard_cart .view-cart-items tbody,
#order-standard_cart .view-cart-items tr,
#order-standard_cart .view-cart-items td,
#order-standard_cart .view-cart-items th {
    background: #0f1113 !important;
    color: #e0e0e0 !important;
    border-color: #1c1f23 !important;
}

/* Quita el azul del encabezado */
#order-standard_cart .view-cart-items thead tr {
    background: #0f1113 !important;
}

/* Links dentro de la tabla */
#order-standard_cart .view-cart-items a {
    color: #ffffff !important;
}

/* ====== BLOQUE DE CODIGO PROMOCIONAL ====== */
#order-standard_cart .promo-code-container,
#order-standard_cart .promo-code-container input,
#order-standard_cart .promo-code-container .input-group {
    background: #0f1113 !important;
    color: #ffffff !important;
    border: 1px solid #1c1f23 !important;
}

/* Botón "Validar Código" */
#order-standard_cart .promo-code-container .btn {
    background: #111417 !important;
    color: white !important;
    border: 1px solid #1c1f23 !important;
}

/* ====== BOTÓN VACIAR CARRO ====== */
#btnEmptyCart {
    background: #111417 !important;
    color: white !important;
    border: 1px solid #1c1f23 !important;
}

/* ====== BLOQUE DERECHO (SUMARIO DE PEDIDO) ====== */
#orderSummary,
#orderSummary .panel,
#orderSummary .panel-default,
#orderSummary .panel-body {
    background: #0f1113 !important;
    color: #e0e0e0 !important;
    border-color: #1c1f23 !important;
}

/* Texto dentro del resumen */
#orderSummary td,
#orderSummary th,
#orderSummary span,
#orderSummary strong {
    color: #e0e0e0 !important;
}

/* Línea divisoria del resumen */
#orderSummary hr {
    border-color: #1c1f23 !important;
}



/* --- Fondo del contenedor principal del listado --- */
.view-cart-items {
    background: #0f1113 !important;
    padding: 15px;
    border-radius: 10px;
}

/* --- Cada item (tarjeta de producto) --- */
.view-cart-items .item {
    background: #111417 !important;
    border: 1px solid #1c1f23 !important;
    border-radius: 10px;
    padding: 15px;
}

/* --- Filas internas --- */
.view-cart-items .row {
    background: transparent !important;
}

/* --- TÍTULO DEL PRODUCTO (2 GB RAM) --- */
.view-cart-items .item-title {
    color: #ffffff !important;
    font-weight: 600;
}

/* --- Subtítulo (Minecraft Java) --- */
.view-cart-items .item-group {
    color: #b0b0b0 !important;
}

/* --- PRECIO Y CICLO --- */
.view-cart-items .item-price span {
    color: #ffffff !important;
}

.view-cart-items .item-price .cycle {
    color: #b0b0b0 !important;
}

/* --- BOTÓN EDITAR --- */
.view-cart-items .btn-link {
    color: #6ea8ff !important;
}

/* --- BOTÓN ELIMINAR (X) --- */
.view-cart-items .btn-remove-from-cart {
    color: #ff5c5c !important;
}



/* ==========================================
   CART – TABS (Código de promoción / Impuestos)
   ========================================== */

/* Contenedor principal de las tabs */
.view-cart-tabs .tab-content,
.tab-content {
    background: #020617 !important;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Cada panel individual */
.tab-pane {
    background: transparent !important;
    color: #e5e7eb;
}

/* Labels (Provincia, País, etc.) */
.tab-pane label {
    color: #e5e7eb !important;
}

/* Inputs y select */
.tab-pane .form-control {
    background: #0b0f14 !important;
    color: #e5e7eb !important;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Placeholder del input de promo */
#inputPromotionCode::placeholder {
    color: #9ca3af;
}

/* Botones dentro de las tabs */
.tab-pane .btn-default {
    background: #0b0f14 !important;
    color: #22c55e !important;
    border: 1px solid #22c55e !important;
}

.tab-pane .btn-default:hover {
    background: #22c55e !important;
    color: #020617 !important;
}

/* Ícono del campo de promoción */
.tab-pane .field-icon i {
    color: #22c55e;
}

/* Quitar cualquier blanco heredado */
.tab-content *,
.tab-pane * {
    background-color: transparent;
}


/* =======================================================
   DESCRIPCIÓN DE PRODUCTOS – FORZADO (SIN GRIS)
   ======================================================= */

/* Selector directo al contenedor real de tu layout vertical */
#products .product .product-desc,
#products .product .product-desc *,
#products .product-desc ul,
#products .product-desc li {
    color: #e6edf3 !important;      /* blanco suave */
    opacity: 1 !important;           /* elimina el "lavado" */
}

/* Si hay <p> o <span> sueltos dentro */
#products .product-desc p,
#products .product-desc span {
    color: #e6edf3 !important;
}

/* Títulos o palabras clave */
#products .product-desc strong {
    color: #ffffff !important;
    font-weight: 700;
}

/* Asegurarnos que no herede gris del body */
#products .product {
    --text-muted: #e6edf3 !important;
}


/* ===================================================
   STOCK REAL DE WHMCS – VISIBLE Y EN SU LUGAR CORRECTO
   =================================================== */

/* 1) Asegurarnos de que el stock NO esté oculto */
#products .product .qty {
    display: block !important;
}

/* 2) Ocultarlo SOLO en el header (debajo del título) */
#products .product header .qty {
    display: none !important;
}

/* 3) Convertir el footer en columna para ordenar todo */
#products .product footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* 4) Orden correcto dentro del footer */
#products .product footer .product-pricing {
    order: 1;
}

#products .product footer .btn-order-now {
    order: 2;
    margin-top: 6px;
}

/* 5) FORZAR el stock debajo del botón, centrado y gris */
#products .product .qty {
    order: 3;
    margin-top: 6px;
    text-align: center;
    color: #9ca3af !important; /* gris elegante */
    font-size: 0.85rem;
}


/* ===== NAVBAR BASE ===== */
.navbar,
#mainNavbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Links */
#mainNavbar .navbar-nav > li > a {
    color: #e5e5e5;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 16px;
    transition: all .2s ease;
}

/* Hover */
#mainNavbar .navbar-nav > li > a:hover {
    color: #00e5ff;
    text-decoration: none;
}

/* ===== OCULTAR ITEMS INNECESARIOS ===== */
#Primary_Navbar-Network_Status,
#Primary_Navbar-Announcements {
    display: none !important;
}

/* (Opcional) ocultar FAQ */
#Primary_Navbar-Knowledgebase {
    display: none !important;
}

/* ===== DROPDOWNS ===== */
.dropdown-menu {
    background: #111;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 8px;
}

.dropdown-menu a {
    color: #ddd !important;
    padding: 8px 12px !important;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background: rgba(0,229,255,0.1);
    color: #00e5ff !important;
}

/* ===== CUENTA (LOGIN) ===== */
#Secondary_Navbar-Account > a {
    background: #00e5ff;
    color: #000 !important;
    border-radius: 999px;
    padding: 8px 18px !important;
    font-weight: 600;
}

#Secondary_Navbar-Account > a:hover {
    background: #00c4d6;
}

/* ===== MOBILE CLEAN ===== */
@media (max-width: 991px) {
    form[action*="knowledgebase/search"] {
        display: none;
    }
}


/* ===== FIX NAVBAR QUE QUEDA DETRÁS DEL CONTENIDO ===== */
.navbar {
    position: relative;
    z-index: 1050 !important;
}


/* Evita que el contenido "tape" el menú */
.main-body,
.content-wrapper {
    position: relative;
    z-index: 1;
}


/* ===== NAVBAR ESTILO GAMING LIMPIO ===== */
#mainNavbar .navbar-nav .nav-link,
#nav > li > a {
    color: #e5e7eb !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color .2s ease;
}

#mainNavbar .navbar-nav .nav-link:hover,
#nav > li > a:hover {
    color: #22c55e !important;
}

/* Quitar subrayados raros */
#nav a {
    text-decoration: none !important;
}



/* =====================================================
   MEGA MENU TIENDA - FIX DEFINITIVO
   ===================================================== */

/* POR DEFECTO: MENU CERRADO (IMPORTANTE) */
#Primary_Navbar-Store .dropdown-menu {
    display: none;
}

/* SOLO CUANDO BOOTSTRAP LO ABRE (tiene .show) */
#Primary_Navbar-Store .dropdown-menu.show {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;

    width: 520px;
    padding: 16px;
    background: #0b0f14;
    border: 1px solid rgba(34,197,94,.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

/* Evita que Bootstrap lo rompa en hover */
#Primary_Navbar-Store:hover .dropdown-menu.show {
    display: grid !important;
}

/* Items como mini tarjetas */
#Primary_Navbar-Store .dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: #e5e7eb !important;
    padding: 10px 10px;
    border-radius: 8px;
    transition: all .2s ease;
}

/* Hover bonito */
#Primary_Navbar-Store .dropdown-item:hover {
    background: rgba(34,197,94,.12) !important;
    color: #22c55e !important;
}

/* Hace que cada item tenga espacio para la imagen */
.navbar .dropdown-menu li.dropdown-item > a {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contenedor del icono (mini imagen) */
.navbar .dropdown-menu li.dropdown-item > a::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


/* ===== ICONOS POR SERVICIO (TU CARPETA) ===== */

/* Minecraft */
#Primary_Navbar-Store-Minecraft_Java > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/minecraft.png");
}

/* Ark (hay que escapar los dos puntos) */
#Primary_Navbar-Store-Ark\:_Survival_Evolved > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/ark.png");
}

#Primary_Navbar-Store-Unturned > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/unturned.webp");
}

#Primary_Navbar-Store-TS3 > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/ts3.png");
}

/* CS 1.6 (hay que escapar el punto) */
#Primary_Navbar-Store-CS_1\.6 > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/cs-16.png");
}

/* CS2 con corchetes escapados */
#Primary_Navbar-Store-CS2\[En_Argentina\] > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/cs2.png");
}

#Primary_Navbar-Store-FiveM > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/fivem.png");
}

#Primary_Navbar-Store-Terraria > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/terraria.png");
}

#Primary_Navbar-Store-Garry\’s_Mod > a::before,
#Primary_Navbar-Store-Garry\'s_Mod > a::before,
#Primary_Navbar-Store-Garrys_Mod > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/Garrys_Mod.png");
}



#Primary_Navbar-Store-Project_Zomboid > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/project_zomboid.png");
}

#Primary_Navbar-Store-Valheim > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/valheim.png");
}

#Primary_Navbar-Store-DayZ > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/dayz.png");
}

#Primary_Navbar-Store-Hytale > a::before {
    background-image: url("/templates/twenty-one-dark/img/games/hytale.png");
}


/* Contenedor general del slider */
.slider-container, .config-options-slider {
    background-color: #000 !important; /* Fondo negro */
    padding: 25px !important;
    border-radius: 10px !important;
    border: 1px solid #444 !important;
}

/* La barra del slider (lo que no está seleccionado) */
.noUi-target, .ui-slider {
    background: #222 !important;
    border: none !important;
    height: 12px !important;
}

/* La barra que se va llenando (ROJO) */
.noUi-connect, .ui-slider-range {
    background: #ff0000 !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6) !important;
}

/* El botón circular para arrastrar */
.noUi-handle, .ui-slider-handle {
    background: #fff !important;
    border: 4px solid #ff0000 !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    top: -7px !important;
    cursor: pointer !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

/* Ocultar decoraciones de WHMCS */
.noUi-handle:before, .noUi-handle:after {
    display: none !important;
}

/* Estilo para los números debajo del slider */
.noUi-pips, .ui-slider-label {
    color: #888 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}