﻿		<style>
		/* =========================
   MODAL WEBSHOP
========================= */
.ws-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 18px;
    background: rgba(3, 8, 14, 0.78);
    backdrop-filter: blur(6px);
}

.ws-modal.open {
    display: flex;
}

.ws-modal * {
    box-sizing: border-box;
}

.ws-modal-card {
    width: min(1100px, 96vw);
    max-height: 92vh;
    overflow: hidden;
    border: 1px solid rgba(110, 190, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(7, 12, 20, 0.98) 0%, rgba(3, 7, 13, 0.98) 100%);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 0 35px rgba(0, 195, 255, 0.08);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
}

/* Header */
.ws-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(90deg, rgba(0,18,35,.9), rgba(0,38,68,.45), rgba(0,18,35,.9));
}

.ws-modal-title {
    margin: 0;
    color: #ecf7ff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1.2;
}

.ws-x {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #dceeff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.ws-x:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(0, 220, 255, 0.35);
    color: #fff;
}

/* Body */
.ws-modal-body {
    padding: 22px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Layout principal */
.ws-modal-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

/* Imagen */
.ws-modal-img {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background:
        radial-gradient(circle at top, rgba(0,195,255,0.10), transparent 45%),
        linear-gradient(180deg, rgba(14,18,28,.96) 0%, rgba(7,10,16,.96) 100%);
}

.ws-modal-img img {
    max-width: 100%;
    max-height: 260px;
    width: auto;
    height: auto;
    image-rendering: auto;
    display: block;
}

/* Form */
.ws-form {
    min-width: 0;
}

/* Reseteo SOLO dentro del modal para evitar que el theme rompa todo */
.ws-form .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.ws-form .row > * {
    min-width: 0;
}

/* Campo */
.ws-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015);
}

.ws-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: #f0f6ff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    flex-wrap: wrap;
}

/* cuando el label contiene checkbox */
.ws-field label input[type="checkbox"] {
    margin: 0;
    flex: 0 0 auto;
}

/* Inputs y selects */
.ws-form select,
.ws-form input[type="text"],
.ws-form input[type="number"] {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(5, 10, 18, 0.92);
    color: #ecf6ff;
    outline: none;
    font-size: 14px;
    box-shadow: none;
}

.ws-form select:focus,
.ws-form input[type="text"]:focus,
.ws-form input[type="number"]:focus {
    border-color: rgba(0, 225, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 225, 255, 0.08);
}

/* checkboxes */
.ws-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,.35);
    position: relative;
    cursor: pointer;
}

.ws-form input[type="checkbox"]:checked {
    background: linear-gradient(180deg, #11d6ff, #0d88d9);
    border-color: rgba(0,225,255,0.5);
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.25);
}

.ws-form input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Excellent options: mÃ¡s prolijo */
.ws-field[style*="margin-bottom:10px"] .row,
.ws-form > .ws-field .row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* total */
.ws-total {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 204, 102, 0.16);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(45,33,10,.55) 0%, rgba(24,18,7,.55) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #ffe8a8;
    font-size: 20px;
    font-weight: 800;
}

