Diferencia entre revisiones de «MediaWiki:Common.css»

De Oroza RO Wiki
Ir a la navegación Ir a la búsqueda
Sin resumen de edición
Etiqueta: Revertido
Sin resumen de edición
 
(No se muestran 88 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
/* ========================================================================
/* =========================================================
   OROZA WIKI - ESTILOS BASE PREMIUM PARA GUIAS
   OROZA WIKI - ESTILOS GENERALES MEJORADOS
   Archivo pensado para: MediaWiki:Common.css
   ---------------------------------------------------------
  ------------------------------------------------------------------------
   Objetivo:
   Enfoque:
   - Mantener tu estilo visual limpio y profesional
   - Base visual moderna y premium
   - Mejorar el comportamiento en celular
   - Ideal para guias de sistemas de juego
   - Evitar que navbar, tablas e imágenes rompan el diseño
   - Compatible con MediaWiki
   - Hacer el CSS más fácil de entender y mantener
   - Sin estilos de navbar ni sidebar
========================================================= */
======================================================================== */




/* ========================================================================
/* =========================================================
   1. VARIABLES GLOBALES
  1) BASE GENERAL DEL SITIO
   ------------------------------------------------------------------------
  ---------------------------------------------------------
   Paleta principal, sombras, radios y transiciones reutilizables.
  Estilos globales del body, tipografía y color base
======================================================================== */
========================================================= */
body {
  background-color: #f2f2f2;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: #333;
  overflow-x: hidden; /* Evita scroll horizontal accidental */
}
 
/* Hace que imágenes y elementos no se salgan del ancho de pantalla */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
 
 
img {
  max-width: 100%;
  height: auto;
}
 
 
/* =========================================================
  2) CONTENIDO PRINCIPAL
  ---------------------------------------------------------
  Caja principal blanca donde se ve el contenido de la wiki
========================================================= */
#content {
  background-color: #fff;
  padding: 30px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
  max-width: 1200px;
}
 
/* =========================================================
  3) TITULO PRINCIPAL DE PAGINA
  ---------------------------------------------------------
  Controla el heading principal de MediaWiki
========================================================= */
.firstHeading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2b4a6d;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}
 
 
/* =========================================================
  4) TABLA DE CONTENIDO
  ---------------------------------------------------------
  Caja del índice / TOC
========================================================= */
#toc {
  background-color: #eef4ff;
  border: 1px solid #cddaf1;
  padding: 10px;
  border-radius: 8px;
}
 
 
/* =========================================================
  5) ENLACES
  ---------------------------------------------------------
  Estilo general para links
========================================================= */
a {
  color: #1e70bf;
  text-decoration: none;
}
 
a:hover {
  text-decoration: underline;
}
 
.mw-body a {
  color: #1e70bf;
  font-weight: 500;
}
 
 
/* =========================================================
  6) ENCABEZADOS JERARQUICOS
   ---------------------------------------------------------
  h1 a h6 centrados, elegantes y sin subrayado
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #2b4a6d;
  margin-top: 40px;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
  border-bottom: none;
  background: none !important;
}
 
/* Tamaños progresivos de títulos */
h1 {
  font-size: 2.8rem;
}
 
h2 {
  font-size: 2.5rem;
}
 
h3 {
  font-size: 2.3rem;
}
 
h4 {
  font-size: 1.6rem;
}
 
h5 {
  font-size: 1.3rem;
}
 
h6 {
  font-size: 1.1rem;
  color: #444;
}
 
 
/* =========================================================
  7) BOTONES CON ICONO
  ---------------------------------------------------------
  Útiles para enlaces visuales tipo botón
========================================================= */
.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2b4a6d;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
  box-sizing: border-box;
}
 
.button-icon:hover {
  background: #1e324f;
}
 
.button-icon::before {
  content: '??';
}
 
 
/* =========================================================
  8) CAJAS INFORMATIVAS
  ---------------------------------------------------------
  Bloques para avisos, recomendaciones y alertas
========================================================= */
.box-info {
  background: #eef4ff;
  border-left: 5px solid #1e70bf;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}
 
.box-warning {
  background: #fff4e5;
  border-left: 5px solid #ffa500;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}
 
.box-tip {
  background: #eaffea;
  border-left: 5px solid #28a745;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}
 
 
/* =========================================================
  9) LISTAS
  ---------------------------------------------------------
  Espaciado para ul y ol
========================================================= */
ul,
ol {
  padding-left: 40px;
  margin-bottom: 20px;
}
 
 
/* =========================================================
  10) NAVBAR HORIZONTAL
  ---------------------------------------------------------
  Menú superior personalizado
  Mejorado para que no se rompa tan fácil en pantallas chicas
========================================================= */
.oroza-navbar {
  background: #2b3e50;
  padding: 15px 25px;
  display: flex;
  flex-wrap: wrap; /* Permite acomodar links si no caben */
  gap: 18px 30px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-bottom: 3px solid #ffb400;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 20px auto;
  max-width: 1200px;
  position: relative;
  box-sizing: border-box;
}
 
.oroza-navbar a {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap; /* Evita que un link se parta en dos renglones */
}
 
.oroza-navbar a:hover {
  text-decoration: underline;
  color: #ffcc33 !important;
}
 
/* Logo en desktop: se mantiene posicionado a la izquierda */
.oroza-navbar-logo {
  position: absolute;
  left: 25px;
  display: flex;
  align-items: center;
}
 
.oroza-navbar-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 5px white);
}
 
 
/* =========================================================
  11) SIDEBAR LATERAL
  ---------------------------------------------------------
  Menú lateral de navegación
========================================================= */
.oroza-sidebar {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 10px;
  width: 280px;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  box-sizing: border-box;
}
 
/* Título de cada sección del menú lateral */
.oroza-sidebar .menu-title {
  font-weight: bold;
  color: #2b4a6d;
  font-size: 17px;
  margin: 20px 0 12px;
  border-left: 4px solid #ffb400;
  padding-left: 10px;
}
 
/* Lista interna del sidebar */
.oroza-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
 
.oroza-sidebar li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.oroza-sidebar li::before {
  display: inline-block;
  margin-right: 3px;
}
 
 
/* =========================================================
  12) TABLAS PERSONALIZADAS
  ---------------------------------------------------------
  Mejoradas para escritorio y con scroll horizontal en móvil
========================================================= */
.oroza-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}
 
.oroza-table thead {
  background-color: #2b4a6d;
  color: #fff;
  text-align: left;
  font-weight: bold;
}
 
.oroza-table th,
.oroza-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}
 
.oroza-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
 
.oroza-table tbody tr:hover {
  background-color: #eef4ff;
}
 
.oroza-table .highlight {
  color: #ffb400;
  font-weight: bold;
}
 
.oroza-table .center-icon {
  text-align: center;
  font-size: 18px;
}
 
.oroza-table .zeny {
  color: #28a745;
  font-weight: bold;
}
 
/* Variante opcional para tablas de ancho automático */
.oroza-table.auto-width {
  width: auto !important;
  max-width: 100%;
  table-layout: auto !important;
  margin: 20px auto;
  display: table;
}
 
 
/* =========================================================
  13) EFECTO ZOOM EN IMAGENES
  ---------------------------------------------------------
  Útil para imágenes pequeñas o decorativas
========================================================= */
.zoom-img {
  transition: transform 0.25s ease;
  cursor: zoom-in;
}
 
.zoom-img:hover {
  transform: scale(1.35);
  z-index: 10;
}
 
 
/* =========================================================
  14) IMAGENES REDONDEADAS CON EFECTO SUAVE
  ---------------------------------------------------------
  Tus imágenes principales decorativas
========================================================= */
img {
  max-width: 100%;
  height: auto;
}
 
img.round-fade {
  width: 55%;
  border-radius: 20px;
  margin: 10px auto;
  display: block;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  opacity: 0.97;
}
 
img.round-fade:hover {
  transform: scale(1.08);
  opacity: 1;
}
 
 
/* =========================================================
  15) OCULTAR ELEMENTOS ORIGINALES DE MEDIAWIKI
  ---------------------------------------------------------
  Esto oculta partes viejas del layout por defecto
========================================================= */
#p-logo,
#footer,
#mw-panel {
  display: none !important;
}
 
 
/* =========================================================
  16) TOGGLE / MENU COLAPSABLE
  ---------------------------------------------------------
  Si no lo usas, se deja oculto
========================================================= */
.toggle-checkbox {
  display: none;
}
 
.toggle-label {
  display: none !important;
}
 
 
/* =========================================================
  17) TABLET Y MOVIL
   ---------------------------------------------------------
  Aquí está la mejora más importante.
  Ya no apilamos la navbar completa en columna.
  En lugar de eso:
  - reducimos tamaños
  - hacemos wrap controlado
  - ajustamos logo
  - permitimos scroll en tablas
========================================================= */
/* =========================================================
  RESPONSIVE CORREGIDO
  ---------------------------------------------------------
   - No reduce el ancho en PC
  - Corrige mejor el móvil
  - Usa !important en lo necesario porque en wiki a veces
    hay estilos inline que ganan prioridad visual
========================================================= */
@media screen and (max-width: 768px) {
  /* Caja principal más compacta en móvil */
  #content {
    padding: 16px !important;
    margin: 10px !important;
    border-radius: 10px !important;
  }
 
  /* Si tu layout usa wrapper flex */
  .oroza-flex-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
 
  .oroza-flex-wrapper > div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
 
  /* Sidebar a ancho completo */
  .oroza-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    display: block !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
  }
 
  .oroza-sidebar .menu-title {
    font-size: 15px !important;
    margin: 16px 0 10px !important;
  }
 
  .oroza-sidebar li {
    font-size: 13px !important;
    line-height: 1.35 !important;
    gap: 6px !important;
  }
 
  /* Navbar:
    en vez de ponerla en columna, dejamos fila con wrap */
  .oroza-navbar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 10px !important;
    padding: 12px 10px !important;
    margin: 12px 10px !important;
    border-radius: 10px !important;
  }
 
  /* El logo absoluto suele romper el centrado en móvil */
  .oroza-navbar-logo {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 6px !important;
  }
 
  .oroza-navbar-logo img {
    width: 56px !important;
    max-width: 56px !important;
  }
 
  .oroza-navbar a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 9px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
 
  /* Títulos más compactos en móvil */
  .firstHeading {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
  }
 
  h1 {
    font-size: 1.9rem !important;
    margin-top: 24px !important;
    margin-bottom: 18px !important;
  }
 
  h2 {
    font-size: 1.6rem !important;
    margin-top: 22px !important;
    margin-bottom: 16px !important;
  }
 
  h3 {
    font-size: 1.35rem !important;
    margin-top: 20px !important;
    margin-bottom: 14px !important;
  }
 
  h4 {
    font-size: 1.15rem !important;
    margin-top: 18px !important;
    margin-bottom: 12px !important;
  }
 
  h5 {
    font-size: 1rem !important;
    margin-top: 16px !important;
    margin-bottom: 10px !important;
  }
 
  h6 {
    font-size: 0.95rem !important;
    margin-top: 14px !important;
    margin-bottom: 10px !important;
  }
 
  /* Listas más compactas */
  ul,
  ol {
    padding-left: 22px !important;
    margin-bottom: 16px !important;
  }
 
  /* Cajas informativas */
  .box-info,
  .box-warning,
  .box-tip {
    padding: 12px !important;
    margin: 14px 0 !important;
    border-radius: 8px !important;
  }
 
  /* Botones ocupan mejor el ancho disponible */
  .button-icon {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
 
  /* Tablas con scroll horizontal */
  .oroza-table,
  .oroza-table.auto-width {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    white-space: nowrap !important;
  }
 
  .oroza-table th,
  .oroza-table td {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 10px 12px !important;
  }
 
  /* Imágenes más fluidas */
  img.round-fade {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    margin: 10px auto !important;
  }
 
  /* Hover desactivado en móvil */
  .zoom-img:hover,
  img.round-fade:hover {
    transform: none !important;
    opacity: 0.97 !important;
  }
 
  .toggle-label {
    display: none !important;
  }
}
 
/* =========================================================
  MOVILES PEQUEÑOS
========================================================= */
@media screen and (max-width: 480px) {
  #content {
    padding: 12px !important;
    margin: 8px !important;
    border-radius: 8px !important;
  }
 
  .oroza-navbar {
    gap: 6px 8px !important;
    padding: 10px 8px !important;
  }
 
  .oroza-navbar a {
    font-size: 12px !important;
    padding: 6px 8px !important;
  }
 
  .oroza-navbar-logo img {
    width: 48px !important;
    max-width: 48px !important;
  }
 
  .firstHeading {
    font-size: 1.4rem !important;
  }
 
  h1 {
    font-size: 1.65rem !important;
  }
 
  h2 {
    font-size: 1.4rem !important;
  }
 
  h3 {
    font-size: 1.2rem !important;
  }
 
  .oroza-sidebar {
    padding: 12px !important;
  }
 
  .oroza-sidebar li {
    font-size: 12px !important;
  }
}
 
/* =========================================================
  19) AJUSTE PARA DISPOSITIVOS QUE SI SOPORTAN HOVER
  ---------------------------------------------------------
  Solo deja zoom bonito en escritorio / mouse
========================================================= */
@media (hover: hover) {
  .zoom-img:hover {
    transform: scale(1.35);
    z-index: 10;
  }
 
  img.round-fade:hover {
    transform: scale(1.08);
    opacity: 1;
  }
}
 
 
/* =========================================================
  20) AJUSTE PARA DISPOSITIVOS TOUCH
  ---------------------------------------------------------
  Quita animaciones de hover agresivas en celular
========================================================= */
@media (hover: none) {
  .zoom-img:hover,
  img.round-fade:hover {
    transform: none;
    opacity: 0.97;
  }
}
 
 
 
