/*
Theme Name: J-Rohi Supreme Omega V2
*/

:root {
    --bg-dark: #020617;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --neon-blue: #38bdf8;
    --neon-pink: #ec4899;
}

body { background-color: var(--bg-dark); color: #f8fafc; font-family: 'Outfit', sans-serif; margin: 0; }

/* Forzar Estética en el Contenido de WordPress */
.prose-jrohi h1, .prose-jrohi h2, .prose-jrohi h3 {
    font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.05em; line-height: 1; margin-bottom: 2rem;
}

.prose-jrohi h1, .prose-jrohi h2 {
    background: linear-gradient(to right, #fff 50%, var(--neon-pink) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Cristalizar CUALQUIER Bloque de Contenido */
.glass-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 3rem;
    padding: 3rem;
    margin-top: 2rem;
}

/* Transformación de Tablas a Tarjetas Neón */
.prose-jrohi table { width: 100%; border-collapse: separate; border-spacing: 0 12px; }
.prose-jrohi table tr { 
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.prose-jrohi table tr:hover { 
    background: rgba(56, 189, 248, 0.08); 
    border-color: var(--neon-blue);
    transform: scale(1.02) translateX(10px);
}
.prose-jrohi table td { padding: 2rem; vertical-align: middle; }
.prose-jrohi table td:first-child { 
    color: #475569; font-size: 0.8rem; font-weight: 900; text-transform: uppercase; 
}
.prose-jrohi table td:last-child { 
    color: var(--neon-blue); font-size: 3.5rem; font-weight: 900; font-style: italic; text-align: right; 
}

/* Estilo para Listas de Precios (Failsafe) */
.prose-jrohi ul { list-style: none; padding: 0; }
.prose-jrohi li { 
    background: var(--glass-bg); padding: 2rem; border-radius: 2rem; margin-bottom: 1rem; 
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid var(--glass-border);
}