/* botÃ³n */
.ws-submit {
    width: 100%;
    margin-top: 16px;
    height: 54px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .3px;
    background: linear-gradient(180deg, #1ce1ff 0%, #0d8ce0 100%);
    box-shadow:
        0 14px 30px rgba(0, 170, 255, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: .22s ease;
}

.ws-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.ws-submit:active {
    transform: translateY(0);
}

/* scroll bonito */
.ws-modal-body::-webkit-scrollbar {
    width: 10px;
}

.ws-modal-body::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
}

.ws-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 200, 255, 0.3);
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 980px) {
    .ws-modal-card {
        width: min(95vw, 95vw);
        max-height: 94vh;
    }

    .ws-modal-row {
        grid-template-columns: 1fr;
    }

    .ws-modal-img {
        position: relative;
        min-height: 180px;
    }

    .ws-form .row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ws-field[style*="margin-bottom:10px"] .row,
    .ws-form > .ws-field .row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .ws-modal {
        padding: 14px;
    }

    .ws-modal-head {
        padding: 14px 16px;
    }

    .ws-modal-title {
        font-size: 19px;
    }

    .ws-modal-body {
        padding: 14px;
    }

    .ws-form .row {
        grid-template-columns: 1fr !important;
    }

    .ws-total {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ws-submit {
        height: 50px;
        font-size: 15px;
    }
}
		a {
		    text-decoration:none !important;
		}
		    /* CONTENEDOR GENERAL */
.content-page {
    padding: 10px 0 30px;
}

/* PANEL PRINCIPAL */
.content-page .panel-news {
    background: linear-gradient(180deg, rgba(2,18,30,.96) 0%, rgba(3,10,18,.96) 100%);
    border: 1px solid rgba(0, 191, 255, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 25px rgba(0, 120, 180, 0.12);
    border-radius: 0;
    overflow: hidden;
}

/* CABECERA */
.content-page .panel-news .panel-heading {
    background: linear-gradient(90deg, rgba(0,20,35,.95) 0%, rgba(0,45,75,.65) 50%, rgba(0,20,35,.95) 100%);
    padding: 18px 25px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 180, 255, 0.15);
}
.ws-modal-card {
    width: min(1140px, 96vw) !important;
}

.content-page .panel-news .panel-title {
    margin: 0;
}

.content-page .panel-news .panel-title a,
.content-page .panel-news .panel-title {
    color: #19e7ff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0,255,255,.25);
}

.content-page .panel-news .panel-heading hr {
    border: 0;
    height: 1px;
    margin: 14px 0 0;
    background: linear-gradient(90deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.7) 100%);
    opacity: .65;
}

/* BODY */
.content-page .panel-news .panel-body {
    background: rgb(5 23 34);
    padding: 35px 20px 45px;
}

/* ELIMINAR LOOK DE TABLA */
.content-page .panel-news table.table {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: transparent !important;
    border: 0 !important;
}

.content-page .panel-news table.table tbody,
.content-page .panel-news table.table tr,
.content-page .panel-news table.table td {
    display: block;
    width: 100%;
    border: 0 !important;
    background: transparent !important;
    padding: 0;
}

.content-page .panel-news table.table tr {
    margin-bottom: 14px;
}

.content-page .panel-news table.table tr:last-child {
    margin-bottom: 0;
}

/* BLOQUE DEL FORM */
.content-page #myform {
    width: 100%;
}

.content-page #myform > div {
    max-width: 560px !important;
    margin: 0 auto;
    padding: 10px 0;
}

/* INPUTS / SELECT */
.content-page .form-control {
    height: 52px;
    width: 100%;
    background: linear-gradient(180deg, rgba(22,22,26,.96) 0%, rgba(10,10,14,.96) 100%) !important;
    border: 1px solid rgba(120, 150, 180, 0.45) !important;
    color: #e6f7ff !important;
    border-radius: 3px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        inset 0 0 12px rgba(0,0,0,.35),
        0 0 0 rgba(0,0,0,0);
    transition: all .25s ease;
    font-size: 15px;
    padding: 12px 14px;
}

.content-page .form-control::placeholder {
    color: #9aa9b5 !important;
    opacity: 1;
}

.content-page .form-control:focus {
    border-color: #22d8ff !important;
    box-shadow:
        0 0 0 1px rgba(34,216,255,.2),
        0 0 14px rgba(0,170,255,.16),
        inset 0 1px 0 rgba(255,255,255,.05);
    outline: none !important;
    background: linear-gradient(180deg, rgba(24,24,30,.98) 0%, rgba(11,11,15,.98) 100%) !important;
}

/* SELECT */
.content-page select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #20dfff 50%),
        linear-gradient(135deg, #20dfff 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

/* OPCIONES DEL SELECT */
.content-page select.form-control option {
    background: #10141a;
    color: #eafcff;
}

/* CAPTCHA */
.content-page #image_verify {
    display: block;
    margin: 6px auto 14px;
    width: 95px !important;
    height: 36px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.15);
    background: #000;
    box-shadow: 0 0 10px rgba(0,0,0,.35);
}

