        /* ============================================
           ONIKIX — Página Listado de Personajes
           Styles exclusive to page-personajes.php
           ============================================ */

        /* ── HERO ── */
        .cpg-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 120px 2rem 3rem;
            overflow: hidden;
            text-align: center;
        }

        .cpg-hero-glow {
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 80vw;
            height: 80vw;
            max-width: 900px;
            max-height: 900px;
            filter: blur(80px);
            pointer-events: none;
            z-index: 0;
        }

        .cpg-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cpg-hero .pill-badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--accent-2, #00F0FF);
            padding: 6px 18px;
            border: 1px solid rgba(0, 240, 255, 0.25);
            border-radius: 20px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .cpg-hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 0.95;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            color: #fff;
        }

        .cpg-hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-gray, #888);
            line-height: 1.6;
            max-width: 550px;
            margin: 0 auto;
        }

        /* ── GRID SECTION ── */
        .cpg-grid-section {
            padding: 0 2rem 4rem;
        }

        .cpg-grid-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .cpg-grid-header h2 {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .cpg-grid-header p {
            color: var(--text-gray, #888);
            font-size: 1rem;
        }

        .cpg-char-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cpg-char-grid>* {
            flex: 1 1 280px;
            min-width: 240px;
            max-width: 320px;
        }

        /* Hub Layout (p.ej. ONIKIX Girls / Boys hubs) */
        .cpg-char-grid.is-hub-grid>* {
            flex: 1 1 280px;
            min-width: 240px;
            max-width: 320px;
        }

        /* Characters Layout (p.ej. Amalia, Leonardo, etc.) */
        .cpg-char-grid.is-group-grid>* {
            flex: 0 1 calc(20% - 1.2rem);
            min-width: 220px;
            max-width: 280px;
        }

        /* ── CHARACTER CARD ── */
        .cpg-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .cpg-card {
            position: relative;
            height: 440px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .cpg-card:hover {
            border-color: var(--accent);
            transform: translateY(-8px);
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 40px color-mix(in srgb, var(--accent) 15%, transparent);
        }

        .cpg-card-visual {
            height: 100%;
            width: 100%;
            position: relative;
            background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0c 100%);
        }

        .cpg-card-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cpg-card:hover .cpg-card-visual img {
            transform: scale(1.08);
        }

        .cpg-card-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65%;
            background: linear-gradient(to top,
                    rgba(10, 10, 12, 0.95) 0%,
                    rgba(10, 10, 12, 0.6) 40%,
                    transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .cpg-card-data {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.4rem;
            z-index: 2;
            transition: all 0.3s;
        }

        .cpg-card-data h3 {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cpg-card-archetype {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .cpg-card:hover .cpg-card-archetype {
            color: rgba(255, 255, 255, 0.85);
        }

        .cpg-card-quote {
            font-style: italic;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.4;
            transition: color 0.3s;
        }

        .cpg-card:hover .cpg-card-quote {
            color: rgba(255, 255, 255, 0.65);
        }

        /* ── CTA SECTION ── */
        .cpg-cta {
            text-align: center;
            padding: 4rem 2rem 5rem;
            position: relative;
        }

        .cpg-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        }

        .cpg-cta .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--accent-2, #00F0FF);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .cpg-cta h2 {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            color: #fff;
        }

        /* ── CTA BUTTONS (page-specific) ── */
        .cpg-cta .cta-btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            background: linear-gradient(135deg, var(--accent-2, #00F0FF), #a855f7);
            color: #000;
        }

        .cpg-cta .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.3);
        }

        /* ── COMING SOON STATE ── */
        .cpg-card--coming-soon {
            cursor: default;
            filter: grayscale(55%);
            opacity: 0.65;
        }

        .cpg-card--coming-soon:hover {
            transform: none;
            border-color: rgba(255, 255, 255, 0.06);
            box-shadow: none;
        }

        .cpg-coming-soon-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cpg-coming-soon-badge {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            font-size: 0.65rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #fff;
            padding: 6px 18px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            background: rgba(10, 10, 12, 0.55);
            backdrop-filter: blur(8px);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1200px) {
            .cpg-card {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .cpg-char-grid {
                gap: 1rem;
            }

            .cpg-card {
                height: 360px;
            }

            .cpg-hero {
                min-height: 40vh;
                padding-top: 100px;
            }
        }

        @media (max-width: 480px) {
            .cpg-char-grid {
                grid-template-columns: 1fr;
                max-width: 340px;
            }

            .cpg-card {
                height: 420px;
            }
        }