/* =========================================================
  MENU LATERAL OROZA - VERSION MEJORADA
  ---------------------------------------------------------
  Objetivo:
  - Integrarse con el estilo general blanco + dorado
  - Verse más premium y ordenado
  - Mantener compatibilidad con tu HTML actual
  - Funcionar bien en desktop y celular
  - No modificar navbar ni contenido principal
========================================================= */
 
 
/* =========================================================
  1) VARIABLES VISUALES DEL MENU
  ---------------------------------------------------------
  Si luego quieres ajustar color, sombra o bordes,
  aquí lo cambias todo más fácil.
========================================================= */
:root {
:root {
    --oroza-bg: #eef2f7;
  --oroza-side-bg: #ffffff;
    --oroza-bg-soft: #f8fafc;
  --oroza-side-panel: #ffffff;
    --oroza-surface: #ffffff;
  --oroza-side-item: #fbfcfe;
    --oroza-surface-2: #f9fbff;
  --oroza-side-item-hover: #f4f8fc;
  --oroza-side-border: #e4ebf3;
  --oroza-side-border-soft: #eef3f8;
  --oroza-side-text: #243246;
  --oroza-side-muted: #607086;
  --oroza-side-gold: #dcae1d;
  --oroza-side-gold-strong: #c79400;
  --oroza-side-gold-soft: rgba(220, 174, 29, 0.12);
  --oroza-side-shadow: 0 12px 30px rgba(22, 34, 52, 0.08);
  --oroza-side-shadow-soft: 0 4px 14px rgba(22, 34, 52, 0.05);
  --oroza-side-radius: 18px;
  --oroza-side-radius-sm: 12px;
}


    --oroza-text: #2f3640;
    --oroza-text-soft: #647084;
    --oroza-text-muted: #7d8796;


    --oroza-heading: #203a57;
/* =========================================================
    --oroza-heading-2: #2b4a6d;
  2) CONTENEDOR GENERAL DEL MENU
    --oroza-heading-dark: #16283d;
  ---------------------------------------------------------
  Este envuelve el toggle y el panel lateral.
========================================================= */
.oroza-sidebar-toggle {
  width: 100%;
  color: var(--oroza-side-text);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  box-sizing: border-box;
}


    --oroza-primary: #2f76c2;
    --oroza-primary-soft: #edf5ff;
    --oroza-primary-border: #d6e6f8;


    --oroza-accent: #e5b94b;
/* =========================================================
    --oroza-accent-strong: #d89a00;
  3) CHECKBOX OCULTO PARA TOGGLE EN MOVIL
    --oroza-accent-soft: #fff5d9;
  ---------------------------------------------------------
  Se usa solo para abrir/cerrar el menú en pantallas chicas.
========================================================= */
.toggle-checkbox {
  display: none;
}
 


    --oroza-success: #2c9c61;
/* =========================================================
    --oroza-success-soft: #ebfff3;
  4) BOTON DE TOGGLE MOVIL
  ---------------------------------------------------------
  En desktop permanece oculto.
  En móvil aparece como botón para mostrar el menú.
========================================================= */
.toggle-label {
  display: none;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--oroza-side-border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  color: var(--oroza-side-text);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: var(--oroza-side-shadow-soft);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}


    --oroza-warning: #d48b1f;
.toggle-label:hover {
    --oroza-warning-soft: #fff6e8;
  border-color: #d8e1ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 20px rgba(22, 34, 52, 0.08);
}


    --oroza-danger: #c45454;
    --oroza-danger-soft: #fff1f1;


    --oroza-border: #dbe3ec;
/* =========================================================
    --oroza-border-soft: #e9eef5;
  5) PANEL PRINCIPAL DEL SIDEBAR
  ---------------------------------------------------------
  Caja blanca premium del menú lateral.
========================================================= */
.oroza-sidebar {
  background: var(--oroza-side-panel);
  border: 1px solid var(--oroza-side-border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--oroza-side-shadow);
  box-sizing: border-box;
}


    --oroza-shadow-xs: 0 2px 6px rgba(23, 39, 58, 0.05);
    --oroza-shadow-sm: 0 8px 20px rgba(23, 39, 58, 0.07);
    --oroza-shadow-md: 0 14px 36px rgba(23, 39, 58, 0.10);
    --oroza-shadow-lg: 0 20px 50px rgba(23, 39, 58, 0.14);


    --oroza-radius-sm: 10px;
/* =========================================================
    --oroza-radius-md: 16px;
  6) TITULOS DE CATEGORIA
    --oroza-radius-lg: 24px;
  ---------------------------------------------------------
  Bloques tipo sección para dividir el menú.
  Estilo azul + dorado, combinado con la navbar.
========================================================= */
.oroza-sidebar .menu-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #35506f 0%, #2b3e50 100%);
  border: 1px solid rgba(255, 180, 0, 0.35);
  border-left: 5px solid #ffb400;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


    --oroza-transition-fast: 0.2s ease;
.oroza-sidebar .menu-title:first-child {
    --oroza-transition: 0.28s ease;
  margin-top: 0;
}
}




/* ========================================================================
/* =========================================================
   2. BASE GENERAL DEL SITIO
   7) LISTAS BASE DEL MENU
   ------------------------------------------------------------------------
   ---------------------------------------------------------
  Fondo general con un look más premium y menos plano.
  Elimina estilos de lista por defecto.
======================================================================== */
========================================================= */
body {
.oroza-sidebar ul {
    background:
  list-style: none;
        radial-gradient(circle at top left, rgba(229, 185, 75, 0.10), transparent 24%),
  margin: 0;
        radial-gradient(circle at top right, rgba(47, 118, 194, 0.08), transparent 28%),
  padding: 0;
        linear-gradient(180deg, #f8fafd 0%, #eef2f7 100%);
}
    color: var(--oroza-text);
 
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
.oroza-sidebar li {
     line-height: 1.7;
  margin: 0;
  padding: 0;
}
 
.oroza-sidebar li + li {
  margin-top: 6px;
}
 
 
/* =========================================================
  8) ENLACES DEL MENU
  ---------------------------------------------------------
  Cada opción se ve como tarjeta pequeña.
========================================================= */
.oroza-sidebar li a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 12px;
  background: var(--oroza-side-item);
  border: 1px solid var(--oroza-side-border-soft);
  border-radius: var(--oroza-side-radius-sm);
  color: var(--oroza-side-text) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: var(--oroza-side-shadow-soft);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}
 
/* Hover suave, elegante y compatible con tu look */
.oroza-sidebar li a:hover {
  background: var(--oroza-side-item-hover);
  border-color: #dce5ef;
  color: #162234 !important;
  text-decoration: none !important;
  transform: translateX(3px);
  box-shadow: 0 8px 18px rgba(22, 34, 52, 0.08);
}
 
/* Focus visible para accesibilidad */
.oroza-sidebar li a:focus {
  outline: none;
  border-color: rgba(220, 174, 29, 0.58);
  box-shadow: 0 0 0 4px rgba(220, 174, 29, 0.12);
}
 
/* Estado activo opcional:
  si algún día agregas class="active" al link actual */
.oroza-sidebar li a.active,
.oroza-sidebar li a.is-active {
  background: linear-gradient(180deg, #fffaf1 0%, #fff4dd 100%);
  border-color: rgba(220, 174, 29, 0.38);
  color: #1a2738 !important;
  box-shadow:
    0 8px 18px rgba(22, 34, 52, 0.06),
     inset 0 0 0 1px rgba(220, 174, 29, 0.08);
}
}




/* ========================================================================
/* =========================================================
   3. CONTENEDOR PRINCIPAL
   9) ICONO, TEXTO Y FLECHA
   ------------------------------------------------------------------------
   ---------------------------------------------------------
   Caja principal del contenido con más presencia visual.
   Mejor control visual de cada parte del link.
======================================================================== */
========================================================= */
#content {
.menu-icon {
    max-width: 1220px;
  width: 22px;
    margin: 26px auto;
  min-width: 22px;
    padding: 34px 38px;
  text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  font-size: 16px;
    border: 1px solid rgba(219, 227, 236, 0.9);
  line-height: 1;
    border-radius: var(--oroza-radius-md);
  opacity: 0.96;
    box-shadow: var(--oroza-shadow-md);
}
 
.menu-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
}


.mw-body,
.menu-arrow {
.mw-body-content,
  color: var(--oroza-side-gold-strong);
.mw-parser-output {
  font-size: 14px;
    color: var(--oroza-text);
  font-weight: 900;
    line-height: 1.7;
  line-height: 1;
  opacity: 0.92;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
}


.mw-parser-output p {
.oroza-sidebar li a:hover .menu-arrow {
    margin: 0 0 18px;
  transform: translateX(2px);
    color: var(--oroza-text);
  opacity: 1;
}
}




/* ========================================================================
/* =========================================================
   4. TITULO PRINCIPAL DE PAGINA
   10) AJUSTE DESKTOP
   ------------------------------------------------------------------------
   ---------------------------------------------------------
   Más imponente, elegante y apropiado para guias destacadas.
   Mantiene el menú con un ancho agradable y estable.
======================================================================== */
========================================================= */
.firstHeading {
@media screen and (min-width: 981px) {
    position: relative;
  .oroza-sidebar {
    margin: 0 0 28px;
     max-width: 330px;
    padding-bottom: 18px;
  }
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
     line-height: 1.15;
    letter-spacing: 0.2px;
    color: var(--oroza-heading);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
}


.firstHeading::after {
 
    content: "";
/* =========================================================
  11) TABLET / MOVIL
  ---------------------------------------------------------
  Muestra botón toggle y colapsa el menú lateral.
========================================================= */
@media screen and (max-width: 980px) {
  .toggle-label {
     display: block;
     display: block;
     width: 110px;
  }
     height: 4px;
 
     margin: 14px auto 0;
  .oroza-sidebar {
     border-radius: 999px;
    display: none;
     background: linear-gradient(90deg, var(--oroza-accent), var(--oroza-primary));
    padding: 14px;
    box-shadow: 0 0 12px rgba(229, 185, 75, 0.22);
    border-radius: 18px;
  }
 
  .toggle-checkbox:checked + .toggle-label + .oroza-sidebar {
    display: block;
  }
 
  .oroza-sidebar .menu-title {
    font-size: 14px;
    padding: 11px 12px;
  }
 
  .oroza-sidebar li a {
    min-height: 44px;
    font-size: 13.5px;
    padding: 10px 11px;
  }
 
  .menu-icon {
     width: 20px;
     min-width: 20px;
    font-size: 15px;
  }
}
 
 
/* =========================================================
  12) CELULAR PEQUEÑO
  ---------------------------------------------------------
  Compacta un poco más sin perder legibilidad.
========================================================= */
@media screen and (max-width: 480px) {
  .toggle-label {
     padding: 12px 14px;
    font-size: 13px;
    border-radius: 12px;
  }
 
  .oroza-sidebar {
    padding: 12px;
     border-radius: 16px;
  }
 
  .oroza-sidebar .menu-title {
    gap: 8px;
    margin: 16px 0 9px;
    padding: 10px 11px;
    font-size: 13px;
  }
 
  .oroza-sidebar li + li {
    margin-top: 5px;
  }
 
  .oroza-sidebar li a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13px;
    gap: 9px;
  }
 
  .menu-icon {
    width: 18px;
    min-width: 18px;
     font-size: 14px;
  }
 
  .menu-arrow {
    font-size: 13px;
  }
}
 
 
 
/* =========================================================
  OCULTAR TITULO NATIVO Y PANEL SUPERIOR DE MEDIAWIKI
  ---------------------------------------------------------
  - .mw-page-title-main: título nativo de la página
  - .mw-head / #mw-head: panel superior nativo
========================================================= */
 
/* Oculta el título nativo */
.mw-page-title-main {
  display: none !important;
}
 
/* Oculta el panel superior si viene como clase */
.mw-head {
  display: none !important;
}
 
/* Oculta el panel superior si tu skin lo maneja como id */
#mw-head {
  display: none !important;
}
 
/* Opcional: también quita la base/fondo superior del skin */
#mw-head-base {
  display: none !important;
}
 
 
/* ================================================================================================================== */
/* =========================================== ESTILOS PARA PAGINAS DE ENMEDIO ====================================== */
/* ================================================================================================================== */
 
/* =========================================================
  OROZA HOME / LANDING WIKI
  VERSION MEJORADA CON MAS CONTRASTE
  Pensada para que no se mezclen colores entre bloques.
========================================================= */
 
.oroza-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
 
/* =========================
  HERO PRINCIPAL
========================= */
.oroza-page .oroza-hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #d5e1ee;
  border-radius: 22px;
  padding: 34px 28px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(43, 74, 109, 0.08);
}
 
.oroza-page .oroza-hero-logo {
  margin-bottom: 18px;
}
 
.oroza-page .oroza-page-title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #183554;
}
 
.oroza-page .oroza-page-intro {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #4a6481;
}
 
/* =========================
  TEXTO GENERAL
========================= */
.oroza-page .oroza-section-text {
  margin: 0 0 16px;
  color: #405973;
  line-height: 1.8;
}
 
.oroza-page .oroza-feature-list {
  margin: 0;
  padding-left: 20px;
  color: #3f566f;
  line-height: 1.8;
}
 
.oroza-page .oroza-feature-list li + li {
  margin-top: 10px;
}
 
.oroza-page .oroza-inline-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid #d2e0f2;
  color: #21466c;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
 
/* =========================================================
  ACORDEONES
  Centrado visual completo + azul fuerte Oroza
========================================================= */
.oroza-page .oroza-accordion {
  background: #ffffff;
  border: 1px solid #d3deea;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(43, 74, 109, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
}
}


.oroza-page .oroza-accordion:hover {
  box-shadow: 0 14px 30px rgba(43, 74, 109, 0.12);
}


/* ========================================================================
.oroza-page .oroza-accordion summary {
  5. TABLA DE CONTENIDO
  position: relative;
  ------------------------------------------------------------------------
  padding: 18px 56px 18px 22px;
  Se convierte en una caja elegante y más integrada al diseño.
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%) !important;
======================================================================== */
  color: #ffffff !important;
#toc {
  font-weight: 800;
    margin: 26px 0 30px;
  font-size: 18px;
    padding: 18px 20px;
  text-align: center;
    background: linear-gradient(180deg, #f9fcff 0%, #f1f7ff 100%);
  cursor: pointer;
    border: 1px solid var(--oroza-primary-border);
  list-style: none;
    border-radius: var(--oroza-radius-sm);
  display: flex;
    box-shadow: var(--oroza-shadow-sm);
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
 
.oroza-page .oroza-accordion summary:hover {
  background: linear-gradient(180deg, #3d5f89 0%, #305176 100%) !important;
}
 
.oroza-page .oroza-accordion summary::-webkit-details-marker {
  display: none;
}
 
.oroza-page .oroza-accordion summary::after {
  content: "▲";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb400;
  font-size: 13px;
  transition: transform 0.25s ease;
}
 
.oroza-page .oroza-accordion:not([open]) summary::after {
  transform: translateY(-50%) rotate(180deg);
}
 
.oroza-page .oroza-accordion-content {
  padding: 24px 22px;
  background: #ffffff;
  color: #44566d;
  line-height: 1.8;
  text-align: center;
}
 
.oroza-page .oroza-accordion-content > * {
  margin-left: auto;
  margin-right: auto;
}
 
.oroza-page .oroza-accordion-content .oroza-section-text,
.oroza-page .oroza-accordion-content .oroza-page-intro {
  max-width: 900px;
  text-align: center;
}
 
.oroza-page .oroza-accordion-content .oroza-feature-list {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 22px;
}
 
 
/* =========================================================
  TABLAS
  Azul fuerte Oroza + look mas premium
========================================================= */
.oroza-page .oroza-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
  border-radius: 16px;
}
 
.oroza-page .oroza-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #cfdbe8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(43, 74, 109, 0.08);
}
 
/* Encabezado superior de la tabla */
.oroza-page .oroza-info-table thead th {
  padding: 16px 20px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid #24415f;
  letter-spacing: 0.2px;
}
}


#toc .toctitle {
/* Celdas generales */
    margin-bottom: 10px;
.oroza-page .oroza-info-table tbody th,
.oroza-page .oroza-info-table tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid #e7eef6;
  vertical-align: middle;
  font-size: 14px;
}
}


#toc .toctitle h2 {
/* Columna izquierda */
    margin: 0;
.oroza-page .oroza-info-table tbody th {
    padding: 0;
  width: 40%;
    border: none !important;
  background: #f5f9fd;
    text-align: left;
  color: #1f4368;
    font-size: 1.15rem;
  font-weight: 800;
    color: var(--oroza-heading);
  text-align: left;
    box-shadow: none;
  border-right: 1px solid #e2eaf3;
    background: none !important;
}
}


#toc ul {
/* Columna derecha */
    margin: 8px 0 0;
.oroza-page .oroza-info-table tbody td {
    padding-left: 22px;
  background: #ffffff;
  color: #4b627b;
  font-weight: 500;
  text-align: left;
}
}


#toc li {
/* Zebra sutil para mejor lectura */
    margin: 6px 0;