/* BOTÃ“N */
.content-page .btn.btn-success {
    width: 100% !important;
    max-width: 400px;
    height: 54px;
    border: 0 !important;
    border-radius: 3px;
    background: linear-gradient(180deg, #69d36f 0%, #4fb85b 100%) !important;
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    box-shadow:
        0 8px 18px rgba(60, 180, 90, .18),
        inset 0 1px 0 rgba(255,255,255,.2);
    transition: all .25s ease;
}

.content-page .btn.btn-success:hover {
    background: linear-gradient(180deg, #79de7d 0%, #55c963 100%) !important;
    transform: translateY(-1px);
    box-shadow:
        0 10px 22px rgba(60, 180, 90, .25),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.content-page .btn.btn-success:active,
.content-page .btn.btn-success:focus {
    outline: none !important;
    box-shadow:
        0 0 0 2px rgba(80, 220, 120, .15),
        0 8px 18px rgba(60, 180, 90, .18);
}

/* ESPACIADO ESPECIAL DEL CAPTCHA Y BOTÃ“N */
.content-page .panel-news table.table tr:nth-last-child(2) td {
    padding-top: 2px;
}

.content-page .panel-news table.table tr:last-child td {
    padding-top: 10px;
}

/* CENTRO MÃS LIMPIO */
.content-page center {
    display: block;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content-page .panel-news .panel-heading {
        padding: 14px 16px 10px;
    }

    .content-page .panel-news .panel-title a,
    .content-page .panel-news .panel-title {
        font-size: 22px;
    }

    .content-page .panel-news .panel-body {
        padding: 24px 14px 30px;
    }

    .content-page #myform > div {
        max-width: 100% !important;
    }

    .content-page .form-control {
        height: 48px;
        font-size: 14px;
    }

    .content-page .btn.btn-success {
        max-width: 100%;
        font-size: 15px;
        height: 50px;
    }
}
.fade {
    opacity: 1 !important;
}
/* =========================
   MODULO WIKI GUIAS
   ========================= */

main.my-5 {
    padding: 30px 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(5, 23, 36, 0.88) 0%, rgba(2, 15, 27, 0.96) 100%);
    border: 1px solid rgba(79, 176, 255, 0.14);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02) inset,
        0 12px 35px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

main.my-5::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(0, 255, 255, 0.08), transparent 35%),
        linear-gradient(90deg, transparent, rgba(68, 194, 255, 0.03), transparent);
    pointer-events: none;
}

main.my-5 > h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 28px !important;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #dff8ff;
    text-shadow: 0 0 12px rgba(0, 225, 255, 0.18);
}

/* =========================
   TABS
   ========================= */

#wikiTab {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid rgba(120, 190, 255, 0.18);
    padding-bottom: 18px;
    margin-bottom: 28px !important;
}

#wikiTab .nav-item {
    margin: 0;
}

#wikiTab .nav-link {
    border: 1px solid rgba(111, 195, 255, 0.22) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(11, 34, 52, 0.96) 0%, rgba(5, 21, 34, 0.96) 100%);
    color: #8fcfff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    min-width: 145px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 8px 20px rgba(0,0,0,0.25);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

#wikiTab .nav-link:hover {
    color: #e8fbff !important;
    border-color: rgba(77, 221, 255, 0.45) !important;
    background: linear-gradient(180deg, rgba(12, 43, 66, 0.98) 0%, rgba(5, 26, 43, 0.98) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 0 16px rgba(0, 217, 255, 0.14),
        0 8px 22px rgba(0,0,0,0.35);
}

#wikiTab .nav-link.active {
    color: #ffffff !important;
    border-color: rgba(68, 228, 255, 0.62) !important;
    background:
        linear-gradient(180deg, rgba(20, 73, 99, 1) 0%, rgba(7, 39, 59, 1) 100%);
    box-shadow:
        0 0 18px rgba(0, 247, 255, 0.18),
        inset 0 0 18px rgba(85, 238, 255, 0.08);
}

#wikiTab .nav-link i {
    margin-right: 6px;
    font-size: 15px;
}

/* =========================
   CONTENIDO TABS
   ========================= */

#wikiTabContent {
    position: relative;
    z-index: 2;
}

#wikiTabContent .tab-pane {
    animation: wikiFade 0.25s ease;
}

@keyframes wikiFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TARJETAS
   ========================= */

#wikiTabContent .row.g-4 {
    --bs-gutter-x: 1.4rem;
    --bs-gutter-y: 1.4rem;
}

#wikiTabContent .col-md-6.col-lg-4 {
    background: transparent !important;
    padding: 0 !important;
}

