/* DE NUEVE SPORTS - VIRAL & ADSENSE THEME */
:root {
    --primary: #0A0F1D;
    --primary-light: #151D30;
    --accent-green: #00E676;
    --accent-green-hover: #00c864;
    --accent-red: #EF4444;
    --accent-gold: #F59E0B;
    --wa-green: #25D366;
    --wa-hover: #20bd5a;
    --fb-blue: #1877F2;
    --tw-dark: #0F1419;
    --tg-blue: #2AABEE;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --bg-page: #F8FAFC;
    --bg-card: #FFFFFF;
    --border: #E2E8F0;
    --font-heading: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* 1. PROGRESS BAR */
#denueve-reading-bar {
    position: fixed; top: 0; left: 0; width: 0%; height: 4px;
    background: linear-gradient(90deg, var(--accent-green), #00B0FF);
    z-index: 99999; transition: width 0.1s ease;
}

/* 2. TOP BAR & TICKER */
.top-bar {
    background: #050811; color: #94A3B8; font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.07); padding: 6px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.ticker-wrapper { display: flex; align-items: center; gap: 12px; overflow: hidden; flex: 1; }
.ticker-badge {
    background: var(--accent-red); color: #fff; font-size: 11px; font-weight: 800;
    padding: 3px 8px; border-radius: 4px; display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap; text-transform: uppercase;
}
.pulse-dot {
    width: 7px; height: 7px; background: #fff; border-radius: 50%;
    animation: pulseGlow 1.4s infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}
.ticker-content { overflow: hidden; white-space: nowrap; }
.ticker-list { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.ticker-list a { color: #E2E8F0; font-weight: 500; }
.ticker-list a:hover { color: var(--accent-green); }
.top-bar-socials { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.social-icon { color: #CBD5E1; font-weight: 600; font-size: 12px; }
.social-icon:hover { color: var(--accent-green); }
.icon-wa { color: var(--wa-green) !important; font-weight: 700; }

/* 3. HEADER PRINCIPAL */
.site-header {
    background: var(--primary); color: #fff; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; gap: 20px; }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
    background: var(--accent-green); color: var(--primary); font-family: var(--font-heading);
    font-size: 28px; font-weight: 900; width: 44px; height: 44px; display: flex;
    align-items: center; justify-content: center; border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,230,118,0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: #fff; }
.logo-text small { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--accent-green); }

.main-navigation .nav-menu { display: flex; list-style: none; gap: 8px; margin: 0; padding: 0; }
.main-navigation .nav-menu li a {
    color: #E2E8F0; font-weight: 600; font-size: 14px; text-transform: uppercase;
    padding: 8px 12px; border-radius: 6px; transition: all 0.2s ease; display: block;
}
.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li.current-menu-item a { color: var(--accent-green); background: rgba(255,255,255,0.06); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-wa-header {
    background: var(--wa-green); color: #fff; font-size: 13px; font-weight: 700;
    padding: 8px 14px; border-radius: 50px; display: flex; align-items: center; gap: 6px;
    box-shadow: 0 3px 10px rgba(37,211,102,0.3); transition: transform 0.2s, background 0.2s;
}
.btn-wa-header:hover { background: var(--wa-hover); transform: translateY(-1px); color: #fff; }
.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 3px; background: #fff; border-radius: 2px; }

/* Men? M?vil */
.mobile-drawer {
    position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
    background: var(--primary); color: #fff; z-index: 10001; padding: 24px 20px;
    display: flex; flex-direction: column; transition: left 0.3s ease; box-shadow: 5px 0 25px rgba(0,0,0,0.5);
}
.mobile-drawer.open { left: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.drawer-logo { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: var(--accent-green); }
.drawer-close { background: transparent; border: none; color: #fff; font-size: 32px; cursor: pointer; }
.drawer-search { margin: 20px 0; }
.drawer-search input[type="search"] { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; }
.drawer-menu { flex: 1; overflow-y: auto; }
.drawer-menu ul { list-style: none; padding: 0; margin: 0; }
.drawer-menu li a { color: #E2E8F0; display: block; padding: 12px 0; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.06); }
.btn-wa-drawer { display: block; background: var(--wa-green); color: #fff; text-align: center; padding: 12px; border-radius: 8px; font-weight: 700; margin-top: 20px; }
.drawer-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); z-index: 10000; display: none; }
.drawer-backdrop.open { display: block; }

/* 4. BLOQUES ADSENSE */
.denueve-ad-slot { margin: 24px auto; text-align: center; clear: both; position: relative; }
.denueve-ad-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #94A3B8; text-transform: uppercase; margin-bottom: 5px; }
.header-ad-container { margin-top: 15px; margin-bottom: 15px; }
.denueve-ad-placeholder {
    background: #FFFFFF; border: 2px dashed #CBD5E1; border-radius: 8px; padding: 20px 15px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    min-height: 90px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.denueve-ad-placeholder .placeholder-icon { font-size: 22px; }
.denueve-ad-placeholder strong { font-size: 14px; color: #334155; }
.denueve-ad-placeholder span { font-size: 11px; color: #64748B; }
.denueve-ad-header { min-height: 100px; }
.denueve-ad-in_article_top { min-height: 260px; }
.denueve-ad-in_article_mid { min-height: 260px; }
.denueve-ad-in_article_bottom { min-height: 260px; }
.denueve-ad-sidebar { min-height: 260px; }
.denueve-ad-in_feed { min-height: 140px; margin: 20px 0; }

/* 5. HERO GRID VIRAL */
.viral-hero-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; margin-top: 24px; margin-bottom: 24px; }
.hero-main-card { position: relative; border-radius: 12px; overflow: hidden; background: #000; min-height: 420px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.hero-link { display: block; width: 100%; height: 100%; }
.hero-img-wrap { position: relative; width: 100%; height: 100%; min-height: 420px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero-main-card:hover .hero-img { transform: scale(1.03); }
.hero-placeholder-img {
    width: 100%; height: 100%; min-height: 420px;
    background: linear-gradient(135deg, #0A0F1D 0%, #1E293B 100%);
    display: flex; align-items: center; justify-content: center; color: #fff;
    font-family: var(--font-heading); font-size: 28px; font-weight: 800;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,15,29,0.95) 0%, rgba(10,15,29,0.4) 50%, rgba(10,15,29,0.1) 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; z-index: 2; }
.hero-badges { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.badge {
    display: inline-block; font-family: var(--font-heading); font-size: 12px; font-weight: 800;
    padding: 3px 8px; border-radius: 4px; letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
}
.badge-viral { background: #FF5722; }
.badge-alert { background: var(--accent-red); }
.badge-bicolor { background: #DC2626; border: 1px solid #fff; }
.badge-bomb { background: #E11D48; }
.badge-live { background: #16A34A; }
.badge-top { background: var(--accent-gold); color: #000; }
.reading-pill { background: rgba(0,0,0,0.6); color: #E2E8F0; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.hero-title { font-family: var(--font-heading); font-size: 32px; font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 12px; }
.hero-meta { font-size: 13px; color: #CBD5E1; display: flex; align-items: center; gap: 8px; }

.hero-subgrid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 15px; }
.hero-subcard { background: var(--bg-card); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid var(--border); transition: transform 0.2s; }
.hero-subcard:hover { transform: translateY(-3px); }
.subcard-link { display: flex; flex-direction: column; height: 100%; }
.subcard-img-wrap { height: 110px; overflow: hidden; background: #0A0F1D; position: relative; }
.subcard-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.hero-subcard:hover .subcard-img { transform: scale(1.05); }
.subcard-placeholder { width: 100%; height: 100%; background: #1E293B; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.subcard-content { padding: 12px; display: flex; flex-direction: column; flex: 1; }
.subcard-badge { margin-bottom: 6px; }
.subcard-title {
    font-family: var(--font-heading); font-size: 16px; font-weight: 700; line-height: 1.25;
    color: var(--text-main); margin-bottom: 6px; flex: 1; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.subcard-meta { font-size: 11px; color: var(--text-muted); }

/* 6. BARRA DE TENDENCIAS */
.trending-topics-bar {
    display: flex; align-items: center; gap: 12px; background: #fff; padding: 12px 18px;
    border-radius: 8px; border: 1px solid var(--border); margin-bottom: 30px;
}
.topics-label { font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--accent-red); white-space: nowrap; }
.topics-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.topic-chip { background: #F1F5F9; color: #334155; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; white-space: nowrap; transition: all 0.2s; }
.topic-chip:hover { background: var(--primary); color: var(--accent-green); }

/* 7. DISPOSICI?N EN 2 COLUMNAS */
.content-columns { display: grid; grid-template-columns: 1fr 340px; gap: 30px; }
.feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; border-bottom: 3px solid var(--primary); padding-bottom: 10px; }
.feed-title { font-family: var(--font-heading); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.feed-grid { display: flex; flex-direction: column; gap: 20px; }

.viral-post-card {
    display: grid; grid-template-columns: 260px 1fr; background: #fff; border-radius: 10px;
    overflow: hidden; border: 1px solid var(--border); box-shadow: 0 3px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}
.viral-post-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.card-thumb-wrap { position: relative; width: 100%; height: 100%; min-height: 170px; background: #0A0F1D; overflow: hidden; }
.card-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.viral-post-card:hover .card-thumb { transform: scale(1.05); }
.card-badge-top { position: absolute; top: 10px; left: 10px; z-index: 2; }
.card-body { padding: 16px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.card-meta-top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.card-cat a { color: #2563EB; font-weight: 700; text-transform: uppercase; }
.card-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.card-title a:hover { color: #2563EB; }
.card-excerpt p { font-size: 14px; color: #475569; line-height: 1.45; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 10px; border-top: 1px solid #F1F5F9; }
.card-author-date { font-size: 12px; color: var(--text-muted); }
.card-wa-share { background: #E8F5E9; color: var(--wa-green); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 16px; transition: all 0.2s; }
.card-wa-share:hover { background: var(--wa-green); color: #fff; transform: scale(1.1); }

.pagination { margin: 30px 0; display: flex; justify-content: center; gap: 6px; }
.pagination .page-numbers { padding: 8px 14px; background: #fff; border: 1px solid var(--border); border-radius: 6px; font-weight: 600; font-size: 14px; color: #334155; }
.pagination .page-numbers.current { background: var(--primary); color: var(--accent-green); border-color: var(--primary); }

/* 8. BARRA LATERAL (SIDEBAR) */
.sidebar-inner { display: flex; flex-direction: column; gap: 25px; }
.sidebar-widget { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.widget-title {
    font-family: var(--font-heading); font-size: 20px; font-weight: 800; text-transform: uppercase;
    color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 8px; margin-top: 0; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.trending-list { display: flex; flex-direction: column; gap: 14px; }
.trending-item { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #F1F5F9; }
.trending-item:last-child { border-bottom: none; padding-bottom: 0; }
.rank-number { font-family: var(--font-heading); font-size: 24px; font-weight: 900; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; background: #F1F5F9; color: #475569; flex-shrink: 0; }
.rank-1 { background: var(--accent-gold); color: #000; }
.rank-2 { background: #94A3B8; color: #fff; }
.rank-3 { background: #B45309; color: #fff; }
.mini-thumb { width: 65px; height: 50px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.trending-info { flex: 1; }
.trending-cat a { font-size: 10px; font-weight: 700; text-transform: uppercase; color: #2563EB; }
.trending-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; line-height: 1.2; margin: 3px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trending-title a:hover { color: #2563EB; }
.trending-meta { font-size: 11px; color: var(--text-muted); }
.community-box { background: linear-gradient(135deg, #0A0F1D 0%, #151D30 100%); color: #fff; padding: 20px; border-radius: 8px; text-align: center; }
.community-icon { font-size: 32px; margin-bottom: 8px; }
.community-box h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--accent-green); margin: 0 0 8px; }
.community-box p { font-size: 13px; color: #CBD5E1; margin-bottom: 16px; }
.btn-community-wa { display: block; background: var(--wa-green); color: #fff; padding: 10px 14px; border-radius: 6px; font-weight: 700; font-size: 14px; }
.btn-community-wa:hover { background: var(--wa-hover); color: #fff; }
.widget-ad-sticky { position: sticky; top: 90px; }

/* 9. P?GINA DE ART?CULO INDIVIDUAL (SINGLE) */
.article-breadcrumbs { font-size: 13px; color: var(--text-muted); margin: 16px 0; }
.article-breadcrumbs a { color: #2563EB; }
.single-article-content { background: #fff; border-radius: 12px; padding: 30px; border: 1px solid var(--border); box-shadow: 0 3px 15px rgba(0,0,0,0.03); }
.article-badges { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.cat-pill a { background: #EFF6FF; color: #2563EB; font-weight: 700; font-size: 12px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.article-title { font-family: var(--font-heading); font-size: 38px; font-weight: 900; line-height: 1.15; color: var(--primary); margin-bottom: 18px; }
.article-meta-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid #F1F5F9; border-bottom: 1px solid #F1F5F9; margin-bottom: 20px; }
.author-meta { display: flex; align-items: center; gap: 12px; }
.author-avatar { border-radius: 50%; }
.author-details { display: flex; flex-direction: column; font-size: 13px; }
.author-name strong { color: var(--primary); }
.publish-date { color: var(--text-muted); font-size: 12px; }
.article-stats { display: flex; gap: 14px; font-size: 13px; font-weight: 600; color: #475569; }

/* Barra de Compartir Viral */
.viral-share-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; background: #F8FAFC; padding: 12px 16px; border-radius: 8px; margin-bottom: 24px; border: 1px solid #E2E8F0; }
.share-label { font-family: var(--font-heading); font-weight: 800; font-size: 14px; color: var(--primary); margin-right: 4px; }
.btn-share { border: none; color: #fff; font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: opacity 0.2s, transform 0.1s; }
.btn-share:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }
.btn-wa { background: var(--wa-green); }
.btn-fb { background: var(--fb-blue); }
.btn-tw { background: var(--tw-dark); }
.btn-tg { background: var(--tg-blue); }
.btn-copy { background: #475569; color: #fff; }

.article-featured-media { margin: 0 0 25px; border-radius: 8px; overflow: hidden; }
.article-featured-img { width: 100%; max-height: 520px; object-fit: cover; }
.featured-img-caption { font-size: 12px; color: var(--text-muted); text-align: center; padding-top: 6px; font-style: italic; }

.article-body-text { font-size: 18px; line-height: 1.8; color: #1E293B; }
.article-body-text p { margin-bottom: 22px; }
.article-body-text h2, .article-body-text h3 { font-family: var(--font-heading); color: var(--primary); margin-top: 30px; margin-bottom: 14px; line-height: 1.25; }
.article-body-text h2 { font-size: 26px; font-weight: 800; }
.article-body-text h3 { font-size: 22px; font-weight: 700; }
.article-body-text blockquote { border-left: 4px solid var(--accent-green); padding: 12px 20px; background: #F8FAFC; font-style: italic; margin: 24px 0; color: #334155; }

/* 10. REACCIONES VIRALES */
.viral-reactions-box { background: #F8FAFC; border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; margin: 30px 0; }
.reactions-header h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--primary); margin: 0 0 4px; }
.reactions-header p { font-size: 13px; color: var(--text-muted); margin: 0 0 18px; }
.reactions-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.reaction-btn { background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 10px 18px; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 6px rgba(0,0,0,0.03); }
.reaction-btn:hover { border-color: var(--accent-green); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,230,118,0.15); }
.reaction-btn.reacted { background: #E8F5E9; border-color: var(--accent-green); color: #166534; }
.reaction-emoji { font-size: 22px; }
.reaction-name { font-weight: 700; font-size: 13px; }
.reaction-count { background: #F1F5F9; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 700; color: #475569; }
.reaction-btn.reacted .reaction-count { background: var(--accent-green); color: var(--primary); }
.reaction-feedback { margin-top: 10px; font-size: 13px; font-weight: 600; color: #16A34A; min-height: 18px; }

.article-wa-box { background: #E8F5E9; border: 1px solid #C8E6C9; border-radius: 10px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; margin: 25px 0; }
.wa-box-icon { font-size: 36px; }
.wa-box-text strong { font-size: 16px; color: #1B5E20; display: block; margin-bottom: 2px; }
.wa-box-text p { margin: 0; font-size: 13px; color: #2E7D32; }
.btn-wa-box { background: var(--wa-green); color: #fff; padding: 10px 18px; border-radius: 6px; font-weight: 700; font-size: 14px; white-space: nowrap; margin-left: auto; }
.btn-wa-box:hover { background: var(--wa-hover); color: #fff; }

.article-author-card { display: flex; align-items: center; gap: 16px; background: #F8FAFC; padding: 20px; border-radius: 10px; margin: 25px 0; border: 1px solid var(--border); }
.author-card-avatar { border-radius: 50%; }
.author-card-info h4 { margin: 0 0 6px; font-size: 16px; color: var(--primary); }
.author-card-info p { margin: 0; font-size: 13px; color: var(--text-muted); }

.article-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.nav-card { background: #F8FAFC; border: 1px solid var(--border); padding: 14px 18px; border-radius: 8px; display: flex; flex-direction: column; gap: 4px; transition: all 0.2s; }
.nav-card:hover { background: #EFF6FF; border-color: #BFDBFE; }
.nav-direction { font-size: 11px; font-weight: 800; text-transform: uppercase; color: #2563EB; }
.nav-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text-main); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.related-posts-section { margin-top: 35px; }
.related-title { font-family: var(--font-heading); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.2s; }
.related-card:hover { transform: translateY(-2px); }
.related-thumb-wrap { height: 120px; background: #0A0F1D; }
.related-thumb { width: 100%; height: 100%; object-fit: cover; }
.related-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.related-card-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; line-height: 1.25; padding: 12px; margin: 0; color: var(--text-main); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* 11. PRE-FOOTER WHATSAPP */
.wa-community-banner { background: linear-gradient(135deg, #0A0F1D 0%, #151D30 100%); color: #fff; padding: 45px 0; margin-top: 50px; border-top: 4px solid var(--accent-green); }
.wa-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.wa-banner-tag { background: var(--accent-green); color: var(--primary); font-family: var(--font-heading); font-weight: 900; font-size: 11px; padding: 3px 8px; border-radius: 4px; letter-spacing: 1px; }
.wa-banner-text h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 800; margin: 10px 0 6px; color: #fff; }
.wa-banner-text p { color: #CBD5E1; margin: 0; font-size: 15px; }
.btn-wa-large { background: var(--wa-green); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 800; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(37,211,102,0.4); white-space: nowrap; transition: all 0.2s; }
.btn-wa-large:hover { background: var(--wa-hover); color: #fff; transform: scale(1.03); }

/* 12. FOOTER */
.site-footer { background: #050811; color: #94A3B8; padding: 50px 0 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 35px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-bio { font-size: 13px; line-height: 1.6; color: #94A3B8; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.foot-soc { font-size: 12px; background: rgba(255,255,255,0.06); padding: 5px 10px; border-radius: 4px; color: #E2E8F0; }
.foot-soc:hover { background: var(--accent-green); color: var(--primary); }
.footer-heading { font-family: var(--font-heading); font-size: 17px; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 16px; border-left: 3px solid var(--accent-green); padding-left: 8px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: #94A3B8; }
.footer-links a:hover { color: var(--accent-green); }
.footer-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.foot-tag { background: rgba(255,255,255,0.05); color: #CBD5E1; font-size: 11px; padding: 4px 8px; border-radius: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 12px; text-align: center; }
.adsense-note { color: #64748B; margin-top: 6px; }

/* 13. STICKY BOTTOM AD & FLOATING */
.mobile-sticky-ad { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -4px 15px rgba(0,0,0,0.15); z-index: 9999; padding: 6px; text-align: center; transition: transform 0.3s ease; }
.mobile-sticky-ad.hidden { transform: translateY(110%); }
.sticky-ad-close { position: absolute; top: -24px; right: 12px; background: #0A0F1D; color: #fff; border: none; font-size: 14px; font-weight: 700; width: 24px; height: 24px; border-radius: 4px 4px 0 0; cursor: pointer; line-height: 1; }
.float-wa-btn { position: fixed; bottom: 80px; right: 20px; background: var(--wa-green); color: #fff; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 999; transition: transform 0.2s; }
.float-wa-btn:hover { transform: scale(1.1); color: #fff; }
.back-to-top { position: fixed; bottom: 20px; right: 20px; background: var(--primary); color: #fff; border: 1px solid rgba(255,255,255,0.2); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 18px; z-index: 998; }
.back-to-top.visible { display: flex; }

/* 14. 404 FUERA DE JUEGO */
.not-found-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 50px 30px; text-align: center; max-width: 650px; margin: 50px auto; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.referee-whistle { font-size: 50px; margin-bottom: 12px; }
.not-found-code { font-family: var(--font-heading); font-size: 34px; font-weight: 900; color: var(--accent-red); margin-bottom: 12px; }
.not-found-message { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.btn-back-home { display: inline-block; background: var(--primary); color: var(--accent-green); padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 15px; margin-top: 15px; }

/* 15. RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .content-columns { grid-template-columns: 1fr; }
    .viral-hero-section { grid-template-columns: 1fr; }
    .hero-subgrid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .wa-banner-inner { flex-direction: column; text-align: center; }
    .main-navigation { display: none; }
    .menu-toggle { display: flex; }
    .article-title { font-size: 28px; }
}

@media (max-width: 640px) {
    .hero-subgrid { grid-template-columns: 1fr; }
    .viral-post-card { grid-template-columns: 1fr; }
    .card-thumb-wrap { height: 190px; }
    .related-grid { grid-template-columns: 1fr; }
    .article-meta-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .reactions-buttons { gap: 8px; }
    .reaction-btn { padding: 8px 12px; }
    .article-nav-links { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar-socials { display: none; }
    .btn-wa-header { display: none; }
}

/* Dropdown Menus */
.main-navigation .nav-menu li { position: relative; }
.main-navigation .nav-menu .sub-menu {
    position: absolute; top: 100%; left: 0; background: #0A0F1D; min-width: 220px;
    border-radius: 8px; padding: 8px 0; box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000; list-style: none; margin: 0;
}
.main-navigation .nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation .nav-menu .sub-menu li a { padding: 10px 16px; font-size: 13px; color: #CBD5E1; border-radius: 0; display: block; }
.main-navigation .nav-menu .sub-menu li a:hover { background: rgba(0,230,118,0.1); color: var(--accent-green); padding-left: 20px; }
.mobile-drawer .sub-menu { padding-left: 15px; list-style: none; margin: 0; }
.mobile-drawer .sub-menu li a { font-size: 14px; color: #94A3B8; padding: 8px 0; }