.oroza-page .oroza-info-table tbody tr:nth-child(even) th {
  background: #eef4fa;
}
}


#toc a {
.oroza-page .oroza-info-table tbody tr:nth-child(even) td {
    color: var(--oroza-primary);
  background: #fbfdff;
    font-weight: 600;
}
}


/* Hover elegante */
.oroza-page .oroza-info-table tbody tr:hover th {
  background: #e7f0f9;
}


/* ========================================================================
.oroza-page .oroza-info-table tbody tr:hover td {
  6. ENLACES
  background: #f7fbff;
  ------------------------------------------------------------------------
  Enlaces con mejor jerarquía y hover más elegante.
======================================================================== */
a,
.mw-body a,
.mw-parser-output a {
    color: var(--oroza-primary);
    text-decoration: none;
    font-weight: 600;
    transition:
        color var(--oroza-transition-fast),
        opacity var(--oroza-transition-fast);
}
}


a:hover,
/* Ultima fila */
.mw-body a:hover,
.oroza-page .oroza-info-table tbody tr:last-child th,
.mw-parser-output a:hover {
.oroza-page .oroza-info-table tbody tr:last-child td {
    color: var(--oroza-heading-dark);
  border-bottom: none;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
}
}


/* Responsive */
@media (max-width: 768px) {
  .oroza-page .oroza-accordion summary {
    font-size: 16px;
    padding: 15px 48px 15px 16px;
  }
  .oroza-page .oroza-accordion-content {
    padding: 18px 16px;
  }
  .oroza-page .oroza-info-table thead th {
    font-size: 15px;
    padding: 14px 16px;
  }
  .oroza-page .oroza-info-table tbody th,
  .oroza-page .oroza-info-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
}


/* ========================================================================
/* =========================
   7. TITULOS Y SUBTITULOS
   TARJETAS DE ACCESO RAPIDO
   ------------------------------------------------------------------------
   Ya no van completamente
   Jerarquía visual más moderna para guias.
   del mismo azul para que
   - h1 se mantiene más hero
   no se fundan visualmente.
  - h2/h3/h4 funcionan como secciones elegantes
========================= */
======================================================================== */
.oroza-page .oroza-action-card {
h1,
  background: #ffffff;
h2,
  border: 1px solid #d7e2ee;
h3,
  border-top: 4px solid #2b4a6d;
h4,
  border-radius: 18px;
h5,
  padding: 22px;
h6 {
  box-shadow: 0 10px 22px rgba(43, 74, 109, 0.08);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--oroza-heading);
    line-height: 1.3;
    border-bottom: none !important;
    background: none !important;
}
}


/* Titulo mayor dentro del contenido */
.oroza-page .oroza-action-title {
h1 {
  margin: 0 0 16px;
    margin: 40px 0 20px;
  font-size: 20px;
    text-align: center;
  font-weight: 800;
    font-size: 2.6rem;
  color: #1e4166;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
}


/* Secciones principales */
.oroza-page .oroza-action-links {
h2 {
  display: flex;
    position: relative;
  flex-direction: column;
    margin: 42px 0 18px;
  gap: 12px;
    padding: 0 0 12px 18px;
    text-align: left;
    font-size: 1.9rem;
    font-weight: 800;
    border-left: 5px solid var(--oroza-accent);
}
}


h2::after {
.oroza-page .oroza-action-link {
    content: "";
  display: block;
    position: absolute;
  padding: 12px 14px;
    left: 18px;
  border: 1px solid #d5e1ee;
    bottom: 0;
  border-radius: 12px;
    width: 95px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
    height: 3px;
  color: #ffffff;
    border-radius: 999px;
  font-weight: 700;
    background: linear-gradient(90deg, var(--oroza-accent), transparent);
  text-decoration: none;
  transition: all 0.25s ease;
}
}


/* Subsecciones */
.oroza-page .oroza-action-link:hover {
h3 {
  background: #ffb400;
    margin: 30px 0 14px;
  border-color: #ffb400;
    padding-bottom: 8px;
  color: #17324f;
    text-align: left;
  transform: translateY(-1px);
    font-size: 1.45rem;
    font-weight: 750;
    color: var(--oroza-heading-2);
    border-bottom: 1px solid var(--oroza-border-soft) !important;
}
}


/* Niveles menores */
/* =========================
h4 {
  GRID
    margin: 24px 0 10px;
========================= */
    text-align: left;
.oroza-page .oroza-grid {
    font-size: 1.18rem;
  display: grid;
    font-weight: 700;
  gap: 20px;
    color: var(--oroza-heading-2);
  margin: 20px 0 0;
}
}


h5 {
.oroza-page .oroza-grid-2 {
    margin: 20px 0 10px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    text-align: left;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--oroza-heading-2);
}
}


h6 {
/* =========================
     margin: 18px 0 8px;
  RESPONSIVE
     text-align: left;
========================= */
     font-size: 0.95rem;
@media (max-width: 768px) {
     font-weight: 700;
  .oroza-page {
     color: var(--oroza-text-soft);
     padding: 14px;
     text-transform: uppercase;
  }
     letter-spacing: 0.6px;
 
  .oroza-page .oroza-hero-card {
    padding: 24px 18px;
     border-radius: 18px;
  }
 
  .oroza-page .oroza-page-title {
     font-size: 26px;
  }
 
  .oroza-page .oroza-page-intro {
    font-size: 15px;
    line-height: 1.75;
  }
 
  .oroza-page .oroza-accordion summary {
     font-size: 16px;
    padding: 15px 18px;
  }
 
  .oroza-page .oroza-accordion-content {
     padding: 18px;
  }
 
  .oroza-page .oroza-info-table tbody th,
  .oroza-page .oroza-info-table tbody td {
     font-size: 13px;
     padding: 12px 14px;
  }
}
}




/* ========================================================================
 
   8. TEXTO AUXILIAR Y ESPACIADOS
/* =========================================================
   ------------------------------------------------------------------------
   OROZA DOWNLOAD PAGE
   Mejora legibilidad en listas y estructuras de texto comunes.
   CSS adicional solo para componentes que tu base actual
======================================================================== */
   no incluye: layout lateral, cajas de aviso, pasos y
ul,
  bloque final.
ol {
========================================================= */
    margin: 0 0 22px;
 
    padding-left: 28px;
/* Layout general */
.oroza-download-shell {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
}


li {
.oroza-download-sidebar {
    margin-bottom: 8px;
  width: 260px;
  flex-shrink: 0;
}
}


li > ul,
.oroza-download-main {
li > ol {
  flex: 1;
    margin-top: 8px;
  min-width: 0;
    margin-bottom: 10px;
}
}


b,
/* Etiqueta superior del hero */
strong {
.oroza-download-kicker {
    color: var(--oroza-heading-dark);
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #edf4ff 0%, #e6eef9 100%);
  border: 1px solid #d3dfec;
  color: #21466c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
}


/* Caja de aviso principal */
.oroza-download-notice {
  margin-bottom: 22px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d7e2ee;
  border-left: 5px solid #2b4a6d;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(43, 74, 109, 0.08);
  text-align: center;
}


/* ========================================================================
.oroza-download-notice-title {
  9. BOTONES / ENLACES DESTACADOS
  display: block;
  ------------------------------------------------------------------------
  margin-bottom: 10px;
  Pensados para botones de guias, enlaces rapidos o acciones visuales.
  font-size: 18px;
======================================================================== */
  font-weight: 800;
.button-icon {
  color: #183554;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--oroza-heading) 0%, var(--oroza-primary) 100%);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    box-shadow:
        0 10px 22px rgba(32, 58, 87, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        transform var(--oroza-transition),
        box-shadow var(--oroza-transition),
        filter var(--oroza-transition);
}
}


.button-icon::before {
/* Secciones de contenido */
    content: "✦";
.oroza-download-section {
    font-size: 0.9rem;
  margin-bottom: 22px;
    line-height: 1;
  padding: 28px 24px;
    color: #ffe7a2;
  background: #ffffff;
  border: 1px solid #d7e2ee;
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(43, 74, 109, 0.08);
}
}


.button-icon:hover {
.oroza-download-section-title {
    color: #ffffff !important;
  margin: 0 0 14px;
    text-decoration: none;
  text-align: center;
    transform: translateY(-2px);
  font-size: 28px;
    filter: brightness(1.04);
  line-height: 1.2;
    box-shadow:
  font-weight: 800;
        0 14px 28px rgba(32, 58, 87, 0.22),
  color: #183554;
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
}


/* Pasos */
.oroza-download-steps {
  max-width: 860px;
  margin: 22px auto 0;
  display: grid;
  gap: 14px;
}


/* ========================================================================
.oroza-download-step {
  10. CAJAS INFORMATIVAS
  display: flex;
  ------------------------------------------------------------------------
  gap: 14px;
  Ahora se ven más premium y menos planas.
  align-items: flex-start;
======================================================================== */
  padding: 18px;
.box-info,
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
.box-warning,
  border: 1px solid #dce5ef;
.box-tip {
  border-radius: 18px;
    position: relative;
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.05);
    margin: 22px 0;
    padding: 18px 18px 18px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    box-shadow: var(--oroza-shadow-sm);
    overflow: hidden;
}
}


.box-info::before,
.oroza-download-step-number {
.box-warning::before,
  width: 36px;
.box-tip::before {
  height: 36px;
    content: "";
  min-width: 36px;
    position: absolute;
  border-radius: 50%;
    top: 0;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
    left: 0;
  color: #ffffff;
    width: 100%;
  font-size: 15px;
    height: 4px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 14px rgba(43, 74, 109, 0.18);
}
}


.box-info {
.oroza-download-step-body {
    background: linear-gradient(180deg, #f7fbff 0%, var(--oroza-primary-soft) 100%);
  flex: 1;
    border-color: var(--oroza-primary-border);
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  color: #44566d;
}
}


.box-info::before {
/* Caja de ayuda */
    background: linear-gradient(90deg, var(--oroza-primary), #6bb3ff);
.oroza-download-tip {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff8ea 100%);
  border: 1px solid #f0dfb3;
  border-left: 5px solid #ffb400;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(255, 180, 0, 0.08);
  text-align: center;
}
}


.box-warning {
.oroza-download-tip-title {
    background: linear-gradient(180deg, #fffaf2 0%, var(--oroza-warning-soft) 100%);
  display: block;
    border-color: #f2d7ac;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 800;
  color: #6f4d00;
}
}


.box-warning::before {
/* Bloque final */
    background: linear-gradient(90deg, var(--oroza-warning), #ffcf70);
.oroza-download-highlight {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 26px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
  border: 1px solid #274361;
  box-shadow: 0 14px 26px rgba(43, 74, 109, 0.18);
  text-align: center;
}
}


.box-tip {
.oroza-download-highlight-title {
    background: linear-gradient(180deg, #f5fff9 0%, var(--oroza-success-soft) 100%);
  display: block;
    border-color: #cfead9;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}
}


.box-tip::before {
.oroza-download-highlight .oroza-section-text {
    background: linear-gradient(90deg, var(--oroza-success), #67d89b);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}
}


/* Responsive */
@media (max-width: 960px) {
  .oroza-download-shell {
    flex-direction: column;
  }


/* ========================================================================
  .oroza-download-sidebar,
  11. TABLAS PREMIUM
  .oroza-download-main {
  ------------------------------------------------------------------------
  Más elegantes y modernas para rates, drops, requisitos, premios, etc.
======================================================================== */
.oroza-table {
     width: 100%;
     width: 100%;
    margin: 24px 0;
  }
    border-collapse: separate;
}
    border-spacing: 0;
 
    background: var(--oroza-surface);
@media (max-width: 768px) {
     border: 1px solid var(--oroza-border);
  .oroza-download-section,
     border-radius: 14px;
  .oroza-download-notice {
     overflow: hidden;
    padding: 22px 18px;
     border-radius: 18px;
  }
 
  .oroza-download-section-title {
     font-size: 24px;
  }
 
  .oroza-download-step {
     padding: 16px;
  }
 
  .oroza-download-step-body {
     font-size: 14px;
     font-size: 14px;
     box-shadow: var(--oroza-shadow-sm);
  }
 
  .oroza-download-highlight-title {
     font-size: 21px;
  }
}
 
 
/* =========================================================
  CLASES ADICIONALES PARA SOLUCIÓN DE PROBLEMAS
  Imágenes, botones, listas centradas y divisores
========================================================= */
 
.oroza-content-img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  margin: 15px auto;
}
 
.oroza-img-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}
 
.oroza-img-row .oroza-content-img {
  width: 40%;
  min-width: 260px;
  margin: 0;
}
 
.oroza-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
 
.oroza-button-container .oroza-action-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
}
 
.oroza-list-centered {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}
 
.oroza-download-highlight .oroza-feature-list {
  color: rgba(255, 255, 255, 0.92);
}
 
.oroza-mt-24 {
  margin-top: 24px;
}
 
/* Divisor sutil para separar el Problema de la Solución dentro de la misma tarjeta */
.oroza-divider {
  border: 0;
  height: 1px;
  background: #d7e2ee;
  margin: 28px 0;
}
 
 
/* =========================================================
  CLASES ADICIONALES PARA SKILLS Y TABLAS
  Utilidades para imágenes, iconos y textos secundarios
========================================================= */
 
/* Centrado de GIFs animados de las clases */
.oroza-content-img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  margin: 15px auto;
}
 
/* Alineación de icono de skill con su nombre */
.oroza-skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1f4368;
}
 
/* Textos aclaratorios en gris dentro de las tablas (ej. "Antes: X") */
.oroza-text-muted {
  display: block;
  color: #7b8d9f;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}
 
/* Textos pequeños en los títulos (ej. "Incluye Babys") */
.oroza-text-small {
  font-size: 16px;
  font-weight: 500;
  color: #4a6481;
  vertical-align: middle;
}
 
/* =========================================================
  CLASES ADICIONALES PARA MERCADO BÁSICO
  Iconos pequeños y márgenes
========================================================= */
 
/* Iconos de 18px alineados con el texto */
.oroza-icon-sm {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}
 
/* Margen superior para separar párrafos continuos */
.oroza-mt-16 {
  margin-top: 16px;
}
 
/* =========================================================
  CLASES ADICIONALES PARA IMÁGENES DE EXHIBICIÓN (MEJORADO)
  Centrado, tamaños optimizados e interactividad.
========================================================= */
 
/* Imagen principal media (Banners, mapas, capturas grandes) */
.oroza-img-lg {
  display: block;
  /* UX: Reducido al 65% para no competir con el texto */
  max-width: 65%;
  width: 100%;
  height: auto;
  /* UI: Bordes redondeados estéticos */
  border-radius: 22px;
  /* UX: Siempre centrada */
  margin: 0 auto 24px auto;
  /* UI: Sombra suave inicial */
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  /* UI: Transición suave para el efecto hover */
  transition: all 0.3s ease-in-out;
  cursor: pointer; /* Indica interactividad */
}
 
/* Efecto Hover para .oroza-img-lg */
.oroza-img-lg:hover {
  /* UI: Se eleva ligeramente */
  transform: translateY(-5px) scale(1.01);
  /* UI: Sombra más profunda y definida */
  box-shadow: 0 14px 30px rgba(43, 74, 109, 0.12);
}
 
/* Imagen pequeña (Capturas de interfaz, iconos grandes) */
.oroza-img-sm {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* UX: Siempre centrada */
  margin: 20px auto 0 auto;
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.08);
  /* UI: Interactividad sutil también aquí */
  transition: transform 0.2s ease;
}
 
.oroza-img-sm:hover {
  transform: scale(1.03);
}
 
/* Utilidad de margen inferior */
.oroza-mb-16 {
  margin-bottom: 16px;
}
 
 
/* =========================================================
  CLASES ADICIONALES PARA QUEST STONES (V2 MEJORADA)
  Corrige anchos de tabla, alinea sprites y pule mapas
========================================================= */
 
/* Sobrescribe el ancho del <th> (40%) para que la fila de 4 columnas no se aplaste */
.oroza-info-table.oroza-table-stats tbody th {
  width: 20%;
  white-space: nowrap;
}
.oroza-info-table.oroza-table-stats tbody td {
  width: 30%;
}
 
/* Fila del monstruo: flexbox en columna para centrar sprite arriba y texto abajo */
.oroza-mob-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 8px 0;
}
 
.oroza-mob-cell span {
  font-weight: 600;
  color: #1e4166;
}
 
/* Sprites de monstruos: tamaño ajustado para centrado vertical */
.oroza-mob-sprite {
  display: block;
  max-height: 65px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
 
/* Iconos en los títulos */
.oroza-icon-md {
  height: 26px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}
 
/* Título de sección para los mapas */
.oroza-subtitle {
  font-size: 17px;
  font-weight: 800;
  color: #183554;
  margin: 24px 0 14px 0;
  text-align: center;
}
 
/* Grid flexible para las tarjetas de mapas */
.oroza-map-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
 
/* Tarjeta individual del mapa */
.oroza-map-item {
  background: #ffffff;
  border: 1px solid #d5e1ee;
  border-radius: 12px;
  padding: 10px;
  width: 130px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.oroza-map-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.1);
  border-color: #b9d0e8;
}
 
.oroza-map-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #2b4a6d;
}
 
/* Imagen interior del mapa */
.oroza-map-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #eef3f8;
  display: block;
  margin: 0 auto;
}
 