#wikiTabContent .card {
    height: 100%;
    border: 1px solid rgba(110, 189, 255, 0.14) !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 33, 46, 0.95) 0%, rgba(12, 23, 34, 0.98) 100%) !important;
    box-shadow:
        0 10px 28px rgba(0,0,0,0.30),
        inset 0 0 0 1px rgba(255,255,255,0.02);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
}

#wikiTabContent .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,255,255,0.05), transparent 25%);
    pointer-events: none;
}

#wikiTabContent .card:hover {
    transform: translateY(-6px);
    border-color: rgba(72, 221, 255, 0.30) !important;
    box-shadow:
        0 16px 36px rgba(0,0,0,0.38),
        0 0 22px rgba(0, 238, 255, 0.08);
}

#wikiTabContent .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(180deg, rgba(8, 22, 34, 1) 0%, rgba(15, 35, 49, 1) 100%);
    border-bottom: 1px solid rgba(99, 191, 255, 0.14);
}

#wikiTabContent .card-body {
    padding: 20px;
    position: relative;
    z-index: 2;
}

#wikiTabContent .card-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #59c8ff !important;
    line-height: 1.25;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.12);
}

#wikiTabContent .card-text {
    color: #9db1bf !important;
    font-size: 14px;
    line-height: 1.5;
}

#wikiTabContent .card-text strong {
    color: #d8f6ff;
    font-weight: 700;
}

/* =========================
   BOTON VER GUIA
   ========================= */

#wikiTabContent .btn.btn-outline-primary {
    margin-top: 18px !important;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: 1px solid rgba(72, 215, 255, 0.45) !important;
    color: #8feaff !important;
    background: linear-gradient(180deg, rgba(4, 31, 43, 0.8) 0%, rgba(3, 22, 34, 0.9) 100%);
    box-shadow:
        inset 0 0 12px rgba(0, 229, 255, 0.04),
        0 6px 16px rgba(0,0,0,0.22);
    transition: all 0.25s ease;
}

#wikiTabContent .btn.btn-outline-primary:hover,
#wikiTabContent .btn.btn-outline-primary:focus {
    color: #ffffff !important;
    border-color: rgba(111, 239, 255, 0.85) !important;
    background: linear-gradient(180deg, rgba(10, 67, 88, 0.95) 0%, rgba(4, 39, 56, 0.95) 100%);
    box-shadow:
        0 0 18px rgba(0, 229, 255, 0.14),
        0 8px 20px rgba(0,0,0,0.30);
    transform: translateY(-1px);
}

/* =========================
   ALERTA VACIA
   ========================= */

#wikiTabContent .alert.alert-info {
    border: 1px solid rgba(93, 188, 255, 0.18);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(18, 38, 56, 0.88) 0%, rgba(10, 26, 41, 0.95) 100%);
    color: #bfeeff;
    padding: 18px 20px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
    main.my-5 {
        padding: 24px 16px;
    }

    main.my-5 > h2 {
        font-size: 26px;
    }

    #wikiTab {
        gap: 10px;
    }

    #wikiTab .nav-link {
        min-width: auto;
        width: auto;
        font-size: 13px;
        padding: 9px 14px;
    }

    #wikiTabContent .card-img-top {
        height: 180px;
    }
}

@media (max-width: 575px) {
    main.my-5 > h2 {
        font-size: 22px;
    }

    #wikiTab {
        justify-content: center;
    }

    #wikiTab .nav-link {
        width: 100%;
        min-width: 100%;
        font-size: 12px;
        padding: 10px 12px;
    }

    #wikiTabContent .card-body {
        padding: 16px;
    }

    #wikiTabContent .card-title {
        font-size: 18px;
    }

    #wikiTabContent .card-img-top {
        height: 160px;
    }
}
#wikiTabContent .card-img-top {
    filter: saturate(1.05) contrast(1.05);
}
/* =========================================
   WIKI GUIAS - FIX REAL
   ========================================= */

main.my-5 {
    width: 100%;
    margin: 30px auto !important;
    padding: 28px 28px 34px;
    background: linear-gradient(180deg, rgba(3,20,33,.92) 0%, rgba(2,15,26,.98) 100%);
    border: 1px solid rgba(53, 150, 214, 0.15);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    overflow: hidden;
    position: relative;
}

