/*Theme Name: Venus FM ThemeDescription: Tema oscuro y moderno para radio, optimizado para móviles y escritorio.Version: 3.3 (User Profile & Header Update)Text Domain: venusfm*//* ==========================================================================   FUENTES LOCALES (MONTSERRAT)   Asegúrate de tener estos archivos en una carpeta llamada "fonts"   ========================================================================== */@font-face {    font-family: 'Montserrat';    src: url('./fonts/Montserrat-Regular.woff2') format('woff2');    font-weight: 400;    font-style: normal;    font-display: swap;}@font-face {    font-family: 'Montserrat';    src: url('./fonts/Montserrat-SemiBold.woff2') format('woff2');    font-weight: 600;    font-style: normal;    font-display: swap;}@font-face {    font-family: 'Montserrat';    src: url('./fonts/Montserrat-ExtraBold.woff2') format('woff2');    font-weight: 800;    font-style: normal;    font-display: swap;}@font-face {    font-family: 'Montserrat';    src: url('./fonts/Montserrat-Black.woff2') format('woff2');    font-weight: 900;    font-style: normal;    font-display: swap;}:root {    --bg-dark: #0f0f0f;    --bg-panel: #141414;    --text-main: #ffffff;    --text-muted: #aaaaaa;    --accent-red: #e0003b;    --sidebar-width: 260px;    --player-height: 90px;}* {    margin: 0;    padding: 0;    box-sizing: border-box;}/* FIX: Mover el control de desborde horizontal al HTML para evitar bugs en body */html {    overflow-x: hidden;}body {    font-family: 'Montserrat', sans-serif;    background-color: var(--bg-dark);    color: var(--text-main);    min-height: 100dvh;    padding-bottom: var(--player-height);    overflow-x: hidden;    position: relative;}::-webkit-scrollbar { width: 8px; }::-webkit-scrollbar-track { background: var(--bg-dark); }::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }::-webkit-scrollbar-thumb:hover { background: #555; }/* SIDEBAR LATERAL */.site-sidebar {    width: var(--sidebar-width);    background-color: var(--bg-panel);    height: 100vh;    position: fixed;    top: 0; left: 0; padding: 30px 20px;    display: flex; flex-direction: column;    z-index: 1000; border-right: 1px solid #222;}.site-logo img { max-width: 80%; margin-bottom: 40px; display: block; margin-left: auto; margin-right: auto; }.site-logo-text {    font-size: 1.8rem; font-weight: 900; color: #ffffff; text-transform: uppercase;    letter-spacing: -1px; display: block; text-align: center; margin-bottom: 40px;    font-family: 'Montserrat', sans-serif; transition: transform 0.3s ease;}.site-logo-text:hover { transform: scale(1.05); }.site-logo-text .logo-dot { color: var(--accent-red); }.main-navigation ul { list-style: none; }.main-navigation li { margin-bottom: 8px; }.main-navigation a {    color: var(--text-muted); text-decoration: none; font-size: 12px; font-weight: 800;    display: flex; align-items: center; padding: 14px 20px; border-radius: 12px;    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); text-transform: uppercase;    letter-spacing: 1px; position: relative; overflow: hidden; z-index: 1;}.main-navigation a:hover { color: #ffffff; background-color: rgba(255, 255, 255, 0.03); transform: translateX(6px); }.main-navigation a::before {    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px;    background-color: var(--accent-red); transform: scaleY(0); transition: transform 0.3s ease; border-radius: 0 4px 4px 0;}.main-navigation a:hover::before { transform: scaleY(0.5); }.main-navigation .current-menu-item a { color: #ffffff; background: linear-gradient(90deg, rgba(255,0,68,0.15) 0%, rgba(20,20,20,0) 100%); }.main-navigation .current-menu-item a::before { transform: scaleY(1); }/* CONTENIDO PRINCIPAL Y TOP BAR */.site-main { margin-left: var(--sidebar-width); width: calc(100% - var(--sidebar-width)); padding: 30px 50px; }.top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }.search-bar { flex: 1; max-width: 350px; margin-right: 20px; }.search-bar form { position: relative; display: flex; align-items: center; width: 100%; }.search-icon { position: absolute; left: 18px; width: 22px; height: 22px; fill: var(--accent-red); pointer-events: none; }.search-bar input {    background: #ffffff; border: 2px solid #ffffff; border-radius: 30px;    padding: 12px 25px 12px 50px; color: #111111; font-weight: 800; width: 100%;    font-family: inherit; font-size: 14px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.3);}.search-bar input::placeholder { color: #888888; font-weight: 600; }.search-bar input:focus { outline: none; border-color: var(--accent-red); box-shadow: 0 4px 20px rgba(255,0,68,0.2); }.btn-live {    background-color: var(--accent-red); color: white; padding: 12px 25px; border-radius: 30px;    text-decoration: none; font-weight: 800; font-size: 13px; text-transform: uppercase;    letter-spacing: 1px; transition: transform 0.2s, background-color 0.2s; display: inline-flex;    align-items: center; justify-content: center;}.btn-live:hover { transform: scale(1.05); background-color: #c20033; }/* ==========================================================================   GRIDS Y CARDS (RANKING)   ========================================================================== */.ranking-container {    display: flex; gap: 15px; margin-bottom: 50px; overflow-x: auto;    padding-bottom: 15px; scroll-snap-type: x mandatory;     scrollbar-width: none;}.ranking-container::-webkit-scrollbar { display: none; }.ranking-box {    flex: 0 0 250px; width: 250px;    padding: 15px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.3);    display: flex; align-items: center; gap: 15px; text-decoration: none; color: white;    transition: transform 0.2s ease, box-shadow 0.2s ease; scroll-snap-align: start;}.ranking-box:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.5); }.ranking-cover { position: relative; width: 60px; height: 60px; flex-shrink: 0; }.ranking-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.4); }.ranking-cover .rank-number {    position: absolute; top: -5px; left: -5px; background-color: var(--bg-panel); color: white;    width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;    font-size: 11px; font-weight: 900; border: 2px solid rgba(255,255,255,0.1); z-index: 2;}.ranking-info { display: flex; flex-direction: column; overflow: hidden; }.ranking-title { font-size: 1rem; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }.ranking-artist { font-size: 0.8rem; font-weight: 600; opacity: 0.9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.ranking-box:nth-child(1) { background: #333; }.ranking-box:nth-child(2) { background: #d90048; }.ranking-box:nth-child(3) { background: #ffaa00; color: #000; }.ranking-box:nth-child(3) .ranking-artist { color: #222; }.ranking-box:nth-child(3) .ranking-cover .rank-number { background-color: #000; color: #fff; border-color: #000; }.ranking-box:nth-child(4) { background: #9900cc; }.ranking-box:nth-child(5) { background: #00ccff; color: #000; }.ranking-box:nth-child(5) .ranking-artist { color: #222; }.ranking-box:nth-child(5) .ranking-cover .rank-number { background-color: #000; color: #fff; border-color: #000; }/* GRID BENTO */.home-bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }.bento-card {    position: relative; border-radius: 12px; overflow: hidden; background-size: cover;    background-position: center; background-color: var(--bg-panel); display: flex;    flex-direction: column; justify-content: flex-end; transition: transform 0.3s ease;    animation: fadeInBento 0.5s ease forwards; }@keyframes fadeInBento { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }.bento-card:hover { transform: translateY(-5px); }.bento-card:nth-child(10n + 1) { grid-column: span 2; min-height: 280px; }.bento-card:nth-child(10n + 2) { grid-column: span 1; min-height: 280px; }.bento-card:nth-child(10n + 3) { grid-column: span 1; min-height: 280px; }.bento-card:nth-child(10n + 4) { grid-column: span 2; min-height: 260px; }.bento-card:nth-child(10n + 5) { grid-column: span 2; min-height: 260px; }.bento-card:nth-child(10n + 6) { grid-column: span 1; min-height: 280px; }.bento-card:nth-child(10n + 7) { grid-column: span 1; min-height: 280px; }.bento-card:nth-child(10n + 8) { grid-column: span 2; min-height: 280px; }.bento-card:nth-child(10n + 9) { grid-column: span 2; min-height: 260px; }.bento-card:nth-child(10n + 10){ grid-column: span 2; min-height: 260px; }.bento-card-link-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5; }.bento-card-content { position: relative; z-index: 2; padding: 60px 20px 20px 20px; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, transparent 100%); pointer-events: none; }.bento-categories { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }.bento-cat-tag { background-color: rgba(255, 255, 255, 0.15); backdrop-filter: blur(4px); color: #ffffff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 15px; }.bento-title { font-size: 1.15rem; font-weight: 900; line-height: 1.25; margin-bottom: 6px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }.bento-title a { color: #ffffff; text-decoration: none; }.bento-date { font-size: 0.8rem; color: #cccccc; font-weight: 600; margin: 0; }.btn-load-more {    background-color: transparent; border: 2px solid #333; color: white; padding: 15px 40px;    border-radius: 30px; font-weight: 800; font-size: 14px; text-transform: uppercase;    letter-spacing: 1px; cursor: pointer; transition: transform 0.2s ease, opacity 0.2s ease;}.btn-load-more:hover { background-color: #333; border-color: #555; transform: translateY(-2px); }.btn-load-more:disabled { opacity: 0.5; cursor: not-allowed; }/* FOOTER PLAYER */.site-footer { position: fixed; bottom: 0; left: 0; width: 100%; height: var(--player-height); background: #000; z-index: 9999; border-top: 1px solid #222; }/* VISTA INDIVIDUAL */.single-post-container { padding: 0 0 40px 0; }.btn-close-modal { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 800; margin: 20px 40px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; position: relative; z-index: 10; }.btn-close-modal:hover { color: white; }.single-hero-header { position: relative; overflow: hidden; padding: 110px 40px 100px 40px; margin-top: -80px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 450px; z-index: 1; }.hero-blur-background { position: absolute; top: -10%; left: -10%; width: 120%; height: 120%; background-size: cover; background-position: center 20%; filter: blur(8px) brightness(0.3); z-index: 0; }.hero-blur-background::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80%; background: linear-gradient(to bottom, rgba(15,15,15,0) 0%, var(--bg-dark) 100%); }.single-header-content { position: relative; z-index: 2; max-width: 900px; }.post-categories-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }.cat-badge { background-color: rgba(255, 255, 255, 0.15); color: #ffffff; font-size: 13px; font-weight: 800; padding: 6px 16px; border-radius: 20px; text-transform: capitalize; text-decoration: none; transition: transform 0.3s ease, background-color 0.3s ease; backdrop-filter: blur(4px); }.cat-badge:hover { background-color: rgba(255, 255, 255, 0.3); color: #ffffff; transform: translateY(-2px); }.single-title { font-size: 2.5rem; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; font-weight: 900; letter-spacing: -0.5px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }.single-excerpt { font-size: 1.3rem; color: #dddddd; font-weight: 600; line-height: 1.5; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }.single-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 0 40px; position: relative; z-index: 2; align-items: start; }.single-featured-image img { width: 100%; max-height: 450px; object-fit: cover; border-radius: 12px; margin-bottom: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }.single-meta { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 30px; color: var(--text-muted); font-size: 14px; font-weight: 600; }.single-body { line-height: 1.8; color: #dddddd; font-size: 1.1rem; font-weight: 400; }.single-body p { margin-bottom: 25px; }.single-body h2, .single-body h3 { margin-top: 40px; margin-bottom: 15px; font-weight: 800; color: white; }/* COMPARTIR REDONDOS */.single-social-share { display: flex; gap: 12px; align-items: center; }.share-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: #ffffff !important; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }.share-btn:hover { transform: translateY(-4px); box-shadow: 0 6px 15px rgba(0,0,0,0.5); opacity: 0.9; }.share-btn svg { width: 18px; height: 18px; fill: currentColor; }.share-fb { background-color: #1877F2; } .share-wa { background-color: #25D366; } .share-x { background-color: #000000; border: 1px solid #333; }/* NOVEDADES RELACIONADAS */.bottom-related-posts-wrapper { padding: 0 40px; margin-top: 50px; border-top: 1px solid #222; padding-top: 40px; max-width: 1000px; }.related-section-title { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 25px; border-bottom: 2px solid #333; padding-bottom: 15px; display: inline-block; }.related-posts-grid-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }.related-card-compact { display: flex; flex-direction: column; gap: 12px; transition: transform 0.2s ease; }.related-card-compact:hover { transform: translateY(-5px); }.related-card-thumb-compact { width: 100%; border-radius: 10px; overflow: hidden; }.related-card-thumb-compact a { display: block; }.related-card-thumb-compact img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform 0.3s ease; }.related-card-compact:hover .related-card-thumb-compact img { transform: scale(1.05); }.related-card-content-compact { display: flex; flex-direction: column; }.related-card-title-compact { font-size: 0.95rem; font-weight: 800; line-height: 1.3; margin-bottom: 5px; }.related-card-title-compact a { color: #ffffff; text-decoration: none; transition: color 0.2s ease; }.related-card-title-compact a:hover { color: var(--accent-red); }.related-card-meta-compact { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }/* HEADER FIJO PC */@media screen and (min-width: 992px) {    .top-bar {        position: -webkit-sticky; position: sticky; top: 0; z-index: 800; margin-top: -30px; margin-left: -50px;        width: calc(100% + 100px); padding: 20px 50px; background-color: rgba(10, 10, 10, 0.80);         -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: transform 0.3s ease;    }}/* CARRUSEL PODCASTS */.podcast-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; }.podcast-carousel::-webkit-scrollbar { height: 8px; }.podcast-carousel::-webkit-scrollbar-track { background: transparent; }.podcast-carousel::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }.podcast-carousel::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }.podcast-card { flex: 0 0 180px; scroll-snap-align: start; background: #181818; padding: 15px; border-radius: 8px; text-decoration: none; transition: background 0.3s ease, transform 0.2s ease; display: flex; flex-direction: column; }.podcast-card:hover { background: #282828; transform: translateY(-3px); }.podcast-thumb { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 6px; margin-bottom: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }.podcast-show { font-size: 0.7rem; color: var(--text-muted); font-weight: 800; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.podcast-title { font-size: 0.95rem; color: #ffffff; font-weight: 700; line-height: 1.3; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }.podcast-meta { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }/* PAGINACIÓN */.pagination-wrapper { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 50px; margin-bottom: 40px; flex-wrap: wrap; }.pagination-wrapper .page-numbers { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; background-color: var(--bg-panel); color: var(--text-main); text-decoration: none; border-radius: 30px; font-weight: 800; font-size: 13px; border: 2px solid #333; transition: transform 0.3s ease, background-color 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }.pagination-wrapper .page-numbers:hover { background-color: #333; border-color: #555; transform: translateY(-2px); }.pagination-wrapper .page-numbers.current { background-color: var(--accent-red); border-color: var(--accent-red); color: #ffffff; pointer-events: none; }.pagination-wrapper .page-numbers.dots { background-color: transparent; border-color: transparent; padding: 10px 5px; pointer-events: none; }/* FOOTER */.site-main-footer { background-color: #0c0c0c; color: #ffffff; padding-top: 60px; padding-bottom: calc(var(--player-height) + 40px); text-align: center; border-top: 1px solid #1a1a1a; font-family: 'Montserrat', sans-serif; margin-left: -50px; margin-right: -50px; width: calc(100% + 100px); margin-top: 60px; }.footer-top-bar { border-bottom: 1px solid #1a1a1a; padding-bottom: 40px; margin-bottom: 40px; max-width: 1000px; margin-left: auto; margin-right: auto; }.footer-top-widget .custom-html-widget { display: flex; flex-direction: column; align-items: center; gap: 30px; }.footer-social-row, .footer-apps-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }.footer-social-row span, .footer-apps-row span { font-size: 11px; font-weight: 900; letter-spacing: 1.5px; color: #cccccc; text-transform: uppercase; }.social-icons-wrapper { display: flex; gap: 12px; }.social-icons-wrapper a { color: #ffffff; background: transparent; border: 1px solid #444; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); }.social-icons-wrapper a:hover { background: #ffffff; color: #000000; border-color: #ffffff; transform: scale(1.1); }.social-icons-wrapper a svg { width: 16px; height: 16px; fill: currentColor; }.app-btn { height: 40px; transition: transform 0.2s ease; }.app-btn:hover { transform: scale(1.05); }.footer-logo img { height: 50px; width: auto; margin-bottom: 35px; opacity: 0.95; }.footer-main-menu-list { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 45px; padding: 0; margin: 0 auto 50px auto; max-width: 700px; }.footer-main-menu-list li a { color: #ffffff; text-decoration: none; font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s; }.footer-main-menu-list li a:hover { color: var(--accent-red); }.footer-legal-menu-list { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; padding: 0; margin: 0 auto 15px auto; }.footer-legal-menu-list li a { color: #aaaaaa; text-decoration: none; font-size: 11px; font-weight: 600; transition: color 0.3s; }.footer-legal-menu-list li a:hover { color: #ffffff; }.footer-copyright { color: #777777; font-size: 11px; font-weight: 600; }/* MENÚ MÓVIL */.mobile-menu-btn { display: none; }.mobile-navigation { display: none; }.mobile-search-bar { margin-top: 40px; margin-bottom: 20px; }.mobile-search-bar form { position: relative; display: flex; align-items: center; }.mobile-search-bar input { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 30px; padding: 12px 15px 12px 45px; color: #fff; font-weight: 700; width: 100%; font-size: 14px; transition: border-color 0.3s, background-color 0.3s; }.mobile-search-bar input:focus { outline: none; border-color: var(--accent-red); background: rgba(255, 255, 255, 0.15); }.mobile-search-bar input::placeholder { color: rgba(255, 255, 255, 0.6); }.mobile-search-bar .search-icon { position: absolute; left: 15px; width: 20px; height: 20px; fill: rgba(255, 255, 255, 0.6); }/* ==========================================================   OPTIMIZACIÓN RESPONSIVE + FIX DE ANUNCIOS    ========================================================== */.widget img, .single-sidebar img, .widget video {     max-width: 100% !important;     height: auto !important;     object-fit: cover;     border-radius: 8px; }.widget iframe, .single-sidebar iframe, .widget ins.adsbygoogle {     max-width: 100% !important;     border-radius: 8px;     display: block !important;    margin: 0 auto;}/* GLOBALES DE ANUNCIOS */.vfm-ad-desktop { display: block; text-align: center; margin: 15px auto; }.vfm-ad-mobile { display: none; text-align: center; margin: 15px auto; }@media screen and (max-width: 1366px) and (min-width: 901px) {    .site-main { padding: 30px 20px; }    .single-grid { grid-template-columns: 1fr 300px; gap: 30px; padding: 0 10px; align-items: start; }    .single-featured-image img { max-height: 360px; }    .single-title { font-size: 2rem; }    .single-excerpt { font-size: 1.15rem; }    .search-bar { max-width: 250px; }}/* RESPONSIVE MÓVIL */@media (max-width: 900px) {    .vfm-ad-desktop { display: none !important; }    .vfm-ad-mobile { display: block !important; }    body { padding-top: 70px; }    .site-sidebar { width: 100%; height: 70px; flex-direction: row; justify-content: space-between; align-items: center; padding: 10px 20px; border-right: none; border-bottom: 1px solid #222; }    .site-logo img { margin-bottom: 0; height: 40px; width: auto; }    .main-navigation { display: none; }    .mobile-menu-btn { display: block; background: none; border: none; color: white; cursor: pointer; padding: 5px; }    .mobile-navigation { display: block; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background-color: var(--bg-panel); z-index: 999999; padding: 60px 20px 20px; box-shadow: -5px 0 20px rgba(0,0,0,0.8); transition: right 0.3s ease-in-out; border-left: 1px solid #222; overflow-y: auto; }    .mobile-navigation.active { right: 0; }    .mobile-menu-close { position: absolute; top: 15px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 35px; cursor: pointer; line-height: 1; }    .mobile-menu-close:hover { color: var(--accent-red); }    .menu-movil-lista { list-style: none; padding: 0; margin-top: 20px; }    .menu-movil-lista li { margin-bottom: 5px; }    .menu-movil-lista a { display: block; color: white; text-decoration: none; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; padding: 15px 0; border-bottom: 1px solid #222; transition: color 0.3s; }    .menu-movil-lista a:hover { color: var(--accent-red); }    .site-main { margin-left: 0; width: 100%; padding: 15px; }    .top-bar { flex-direction: row; justify-content: flex-end; }    .top-bar .search-bar { display: none; }    .ranking-container { flex-direction: row; overflow-x: auto; gap: 12px; padding-bottom: 10px; }    .ranking-box { flex: 0 0 220px; width: 220px; min-width: unset; }    .home-bento-grid { grid-template-columns: 1fr; }    .bento-card:nth-child(n) { grid-column: span 1; min-height: 220px; }    .btn-close-modal { margin: 15px 15px; font-size: 11px; gap: 5px; }    .single-hero-header { padding: 60px 15px 35px 15px; min-height: auto; }    .post-categories-badges { margin-bottom: 12px; }    .cat-badge { font-size: 11px; padding: 4px 12px; }    .single-title { font-size: 1.4rem; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 10px; }    .single-excerpt { font-size: 1rem; line-height: 1.35; margin-bottom: 0; }    .single-grid { grid-template-columns: 1fr; gap: 25px; padding: 0 15px; }    .single-featured-image img { max-height: 250px; margin-bottom: 15px; }    .single-meta { margin-bottom: 20px; padding-bottom: 10px; font-size: 12px; }    .single-body { font-size: 1rem; }    .bottom-related-posts-wrapper { padding: 0 15px; margin-top: 30px; padding-top: 30px; }    .related-section-title { font-size: 1.2rem; margin-bottom: 20px; }    .related-posts-grid-row { grid-template-columns: 1fr; gap: 20px; }    .related-card-thumb-compact img { height: 180px; }    .podcast-card { flex: 0 0 150px; padding: 12px; }    .site-main-footer { margin-left: -15px; margin-right: -15px; width: calc(100% + 30px); margin-top: 40px; }    .footer-social-row, .footer-apps-row { flex-direction: column; gap: 15px; }    .footer-social-row span[style*="margin-left"] { margin-left: 0 !important; margin-top: 10px; }    .footer-main-menu-list { flex-direction: column; gap: 15px; }}/* INLINE RELATED POSTS */.vfm-inline-related { background-color: var(--bg-panel); border-left: 4px solid var(--accent-red); padding: 15px; margin: 35px 0; border-radius: 0 12px 12px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }.vfm-inline-related:hover { transform: translateX(8px); box-shadow: 0 6px 20px rgba(0,0,0,0.5); }.vfm-inline-related .inline-label { display: block; font-size: 0.75rem; color: var(--accent-red); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }.vfm-inline-related .inline-content { display: flex; align-items: center; gap: 15px; text-decoration: none; }.vfm-inline-related .inline-thumb { flex-shrink: 0; width: 80px; height: 80px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.4); }.vfm-inline-related .inline-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }.vfm-inline-related:hover .inline-thumb img { transform: scale(1.1); }.vfm-inline-related .inline-text h4 { color: #ffffff; font-size: 1.1rem; margin: 0; font-weight: 800; line-height: 1.3; transition: color 0.3s ease; }.vfm-inline-related:hover .inline-text h4 { color: var(--accent-red); }@media (max-width: 768px) {    .vfm-inline-related { margin: 25px 0; padding: 12px; }    .vfm-inline-related .inline-thumb { width: 65px; height: 65px; }    .vfm-inline-related .inline-text h4 { font-size: 0.95rem; }}/* ==========================================================================   USER PROFILE & HEADER ACTIONS (NUEVO)   ========================================================================== */.user-actions {    display: flex;    align-items: center;    gap: 20px;}.user-profile-link {    display: flex;    align-items: center;    gap: 10px;    color: var(--text-muted);    text-decoration: none;    font-weight: 800;    font-size: 13px;    transition: color 0.3s ease;    text-transform: uppercase;}.user-profile-link:hover {    color: #ffffff;}.user-icon {    width: 24px;    height: 24px;    transition: color 0.3s ease;}.user-avatar {    width: 35px;    height: 35px;    border-radius: 50%;    object-fit: cover;    border: 2px solid #333;    transition: all 0.3s ease;}.user-profile-link:hover .user-avatar {    border-color: var(--accent-red);    transform: scale(1.05);}@media (max-width: 900px) {    .user-name {        display: none; /* Ahorrar espacio en móviles */    }}