/* Utilidad para texto secundario */
.oroza-text-muted {
  color: #7b8d9f;
  font-size: 13px;
  margin-left: 6px;
}
 
/* =========================================================
  CLASES ADICIONALES PARA MVPs Y DROPS
========================================================= */
 
/* Sprite para Jefes (MVP): Permite que se vean más grandes y añade sombra */
.oroza-mvp-sprite {
  display: block;
  max-height: 140px;
  width: auto;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}
 
/* Lista limpia y alineada para los drops (Evita estilos en línea) */
.oroza-drop-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
 
.oroza-drop-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #44566d;
}
 
.oroza-drop-list strong {
  color: #1e4166;
  margin-left: 4px;
}
 
/* =========================================================
  CLASES ADICIONALES PARA IMÁGENES DE EXHIBICIÓN (MEJORADO)
  Centrado, tamaños optimizados e interactividad.
========================================================= */
 
/* Imagen principal media (Banners, mapas, capturas grandes) */
.oroza-img-lg {
  display: block;
  /* UX: Reducido al 65% para no competir con el texto */
  max-width: 65%;
  width: 100%;
  height: auto;
  /* UI: Bordes redondeados estéticos */
  border-radius: 22px;
  /* UX: Siempre centrada */
  margin: 0 auto 24px auto;
  /* UI: Sombra suave inicial */
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  /* UI: Transición suave para el efecto hover */
  transition: all 0.3s ease-in-out;
  cursor: pointer; /* Indica interactividad */
}
 
/* Efecto Hover para .oroza-img-lg */
.oroza-img-lg:hover {
  /* UI: Se eleva ligeramente */
  transform: translateY(-5px) scale(1.01);
  /* UI: Sombra más profunda y definida */
  box-shadow: 0 14px 30px rgba(43, 74, 109, 0.12);
}
 
/* Imagen pequeña (Capturas de interfaz, iconos grandes) */
.oroza-img-sm {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* UX: Siempre centrada */
  margin: 20px auto 0 auto;
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.08);
  /* UI: Interactividad sutil también aquí */
  transition: transform 0.2s ease;
}
 
.oroza-img-sm:hover {
  transform: scale(1.03);
}
 
/* Utilidad de margen inferior */
.oroza-mb-16 {
  margin-bottom: 16px;
}
 
/* =========================================================
  CLASES ADICIONALES PARA TABLAS EXPANDIDAS
  Evita que las columnas de recompensas se vean apretadas
========================================================= */
 
/* Variante para tablas con contenido de items, expande columnas */
.oroza-table.oroza-table-expanded {
  table-layout: auto !important; /* UX: Permite expansión natural */
  width: 100%;
}
 
.oroza-table.oroza-table-expanded th,
.oroza-table.oroza-table-expanded td {
  padding: 16px 18px !important; /* UX: Más espacio interno */
}
 
/* =========================================================
  CLASES ADICIONALES PARA BATTLEGROUNDS
  Alineación de texto, imágenes secundarias y vendedores
========================================================= */
 
/* Utilidad para centrar textos */
.oroza-text-center {
  text-align: center;
}
 
/* Imagen mediana (Mapas y Banners secundarios) */
.oroza-img-md {
  display: block;
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.08);
  transition: transform 0.3s ease;
}
 
.oroza-img-md:hover {
  transform: scale(1.02);
}
 
/* Iconos en línea (botones y medallas) */
.oroza-inline-icon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}
 
/* Iconos de NPC vendedores */
.oroza-npc-icon {
  height: 55px;
  width: auto;
  vertical-align: middle;
  margin-right: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
 
/* Lista estilizada de Vendedores (Tiendas) */
.oroza-vendor-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  max-width: 800px;
  text-align: left;
}
 
.oroza-vendor-list li {
  background: #fbfdff;
  border: 1px solid #d5e1ee;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.03);
}
 
.oroza-vendor-text {
  flex: 1;
  font-size: 15px;
  color: #44566d;
  line-height: 1.6;
}
 
.oroza-vendor-text strong {
  color: #1e4166;
  font-size: 16px;
}
 
.oroza-vendor-sub {
  display: block;
  font-size: 13.5px;
  color: #7b8d9f;
  margin-top: 4px;
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* =========================================================
  CLASES PARA OBJETOS ESPECIALES Y ESENCIAS (COMPLETO)
========================================================= */
 
/* Iconos de items alineados */
.oroza-item-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}
 
/* Rejilla de bonos para Libros de Secretos */
.oroza-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
 
.oroza-bonus-grid li {
  background: #f8fbff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid #d5e1ee;
  color: #44566d;
  text-align: left;
}
 
.oroza-bonus-grid li strong {
  color: #1e4166;
  display: inline-block;
  min-width: 70px;
}
 
/* Lista de fragmentos compacta dentro de tablas */
.oroza-fragment-list {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  text-align: left;
}
 
.oroza-fragment-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 13px;
}
 
/* =========================================================
  CLASES ADICIONALES PARA DUNGEON DEL DÍA (ACTUALIZADO)
========================================================= */
 
/* Tarjeta del NPC centrada y con ancho máximo */
.oroza-npc-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #fbfdff;
  border: 1px solid #d5e1ee;
  border-radius: 16px;
  padding: 24px;
  margin: 0 auto;
  max-width: 650px; /* Evita que se estire y fuerza el centrado */
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  text-align: center; /* Centra el texto interior */
}
 
.oroza-npc-card img {
  width: 100px;
  min-width: 100px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
 
@media (max-width: 768px) {
  .oroza-npc-card {
    flex-direction: column;
    gap: 16px;
  }
}
 
/* Modificador para centrar el texto de las celdas en la tabla */
.oroza-info-table.oroza-table-centered tbody th,
.oroza-info-table.oroza-table-centered tbody td {
  text-align: center;
}
 
/* Contenedor de tabla con ancho reducido para listas de 1 sola columna */
.oroza-table-wrap-md {
  max-width: 500px;
  margin: 20px auto 0 auto;
  overflow-x: auto;
  border-radius: 16px;
}
 
/* =========================================================
  CLASES ADICIONALES PARA CÓDIGOS PROMOCIONALES (MEJORADO)
========================================================= */
.oroza-promo-wrapper {
  text-align: center;
  margin: 30px 0;
}
 
.oroza-promo-code {
  display: inline-block;
  background: linear-gradient(135deg, #fff9e6 0%, #fff2cc 100%);
  border: 3px dashed #ffb400;
  border-radius: 16px;
  padding: 20px 40px;
  font-size: 34px;
  font-family: 'Courier New', Courier, monospace; /* Tipografía de código */
  font-weight: 900;
  color: #c79400;
  letter-spacing: 5px;
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.2);
  text-transform: uppercase;
  user-select: all; /* UX: Selecciona todo el texto con un solo clic */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.oroza-promo-code:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(255, 180, 0, 0.35);
  border-color: #dcae1d;
}
}


.oroza-table thead {
.oroza-promo-hint {
    background: linear-gradient(135deg, var(--oroza-heading) 0%, var(--oroza-heading-2) 100%);
  display: block;
    color: #ffffff;
  margin-top: 12px;
  font-size: 13px;
  color: #7b8d9f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
 
 
/* =========================================================
  CLASES ADICIONALES PARA PROGRAMA DE CREADORES (MEJORADO)
========================================================= */
 
/* Caja para el formulario (Contraste perfecto en fondos oscuros) */
.oroza-code-block {
  background: rgba(15, 25, 38, 0.4); /* Fondo oscuro translúcido */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid #ffb400; /* Toque dorado Oroza */
  padding: 18px 22px;
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14.5px;
  color: #f8fbff; /* Texto blanco muy legible */
  line-height: 1.8;
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
  user-select: all; /* Permite copiar todo el bloque con un clic */
  cursor: pointer;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
 
.oroza-code-block:hover {
  background: rgba(15, 25, 38, 0.6);
  border-color: rgba(255, 180, 0, 0.4);
}
 
/* Botón estilo Discord */
.oroza-btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #5865F2;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px;
}
}


.oroza-table th,
.oroza-btn-discord:hover {
.oroza-table td {
  transform: translateY(-3px);
    padding: 13px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    text-align: left;
  background: #4752C4;
    vertical-align: middle;
    border-bottom: 1px solid var(--oroza-border-soft);
}
}


.oroza-table th {
/* =========================================================
    font-weight: 700;
  CLASES ADICIONALES PARA IFRAMES (WIDGETBOT / DISCORD)
    letter-spacing: 0.2px;
  Actualizado para ocupar el 100% del ancho disponible
========================================================= */
.oroza-iframe-container {
  width: 100%;
  max-width: 100%; /* Permite que explote al 100% del contenedor padre */
  margin: 0 auto 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 74, 109, 0.15);
  border: 1px solid #d5e1ee;
  background: #ffffff;
}
}


.oroza-table tbody tr {
.oroza-iframe-container iframe {
    transition: background-color var(--oroza-transition-fast);
  width: 100%;
  height: 1250px; /* Altura masiva para leer cómodamente */
  min-height: 85vh; /* Asegura buena altura dinámica */
  display: block;
  border: none;
}
}


.oroza-table tbody tr:nth-child(even) {
/* Ajuste proporcional para móviles */
     background: #fbfcfe;
@media (max-width: 768px) {
  .oroza-iframe-container iframe {
     height: 850px;
  }
}
}


.oroza-table tbody tr:hover {
 
    background: #f3f8ff;
/* =========================================================
  CLASES ADICIONALES PARA RENACIMIENTO LEGENDARIO
========================================================= */
 
/* Tarjeta para NPCs o Ítems destacados con texto al lado */
.oroza-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fbfdff;
  border: 1px solid #d5e1ee;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
}
}


.oroza-table tbody tr:last-child td {
.oroza-feature-card img {
    border-bottom: none;
  width: 220px; /* Tamaño ideal para la insignia y la valkyrie */
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
  flex-shrink: 0;
}
}


.oroza-table .highlight {
/* Modificador para centrar el texto de celdas en tablas de stats */
    color: var(--oroza-accent-strong);
.oroza-table-centered th,
    font-weight: 800;
.oroza-table-centered td {
  text-align: center;
  vertical-align: middle;
}
}


.oroza-table .center-icon {
@media (max-width: 768px) {
  .oroza-feature-card {
    flex-direction: column;
     text-align: center;
     text-align: center;
     font-size: 18px;
  }
}
 
/* =========================================================
  CLASES ADICIONALES PARA CARRERA AL NIVEL MÁXIMO (PODIO)
========================================================= */
 
/* Grid de 3 columnas para el podio */
.oroza-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
 
/* Tarjetas Base del Podio */
.oroza-podium-card {
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.oroza-podium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(43, 74, 109, 0.12);
}
 
.oroza-podium-card h3 {
  margin-top: 0;
  font-size: 22px;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-align: center;
}
 
.oroza-podium-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
  color: #44566d;
}
 
.oroza-podium-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.4;
}
 
.oroza-podium-card li strong {
  color: #1e4166;
  font-size: 15px;
}
 