main.my-5 > br {
    display: none !important;
}

main.my-5 h2 {
    margin: 0 0 28px !important;
    text-align: center;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #dff7ff;
    text-shadow: 0 0 18px rgba(0, 220, 255, 0.12);
}

/* =========================================
   TABS
   ========================================= */

main.my-5 #wikiTab {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 28px !important;
    padding: 0 0 22px !important;
    list-style: none;
    border: 0 !important;
    border-bottom: 1px solid rgba(90, 170, 220, 0.16) !important;
}

main.my-5 #wikiTab .nav-item {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

main.my-5 #wikiTab .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
    padding: 0 18px !important;
    margin: 0 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(75, 189, 255, 0.20) !important;
    background: linear-gradient(180deg, rgba(9, 35, 55, 0.96) 0%, rgba(5, 24, 39, 0.96) 100%) !important;
    color: #7fbce4 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-align: center;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    transition: .25s ease;
}

main.my-5 #wikiTab .nav-link * {
    white-space: nowrap !important;
}

main.my-5 #wikiTab .nav-link:hover {
    color: #dffaff !important;
    border-color: rgba(60, 220, 255, 0.45) !important;
    box-shadow: 0 0 18px rgba(0, 225, 255, 0.10);
    transform: translateY(-1px);
}

main.my-5 #wikiTab .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(15, 76, 108, 1) 0%, rgba(6, 43, 68, 1) 100%) !important;
    border-color: rgba(72, 224, 255, 0.58) !important;
    box-shadow:
        0 0 22px rgba(0, 238, 255, 0.13),
        inset 0 0 12px rgba(134, 243, 255, 0.05);
}

/* =========================================
   CONTENT
   ========================================= */

main.my-5 #wikiTabContent,
main.my-5 .tab-pane {
    width: 100%;
}

main.my-5 .tab-pane.fade.show.active,
main.my-5 .tab-pane.fade {
    opacity: 1;
}

main.my-5 #wikiTabContent .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px !important;
    margin-right: -12px !important;
}

main.my-5 #wikiTabContent .row > [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-bottom: 24px;
}

/* mata el fondo inline gris del col */
main.my-5 .col-md-6.col-lg-4 {
    background: transparent !important;
    padding: 0 12px !important;
}

/* =========================================
   CARD
   ========================================= */

main.my-5 .card {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(15, 35, 51, .98) 0%, rgba(10, 24, 36, .98) 100%) !important;
    border: 1px solid rgba(70, 172, 230, 0.16) !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    transition: .25s ease;
}

main.my-5 .card:hover {
    transform: translateY(-4px);
    border-color: rgba(85, 226, 255, 0.32) !important;
    box-shadow:
        0 14px 28px rgba(0,0,0,.32),
        0 0 20px rgba(0, 220, 255, 0.07);
}

main.my-5 .card-img-top {
    display: block !important;
    width: 100% !important;
    height: 210px !important;
    object-fit: cover;
    object-position: center;
    border: 0 !important;
    border-bottom: 1px solid rgba(86, 180, 235, 0.14);
    background: #0e2230;
}

/* por si el theme mete tamaÃ±os raros a img */
main.my-5 .card img {
    max-width: 100% !important;
}

/* =========================================
   BODY CARD
   ========================================= */

main.my-5 .card-body {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px !important;
    flex: 1 1 auto;
}

main.my-5 .card-title {
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    color: #57c9ff !important;
    word-break: break-word;
}

main.my-5 .card-text {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    color: #a8bac7 !important;
}

main.my-5 .card-text strong {
    color: #ffffff !important;
    font-weight: 700;
}

/* =========================================
   BOTON
   ========================================= */

main.my-5 .btn.btn-outline-primary {
    margin-top: auto !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(74, 215, 255, 0.42) !important;
    background: linear-gradient(180deg, rgba(5, 36, 50, .9) 0%, rgba(3, 22, 34, .95) 100%) !important;
    color: #7fe8ff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: .25s ease;
}

main.my-5 .btn.btn-outline-primary:hover,
main.my-5 .btn.btn-outline-primary:focus {
    background: linear-gradient(180deg, rgba(10, 68, 92, .96) 0%, rgba(6, 43, 61, .96) 100%) !important;
    color: #fff !important;
    border-color: rgba(126, 240, 255, .85) !important;
    box-shadow: 0 0 16px rgba(0, 225, 255, 0.10) !important;
}

