body {
            background-color: #08090b;
        }

        .page-header {
            padding: 120px 0 35px;
            text-align: left;
            position: relative;
        }

        .section-label {
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--neon-pink);
            font-weight: 800;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 6px;
        }

        .page-title {
            font-family: var(--font-display);
            font-size: clamp(38px, 6vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .page-subtitle {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* ==========================================================================
           NOTICIA PRINCIPAL / HERO (El último agregado en grande)
           ========================================================================== */
        .featured-card {
            background: var(--bg-surface-elevated);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            margin-bottom: 50px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            cursor: pointer;
        }

        .featured-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 42, 133, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px -5px rgba(255, 42, 133, 0.25);
        }

        .featured-image-wrapper {
            width: 100%;
            height: clamp(260px, 35vw, 440px);
            background: #0d0f18;
            overflow: hidden;
            position: relative;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .featured-card:hover .featured-image {
            transform: scale(1.02);
        }

        .featured-body {
            padding: 30px 34px 34px;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .featured-title {
            font-family: var(--font-display);
            font-size: clamp(26px, 3.8vw, 38px);
            font-weight: 800;
            line-height: 1.15;
            color: #ffffff;
            margin-bottom: 14px;
        }

        .featured-resumen {
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.65;
            margin-bottom: 22px;
            max-width: 900px;
        }

        .btn-read-news {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
        }

        .featured-card:hover .btn-read-news {
            color: var(--neon-pink);
            transform: translateX(4px);
        }

        /* ==========================================================================
           GRILLA DE NOTICIAS EN MINIATURA (Abajo del principal)
           ========================================================================== */
        .section-heading-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .section-heading {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 80px;
        }

        .news-mini-card {
            background: var(--bg-surface-elevated);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            cursor: pointer;
        }

        .news-mini-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 229, 255, 0.4);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px -5px rgba(0, 229, 255, 0.2);
        }

        .news-mini-image-wrapper {
            width: 100%;
            height: 180px;
            background: #0d0f18;
            overflow: hidden;
            position: relative;
        }

        .news-mini-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-mini-card:hover .news-mini-image {
            transform: scale(1.04);
        }

        .news-mini-body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-mini-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .news-badge {
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .badge-actualizacion {
            background: rgba(0, 229, 255, 0.15);
            color: var(--neon-cyan);
            border: 1px solid rgba(0, 229, 255, 0.35);
        }

        .badge-servidor {
            background: rgba(255, 42, 133, 0.15);
            color: var(--neon-pink);
            border: 1px solid rgba(255, 42, 133, 0.35);
        }

        .badge-tutorial {
            background: rgba(121, 40, 202, 0.2);
            color: #d1a4ff;
            border: 1px solid rgba(121, 40, 202, 0.4);
        }

        .badge-mecanica {
            background: rgba(0, 255, 157, 0.15);
            color: var(--neon-mint);
            border: 1px solid rgba(0, 255, 157, 0.35);
        }

        .news-date {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        .news-mini-title {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .news-mini-resumen {
            color: var(--text-muted);
            font-size: 13.5px;
            line-height: 1.55;
            margin-bottom: 18px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-mini-link {
            color: var(--neon-cyan);
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
        }

        .news-mini-card:hover .news-mini-link {
            color: #ffffff;
            transform: translateX(4px);
        }

        /* ==========================================================================
           LECTOR MODAL DE ARTÍCULO COMPLETO (Screenshot 2)
           ========================================================================== */
        .reader-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(8, 9, 13, 0.95);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            z-index: 10000;
            display: none;
            overflow-y: auto !important;
            overflow-x: hidden;
            padding: 40px 20px 140px;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 42, 133, 0.75) rgba(13, 15, 24, 0.85);
        }

        .reader-modal-overlay::-webkit-scrollbar {
            width: 10px;
        }

        .reader-modal-overlay::-webkit-scrollbar-track {
            background: rgba(13, 15, 24, 0.9);
            border-left: 1px solid rgba(255, 255, 255, 0.06);
        }

        .reader-modal-overlay::-webkit-scrollbar-thumb {
            background: rgba(255, 42, 133, 0.55);
            border-radius: 5px;
            border: 1px solid rgba(255, 42, 133, 0.3);
        }

        .reader-modal-overlay::-webkit-scrollbar-thumb:hover {
            background: var(--neon-pink);
            box-shadow: 0 0 12px rgba(255, 42, 133, 0.9);
        }

        .reader-container {
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 60px;
            animation: readerFadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes readerFadeUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .reader-nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 35px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .btn-reader-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 18px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-reader-back:hover {
            background: var(--neon-pink);
            border-color: var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 42, 133, 0.5);
            transform: translateX(-3px);
        }

        .reader-badge-wrap {
            margin-bottom: 16px;
        }

        .reader-title {
            font-family: var(--font-display);
            font-size: clamp(34px, 5vw, 54px);
            font-weight: 800;
            line-height: 1.08;
            color: #ffffff;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .reader-meta {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 32px;
            font-family: var(--font-mono);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .reader-featured-media {
            width: 100%;
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 36px;
            background: #0d0f18;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .reader-featured-media img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            display: block;
        }

        .reader-video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 14px;
            margin-bottom: 36px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .reader-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .reader-content {
            color: #cbd5e1;
            font-size: 16px;
            line-height: 1.8;
        }

        .reader-content .article-inline-image-wrap {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
            background: #0d0f18;
            min-height: 200px;
        }

        .reader-content .article-inline-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .reader-content h2,
        .reader-heading-main,
        .reader-content h3,
        .reader-heading-sub,
        .reader-content h4,
        .reader-heading-h4 {
            font-family: var(--font-display);
            font-weight: 800;
            margin: 38px 0 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .reader-content h2,
        .reader-heading-main {
            font-size: clamp(20px, 2.5vw, 24px);
            color: var(--neon-cyan);
            border-left: 4px solid var(--neon-pink);
            padding-left: 14px;
            line-height: 1.25;
            text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
        }

        .reader-content h3,
        .reader-heading-sub {
            font-size: 19px;
            color: #f1f5f9;
            margin: 28px 0 12px;
            letter-spacing: 0.3px;
        }

        .reader-content h4,
        .reader-heading-h4 {
            font-size: 16px;
            color: #94a3b8;
            margin: 20px 0 10px;
        }

        .reader-content strong {
            color: #ffffff;
            font-weight: 700;
        }

        .reader-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #cbd5e1;
            font-size: 15.5px;
        }

        .reader-content ul.article-list {
            margin: 16px 0 24px 20px;
            padding-left: 10px;
            list-style-type: none;
        }

        .reader-content ul.article-list li {
            margin-bottom: 10px;
            line-height: 1.65;
            color: #cbd5e1;
            font-size: 15px;
            position: relative;
        }