/* Colores específicos del podio */
.oroza-podium-gold {
  background: linear-gradient(180deg, #fffcf0 0%, #fff7d6 100%);
  border: 1px solid #ffeeba;
}
.oroza-podium-gold h3 { color: #b8860b; }
 
.oroza-podium-silver {
  background: linear-gradient(180deg, #f4f9ff 0%, #e6f0fa 100%);
  border: 1px solid #b8daff;
}
.oroza-podium-silver h3 { color: #4682b4; }
 
.oroza-podium-bronze {
  background: linear-gradient(180deg, #fff9f5 0%, #ffeee6 100%);
  border: 1px solid #f5c6cb;
}
.oroza-podium-bronze h3 { color: #cd5c5c; }
 
/* Modificador para centrar el texto de las celdas en tablas */
.oroza-info-table.oroza-table-centered th,
.oroza-info-table.oroza-table-centered td {
  text-align: center;
}
 
 
/* =========================================================
  CLASES PARA BONUS POR DROP Y TABLAS EXTENSAS
========================================================= */
 
/* Grid para tarjetas superiores */
.oroza-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px 0 30px;
}
 
.oroza-chance-card {
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  transition: transform 0.2s ease;
}
 
.oroza-chance-card:hover { transform: translateY(-4px); }
.oroza-chance-card h3 { margin-top: 0; font-size: 22px; margin-bottom: 10px; }
.oroza-chance-card p { margin-bottom: 0; font-size: 14.5px; color: #44566d; line-height: 1.5; }
 
.oroza-chance-1 { background: #fbfdff; border: 1px solid #d5e1ee; }
.oroza-chance-1 h3 { color: #2b4a6d; }
.oroza-chance-2 { background: #f0f8ff; border: 1px solid #b8daff; }
.oroza-chance-2 h3 { color: #1e70bf; }
.oroza-chance-3 { background: #fffcf0; border: 1px solid #ffeeba; }
.oroza-chance-3 h3 { color: #dcae1d; }
 
/* Controles de Filtro */
.oroza-filter-controls { margin-bottom: 20px; text-align: center; }
.oroza-cat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 15px; }
 
.oroza-cat-btn {
  appearance: none; border: 1px solid #d5e1ee; background: #ffffff; color: #2f3742;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.oroza-cat-btn:hover { border-color: #ffb400; background: #fffcf0; }
.oroza-cat-btn.active {
  background: linear-gradient(180deg, #fffaf1 0%, #fff4dd 100%);
  border-color: #dcae1d; color: #7a5a16; box-shadow: 0 4px 10px rgba(220, 174, 29, 0.15);
}
 
.oroza-input {
  padding: 10px 16px; font-size: 14px; text-align: center; border: 1px solid #d5e1ee;
  border-radius: 12px; outline: none; background: #ffffff; color: #2b4a6d;
  width: 100%; max-width: 500px; margin: 0 auto; transition: all 0.25s ease;
}
.oroza-input:focus { border-color: #ffb400; box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.15); }
 
/* Modificadores de Tablas Gigantes */
.oroza-table-centered th, .oroza-table-centered td { text-align: center; vertical-align: middle; }
.oroza-text-left { text-align: left !important; }
 
/* Colores de Rareza para evitar estilos en línea */
.text-common { color: #28a745; font-weight: 800; }
.text-rare { color: #1e70bf; font-weight: 800; }
.text-epic { color: #6f42c1; font-weight: 800; }
 
/* =========================================================
  CLASES ADICIONALES PARA TABLAS ULTRA COMPACTAS (Ej. Drops)
========================================================= */
.oroza-info-table.oroza-table-compact tbody th,
.oroza-info-table.oroza-table-compact tbody td {
  font-size: 12.5px !important; /* Letra ligeramente más pequeña */
  padding: 8px 6px !important;  /* Reduce el espacio interno de la celda */
}
 
.oroza-info-table.oroza-table-compact thead th {
  font-size: 13px !important; /* Encabezado un poco más grande que el texto */
  padding: 10px 6px !important;
}
 
/* En celulares, la compactamos un nivel más para evitar scroll excesivo */
@media (max-width: 768px) {
  .oroza-info-table.oroza-table-compact tbody th,
  .oroza-info-table.oroza-table-compact tbody td {
     font-size: 11.5px !important;
    padding: 6px 4px !important;
  }
}
 
/* =========================================================
  CLASES ADICIONALES PARA TARJETAS DE PRECIO (PRICING)
========================================================= */
 
/* Grid de 3 columnas para los paquetes VIP */
.oroza-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
 
/* Tarjeta de Precio Destacada */
.oroza-pricing-card {
  background: #ffffff;
  border: 1px solid #d5e1ee;
  border-top: 5px solid #ffb400; /* Borde superior dorado VIP */
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.oroza-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(43, 74, 109, 0.15);
  border-color: #dcae1d;
}
 
.oroza-pricing-title {
  font-size: 20px;
  font-weight: 800;
  color: #2b4a6d;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
}


.oroza-table .zeny {
.oroza-pricing-cost {
    color: var(--oroza-success);
  display: flex;
    font-weight: 800;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eef3f8;
  border-bottom: 1px solid #eef3f8;
}
}


.oroza-table.auto-width {
.oroza-pricing-cost span {
    display: table;
  font-size: 16px;
    width: auto !important;
  font-weight: 700;
    max-width: 100%;
  display: flex;
    margin: 24px auto;
  align-items: center;
    table-layout: auto !important;
  justify-content: center;
  gap: 8px;
}
}


/* =========================================================
  CLASES ACTUALIZADAS PARA GALERÍA POKÉMON (CLIC PARA AMPLIAR)
========================================================= */


/* ========================================================================
.oroza-pokedex-grid {
  12. IMAGENES
  display: grid;
  ------------------------------------------------------------------------
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  Mejor presencia visual para capturas, banners, NPCs e items importantes.
  gap: 16px;
======================================================================== */
  margin: 30px 0 10px 0;
.zoom-img {
}
    position: relative;
 
    z-index: 1;
/* El enlace ahora es la tarjeta en la cuadrícula */
    cursor: zoom-in;
.oroza-pokedex-link {
    border-radius: 12px;
  display: block;
    transition:
  text-decoration: none !important;
        transform 0.28s ease,
  transition: transform 0.25s ease;
        box-shadow 0.28s ease,
        filter 0.28s ease;
}
}


.zoom-img:hover {
.oroza-pokedex-link img {
    z-index: 10;
  width: 100%;
    transform: scale(1.12);
  height: auto;
    filter: saturate(1.03);
  border-radius: 12px;
    box-shadow: var(--oroza-shadow-lg);
  background: #ffffff;
  border: 1px solid #d5e1ee;
  padding: 5px; /* Marco blanco */
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.05);
  transition: all 0.25s ease;
  cursor: zoom-in; /* Ícono de lupa al pasar el ratón */
}
}


img.round-fade {
/* Efecto hover estilo carta coleccionable */
    display: block;
.oroza-pokedex-link:hover img {
    width: 58%;
  transform: translateY(-6px) scale(1.08);
    margin: 16px auto;
  box-shadow: 0 12px 24px rgba(43, 74, 109, 0.2);
    border: 1px solid rgba(219, 227, 236, 0.9);
  border-color: #ffb400; /* Borde dorado */
    border-radius: var(--oroza-radius-lg);
  position: relative;
    object-fit: cover;
  z-index: 10;
    opacity: 0.99;
    background: #ffffff;
    box-shadow:
        0 18px 36px rgba(24, 39, 56, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        opacity 0.30s ease;
}
}


img.round-fade:hover {
/* Ajuste para celulares */
     transform: translateY(-2px) scale(1.03);
@media (max-width: 768px) {
     opacity: 1;
  .oroza-pokedex-grid {
    box-shadow:
     grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        0 22px 46px rgba(24, 39, 56, 0.14),
     gap: 10px;
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}
}


/* =========================================================
  CLASES ADICIONALES PARA GALERÍA DE LEGENDARIOS (CON ZOOM)
========================================================= */


/* ========================================================================
/* Tarjeta contenedora limpia y centrada */
  13. DETALLES REUTILIZABLES PARA FUTURAS GUIAS
.oroza-legendary-card {
  ------------------------------------------------------------------------
  background: #ffffff;
  Clases extra que te pueden servir mucho como base de todo tu sistema.
  border: 1px solid #d7e2ee;
======================================================================== */
  border-radius: 18px;
.oroza-chip {
  padding: 16px;
    display: inline-block;
  text-align: center;
    padding: 5px 10px;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.05);
    border: 1px solid #ead9a4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff9e8 0%, #fff3cb 100%);
    color: #8a6410;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}
}


.oroza-divider {
.oroza-legendary-card:hover {
    height: 1px;
  transform: translateY(-4px);
    margin: 28px 0;
  box-shadow: 0 12px 25px rgba(43, 74, 109, 0.12);
    background: linear-gradient(90deg, transparent, rgba(43, 74, 109, 0.18), transparent);
  border-color: #ffb400; /* Borde dorado al pasar el ratón */
    border: none;
}
}


.oroza-panel {
/* Enlace que envuelve la imagen (Aplica el cursor de lupa) */
    margin: 22px 0;
.oroza-legendary-link {
    padding: 20px;
  display: block;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  cursor: zoom-in;
    border: 1px solid var(--oroza-border);
  text-decoration: none !important;
    border-radius: 14px;
  border-radius: 12px;
    box-shadow: var(--oroza-shadow-sm);
  overflow: hidden;
  margin-bottom: 14px; /* Separación con el nombre */
}
}


/* Imagen base fluida */
.oroza-legendary-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}


/* ========================================================================
/* Efecto de acercamiento interno en la imagen */
  14. AJUSTES DE MEDIAWIKI
.oroza-legendary-link:hover img {
  ------------------------------------------------------------------------
  transform: scale(1.05);
  Mantengo solo lo minimo que ya estabas usando para el layout.
======================================================================== */
.toggle-checkbox,
.toggle-label {
    display: none !important;
}
}


/* Nombre del Pokémon Legendario */
.oroza-legendary-name {
  font-size: 18px;
  font-weight: 800;
  color: #2b4a6d;
  display: block;
  letter-spacing: 0.5px;
}


/* ========================================================================
/* =========================================================
   15. RESPONSIVE
   CLASES ADICIONALES PARA GALERÍA DE HATS (GIFS)
  ------------------------------------------------------------------------
========================================================= */
  Ajustes para movil y pantallas reducidas.
.oroza-gallery-gif {
======================================================================== */
  width: 100%;
@media screen and (max-width: 768px) {
  height: auto;
    #content {
  border-radius: 16px;
        margin: 14px auto;
  border: 1px solid #d5e1ee;
        padding: 22px 18px;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.05);
        border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
  cursor: zoom-in;
  background-color: #ffffff;
}


    .firstHeading {
.oroza-gallery-gif:hover {
        font-size: 2rem;
  transform: translateY(-4px) scale(1.02);
        padding-bottom: 14px;
  box-shadow: 0 10px 20px rgba(43, 74, 109, 0.12);
    }
  border-color: #ffb400;
}


    h1 {
/* Contenedor especial para centrar el último GIF */
        font-size: 2.1rem;
.oroza-gallery-center {
    }
  text-align: center;
  margin-top: 20px;
}


    h2 {
.oroza-gallery-center .oroza-gallery-gif {
        padding-left: 14px;
  max-width: 450px;
        font-size: 1.55rem;
  margin: 0 auto;
    }
}


    h2::after {
/* =========================================================
        left: 14px;
  CORRECCIÓN DE BOTONES Y BOTÓN DORADO (FONDOS OSCUROS)
        width: 72px;
========================================================= */
    }


    h3 {
/* Elimina el error de los signos "??", anulando el pseudo-elemento roto */
        font-size: 1.28rem;
.button-icon::before {
    }
  content: none !important;  
}


    h4 {
/* Nuevo botón dorado para resaltar en fondos oscuros (como .oroza-download-highlight) */
        font-size: 1.08rem;
.oroza-btn-gold {
    }
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffb400;
  color: #162234 !important;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


    #toc {
.oroza-btn-gold:hover {
        padding: 16px;
  transform: translateY(-3px);
    }
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: #ffd043;
  text-decoration: none !important;
}


    .oroza-table {
/* =========================================================
        font-size: 13px;
  CLASES ADICIONALES PARA ENDLESS TOWER (GIFS DE MOBS)
    }
========================================================= */
.oroza-mob-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e4ebf3;
}


    .oroza-table th,
.oroza-mob-gallery img {
    .oroza-table td {
  max-height: 45px;
        padding: 11px 12px;
  width: auto;
    }
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
  transition: transform 0.2s ease;
}


    img.round-fade {
.oroza-mob-gallery img:hover {
        width: 88%;
  transform: scale(1.15) translateY(-3px);
    }
}


    .zoom-img:hover {
/* Efecto especial para resaltar a los Jefes (MvP) */
        transform: scale(1.05);
.oroza-mob-gallery img.mvp-gif {
    }
  max-height: 65px;
  filter: drop-shadow(0 0 6px rgba(255, 180, 0, 0.8));
  z-index: 2;
}
}

Revisión actual - 18:08 8 abr 2026

/* =========================================================
   OROZA WIKI - ESTILOS GENERALES MEJORADOS
   ---------------------------------------------------------
   Objetivo:
   - Mantener tu estilo visual limpio y profesional
   - Mejorar el comportamiento en celular
   - Evitar que navbar, tablas e imágenes rompan el diseño
   - Hacer el CSS más fácil de entender y mantener
========================================================= */


/* =========================================================
   1) BASE GENERAL DEL SITIO
   ---------------------------------------------------------
   Estilos globales del body, tipografía y color base
========================================================= */
body {
  background-color: #f2f2f2;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: #333;
  overflow-x: hidden; /* Evita scroll horizontal accidental */
}

/* Hace que imágenes y elementos no se salgan del ancho de pantalla */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   2) CONTENIDO PRINCIPAL
   ---------------------------------------------------------
   Caja principal blanca donde se ve el contenido de la wiki
========================================================= */
#content {
  background-color: #fff;
  padding: 30px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
  max-width: 1200px;
}

/* =========================================================
   3) TITULO PRINCIPAL DE PAGINA
   ---------------------------------------------------------
   Controla el heading principal de MediaWiki
========================================================= */
.firstHeading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2b4a6d;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}


/* =========================================================
   4) TABLA DE CONTENIDO
   ---------------------------------------------------------
   Caja del índice / TOC
========================================================= */
#toc {
  background-color: #eef4ff;
  border: 1px solid #cddaf1;
  padding: 10px;
  border-radius: 8px;
}


/* =========================================================
   5) ENLACES
   ---------------------------------------------------------
   Estilo general para links
========================================================= */
a {
  color: #1e70bf;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.mw-body a {
  color: #1e70bf;
  font-weight: 500;
}


/* =========================================================
   6) ENCABEZADOS JERARQUICOS
   ---------------------------------------------------------
   h1 a h6 centrados, elegantes y sin subrayado
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #2b4a6d;
  margin-top: 40px;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
  border-bottom: none;
  background: none !important;
}

/* Tamaños progresivos de títulos */
h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2.3rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.1rem;
  color: #444;
}


/* =========================================================
   7) BOTONES CON ICONO
   ---------------------------------------------------------
   Útiles para enlaces visuales tipo botón
========================================================= */
.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2b4a6d;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.button-icon:hover {
  background: #1e324f;
}

.button-icon::before {
  content: '??';
}


/* =========================================================
   8) CAJAS INFORMATIVAS
   ---------------------------------------------------------
   Bloques para avisos, recomendaciones y alertas
========================================================= */
.box-info {
  background: #eef4ff;
  border-left: 5px solid #1e70bf;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.box-warning {
  background: #fff4e5;
  border-left: 5px solid #ffa500;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.box-tip {
  background: #eaffea;
  border-left: 5px solid #28a745;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}


/* =========================================================
   9) LISTAS
   ---------------------------------------------------------
   Espaciado para ul y ol
========================================================= */
ul,
ol {
  padding-left: 40px;
  margin-bottom: 20px;
}


/* =========================================================
   10) NAVBAR HORIZONTAL
   ---------------------------------------------------------
   Menú superior personalizado
   Mejorado para que no se rompa tan fácil en pantallas chicas
========================================================= */
.oroza-navbar {
  background: #2b3e50;
  padding: 15px 25px;
  display: flex;
  flex-wrap: wrap; /* Permite acomodar links si no caben */
  gap: 18px 30px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-bottom: 3px solid #ffb400;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 20px auto;
  max-width: 1200px;
  position: relative;
  box-sizing: border-box;
}

.oroza-navbar a {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap; /* Evita que un link se parta en dos renglones */
}

.oroza-navbar a:hover {
  text-decoration: underline;
  color: #ffcc33 !important;
}

/* Logo en desktop: se mantiene posicionado a la izquierda */
.oroza-navbar-logo {
  position: absolute;
  left: 25px;
  display: flex;
  align-items: center;
}

.oroza-navbar-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 5px white);
}


/* =========================================================
   11) SIDEBAR LATERAL
   ---------------------------------------------------------
   Menú lateral de navegación
========================================================= */
.oroza-sidebar {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 10px;
  width: 280px;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  box-sizing: border-box;
}

/* Título de cada sección del menú lateral */
.oroza-sidebar .menu-title {
  font-weight: bold;
  color: #2b4a6d;
  font-size: 17px;
  margin: 20px 0 12px;
  border-left: 4px solid #ffb400;
  padding-left: 10px;
}

/* Lista interna del sidebar */
.oroza-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.oroza-sidebar li {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oroza-sidebar li::before {
  display: inline-block;
  margin-right: 3px;
}


/* =========================================================
   12) TABLAS PERSONALIZADAS
   ---------------------------------------------------------
   Mejoradas para escritorio y con scroll horizontal en móvil
========================================================= */
.oroza-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.oroza-table thead {
  background-color: #2b4a6d;
  color: #fff;
  text-align: left;
  font-weight: bold;
}

.oroza-table th,
.oroza-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.oroza-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.oroza-table tbody tr:hover {
  background-color: #eef4ff;
}

.oroza-table .highlight {
  color: #ffb400;
  font-weight: bold;
}

.oroza-table .center-icon {
  text-align: center;
  font-size: 18px;
}

.oroza-table .zeny {
  color: #28a745;
  font-weight: bold;
}

/* Variante opcional para tablas de ancho automático */
.oroza-table.auto-width {
  width: auto !important;
  max-width: 100%;
  table-layout: auto !important;
  margin: 20px auto;
  display: table;
}


/* =========================================================
   13) EFECTO ZOOM EN IMAGENES
   ---------------------------------------------------------
   Útil para imágenes pequeñas o decorativas
========================================================= */
.zoom-img {
  transition: transform 0.25s ease;
  cursor: zoom-in;
}

.zoom-img:hover {
  transform: scale(1.35);
  z-index: 10;
}


/* =========================================================
   14) IMAGENES REDONDEADAS CON EFECTO SUAVE
   ---------------------------------------------------------
   Tus imágenes principales decorativas
========================================================= */
img {
  max-width: 100%;
  height: auto;
}

img.round-fade {
  width: 55%;
  border-radius: 20px;
  margin: 10px auto;
  display: block;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  opacity: 0.97;
}

img.round-fade:hover {
  transform: scale(1.08);
  opacity: 1;
}


/* =========================================================
   15) OCULTAR ELEMENTOS ORIGINALES DE MEDIAWIKI
   ---------------------------------------------------------
   Esto oculta partes viejas del layout por defecto
========================================================= */
#p-logo,
#footer,
#mw-panel {
  display: none !important;
}


/* =========================================================
   16) TOGGLE / MENU COLAPSABLE
   ---------------------------------------------------------
   Si no lo usas, se deja oculto
========================================================= */
.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: none !important;
}


/* =========================================================
   17) TABLET Y MOVIL
   ---------------------------------------------------------
   Aquí está la mejora más importante.
   Ya no apilamos la navbar completa en columna.
   En lugar de eso:
   - reducimos tamaños
   - hacemos wrap controlado
   - ajustamos logo
   - permitimos scroll en tablas
========================================================= */
/* =========================================================
   RESPONSIVE CORREGIDO
   ---------------------------------------------------------
   - No reduce el ancho en PC
   - Corrige mejor el móvil
   - Usa !important en lo necesario porque en wiki a veces
     hay estilos inline que ganan prioridad visual
========================================================= */
@media screen and (max-width: 768px) {
  /* Caja principal más compacta en móvil */
  #content {
    padding: 16px !important;
    margin: 10px !important;
    border-radius: 10px !important;
  }

  /* Si tu layout usa wrapper flex */
  .oroza-flex-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .oroza-flex-wrapper > div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Sidebar a ancho completo */
  .oroza-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    display: block !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
  }

  .oroza-sidebar .menu-title {
    font-size: 15px !important;
    margin: 16px 0 10px !important;
  }

  .oroza-sidebar li {
    font-size: 13px !important;
    line-height: 1.35 !important;
    gap: 6px !important;
  }

  /* Navbar:
     en vez de ponerla en columna, dejamos fila con wrap */
  .oroza-navbar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 10px !important;
    padding: 12px 10px !important;
    margin: 12px 10px !important;
    border-radius: 10px !important;
  }

  /* El logo absoluto suele romper el centrado en móvil */
  .oroza-navbar-logo {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 6px !important;
  }

  .oroza-navbar-logo img {
    width: 56px !important;
    max-width: 56px !important;
  }

  .oroza-navbar a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 9px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  /* Títulos más compactos en móvil */
  .firstHeading {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
  }

  h1 {
    font-size: 1.9rem !important;
    margin-top: 24px !important;
    margin-bottom: 18px !important;
  }

  h2 {
    font-size: 1.6rem !important;
    margin-top: 22px !important;
    margin-bottom: 16px !important;
  }

  h3 {
    font-size: 1.35rem !important;
    margin-top: 20px !important;
    margin-bottom: 14px !important;
  }

  h4 {
    font-size: 1.15rem !important;
    margin-top: 18px !important;
    margin-bottom: 12px !important;
  }

  h5 {
    font-size: 1rem !important;
    margin-top: 16px !important;
    margin-bottom: 10px !important;
  }

  h6 {
    font-size: 0.95rem !important;
    margin-top: 14px !important;
    margin-bottom: 10px !important;
  }

  /* Listas más compactas */
  ul,
  ol {
    padding-left: 22px !important;
    margin-bottom: 16px !important;
  }

  /* Cajas informativas */
  .box-info,
  .box-warning,
  .box-tip {
    padding: 12px !important;
    margin: 14px 0 !important;
    border-radius: 8px !important;
  }

  /* Botones ocupan mejor el ancho disponible */
  .button-icon {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* Tablas con scroll horizontal */
  .oroza-table,
  .oroza-table.auto-width {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    white-space: nowrap !important;
  }

  .oroza-table th,
  .oroza-table td {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding: 10px 12px !important;
  }

  /* Imágenes más fluidas */
  img.round-fade {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    margin: 10px auto !important;
  }

  /* Hover desactivado en móvil */
  .zoom-img:hover,
  img.round-fade:hover {
    transform: none !important;
    opacity: 0.97 !important;
  }

  .toggle-label {
    display: none !important;
  }
}

/* =========================================================
   MOVILES PEQUEÑOS
========================================================= */
@media screen and (max-width: 480px) {
  #content {
    padding: 12px !important;
    margin: 8px !important;
    border-radius: 8px !important;
  }

  .oroza-navbar {
    gap: 6px 8px !important;
    padding: 10px 8px !important;
  }

  .oroza-navbar a {
    font-size: 12px !important;
    padding: 6px 8px !important;
  }

  .oroza-navbar-logo img {
    width: 48px !important;
    max-width: 48px !important;
  }

  .firstHeading {
    font-size: 1.4rem !important;
  }

  h1 {
    font-size: 1.65rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  .oroza-sidebar {
    padding: 12px !important;
  }

  .oroza-sidebar li {
    font-size: 12px !important;
  }
}

/* =========================================================
   19) AJUSTE PARA DISPOSITIVOS QUE SI SOPORTAN HOVER
   ---------------------------------------------------------
   Solo deja zoom bonito en escritorio / mouse
========================================================= */
@media (hover: hover) {
  .zoom-img:hover {
    transform: scale(1.35);
    z-index: 10;
  }

  img.round-fade:hover {
    transform: scale(1.08);
    opacity: 1;
  }
}


/* =========================================================
   20) AJUSTE PARA DISPOSITIVOS TOUCH
   ---------------------------------------------------------
   Quita animaciones de hover agresivas en celular
========================================================= */
@media (hover: none) {
  .zoom-img:hover,
  img.round-fade:hover {
    transform: none;
    opacity: 0.97;
  }
}



/* =========================================================
   MENU LATERAL OROZA - VERSION MEJORADA
   ---------------------------------------------------------
   Objetivo:
   - Integrarse con el estilo general blanco + dorado
   - Verse más premium y ordenado
   - Mantener compatibilidad con tu HTML actual
   - Funcionar bien en desktop y celular
   - No modificar navbar ni contenido principal
========================================================= */


/* =========================================================
   1) VARIABLES VISUALES DEL MENU
   ---------------------------------------------------------
   Si luego quieres ajustar color, sombra o bordes,
   aquí lo cambias todo más fácil.
========================================================= */
:root {
  --oroza-side-bg: #ffffff;
  --oroza-side-panel: #ffffff;
  --oroza-side-item: #fbfcfe;
  --oroza-side-item-hover: #f4f8fc;
  --oroza-side-border: #e4ebf3;
  --oroza-side-border-soft: #eef3f8;
  --oroza-side-text: #243246;
  --oroza-side-muted: #607086;
  --oroza-side-gold: #dcae1d;
  --oroza-side-gold-strong: #c79400;
  --oroza-side-gold-soft: rgba(220, 174, 29, 0.12);
  --oroza-side-shadow: 0 12px 30px rgba(22, 34, 52, 0.08);
  --oroza-side-shadow-soft: 0 4px 14px rgba(22, 34, 52, 0.05);
  --oroza-side-radius: 18px;
  --oroza-side-radius-sm: 12px;
}


/* =========================================================
   2) CONTENEDOR GENERAL DEL MENU
   ---------------------------------------------------------
   Este envuelve el toggle y el panel lateral.
========================================================= */
.oroza-sidebar-toggle {
  width: 100%;
  color: var(--oroza-side-text);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  box-sizing: border-box;
}


/* =========================================================
   3) CHECKBOX OCULTO PARA TOGGLE EN MOVIL
   ---------------------------------------------------------
   Se usa solo para abrir/cerrar el menú en pantallas chicas.
========================================================= */
.toggle-checkbox {
  display: none;
}


/* =========================================================
   4) BOTON DE TOGGLE MOVIL
   ---------------------------------------------------------
   En desktop permanece oculto.
   En móvil aparece como botón para mostrar el menú.
========================================================= */
.toggle-label {
  display: none;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--oroza-side-border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  color: var(--oroza-side-text);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: var(--oroza-side-shadow-soft);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.toggle-label:hover {
  border-color: #d8e1ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 20px rgba(22, 34, 52, 0.08);
}


/* =========================================================
   5) PANEL PRINCIPAL DEL SIDEBAR
   ---------------------------------------------------------
   Caja blanca premium del menú lateral.
========================================================= */
.oroza-sidebar {
  background: var(--oroza-side-panel);
  border: 1px solid var(--oroza-side-border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--oroza-side-shadow);
  box-sizing: border-box;
}


/* =========================================================
   6) TITULOS DE CATEGORIA
   ---------------------------------------------------------
   Bloques tipo sección para dividir el menú.
   Estilo azul + dorado, combinado con la navbar.
========================================================= */
.oroza-sidebar .menu-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #35506f 0%, #2b3e50 100%);
  border: 1px solid rgba(255, 180, 0, 0.35);
  border-left: 5px solid #ffb400;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.oroza-sidebar .menu-title:first-child {
  margin-top: 0;
}


/* =========================================================
   7) LISTAS BASE DEL MENU
   ---------------------------------------------------------
   Elimina estilos de lista por defecto.
========================================================= */
.oroza-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oroza-sidebar li {
  margin: 0;
  padding: 0;
}

.oroza-sidebar li + li {
  margin-top: 6px;
}


/* =========================================================
   8) ENLACES DEL MENU
   ---------------------------------------------------------
   Cada opción se ve como tarjeta pequeña.
========================================================= */
.oroza-sidebar li a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 12px;
  background: var(--oroza-side-item);
  border: 1px solid var(--oroza-side-border-soft);
  border-radius: var(--oroza-side-radius-sm);
  color: var(--oroza-side-text) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: var(--oroza-side-shadow-soft);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

/* Hover suave, elegante y compatible con tu look */
.oroza-sidebar li a:hover {
  background: var(--oroza-side-item-hover);
  border-color: #dce5ef;
  color: #162234 !important;
  text-decoration: none !important;
  transform: translateX(3px);
  box-shadow: 0 8px 18px rgba(22, 34, 52, 0.08);
}

/* Focus visible para accesibilidad */
.oroza-sidebar li a:focus {
  outline: none;
  border-color: rgba(220, 174, 29, 0.58);
  box-shadow: 0 0 0 4px rgba(220, 174, 29, 0.12);
}

/* Estado activo opcional:
   si algún día agregas class="active" al link actual */
.oroza-sidebar li a.active,
.oroza-sidebar li a.is-active {
  background: linear-gradient(180deg, #fffaf1 0%, #fff4dd 100%);
  border-color: rgba(220, 174, 29, 0.38);
  color: #1a2738 !important;
  box-shadow:
    0 8px 18px rgba(22, 34, 52, 0.06),
    inset 0 0 0 1px rgba(220, 174, 29, 0.08);
}


/* =========================================================
   9) ICONO, TEXTO Y FLECHA
   ---------------------------------------------------------
   Mejor control visual de cada parte del link.
========================================================= */
.menu-icon {
  width: 22px;
  min-width: 22px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  opacity: 0.96;
}

.menu-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.menu-arrow {
  color: var(--oroza-side-gold-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.92;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.oroza-sidebar li a:hover .menu-arrow {
  transform: translateX(2px);
  opacity: 1;
}


/* =========================================================
   10) AJUSTE DESKTOP
   ---------------------------------------------------------
   Mantiene el menú con un ancho agradable y estable.
========================================================= */
@media screen and (min-width: 981px) {
  .oroza-sidebar {
    max-width: 330px;
  }
}


/* =========================================================
   11) TABLET / MOVIL
   ---------------------------------------------------------
   Muestra botón toggle y colapsa el menú lateral.
========================================================= */
@media screen and (max-width: 980px) {
  .toggle-label {
    display: block;
  }

  .oroza-sidebar {
    display: none;
    padding: 14px;
    border-radius: 18px;
  }

  .toggle-checkbox:checked + .toggle-label + .oroza-sidebar {
    display: block;
  }

  .oroza-sidebar .menu-title {
    font-size: 14px;
    padding: 11px 12px;
  }

  .oroza-sidebar li a {
    min-height: 44px;
    font-size: 13.5px;
    padding: 10px 11px;
  }

  .menu-icon {
    width: 20px;
    min-width: 20px;
    font-size: 15px;
  }
}


/* =========================================================
   12) CELULAR PEQUEÑO
   ---------------------------------------------------------
   Compacta un poco más sin perder legibilidad.
========================================================= */
@media screen and (max-width: 480px) {
  .toggle-label {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 12px;
  }

  .oroza-sidebar {
    padding: 12px;
    border-radius: 16px;
  }

  .oroza-sidebar .menu-title {
    gap: 8px;
    margin: 16px 0 9px;
    padding: 10px 11px;
    font-size: 13px;
  }

  .oroza-sidebar li + li {
    margin-top: 5px;
  }

  .oroza-sidebar li a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13px;
    gap: 9px;
  }

  .menu-icon {
    width: 18px;
    min-width: 18px;
    font-size: 14px;
  }

  .menu-arrow {
    font-size: 13px;
  }
}



/* =========================================================
   OCULTAR TITULO NATIVO Y PANEL SUPERIOR DE MEDIAWIKI
   ---------------------------------------------------------
   - .mw-page-title-main: título nativo de la página
   - .mw-head / #mw-head: panel superior nativo
========================================================= */

/* Oculta el título nativo */
.mw-page-title-main {
  display: none !important;
}

/* Oculta el panel superior si viene como clase */
.mw-head {
  display: none !important;
}

/* Oculta el panel superior si tu skin lo maneja como id */
#mw-head {
  display: none !important;
}

/* Opcional: también quita la base/fondo superior del skin */
#mw-head-base {
  display: none !important;
}


/* ================================================================================================================== */
/* =========================================== ESTILOS PARA PAGINAS DE ENMEDIO ====================================== */
/* ================================================================================================================== */

/* =========================================================
   OROZA HOME / LANDING WIKI
   VERSION MEJORADA CON MAS CONTRASTE
   Pensada para que no se mezclen colores entre bloques.
========================================================= */

.oroza-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================
   HERO PRINCIPAL
========================= */
.oroza-page .oroza-hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #d5e1ee;
  border-radius: 22px;
  padding: 34px 28px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(43, 74, 109, 0.08);
}

.oroza-page .oroza-hero-logo {
  margin-bottom: 18px;
}

.oroza-page .oroza-page-title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #183554;
}

.oroza-page .oroza-page-intro {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #4a6481;
}

/* =========================
   TEXTO GENERAL
========================= */
.oroza-page .oroza-section-text {
  margin: 0 0 16px;
  color: #405973;
  line-height: 1.8;
}

.oroza-page .oroza-feature-list {
  margin: 0;
  padding-left: 20px;
  color: #3f566f;
  line-height: 1.8;
}

.oroza-page .oroza-feature-list li + li {
  margin-top: 10px;
}

.oroza-page .oroza-inline-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid #d2e0f2;
  color: #21466c;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

/* =========================================================
   ACORDEONES
   Centrado visual completo + azul fuerte Oroza
========================================================= */
.oroza-page .oroza-accordion {
  background: #ffffff;
  border: 1px solid #d3deea;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(43, 74, 109, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
}

.oroza-page .oroza-accordion:hover {
  box-shadow: 0 14px 30px rgba(43, 74, 109, 0.12);
}

.oroza-page .oroza-accordion summary {
  position: relative;
  padding: 18px 56px 18px 22px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%) !important;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.oroza-page .oroza-accordion summary:hover {
  background: linear-gradient(180deg, #3d5f89 0%, #305176 100%) !important;
}

.oroza-page .oroza-accordion summary::-webkit-details-marker {
  display: none;
}

.oroza-page .oroza-accordion summary::after {
  content: "▲";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb400;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.oroza-page .oroza-accordion:not([open]) summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.oroza-page .oroza-accordion-content {
  padding: 24px 22px;
  background: #ffffff;
  color: #44566d;
  line-height: 1.8;
  text-align: center;
}

.oroza-page .oroza-accordion-content > * {
  margin-left: auto;
  margin-right: auto;
}

.oroza-page .oroza-accordion-content .oroza-section-text,
.oroza-page .oroza-accordion-content .oroza-page-intro {
  max-width: 900px;
  text-align: center;
}

.oroza-page .oroza-accordion-content .oroza-feature-list {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 22px;
}


/* =========================================================
   TABLAS
   Azul fuerte Oroza + look mas premium
========================================================= */
.oroza-page .oroza-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
  border-radius: 16px;
}

.oroza-page .oroza-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #cfdbe8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(43, 74, 109, 0.08);
}

/* Encabezado superior de la tabla */
.oroza-page .oroza-info-table thead th {
  padding: 16px 20px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid #24415f;
  letter-spacing: 0.2px;
}

/* Celdas generales */
.oroza-page .oroza-info-table tbody th,
.oroza-page .oroza-info-table tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid #e7eef6;
  vertical-align: middle;
  font-size: 14px;
}

/* Columna izquierda */
.oroza-page .oroza-info-table tbody th {
  width: 40%;
  background: #f5f9fd;
  color: #1f4368;
  font-weight: 800;
  text-align: left;
  border-right: 1px solid #e2eaf3;
}

/* Columna derecha */
.oroza-page .oroza-info-table tbody td {
  background: #ffffff;
  color: #4b627b;
  font-weight: 500;
  text-align: left;
}

/* Zebra sutil para mejor lectura */
.oroza-page .oroza-info-table tbody tr:nth-child(even) th {
  background: #eef4fa;
}

.oroza-page .oroza-info-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

/* Hover elegante */
.oroza-page .oroza-info-table tbody tr:hover th {
  background: #e7f0f9;
}

.oroza-page .oroza-info-table tbody tr:hover td {
  background: #f7fbff;
}

/* Ultima fila */
.oroza-page .oroza-info-table tbody tr:last-child th,
.oroza-page .oroza-info-table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .oroza-page .oroza-accordion summary {
    font-size: 16px;
    padding: 15px 48px 15px 16px;
  }

  .oroza-page .oroza-accordion-content {
    padding: 18px 16px;
  }

  .oroza-page .oroza-info-table thead th {
    font-size: 15px;
    padding: 14px 16px;
  }

  .oroza-page .oroza-info-table tbody th,
  .oroza-page .oroza-info-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* =========================
   TARJETAS DE ACCESO RAPIDO
   Ya no van completamente
   del mismo azul para que
   no se fundan visualmente.
========================= */
.oroza-page .oroza-action-card {
  background: #ffffff;
  border: 1px solid #d7e2ee;
  border-top: 4px solid #2b4a6d;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(43, 74, 109, 0.08);
}

.oroza-page .oroza-action-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: #1e4166;
}

.oroza-page .oroza-action-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oroza-page .oroza-action-link {
  display: block;
  padding: 12px 14px;
  border: 1px solid #d5e1ee;
  border-radius: 12px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.oroza-page .oroza-action-link:hover {
  background: #ffb400;
  border-color: #ffb400;
  color: #17324f;
  transform: translateY(-1px);
}

/* =========================
   GRID
========================= */
.oroza-page .oroza-grid {
  display: grid;
  gap: 20px;
  margin: 20px 0 0;
}

.oroza-page .oroza-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .oroza-page {
    padding: 14px;
  }

  .oroza-page .oroza-hero-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .oroza-page .oroza-page-title {
    font-size: 26px;
  }

  .oroza-page .oroza-page-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .oroza-page .oroza-accordion summary {
    font-size: 16px;
    padding: 15px 18px;
  }

  .oroza-page .oroza-accordion-content {
    padding: 18px;
  }

  .oroza-page .oroza-info-table tbody th,
  .oroza-page .oroza-info-table tbody td {
    font-size: 13px;
    padding: 12px 14px;
  }
}



/* =========================================================
   OROZA DOWNLOAD PAGE
   CSS adicional solo para componentes que tu base actual
   no incluye: layout lateral, cajas de aviso, pasos y
   bloque final.
========================================================= */

/* Layout general */
.oroza-download-shell {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.oroza-download-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.oroza-download-main {
  flex: 1;
  min-width: 0;
}

/* Etiqueta superior del hero */
.oroza-download-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #edf4ff 0%, #e6eef9 100%);
  border: 1px solid #d3dfec;
  color: #21466c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Caja de aviso principal */
.oroza-download-notice {
  margin-bottom: 22px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d7e2ee;
  border-left: 5px solid #2b4a6d;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(43, 74, 109, 0.08);
  text-align: center;
}

.oroza-download-notice-title {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #183554;
}

/* Secciones de contenido */
.oroza-download-section {
  margin-bottom: 22px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #d7e2ee;
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(43, 74, 109, 0.08);
}

.oroza-download-section-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #183554;
}

/* Pasos */
.oroza-download-steps {
  max-width: 860px;
  margin: 22px auto 0;
  display: grid;
  gap: 14px;
}

.oroza-download-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #dce5ef;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.05);
}

.oroza-download-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 14px rgba(43, 74, 109, 0.18);
}