/* =========================================
   ALERTA VACIA
   ========================================= */

main.my-5 .alert.alert-info {
    width: 100%;
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(89, 179, 230, 0.16);
    background: rgba(13, 34, 49, 0.95);
    color: #cdefff;
    padding: 18px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
    main.my-5 {
        padding: 22px 16px 28px;
    }

    main.my-5 h2 {
        font-size: 24px;
    }

    main.my-5 #wikiTab .nav-link {
        min-width: 135px;
        font-size: 13px !important;
    }

    main.my-5 .card-img-top {
        height: 190px !important;
    }
}

@media (max-width: 767px) {
    main.my-5 #wikiTab {
        gap: 10px;
    }

    main.my-5 #wikiTab .nav-item {
        width: 100%;
    }

    main.my-5 #wikiTab .nav-link {
        width: 100%;
        min-width: 100%;
    }

    main.my-5 .card-img-top {
        height: 170px !important;
    }

    main.my-5 .card-title {
        font-size: 20px !important;
    }
}
/* =========================
   ALERT BASE
========================= */

.alert{
    padding:14px 18px;
    border-radius:8px;
    font-size:15px;
    font-weight:500;
    margin-top:10px;
    border:1px solid transparent;
    display:flex;
    align-items:center;
    gap:10px;
    animation:fadeAlert .3s ease;
}

/* AnimaciÃ³n */
@keyframes fadeAlert{
    from{opacity:0; transform:translateY(-5px);}
    to{opacity:1; transform:translateY(0);}
}


/* =========================
   SUCCESS
========================= */

.alert-success{
    background:rgba(40,167,69,0.10);
    border-color:rgba(40,167,69,0.35);
    color:black;
    box-shadow:0 0 8px rgba(40,167,69,0.15);
}

.alert-success::before{
    content:"âœ”";
    font-weight:bold;
}
.bg-success {
    background-color: #dff0d8;
    color: black !important;
}

/* =========================
   ERROR
========================= */

.alert-danger{
    background:rgba(220,53,69,0.10);
    border-color:rgba(220,53,69,0.35);
    color:#ff9aa5;
    box-shadow:0 0 8px rgba(220,53,69,0.15);
}

.alert-danger::before{
    content:"âœ–";
    font-weight:bold;
}


/* =========================
   WARNING
========================= */

.alert-warning{
    background:rgba(255,193,7,0.10);
    border-color:rgba(255,193,7,0.35);
    color:#ffe38c;
}

.alert-warning::before{
    content:"âš ";
}


/* =========================
   INFO
========================= */

.alert-info{
    background:rgba(0,123,255,0.10);
    border-color:rgba(0,123,255,0.35);
    color:#8fd3ff;
}

.alert-info::before{
    content:"â„¹";
}


/* =========================
   HOVER SUAVE
========================= */

.alert:hover{
    filter:brightness(1.05);
}
.bg-error {
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.15), rgba(120, 0, 0, 0.25));
    border: 1px solid rgba(255, 80, 80, 0.35);
    color: #ffd6d6;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 13px;
    backdrop-filter: blur(6px);
    box-shadow: 
        0 0 15px rgba(255, 50, 50, 0.15),
        inset 0 0 10px rgba(255, 50, 50, 0.05);
    position: relative;
    overflow: hidden;
}

.bg-error:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,0,0,0.08), transparent 40%, transparent 60%, rgba(255,0,0,0.08));
    pointer-events: none;
}

.bg-error strong {
    color: #ff8a8a;
}
.bg-success {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.12), rgba(0, 100, 80, 0.25));
    border: 1px solid rgba(0, 255, 200, 0.35);
    color: white !important;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 13px;
    backdrop-filter: blur(6px);
    box-shadow: 
        0 0 15px rgba(0, 255, 180, 0.15),
        inset 0 0 10px rgba(0, 255, 180, 0.05);
    position: relative;
    overflow: hidden;
}

.bg-success:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,255,200,0.08), transparent 40%, transparent 60%, rgba(0,255,200,0.08));
    pointer-events: none;
}

.bg-success strong {
    color: white;
}
		</style>