.oroza-download-step-body {
  flex: 1;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  color: #44566d;
}

/* Caja de ayuda */
.oroza-download-tip {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff8ea 100%);
  border: 1px solid #f0dfb3;
  border-left: 5px solid #ffb400;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(255, 180, 0, 0.08);
  text-align: center;
}

.oroza-download-tip-title {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 800;
  color: #6f4d00;
}

/* Bloque final */
.oroza-download-highlight {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 26px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #355276 0%, #2b4a6d 100%);
  border: 1px solid #274361;
  box-shadow: 0 14px 26px rgba(43, 74, 109, 0.18);
  text-align: center;
}

.oroza-download-highlight-title {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.oroza-download-highlight .oroza-section-text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive */
@media (max-width: 960px) {
  .oroza-download-shell {
    flex-direction: column;
  }

  .oroza-download-sidebar,
  .oroza-download-main {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .oroza-download-section,
  .oroza-download-notice {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .oroza-download-section-title {
    font-size: 24px;
  }

  .oroza-download-step {
    padding: 16px;
  }

  .oroza-download-step-body {
    font-size: 14px;
  }

  .oroza-download-highlight-title {
    font-size: 21px;
  }
}


/* =========================================================
   CLASES ADICIONALES PARA SOLUCIÓN DE PROBLEMAS
   Imágenes, botones, listas centradas y divisores
========================================================= */

.oroza-content-img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  margin: 15px auto;
}

.oroza-img-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.oroza-img-row .oroza-content-img {
  width: 40%;
  min-width: 260px;
  margin: 0;
}

.oroza-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.oroza-button-container .oroza-action-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
}

.oroza-list-centered {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.oroza-download-highlight .oroza-feature-list {
  color: rgba(255, 255, 255, 0.92);
}

.oroza-mt-24 {
  margin-top: 24px;
}

/* Divisor sutil para separar el Problema de la Solución dentro de la misma tarjeta */
.oroza-divider {
  border: 0;
  height: 1px;
  background: #d7e2ee;
  margin: 28px 0;
}


/* =========================================================
   CLASES ADICIONALES PARA SKILLS Y TABLAS
   Utilidades para imágenes, iconos y textos secundarios
========================================================= */

/* Centrado de GIFs animados de las clases */
.oroza-content-img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  margin: 15px auto;
}

/* Alineación de icono de skill con su nombre */
.oroza-skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1f4368;
}

/* Textos aclaratorios en gris dentro de las tablas (ej. "Antes: X") */
.oroza-text-muted {
  display: block;
  color: #7b8d9f;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}

/* Textos pequeños en los títulos (ej. "Incluye Babys") */
.oroza-text-small {
  font-size: 16px;
  font-weight: 500;
  color: #4a6481;
  vertical-align: middle;
}

/* =========================================================
   CLASES ADICIONALES PARA MERCADO BÁSICO
   Iconos pequeños y márgenes
========================================================= */

/* Iconos de 18px alineados con el texto */
.oroza-icon-sm {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

/* Margen superior para separar párrafos continuos */
.oroza-mt-16 {
  margin-top: 16px;
}

/* =========================================================
   CLASES ADICIONALES PARA IMÁGENES DE EXHIBICIÓN (MEJORADO)
   Centrado, tamaños optimizados e interactividad.
========================================================= */

/* Imagen principal media (Banners, mapas, capturas grandes) */
.oroza-img-lg {
  display: block;
  /* UX: Reducido al 65% para no competir con el texto */
  max-width: 65%; 
  width: 100%;
  height: auto;
  /* UI: Bordes redondeados estéticos */
  border-radius: 22px;
  /* UX: Siempre centrada */
  margin: 0 auto 24px auto;
  /* UI: Sombra suave inicial */
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  /* UI: Transición suave para el efecto hover */
  transition: all 0.3s ease-in-out;
  cursor: pointer; /* Indica interactividad */
}

/* Efecto Hover para .oroza-img-lg */
.oroza-img-lg:hover {
  /* UI: Se eleva ligeramente */
  transform: translateY(-5px) scale(1.01);
  /* UI: Sombra más profunda y definida */
  box-shadow: 0 14px 30px rgba(43, 74, 109, 0.12);
}

/* Imagen pequeña (Capturas de interfaz, iconos grandes) */
.oroza-img-sm {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* UX: Siempre centrada */
  margin: 20px auto 0 auto;
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.08);
  /* UI: Interactividad sutil también aquí */
  transition: transform 0.2s ease;
}

.oroza-img-sm:hover {
  transform: scale(1.03);
}

/* Utilidad de margen inferior */
.oroza-mb-16 {
  margin-bottom: 16px;
}


/* =========================================================
   CLASES ADICIONALES PARA QUEST STONES (V2 MEJORADA)
   Corrige anchos de tabla, alinea sprites y pule mapas
========================================================= */

/* Sobrescribe el ancho del <th> (40%) para que la fila de 4 columnas no se aplaste */
.oroza-info-table.oroza-table-stats tbody th {
  width: 20%;
  white-space: nowrap;
}
.oroza-info-table.oroza-table-stats tbody td {
  width: 30%;
}

/* Fila del monstruo: flexbox en columna para centrar sprite arriba y texto abajo */
.oroza-mob-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 8px 0;
}

.oroza-mob-cell span {
  font-weight: 600;
  color: #1e4166;
}

/* Sprites de monstruos: tamaño ajustado para centrado vertical */
.oroza-mob-sprite {
  display: block;
  max-height: 65px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Iconos en los títulos */
.oroza-icon-md {
  height: 26px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

/* Título de sección para los mapas */
.oroza-subtitle {
  font-size: 17px;
  font-weight: 800;
  color: #183554;
  margin: 24px 0 14px 0;
  text-align: center;
}

/* Grid flexible para las tarjetas de mapas */
.oroza-map-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

/* Tarjeta individual del mapa */
.oroza-map-item {
  background: #ffffff;
  border: 1px solid #d5e1ee;
  border-radius: 12px;
  padding: 10px;
  width: 130px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oroza-map-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.1);
  border-color: #b9d0e8;
}

.oroza-map-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #2b4a6d;
}

/* Imagen interior del mapa */
.oroza-map-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #eef3f8;
  display: block;
  margin: 0 auto;
}

/* Utilidad para texto secundario */
.oroza-text-muted {
  color: #7b8d9f;
  font-size: 13px;
  margin-left: 6px;
}

/* =========================================================
   CLASES ADICIONALES PARA MVPs Y DROPS
========================================================= */

/* Sprite para Jefes (MVP): Permite que se vean más grandes y añade sombra */
.oroza-mvp-sprite {
  display: block;
  max-height: 140px; 
  width: auto;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

/* Lista limpia y alineada para los drops (Evita estilos en línea) */
.oroza-drop-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.oroza-drop-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #44566d;
}

.oroza-drop-list strong {
  color: #1e4166;
  margin-left: 4px;
}

/* =========================================================
   CLASES ADICIONALES PARA IMÁGENES DE EXHIBICIÓN (MEJORADO)
   Centrado, tamaños optimizados e interactividad.
========================================================= */

/* Imagen principal media (Banners, mapas, capturas grandes) */
.oroza-img-lg {
  display: block;
  /* UX: Reducido al 65% para no competir con el texto */
  max-width: 65%; 
  width: 100%;
  height: auto;
  /* UI: Bordes redondeados estéticos */
  border-radius: 22px;
  /* UX: Siempre centrada */
  margin: 0 auto 24px auto;
  /* UI: Sombra suave inicial */
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  /* UI: Transición suave para el efecto hover */
  transition: all 0.3s ease-in-out;
  cursor: pointer; /* Indica interactividad */
}

/* Efecto Hover para .oroza-img-lg */
.oroza-img-lg:hover {
  /* UI: Se eleva ligeramente */
  transform: translateY(-5px) scale(1.01);
  /* UI: Sombra más profunda y definida */
  box-shadow: 0 14px 30px rgba(43, 74, 109, 0.12);
}

/* Imagen pequeña (Capturas de interfaz, iconos grandes) */
.oroza-img-sm {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* UX: Siempre centrada */
  margin: 20px auto 0 auto;
  box-shadow: 0 8px 18px rgba(43, 74, 109, 0.08);
  /* UI: Interactividad sutil también aquí */
  transition: transform 0.2s ease;
}

.oroza-img-sm:hover {
  transform: scale(1.03);
}

/* Utilidad de margen inferior */
.oroza-mb-16 {
  margin-bottom: 16px;
}

/* =========================================================
   CLASES ADICIONALES PARA TABLAS EXPANDIDAS
   Evita que las columnas de recompensas se vean apretadas
========================================================= */

/* Variante para tablas con contenido de items, expande columnas */
.oroza-table.oroza-table-expanded {
  table-layout: auto !important; /* UX: Permite expansión natural */
  width: 100%;
}

.oroza-table.oroza-table-expanded th,
.oroza-table.oroza-table-expanded td {
  padding: 16px 18px !important; /* UX: Más espacio interno */
}

/* =========================================================
   CLASES ADICIONALES PARA BATTLEGROUNDS
   Alineación de texto, imágenes secundarias y vendedores
========================================================= */

/* Utilidad para centrar textos */
.oroza-text-center {
  text-align: center;
}

/* Imagen mediana (Mapas y Banners secundarios) */
.oroza-img-md {
  display: block;
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.08);
  transition: transform 0.3s ease;
}

.oroza-img-md:hover {
  transform: scale(1.02);
}

/* Iconos en línea (botones y medallas) */
.oroza-inline-icon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}

/* Iconos de NPC vendedores */
.oroza-npc-icon {
  height: 55px;
  width: auto;
  vertical-align: middle;
  margin-right: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Lista estilizada de Vendedores (Tiendas) */
.oroza-vendor-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  max-width: 800px;
  text-align: left;
}

.oroza-vendor-list li {
  background: #fbfdff;
  border: 1px solid #d5e1ee;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.03);
}

.oroza-vendor-text {
  flex: 1;
  font-size: 15px;
  color: #44566d;
  line-height: 1.6;
}

.oroza-vendor-text strong {
  color: #1e4166;
  font-size: 16px;
}

.oroza-vendor-sub {
  display: block;
  font-size: 13.5px;
  color: #7b8d9f;
  margin-top: 4px;
}
















/* =========================================================
   CLASES PARA OBJETOS ESPECIALES Y ESENCIAS (COMPLETO)
========================================================= */

/* Iconos de items alineados */
.oroza-item-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}

/* Rejilla de bonos para Libros de Secretos */
.oroza-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

.oroza-bonus-grid li {
  background: #f8fbff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid #d5e1ee;
  color: #44566d;
  text-align: left;
}

.oroza-bonus-grid li strong {
  color: #1e4166;
  display: inline-block;
  min-width: 70px;
}

/* Lista de fragmentos compacta dentro de tablas */
.oroza-fragment-list {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  text-align: left;
}

.oroza-fragment-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 13px;
}

/* =========================================================
   CLASES ADICIONALES PARA DUNGEON DEL DÍA (ACTUALIZADO)
========================================================= */

/* Tarjeta del NPC centrada y con ancho máximo */
.oroza-npc-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #fbfdff;
  border: 1px solid #d5e1ee;
  border-radius: 16px;
  padding: 24px;
  margin: 0 auto;
  max-width: 650px; /* Evita que se estire y fuerza el centrado */
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  text-align: center; /* Centra el texto interior */
}

.oroza-npc-card img {
  width: 100px;
  min-width: 100px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

@media (max-width: 768px) {
  .oroza-npc-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* Modificador para centrar el texto de las celdas en la tabla */
.oroza-info-table.oroza-table-centered tbody th,
.oroza-info-table.oroza-table-centered tbody td {
  text-align: center;
}

/* Contenedor de tabla con ancho reducido para listas de 1 sola columna */
.oroza-table-wrap-md {
  max-width: 500px;
  margin: 20px auto 0 auto;
  overflow-x: auto;
  border-radius: 16px;
}

/* =========================================================
   CLASES ADICIONALES PARA CÓDIGOS PROMOCIONALES (MEJORADO)
========================================================= */
.oroza-promo-wrapper {
  text-align: center;
  margin: 30px 0;
}

.oroza-promo-code {
  display: inline-block;
  background: linear-gradient(135deg, #fff9e6 0%, #fff2cc 100%);
  border: 3px dashed #ffb400;
  border-radius: 16px;
  padding: 20px 40px;
  font-size: 34px;
  font-family: 'Courier New', Courier, monospace; /* Tipografía de código */
  font-weight: 900;
  color: #c79400;
  letter-spacing: 5px;
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.2);
  text-transform: uppercase;
  user-select: all; /* UX: Selecciona todo el texto con un solo clic */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oroza-promo-code:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(255, 180, 0, 0.35);
  border-color: #dcae1d;
}

.oroza-promo-hint {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #7b8d9f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* =========================================================
   CLASES ADICIONALES PARA PROGRAMA DE CREADORES (MEJORADO)
========================================================= */

/* Caja para el formulario (Contraste perfecto en fondos oscuros) */
.oroza-code-block {
  background: rgba(15, 25, 38, 0.4); /* Fondo oscuro translúcido */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid #ffb400; /* Toque dorado Oroza */
  padding: 18px 22px;
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14.5px;
  color: #f8fbff; /* Texto blanco muy legible */
  line-height: 1.8;
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
  user-select: all; /* Permite copiar todo el bloque con un clic */
  cursor: pointer;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.oroza-code-block:hover {
  background: rgba(15, 25, 38, 0.6);
  border-color: rgba(255, 180, 0, 0.4);
}

/* Botón estilo Discord */
.oroza-btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #5865F2;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px;
}

.oroza-btn-discord:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  background: #4752C4;
}

/* =========================================================
   CLASES ADICIONALES PARA IFRAMES (WIDGETBOT / DISCORD)
   Actualizado para ocupar el 100% del ancho disponible
========================================================= */
.oroza-iframe-container {
  width: 100%;
  max-width: 100%; /* Permite que explote al 100% del contenedor padre */
  margin: 0 auto 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 74, 109, 0.15);
  border: 1px solid #d5e1ee;
  background: #ffffff;
}

.oroza-iframe-container iframe {
  width: 100%;
  height: 1250px; /* Altura masiva para leer cómodamente */
  min-height: 85vh; /* Asegura buena altura dinámica */
  display: block;
  border: none;
}

/* Ajuste proporcional para móviles */
@media (max-width: 768px) {
  .oroza-iframe-container iframe {
    height: 850px;
  }
}


/* =========================================================
   CLASES ADICIONALES PARA RENACIMIENTO LEGENDARIO
========================================================= */

/* Tarjeta para NPCs o Ítems destacados con texto al lado */
.oroza-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fbfdff;
  border: 1px solid #d5e1ee;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
}

.oroza-feature-card img {
  width: 220px; /* Tamaño ideal para la insignia y la valkyrie */
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
  flex-shrink: 0;
}

/* Modificador para centrar el texto de celdas en tablas de stats */
.oroza-table-centered th,
.oroza-table-centered td {
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .oroza-feature-card {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   CLASES ADICIONALES PARA CARRERA AL NIVEL MÁXIMO (PODIO)
========================================================= */

/* Grid de 3 columnas para el podio */
.oroza-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

/* Tarjetas Base del Podio */
.oroza-podium-card {
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oroza-podium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(43, 74, 109, 0.12);
}

.oroza-podium-card h3 {
  margin-top: 0;
  font-size: 22px;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-align: center;
}

.oroza-podium-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
  color: #44566d;
}

.oroza-podium-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.oroza-podium-card li strong {
  color: #1e4166;
  font-size: 15px;
}

/* Colores específicos del podio */
.oroza-podium-gold {
  background: linear-gradient(180deg, #fffcf0 0%, #fff7d6 100%);
  border: 1px solid #ffeeba;
}
.oroza-podium-gold h3 { color: #b8860b; }

.oroza-podium-silver {
  background: linear-gradient(180deg, #f4f9ff 0%, #e6f0fa 100%);
  border: 1px solid #b8daff;
}
.oroza-podium-silver h3 { color: #4682b4; }

.oroza-podium-bronze {
  background: linear-gradient(180deg, #fff9f5 0%, #ffeee6 100%);
  border: 1px solid #f5c6cb;
}
.oroza-podium-bronze h3 { color: #cd5c5c; }

/* Modificador para centrar el texto de las celdas en tablas */
.oroza-info-table.oroza-table-centered th,
.oroza-info-table.oroza-table-centered td {
  text-align: center;
}


/* =========================================================
   CLASES PARA BONUS POR DROP Y TABLAS EXTENSAS
========================================================= */

/* Grid para tarjetas superiores */
.oroza-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px 0 30px;
}

.oroza-chance-card {
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(43, 74, 109, 0.05);
  transition: transform 0.2s ease;
}

.oroza-chance-card:hover { transform: translateY(-4px); }
.oroza-chance-card h3 { margin-top: 0; font-size: 22px; margin-bottom: 10px; }
.oroza-chance-card p { margin-bottom: 0; font-size: 14.5px; color: #44566d; line-height: 1.5; }

.oroza-chance-1 { background: #fbfdff; border: 1px solid #d5e1ee; }
.oroza-chance-1 h3 { color: #2b4a6d; }
.oroza-chance-2 { background: #f0f8ff; border: 1px solid #b8daff; }
.oroza-chance-2 h3 { color: #1e70bf; }
.oroza-chance-3 { background: #fffcf0; border: 1px solid #ffeeba; }
.oroza-chance-3 h3 { color: #dcae1d; }

/* Controles de Filtro */
.oroza-filter-controls { margin-bottom: 20px; text-align: center; }
.oroza-cat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 15px; }

.oroza-cat-btn {
  appearance: none; border: 1px solid #d5e1ee; background: #ffffff; color: #2f3742;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.oroza-cat-btn:hover { border-color: #ffb400; background: #fffcf0; }
.oroza-cat-btn.active {
  background: linear-gradient(180deg, #fffaf1 0%, #fff4dd 100%);
  border-color: #dcae1d; color: #7a5a16; box-shadow: 0 4px 10px rgba(220, 174, 29, 0.15);
}

.oroza-input {
  padding: 10px 16px; font-size: 14px; text-align: center; border: 1px solid #d5e1ee;
  border-radius: 12px; outline: none; background: #ffffff; color: #2b4a6d;
  width: 100%; max-width: 500px; margin: 0 auto; transition: all 0.25s ease;
}
.oroza-input:focus { border-color: #ffb400; box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.15); }

/* Modificadores de Tablas Gigantes */
.oroza-table-centered th, .oroza-table-centered td { text-align: center; vertical-align: middle; }
.oroza-text-left { text-align: left !important; }

/* Colores de Rareza para evitar estilos en línea */
.text-common { color: #28a745; font-weight: 800; }
.text-rare { color: #1e70bf; font-weight: 800; }
.text-epic { color: #6f42c1; font-weight: 800; }

/* =========================================================
   CLASES ADICIONALES PARA TABLAS ULTRA COMPACTAS (Ej. Drops)
========================================================= */
.oroza-info-table.oroza-table-compact tbody th,
.oroza-info-table.oroza-table-compact tbody td {
  font-size: 12.5px !important; /* Letra ligeramente más pequeña */
  padding: 8px 6px !important;  /* Reduce el espacio interno de la celda */
}

.oroza-info-table.oroza-table-compact thead th {
  font-size: 13px !important; /* Encabezado un poco más grande que el texto */
  padding: 10px 6px !important;
}

/* En celulares, la compactamos un nivel más para evitar scroll excesivo */
@media (max-width: 768px) {
  .oroza-info-table.oroza-table-compact tbody th,
  .oroza-info-table.oroza-table-compact tbody td {
    font-size: 11.5px !important;
    padding: 6px 4px !important;
  }
}

/* =========================================================
   CLASES ADICIONALES PARA TARJETAS DE PRECIO (PRICING)
========================================================= */

/* Grid de 3 columnas para los paquetes VIP */
.oroza-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

/* Tarjeta de Precio Destacada */
.oroza-pricing-card {
  background: #ffffff;
  border: 1px solid #d5e1ee;
  border-top: 5px solid #ffb400; /* Borde superior dorado VIP */
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oroza-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(43, 74, 109, 0.15);
  border-color: #dcae1d;
}

.oroza-pricing-title {
  font-size: 20px;
  font-weight: 800;
  color: #2b4a6d;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oroza-pricing-cost {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eef3f8;
  border-bottom: 1px solid #eef3f8;
}

.oroza-pricing-cost span {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* =========================================================
   CLASES ACTUALIZADAS PARA GALERÍA POKÉMON (CLIC PARA AMPLIAR)
========================================================= */

.oroza-pokedex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  margin: 30px 0 10px 0;
}

/* El enlace ahora es la tarjeta en la cuadrícula */
.oroza-pokedex-link {
  display: block;
  text-decoration: none !important;
  transition: transform 0.25s ease;
}

.oroza-pokedex-link img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d5e1ee;
  padding: 5px; /* Marco blanco */
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.05);
  transition: all 0.25s ease;
  cursor: zoom-in; /* Ícono de lupa al pasar el ratón */
}

/* Efecto hover estilo carta coleccionable */
.oroza-pokedex-link:hover img {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 24px rgba(43, 74, 109, 0.2);
  border-color: #ffb400; /* Borde dorado */
  position: relative;
  z-index: 10;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
  .oroza-pokedex-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
  }
}

/* =========================================================
   CLASES ADICIONALES PARA GALERÍA DE LEGENDARIOS (CON ZOOM)
========================================================= */

/* Tarjeta contenedora limpia y centrada */
.oroza-legendary-card {
  background: #ffffff;
  border: 1px solid #d7e2ee;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(43, 74, 109, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oroza-legendary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(43, 74, 109, 0.12);
  border-color: #ffb400; /* Borde dorado al pasar el ratón */
}

/* Enlace que envuelve la imagen (Aplica el cursor de lupa) */
.oroza-legendary-link {
  display: block;
  cursor: zoom-in;
  text-decoration: none !important;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px; /* Separación con el nombre */
}

/* Imagen base fluida */
.oroza-legendary-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Efecto de acercamiento interno en la imagen */
.oroza-legendary-link:hover img {
  transform: scale(1.05);
}

/* Nombre del Pokémon Legendario */
.oroza-legendary-name {
  font-size: 18px;
  font-weight: 800;
  color: #2b4a6d;
  display: block;
  letter-spacing: 0.5px;
}

/* =========================================================
   CLASES ADICIONALES PARA GALERÍA DE HATS (GIFS)
========================================================= */
.oroza-gallery-gif {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #d5e1ee;
  box-shadow: 0 4px 10px rgba(43, 74, 109, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: zoom-in;
  background-color: #ffffff;
}

.oroza-gallery-gif:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(43, 74, 109, 0.12);
  border-color: #ffb400;
}

/* Contenedor especial para centrar el último GIF */
.oroza-gallery-center {
  text-align: center;
  margin-top: 20px;
}

.oroza-gallery-center .oroza-gallery-gif {
  max-width: 450px;
  margin: 0 auto;
}

/* =========================================================
   CORRECCIÓN DE BOTONES Y BOTÓN DORADO (FONDOS OSCUROS)
========================================================= */

/* Elimina el error de los signos "??", anulando el pseudo-elemento roto */
.button-icon::before {
  content: none !important; 
}

/* Nuevo botón dorado para resaltar en fondos oscuros (como .oroza-download-highlight) */
.oroza-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffb400;
  color: #162234 !important;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.oroza-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: #ffd043;
  text-decoration: none !important;
}

/* =========================================================
   CLASES ADICIONALES PARA ENDLESS TOWER (GIFS DE MOBS)
========================================================= */
.oroza-mob-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e4ebf3;
}

.oroza-mob-gallery img {
  max-height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
  transition: transform 0.2s ease;
}

.oroza-mob-gallery img:hover {
  transform: scale(1.15) translateY(-3px);
}

/* Efecto especial para resaltar a los Jefes (MvP) */
.oroza-mob-gallery img.mvp-gif {
  max-height: 65px;
  filter: drop-shadow(0 0 6px rgba(255, 180, 0, 0.8));
  z-index: 2;
}