
        @font-face {
            font-family: 'ClyraFont';
            src: url('../Fuente/fuente.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        /* =========================================
           VARIABLES DE COLOR GLOBAL – ahora gris claro y blanco
           ========================================= */
        :root {
            --bg-color: #0f1020;               /* fondo violeta/azul */
            --card-bg: #181833;
            --primary-red: #ff4d6d;
            --dark-red: #b61f40;
            --primary-blue: #4da3ff;
            /* Nuevos colores de texto: gris claro y blanco */
            --text-main: #f0f0f0;               /* gris muy claro */
            --text-bright: #ffffff;             /* blanco puro */
            --text-muted: #cccccc;
            --accent-color: #7aa8ff;            /* para algunos detalles (azul suave) */
        }

        /* =========================================
           RESETEO BÁSICO Y TIPOGRAFÍA
           ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'ClyraFont', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            background-color: var(--bg-color);
            min-height: 100vh;
        }

        body {
            color: var(--text-main) !important;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
            background: transparent !important;
        }

        #main-view {
            padding-top: 85px;
        }

        /* Fondo gris oscuro con iluminación violeta (la dejamos, pero cambiamos colores de texto) */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            width: 100vw;
            height: 100vh;
            background: 
                url('https://i.ibb.co/6Rc4cdnK/71f76363-eb6e-4a54-9ebe-574c2f3d8c79.png') center center / cover no-repeat,
                radial-gradient(ellipse at 30% 20%, rgba(124, 92, 255, 0.50) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(77, 163, 255, 0.40) 0%, transparent 55%),
                linear-gradient(145deg, #0f1020 0%, #24114a 45%, #10284a 100%);
            z-index: -10;
            pointer-events: none;
            transform: translateZ(0);
            will-change: transform;
            backface-visibility: hidden;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 15% 0%, rgba(180, 100, 255, 0.25), transparent 30%),
                radial-gradient(circle at 85% 15%, rgba(180, 100, 255, 0.20), transparent 26%);
            z-index: -9;
            transform: translateZ(0);
            will-change: transform;
            backface-visibility: hidden;
        }

        /* =========================================
           BARRA DE NAVEGACIÓN (NAVBAR)
           ========================================= */
        .navbar {
            position: fixed;
            top: 12px;
            left: 12px;
            width: calc(100% - 24px);
            height: 80px;
            border-radius: 28px;
            background: rgba(17, 18, 40, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 16px;
            padding: 0 32px;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 44px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 18px rgba(160, 80, 255, 0.8)) drop-shadow(0 0 40px rgba(160, 80, 255, 0.4));
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.03);
        }

        .nav-links {
            display: flex;
            gap: 15px;
            margin-left: auto;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-main) !important;
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-btn svg,
        .nav-btn .bookmark-icon,
        .section-title svg,
        .section-title .bookmark-icon,
        .see-all-btn svg,
        .back-btn svg {
            stroke: currentColor;
            fill: none;
            stroke-width: 1.6;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.2s ease;
        }

        .nav-btn svg {
            width: 16px;
            height: 21px;
        }

        .bookmark-icon {
            display: inline-block;
            object-fit: contain;
            flex-shrink: 0;
            vertical-align: middle;
            filter: brightness(0) saturate(100%) invert(95%) sepia(6%) saturate(18%) hue-rotate(180deg) brightness(105%) contrast(100%);
        }

        .nav-btn .bookmark-icon {
            width: 16px;
            height: 16px;
        }

        .section-title .bookmark-icon {
            width: 20px;
            height: 20px;
        }

        .nav-btn:hover {
            background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
            transform: translateY(-2px);
            border-color: #ffffff;
            box-shadow: 0 5px 15px rgba(255, 30, 39, 0.3);
        }

        .download-btn-header {
            white-space: nowrap;
        }

        .download-btn-header .btn-text {
            display: inline;
        }

        /* =========================================
           BANNER DE BIENVENIDA (HERO)
           ========================================= */
        .hero-banner {
            margin: 0 40px 18px 40px;
            padding: 0;
            text-align: center;
            background: transparent;
            border: none;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 24px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
            color: var(--text-main) !important;
            font-size: 18px;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .hero-badge i {
            color: var(--text-main) !important;
        }

        .hero-title {
            margin: 0;
            display: block;
            white-space: nowrap;
            font-size: clamp(32px, 5.2vw, 62px);
            font-weight: 800;
            text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
            color: var(--text-bright) !important;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .hero-title .hero-brand {
            background: linear-gradient(90deg, #ff6db1 0%, #a0a0ff 50%, #8f79ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: var(--text-bright) !important;
            color: var(--text-bright) !important;
            text-shadow: none;
        }

        .hero-text {
            font-size: clamp(18px, 2.2vw, 29px);
            color: var(--text-main) !important;
            max-width: 980px;
            margin: 0 auto;
            line-height: 1.45;
            letter-spacing: 0.2px;
        }

        /* =========================================
           ENCABEZADOS DE SECCIÓN
           ========================================= */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 10px 40px 14px 40px;
        }

        .section-container {
            margin-bottom: 0px;
        }

        .section-title {
            font-size: 20px;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            color: var(--text-bright) !important;
        }

        .section-title::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 24px;
            background: var(--accent-color) !important;
            border-radius: 5px;
            box-shadow: 0 0 14px rgba(160, 160, 255, 0.55) !important;
        }

        .section-title svg {
            color: var(--text-main) !important;
            width: 20px;
            height: 26px;
            stroke-width: 1.8;
        }

        .see-all-btn,
        .back-btn {
            background: rgba(200, 200, 255, 0.12);
            border: 1px solid rgba(200, 200, 255, 0.35);
            color: var(--text-main) !important;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 11px;
            cursor: pointer;
            text-transform: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .see-all-text {
            display: inline-block;
            transform: translateX(1px);
        }

        .see-all-btn svg,
        .back-btn svg {
            width: 13px;
            height: 13px;
            stroke-width: 2.2;
        }

        .see-all-btn svg {
            transform: translateX(8px);
        }

        .see-all-btn:hover,
        .back-btn:hover {
            background: linear-gradient(135deg, #a0a0ff, #8f45ff);
            color: var(--text-bright) !important;
            border-color: #a0a0ff;
            box-shadow: 0 0 18px rgba(160, 160, 255, 0.42);
        }

        /* =========================================
           SCROLL HORIZONTAL
           ========================================= */
        .horizontal-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 12px 40px 15px 40px;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .horizontal-scroll::-webkit-scrollbar {
            display: none;
        }

        /* Carrusel de juegos en 2 filas horizontales */
        #games-container.horizontal-scroll {
            display: grid;
            grid-template-rows: repeat(2, auto);
            grid-auto-flow: column;
            grid-auto-columns: max-content;
            justify-content: start;
            align-content: start;
            align-items: start;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            width: 100%;
        }

        #games-container.horizontal-scroll .card-game {
            width: 250px;
            min-width: 250px;
        }

        /* =========================================
           TARJETAS DE CONTENIDO (CARDS)
           ========================================= */
        .card {
            width: 180px;
            min-width: 180px;
            height: 260px;
            border-radius: 16px;
            background-color: var(--card-bg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-clip: border-box;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            --card-pad: 15px;
            padding: var(--card-pad);
            cursor: pointer;
            transform: translateZ(0);
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 0 24px rgba(0, 0, 0, 0.45), 0 5px 15px rgba(0, 0, 0, 0.6);
        }

        /* Cómics más pequeños en la pantalla principal */
        #comics-container .card {
            width: 150px;
            min-width: 150px;
            height: 225px;
            --card-pad: 12px;
            padding: var(--card-pad);
        }

        #comics-container .card-title {
            font-size: 14px;
        }

        #comics-container .card-subtitle {
            font-size: 10px;
            padding: 3px 8px;
        }

        .card-game {
            width: 250px;
            min-width: 250px;
            height: 150px;
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background:
                radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.56) 78%, rgba(0, 0, 0, 0.96) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.14) 22%, rgba(0, 0, 0, 0.88) 66%, rgba(0, 0, 0, 0.99) 100%);
            box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
            z-index: 1;
            pointer-events: none;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5), 0 15px 30px rgba(0, 0, 0, 0.8), 0 5px 15px rgba(255, 30, 39, 0.25);
        }

        .card-content {
            position: relative;
            z-index: 2;
            width: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 4px;
        }

        .card-user-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 4;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(10, 16, 28, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
            font-size: 11px;
            line-height: 1;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            pointer-events: none;
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.25) !important;
            background: rgba(200, 200, 255, 0.10) !important;
        }

        .card-user-badge i {
            font-size: 10px;
            color: var(--text-main) !important;
        }

        .card-user-badge span {
            font-weight: 700;
            color: var(--text-main) !important;
        }

        .card-title {
            font-size: 16px;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
            font-weight: bold;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            width: 100%;
            color: var(--text-bright) !important;
        }

        .card-subtitle {
            display: block;
            width: 100%;
            margin: 0;
            font-size: 11px;
            color: var(--text-main) !important;
            background: rgba(200, 200, 255, 0.12) !important;
            border: 1px solid rgba(200, 200, 255, 0.34) !important;
            padding: 4px 10px;
            border-radius: 14px;
            font-weight: 600;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            letter-spacing: 0.5px;
            text-align: center;
            box-sizing: border-box;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        /* =========================================
           DISEÑO ESPECÍFICO DEL MODAL DE DETALLES DE JUEGO
           ========================================= */
        .game-cover-img {
            width: 100%;
            max-height: 280px;
            object-fit: cover;
            border-radius: 24px !important;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .game-modal-game-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-bright) !important;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            padding: 0 10px;
        }

        .game-desc-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-main) !important;
            margin-bottom: 30px;
            text-align: justify;
            padding: 0 10px;
        }

        .game-meta-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 26px;
            width: 100%;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }

        .game-meta-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 11px 10px;
            border-radius: 12px;
            text-align: center;
            font-size: 12px;
            color: var(--text-main) !important;
            min-height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.35;
            width: 100%;
        }

        .game-meta-item:nth-child(3) {
            grid-column: 1 / -1;
        }

        .game-meta-item i {
            color: var(--text-main) !important;
            margin-right: 5px;
        }

        .game-screenshots-section {
            width: 100%;
            margin-bottom: 30px;
        }

        .game-screenshots-label {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 12px;
            display: block;
            color: var(--text-bright) !important;
        }

        .comic-modal-title i,
        .game-screenshots-label i,
        .game-capturas-icon {
            color: var(--text-main) !important;
            margin-right: 8px;
        }

        .game-capturas-icon {
            width: 18px;
            height: 18px;
            object-fit: contain;
            vertical-align: middle;
            display: inline-block;
        }

        .game-screenshots-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .game-screenshots-scroll::-webkit-scrollbar {
            height: 6px;
        }
        .game-screenshots-scroll::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #a0a0ff, #8f45ff);
            border-radius: 30px;
        }

        .game-screenshot-img {
            height: 120px;
            width: auto;
            object-fit: cover;
            border-radius: 16px !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .game-screenshot-img:hover {
            transform: scale(1.03);
            border-color: #a0a0ff;
        }

        .game-dl-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 10px;
            padding-bottom: 15px;
        }

        .game-dl-btn {
            background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
            color: #ffffff !important;
            border: none;
            padding: 14px 35px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            text-transform: none;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 30, 39, 0.3);
        }

        .game-dl-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 30, 39, 0.5);
        }

        .game-modal-padding {
            padding: 30px 34px 40px 34px;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        /* =========================================
           VISTAS: VER TODO (CÓMICS Y JUEGOS) DISEÑO MEJORADO
           ========================================= */
        #all-comics-view,
        #all-games-view {
            display: none;
            animation: fadeInView 0.4s ease;
        }

        @keyframes fadeInView {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .view-header {
            padding: 34px 40px 26px 40px;
            background: linear-gradient(180deg, rgba(124, 92, 255, 0.28) 0%, rgba(77, 163, 255, 0.10) 100%) !important;
            border-bottom: 1px solid rgba(200, 200, 255, 0.20) !important;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
        }

        .view-title-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .view-title {
            font-size: 26px;
            font-weight: bold;
            color: var(--text-bright) !important;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
        }

        .search-container {
            width: 100%;
            position: relative;
        }

        .search-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-main) !important;
            padding: 14px 25px;
            border-radius: 30px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .search-input::placeholder {
            color: var(--text-muted) !important;
            opacity: 0.9 !important;
        }

        .search-input:focus {
            border-color: rgba(160, 160, 255, 0.55);
            box-shadow: 0 0 0 4px rgba(160, 160, 255, 0.12);
        }

        .suggestions-box {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(17, 18, 40, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            margin-top: 8px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 100;
            display: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
        }

        .suggestions-box::-webkit-scrollbar {
            width: 6px;
        }
        .suggestions-box::-webkit-scrollbar-thumb {
            background-color: var(--primary-red);
            border-radius: 30px;
        }

        .suggestion-item {
            padding: 12px 20px;
            cursor: pointer;
            font-size: 13px;
            color: var(--text-main) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.2s;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: rgba(229, 9, 20, 0.15);
            color: var(--text-main) !important;
        }

        .suggestion-item strong {
            color: var(--text-bright) !important;
        }

        /* Reestructuración a Grid responsivo para Cómics */
        .comics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            padding: 0 40px 40px 40px;
        }
        .comics-grid .card {
            width: 100%;
            min-width: unset;
            height: 280px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 0 26px rgba(0, 0, 0, 0.52), 0 4px 10px rgba(0, 0, 0, 0.5);
        }
        .comics-grid .card::before {
            background:
                radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.56) 78%, rgba(0, 0, 0, 0.96) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.68) 70%, rgba(0, 0, 0, 0.95) 100%);
            box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
        }

        /* Reestructuración a Grid responsivo para Juegos */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 0 40px 40px 40px;
        }
        .games-grid .card-game {
            width: 100%;
            min-width: unset;
            height: 145px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 0 26px rgba(0, 0, 0, 0.52), 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        /* Carrusel horizontal de juegos en 2 filas */
        #games-container.horizontal-scroll {
            display: grid;
            grid-template-rows: repeat(2, auto);
            grid-auto-flow: column;
            grid-auto-columns: max-content;
            justify-content: start;
            align-content: start;
            align-items: start;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            width: 100%;
        }

        #games-container.horizontal-scroll .card-game {
            width: 250px;
            min-width: 250px;
        }

        /* =========================================
           MODAL DE LECTURA Y DETALLES (ACTUALIZADO)
           ========================================= */
        .comic-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(to top, #10284a 0%, #24114a 55%, var(--bg-color) 100%);
            z-index: 2000;
            display: none;
            flex-direction: column;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .comic-modal-header {
            height: 75px;
            background: rgba(17, 18, 40, 0.72) !important;
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 25px;
            border-bottom: 1px solid rgba(200, 200, 255, 0.20) !important;
            position: sticky;
            top: 0;
            z-index: 2001;
        }

        #game-details-modal .comic-modal-header {
            justify-content: flex-start;
            gap: 14px;
            border-bottom: none !important;
        }

        #game-details-modal .comic-modal-title {
            display: none !important;
        }

        #game-details-modal .comic-modal-title {
            max-width: none;
            white-space: nowrap;
        }

        #game-details-modal .comic-modal-close {
            width: auto;
            height: 38px;
            min-width: 122px;
            padding: 0 16px;
            border-radius: 18px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        #game-details-modal .comic-modal-close svg {
            width: 16px;
            height: 16px;
        }

        #game-details-modal .comic-modal-close span {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        #game-details-modal {
            background: url('https://i.ibb.co/6Rc4cdnK/71f76363-eb6e-4a54-9ebe-574c2f3d8c79.png') center center / cover no-repeat !important;
            background-color: #000 !important;
        }

        #game-details-modal .comic-modal-body,
        #game-details-modal .game-modal-padding {
            background: transparent !important;
        }

        #game-details-modal .comic-modal-header {
            background: transparent !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            border-bottom: none !important;
            box-shadow: none !important;
        }


        .comic-modal-title {
            font-size: 19px;
            font-weight: bold;
            color: var(--text-bright) !important;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 75%;
        }

        .comic-modal-close {
            background: rgba(200, 200, 255, 0.12);
            border: 1px solid rgba(200, 200, 255, 0.35);
            color: var(--text-main) !important;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .comic-modal-close svg {
            width: 16px;
            height: 21px;
            stroke: currentColor;
            stroke-width: 2.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .comic-modal-close:hover {
            background: linear-gradient(135deg, rgba(200, 200, 255, 0.95), rgba(124, 92, 255, 0.95)) !important;
            border-color: rgba(200, 200, 255, 0.55) !important;
            color: var(--text-bright) !important;
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
        }

        .comic-modal-body {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            scroll-behavior: smooth;
            width: 100%;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        #game-details-modal .comic-modal-body {
            display: block;
        }

        .comic-modal-body::-webkit-scrollbar {
            display: none;
        }

        #comic-reader-modal .comic-modal-body img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 0;
            box-shadow: none;
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
        }

        /* =========================================
           LIGHTBOX PARA CAPTURAS DE PANTALLA
           ========================================= */

        #lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: zoom-out;
            will-change: opacity;
            contain: layout paint;
        }

        #lightbox-img {
            max-width: 95vw;
            max-height: 95vh;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
            transform: scale(0.9) translateZ(0);
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform;
            backface-visibility: hidden;
        }

        /* =========================================
           PIE DE PÁGINA (FOOTER) – TAMAÑO ORIGINAL (no delgado)
           ========================================= */
        footer {
            text-align: center;
            padding: 40px 20px 34px;  /* restaurado */
            color: var(--text-main) !important;
            font-size: 13px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 20px;
            background: transparent !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;  /* restaurado */
            width: 100% !important;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 11px 16px;  /* restaurado */
            border-radius: 999px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main) !important;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
            transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .social-btn i {
            font-size: 15px;
        }

        .social-btn.telegram {
            background: linear-gradient(135deg, #2AABEE 0%, #1B8DC7 100%);
            border-color: rgba(42, 171, 238, 0.35);
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            fill: #ffffff !important;
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .footer-social {
                gap: 10px;
            }

            .social-btn {
                padding: 10px 14px;
                font-size: 12px;
            }
        }

        /* =========================================
           MEDIA QUERIES (AJUSTES MÓVILES)
           ========================================= */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                height: auto;
                padding: 12px 16px;
                gap: 10px;
                top: 8px !important;
                left: 8px !important;
                width: calc(100% - 16px) !important;
                border-radius: 22px !important;
            }
            .logo {
                flex: 0 0 auto;
            }
            .logo-img {
                height: 32px;
            }
            .download-btn-header {
                order: 2;
                margin-left: auto;
                width: 42px;
                height: 36px;
                min-width: 42px;
                padding: 0;
                border-radius: 50%;
                justify-content: center;
                align-items: center;
                gap: 0;
                flex: 0 0 42px;
            }
            .download-btn-header .btn-text {
                display: none;
            }
            .download-btn-header svg {
                width: 18px;
                height: 18px;
            }
            .nav-links {
                order: 3;
                width: 100%;
                justify-content: space-between;
                gap: 6px;
            }
            .nav-btn:not(.download-btn-header) {
                padding: 8px 10px;
                font-size: 11px;
                flex: 1;
                justify-content: center;
                min-width: 0;
            }

            .nav-btn .bookmark-icon {
                width: 14px;
                height: 14px;
            }

            #main-view {
                padding-top: 128px !important;
            }

            .hero-banner {
                margin: 10px 20px 14px 20px !important;
                padding: 0 !important;
                gap: 14px;
            }
            .hero-badge {
                font-size: 12px;
                padding: 11px 16px;
                letter-spacing: 1px;
            }
            .hero-title {
                font-size: clamp(24px, 6vw, 38px) !important;
                white-space: nowrap;
                overflow: visible;
            }
            .hero-text {
                font-size: 14px !important;
                line-height: 1.55;
                max-width: 100%;
            }
            .section-header {
                margin: 15px 20px 10px 20px;
            }
            .section-title {
                font-size: 17px;
                font-weight: 400;
            }

            .section-title .bookmark-icon {
                width: 18px;
                height: 18px;
            }

            .horizontal-scroll {
                padding: 10px 20px 10px 20px;
                gap: 15px;
            }
            .card {
                width: 150px;
                min-width: 150px;
                height: 220px;
            }

            #comics-container .card {
                width: 128px;
                min-width: 128px;
                height: 190px;
                --card-pad: 10px;
                padding: var(--card-pad);
            }

            #comics-container .card-title {
                font-size: 12px;
            }

            #comics-container .card-subtitle {
                font-size: 9px;
                padding: 3px 6px;
                border-radius: 12px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 100%;
            }
            .card-game {
                width: 205px;
                min-width: 205px;
                height: 118px;
            }

            #games-container.horizontal-scroll {
                gap: 14px;
            }

            #games-container.horizontal-scroll .card-game {
                width: 205px;
                min-width: 205px;
            }

            .view-header {
                padding: 25px 20px 20px 20px;
                gap: 15px;
            }
            .view-title {
                font-size: 22px;
            }

            .comics-grid {
                padding: 0 20px 30px 20px;
                gap: 10px;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }
            .comics-grid .card {
                width: 100%;
                min-width: unset;
                height: 240px;
                padding: 10px;
                border-radius: 12px;
            }
            .comics-grid .card-title {
                font-size: 12px;
            }
            .comics-grid .card-subtitle {
                font-size: 9px;
                padding: 3px 6px;
                border-radius: 12px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 100%;
            }

            .games-grid {
                padding: 0 20px 30px 20px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }

            .games-grid .card-game {
                width: 100%;
                min-width: 0;
                height: 118px;
            }

            .comic-modal-header {
                padding: 0 15px;
                height: 65px;
            }
            .comic-modal-title {
                font-size: 16px;
            }
            .comic-modal-body {
                padding: 0;
                margin: 0;
                gap: 5px;
                width: 100%;
            }

            .game-modal-padding {
                padding: 20px 20px 40px 20px;
            }
            .game-modal-game-title {
                font-size: 20px;
            }
            .game-meta-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
                max-width: 100%;
            }

            .game-meta-item {
                min-height: 50px;
                padding: 10px 8px;
                font-size: 11px;
            }

            .game-meta-item:nth-child(3) {
                grid-column: 1 / -1;
            }

            /* footer en móvil: mantener tamaño original */
            footer {
                padding: 30px 16px 24px;
                background: transparent !important;
            }
            .footer-social {
                margin-top: 12px;
            }
        }

        /* ========== MODAL DE ANUNCIO ========== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 18px;
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-box {
            width: 100%;
            max-width: 380px;
            background: linear-gradient(160deg, #10284a 0%, #24114a 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 30, 39, 0.12);
            padding: 28px;
            text-align: center;
        }

        .modal-title {
            margin: 0 0 12px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-bright) !important;
        }

        .modal-text {
            margin: 0 0 20px;
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-main) !important;
        }

        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
            justify-content: center;
            flex-wrap: nowrap;
        }

        .modal-btn {
            border: none;
            border-radius: 26px;
            padding: 14px 16px;
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            min-width: 130px;
            width: 100%;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .modal-btn.ad {
            background: linear-gradient(145deg, #ff1e27 0%, #8b0000 100%);
            color: #ffffff !important;
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
        }

        .modal-btn.ad:active {
            transform: scale(0.96);
        }

        .modal-btn.link {
            background: linear-gradient(145deg, #2a2a2a 0%, #151515 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-main) !important;
            cursor: not-allowed;
        }

        .modal-btn.link.enabled {
            background: linear-gradient(145deg, #ff1e27 0%, #8b0000 100%);
            color: #ffffff !important;
            border-color: transparent;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
        }

        .modal-btn.link,
        .modal-btn.link i,
        .modal-btn.link span,
        .modal-title,
        .modal-text,
        .ad-status {
            color: #ffffff !important;
        }

        .modal-btn:disabled {
            opacity: 0.58;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
            filter: saturate(0.7);
        }

        .ad-status {
            margin-top: 16px;
            font-size: 13px;
            color: var(--text-main) !important;
            min-height: 18px;
            line-height: 1.4;
        }

        .ad-status.success {
            color: var(--text-bright) !important;
            font-weight: 600;
        }

        /* ========== MODAL DE DESCARGA ========== */
        .download-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9998;
            padding: 18px;
        }

        .download-overlay.show {
            display: flex;
        }

        .download-box {
            width: 100%;
            max-width: 400px;
            background: linear-gradient(160deg, #10284a 0%, #24114a 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 168, 255, 0.10);
            padding: 28px;
            text-align: center;
        }

        .download-title {
            margin: 0 0 12px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-bright) !important;
        }

        .download-text {
            margin: 0 0 20px;
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-main) !important;
        }

        .download-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .download-link-btn {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-main) !important;
            border-radius: 30px;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .download-link-btn.android,
        .download-link-btn.pc {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #c85cff !important;
        }

        .download-link-btn:hover {
            background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
            transform: translateY(-2px);
            border-color: #ffffff;
            box-shadow: 0 5px 15px rgba(255, 30, 39, 0.3);
            color: #c85cff !important;
        }

        .download-close {
            margin-top: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: transparent;
            color: var(--text-main) !important;
            border-radius: 22px;
            padding: 10px 16px;
            cursor: pointer;
            width: 100%;
            font-size: 13px;
        }

        .download-close:hover {
            color: var(--text-bright) !important;
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.04);
        }

        /* ===== BLOQUEADOR DE ANUNCIOS MODERNO ===== */
        #adblockModal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(6, 8, 15, 0.86);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 2147483647;
            justify-content: center;
            align-items: center;
            padding: 18px;
        }

        #adblockModal .adblock-box {
            width: min(92vw, 420px);
            padding: 28px 24px;
            border-radius: 24px;
            background: linear-gradient(160deg, rgba(16, 18, 26, 0.98), rgba(8, 10, 16, 0.98));
            border: 1px solid rgba(77, 163, 255, 0.18);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(77, 163, 255, 0.08);
            color: var(--text-main) !important;
            animation: adblockPop 0.34s ease both;
        }

        #adblockModal .adblock-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        #adblockModal .adblock-logo {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            object-fit: cover;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        #adblockModal h2 {
            text-align: center;
            margin: 0;
            color: var(--text-bright) !important;
            font-size: 22px;
            line-height: 1.2;
            letter-spacing: 0.2px;
            text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        #adblockModal .adblock-sub {
            text-align: center;
            font-size: 13px;
            color: var(--text-main) !important;
            margin: 0 0 16px;
        }

        #adblockModal .adblock-text {
            font-size: 14px;
            line-height: 1.65;
            text-align: center;
            color: var(--text-main) !important;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            padding: 16px 14px;
            margin-bottom: 18px;
        }

        #adblockModal .adblock-text strong,
        #adblockModal .adblock-text b,
        #adblockModal .adblock-text span {
            color: var(--text-bright) !important;
        }

        #adblockModal .adblock-btn {
            width: 100%;
            padding: 14px 16px;
            border: none;
            border-radius: 18px;
            background: linear-gradient(135deg, #a0a0ff, #8f45ff);
            color: var(--text-bright) !important;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            box-shadow: 0 12px 24px rgba(77, 163, 255, 0.18);
        }

        #adblockModal .adblock-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.05);
            box-shadow: 0 16px 28px rgba(77, 163, 255, 0.24);
        }

        #adblockModal .adblock-btn:active {
            transform: translateY(0) scale(0.98);
        }

        @keyframes adblockPop {
            from {
                opacity: 0;
                transform: scale(0.92) translateY(10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @media (max-width: 600px) {
            #adblockModal {
                padding: 14px;
            }

            #adblockModal .adblock-box {
                padding: 24px 18px;
                border-radius: 22px;
            }

            #adblockModal h2 {
                font-size: 20px;
            }

            #adblockModal .adblock-text {
                font-size: 13px;
                padding: 14px 12px;
            }
        }

        .social-btn.telegram,
        .social-btn.telegram i,
        .social-btn.telegram span,
        .modal-btn.ad,
        .modal-btn.ad i,
        .modal-btn.ad span,
        .modal-btn.link.enabled,
        .modal-btn.link.enabled i,
        .modal-btn.link.enabled span,
        .download-link-btn.android,
        .download-link-btn.android i,
        .download-link-btn.android span,
        .download-link-btn.pc,
        .download-link-btn.pc i,
        .download-link-btn.pc span {
            color: #c85cff !important;
        }

        /* ===== FIN BLOQUEADOR DE ANUNCIOS MODERNO ===== */
        /* === OVERRIDE GLOBAL DE TEXTO A GRIS CLARO Y BLANCO === */
        body,
        body * {
            color: var(--text-main) !important;
        }
        input::placeholder,
        textarea::placeholder {
            color: var(--text-muted) !important;
            opacity: 0.9 !important;
        }
        .hero-title {
            background: none !important;
            -webkit-background-clip: initial !important;
            -webkit-text-fill-color: var(--text-bright) !important;
            color: var(--text-bright) !important;
        }
        .section-title svg,
        .nav-btn svg,
        .see-all-btn svg,
        .back-btn svg,
        .comic-modal-close svg {
            color: var(--text-main) !important;
        }
        .section-title {
            font-weight: 400 !important;
        }

        /* ===== FIN ANTI DNS / ANTIBLOCK ===== */

        /* ====== MODERN PROFESSIONAL OVERRIDES ====== */
        :root {
            --bg-color: #0f1020;
            --card-bg: rgba(16, 18, 26, 0.82);
            --primary-red: #ff4d6d;
            --dark-red: #b61f40;
            --primary-blue: #4da3ff;
            --text-main: #f0f0f0;
            --text-bright: #ffffff;
            --text-muted: #cccccc;
        }

        html,
        body {
            background:
                radial-gradient(circle at top left, rgba(124, 92, 255, 0.36), transparent 34%),
                radial-gradient(circle at top right, rgba(77, 163, 255, 0.28), transparent 28%),
                linear-gradient(180deg, #0f1020 0%, #24114a 52%, #10284a 100%) !important;
        }

        body::before {
            background:
                url('https://i.ibb.co/6Rc4cdnK/71f76363-eb6e-4a54-9ebe-574c2f3d8c79.png') center center / cover no-repeat,
                radial-gradient(ellipse at 30% 20%, rgba(124, 92, 255, 0.50) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(77, 163, 255, 0.40) 0%, transparent 55%),
                linear-gradient(145deg, #0f1020 0%, #24114a 45%, #10284a 100%) !important;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 15% 0%, rgba(180, 100, 255, 0.25), transparent 30%),
                radial-gradient(circle at 85% 15%, rgba(180, 100, 255, 0.20), transparent 26%);
            z-index: -9;
            transform: translateZ(0);
            will-change: transform;
            backface-visibility: hidden;
        }

        .navbar {
            height: 80px;
            padding: 0 32px;
            background: rgba(17, 18, 40, 0.58);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .logo-img {
            height: 44px;
            filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 18px rgba(160, 80, 255, 0.8));
        }

        .card-content {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 4px;
        }

        .card-subtitle {
            display: block;
            width: 100%;
            margin: 0;
            text-align: center;
            box-sizing: border-box;
            border-radius: 14px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .nav-btn,
        .see-all-btn,
        .back-btn,
        .social-btn,
        .modal-btn,
        .download-link-btn,
        .download-close {
            border-radius: 18px;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .nav-btn:hover {
            background: linear-gradient(135deg, #a0a0ff, #8f45ff);
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(160, 160, 255, 0.18);
        }

        .hero-banner {
            margin: 24px 40px 22px 40px;
            padding: 0;
            background: transparent;
            border: none;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
        }

        .hero-badge {
            font-size: 18px;
            padding: 15px 24px;
            letter-spacing: 1.4px;
            margin-top: 6px;
        }

        .hero-title {
            font-size: clamp(32px, 5.2vw, 62px);
            letter-spacing: -0.5px;
            color: var(--text-bright) !important;
            display: block;
            white-space: nowrap;
        }

        .hero-text {
            color: var(--text-main) !important;
            max-width: 980px;
        }

        .section-title::before {
            background: var(--accent-color) !important;
            box-shadow: 0 0 14px rgba(160, 160, 255, 0.55) !important;
        }

        .card,
        .card-game {
            border-radius: 16px;
            border: none;
            background-color: rgba(16, 18, 26, 0.8);
            background-clip: padding-box;
            box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0), inset 0 0 32px rgba(0, 0, 0, 0.52), 0 14px 40px rgba(0, 0, 0, 0.35);
        }

        .card::before {
            inset: 0;
            border-radius: inherit;
            background:
                radial-gradient(circle at 50% 46%, rgba(4, 7, 14, 0.02) 0%, rgba(4, 7, 14, 0.12) 46%, rgba(4, 7, 14, 0.48) 78%, rgba(4, 7, 14, 0.92) 100%),
                linear-gradient(180deg, rgba(4, 7, 14, 0.72) 0%, rgba(4, 7, 14, 0.18) 24%, rgba(4, 7, 14, 0.78) 72%, rgba(4, 7, 14, 0.98) 100%);
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0), inset 0 0 34px rgba(0, 0, 0, 0.58), 0 18px 48px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(160, 160, 255, 0.14);
        }

        .card-title {
            font-size: 15px;
            color: var(--text-bright) !important;
        }

        .card-subtitle {
            background: rgba(160, 160, 255, 0.14);
            border-color: rgba(160, 160, 255, 0.3);
            color: var(--text-main) !important;
            border-radius: 14px;
            overflow: hidden;
        }

        .view-header {
            padding: 34px 40px 26px 40px;
        }

        .view-title {
            color: var(--text-bright) !important;
        }

        .search-input {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .search-input:focus {
            border-color: rgba(160, 160, 255, 0.55);
            box-shadow: 0 0 0 4px rgba(160, 160, 255, 0.12);
        }

        .suggestions-box {
            background: rgba(17, 18, 40, 0.98);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .comic-modal,
        .download-box,
        .modal-box,
        #adblockModal .adblock-box.tsun {
            background: rgba(15, 16, 32, 0.95) !important;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.60);
        }

        .comic-modal-header {
            background: rgba(17, 18, 40, 0.72);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .comic-modal-close:hover {
            background: linear-gradient(135deg, rgba(255, 77, 109, 0.95), rgba(124, 92, 255, 0.95));
        }

        .game-dl-btn,
        .modal-btn.ad,
        .modal-btn.link.enabled {
            background: linear-gradient(135deg, #4da3ff, #7c5cff) !important;
            box-shadow: 0 12px 24px rgba(77, 163, 255, 0.24);
        }

        .download-link-btn:hover,
        .see-all-btn:hover,
        .back-btn:hover {
            background: linear-gradient(135deg, #a0a0ff, #8f45ff);
            color: var(--text-bright) !important;
        }

        footer {
            color: var(--text-main) !important;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            background: linear-gradient(180deg, rgba(15, 16, 32, 0.08) 0%, rgba(15, 16, 32, 0.55) 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin-top: 0;
        }

        .social-btn.telegram {
            background: linear-gradient(135deg, #2aabee, #1677c4);
        }

        @media (max-width: 768px) {
            .navbar {
                height: auto;
                padding: 12px 16px;
            }

            .hero-banner {
                margin: 18px 20px 16px 20px;
                gap: 14px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 10px 14px;
                letter-spacing: 0.9px;
            }

            .hero-title {
                font-size: clamp(24px, 6vw, 38px) !important;
                white-space: nowrap;
            }

            .hero-text {
                font-size: 14px !important;
            }

            .view-header {
                padding: 24px 20px 18px 20px;
            }

            .comics-grid,
            .games-grid {
                padding-left: 20px;
                padding-right: 20px;
            }

            .card,
            .card-game {
                border-radius: 18px;
            }

            .comic-modal-header {
                padding: 0 14px;
            }

            footer {
                padding: 30px 16px 24px;
            }
            .footer-social {
                margin-top: 12px;
            }
        }

        /* ===== AJUSTES SOLICITADOS ===== */
        #main-view {
            padding-top: 112px !important;
        }

        .navbar {
            position: fixed !important;
            top: 12px !important;
            left: 12px !important;
            width: calc(100% - 24px) !important;
            height: 80px !important;
            border-radius: 28px !important;
            background: rgba(17, 18, 40, 0.72) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42) !important;
            backdrop-filter: blur(18px) !important;
            -webkit-backdrop-filter: blur(18px) !important;
            z-index: 1000 !important;
        }

        .hero-banner {
            margin: 0 40px 18px 40px !important;
            padding: 0 !important;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            text-align: center !important;
        }

        .hero-title {
            margin-bottom: 0 !important;
        }

        .hero-text {
            max-width: 980px !important;
            margin: 0 auto !important;
        }

        @media (max-width: 768px) {
            #main-view {
                padding-top: 128px !important;
            }

            .navbar {
                top: 8px !important;
                left: 8px !important;
                width: calc(100% - 16px) !important;
                height: auto !important;
                border-radius: 22px !important;
                padding: 12px 14px !important;
            }

            .hero-banner {
                margin: 10px 20px 14px 20px !important;
                padding: 0 !important;
                gap: 14px;
            }
        }
        /* ===== FIN AJUSTES SOLICITADOS ===== */

        /* ====== END MODERN PROFESSIONAL OVERRIDES ====== */

        /* ===== AJUSTE FINAL SOLICITADO ===== */
        :root {
            --section-accent: #7aa8ff;
        }

        .section-title {
            background: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
            -webkit-text-fill-color: var(--text-bright) !important;
            color: var(--text-bright) !important;
        }

        .section-title::before {
            background: var(--accent-color) !important;
            box-shadow: 0 0 14px rgba(160, 160, 255, 0.55) !important;
        }

        .section-title svg {
            color: var(--text-main) !important;
            stroke: currentColor !important;
        }

        .see-all-btn {
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.55) !important;
            background: rgba(200, 200, 255, 0.12) !important;
        }

        .see-all-btn .see-all-text {
            color: var(--text-main) !important;
        }

        .see-all-btn svg {
            color: var(--text-main) !important;
            stroke: currentColor !important;
        }

        /* Barra superior: mismo acento para iconos y texto */
        .navbar .nav-btn {
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.32) !important;
            background: rgba(200, 200, 255, 0.12) !important;
        }

        .navbar .nav-btn svg {
            color: var(--text-main) !important;
            stroke: currentColor !important;
        }

        .navbar .nav-btn:hover {
            color: var(--text-bright) !important;
            border-color: rgba(200, 200, 255, 0.55) !important;
            background: linear-gradient(135deg, rgba(200, 200, 255, 0.95), rgba(124, 92, 255, 0.95)) !important;
        }

        .navbar .nav-btn:hover svg {
            color: var(--text-bright) !important;
        }

        .navbar .download-btn-header {
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.32) !important;
        }

        .navbar .download-btn-header svg {
            color: var(--text-main) !important;
            stroke: currentColor !important;
        }

        .footer-social {
            width: 100% !important;
        }

        .social-btn.telegram {
            width: 100% !important;
            max-width: 100% !important;
            justify-content: center !important;
            box-sizing: border-box !important;
        }

        @media (max-width: 768px) {
            .footer-social {
                width: 100% !important;
            }

            .social-btn.telegram {
                width: 100% !important;
            }
        }
        /* ===== FIN AJUSTE FINAL SOLICITADO ===== */

        /* ===== AJUSTE DE TARJETAS SOLICITADO ===== */
        .card-user-badge {
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.25) !important;
            background: rgba(200, 200, 255, 0.10) !important;
        }

        .card-user-badge i {
            color: var(--text-main) !important;
        }

        .card-user-badge span {
            color: var(--text-main) !important;
        }

        .card-subtitle {
            color: var(--text-main) !important;
            background: rgba(200, 200, 255, 0.12) !important;
            border-color: rgba(200, 200, 255, 0.34) !important;
        }

        .card-subtitle i,
        .card-subtitle svg {
            color: var(--text-main) !important;
            stroke: currentColor !important;
        }

        .game-meta-item {
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.22) !important;
            background: rgba(200, 200, 255, 0.12) !important;
        }

        .game-meta-item i {
            color: var(--text-main) !important;
        }

        .game-meta-item span,
        .game-meta-item strong {
            color: var(--text-main) !important;
        }

        .comic-modal-title i,
        .game-screenshots-label i {
            color: var(--text-main) !important;
        }
        /* ===== FIN AJUSTE DE TARJETAS SOLICITADO ===== */

        /* ===== AJUSTE FINAL DE ICONOS SOLICITADO ===== */
        .navbar .nav-btn svg,
        .navbar .nav-btn svg *,
        .section-title svg,
        .section-title svg *,
        .see-all-btn svg,
        .see-all-btn svg * {
            color: var(--text-main) !important;
            stroke: currentColor !important;
            fill: none !important;
        }

        .navbar .nav-btn:hover svg,
        .navbar .nav-btn:hover svg *,
        .section-title:hover svg,
        .section-title:hover svg *,
        .see-all-btn:hover svg,
        .see-all-btn:hover svg * {
            color: var(--text-bright) !important;
            stroke: currentColor !important;
        }
        /* ===== FIN AJUSTE FINAL DE ICONOS SOLICITADO ===== */

        /* ===== PALETA UNIFICADA DE TEXTO ===== */
        :root {
            --text-main: #f0f0f0;
            --text-muted: #cccccc;
            --text-accent: #a0a0ff;
            --text-alt: #8fd3ff;
        }

        /* Texto general con una paleta coherente */
        body,
        body * {
            color: var(--text-main) !important;
        }

        /* Secundarios y textos de ayuda */
        .game-desc-text,
        .download-text,
        .modal-text,
        .ad-status,
        footer,
        .suggestion-item,
        .search-input::placeholder,
        .download-close,
        .view-title,
        .game-modal-game-title,
        .comic-modal-title {
            color: var(--text-main) !important;
        }

        /* Elementos que deben compartir el color principal */
        .hero-badge,
        .hero-line,
        .hero-brand,
        .hero-text,
        .section-title,
        .card-title,
        .card-subtitle,
        .card-user-badge,
        .card-user-badge span,
        .game-meta-item,
        .game-screenshots-label,
        .nav-btn,
        .see-all-btn,
        .back-btn,
        .game-dl-btn,
        .modal-btn,
        .download-link-btn,
        .social-btn,
        .download-btn-header {
            color: var(--text-main) !important;
        }

        /* Iconos y trazos mantienen el color del elemento padre */
        svg,
        svg *,
        i {
            color: var(--text-main) !important;
        }

        .section-title::before {
            background: var(--accent-color) !important;
            box-shadow: 0 0 14px rgba(160, 160, 255, 0.55) !important;
        }

        input::placeholder,
        textarea::placeholder {
            color: var(--text-muted) !important;
            opacity: 0.9 !important;
        }

        .hero-title {
            background: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
            -webkit-text-fill-color: var(--text-bright) !important;
        }

        .hero-brand {
            background: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
            -webkit-text-fill-color: var(--text-bright) !important;
            color: var(--text-bright) !important;
        }

        .hero-badge i,
        .section-title svg,
        .section-title i {
            color: var(--text-main) !important;
        }

        .social-btn.telegram,
        .social-btn.telegram i,
        .social-btn.telegram svg,
        .social-btn.telegram svg * {
            color: var(--text-main) !important;
        }

        .social-btn.telegram {
            background: linear-gradient(135deg, #2AABEE 0%, #1B8DC7 100%);
            border-color: rgba(42, 171, 238, 0.35);
        }

        /* ===== COLOR UNIFICADO PARA ENCABEZADOS, CAMPOS Y CIERRE ===== */
        .view-header {
            background: linear-gradient(180deg, rgba(124, 92, 255, 0.28) 0%, rgba(77, 163, 255, 0.10) 100%) !important;
            border-bottom: 1px solid rgba(200, 200, 255, 0.20) !important;
        }

        .comic-modal-header {
            background: rgba(17, 18, 40, 0.72) !important;
            border-bottom: 1px solid rgba(200, 200, 255, 0.20) !important;
        }

        .search-input {
            border-color: rgba(200, 200, 255, 0.45) !important;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
        }

        .search-input:focus {
            border-color: var(--accent-color) !important;
            box-shadow: 0 0 0 4px rgba(160, 160, 255, 0.12) !important;
        }

        .suggestions-box {
            border-color: rgba(200, 200, 255, 0.20) !important;
        }

        .comic-modal-close {
            color: var(--text-main) !important;
            border-color: rgba(200, 200, 255, 0.32) !important;
            background: rgba(200, 200, 255, 0.12) !important;
        }

        .comic-modal-close svg,
        .comic-modal-close svg * {
            color: var(--text-main) !important;
            stroke: currentColor !important;
        }

        .comic-modal-close:hover {
            background: linear-gradient(135deg, rgba(200, 200, 255, 0.95), rgba(124, 92, 255, 0.95)) !important;
            border-color: rgba(200, 200, 255, 0.55) !important;
            color: var(--text-bright) !important;
        }

        /* ===== FIN COLOR UNIFICADO PARA ENCABEZADOS, CAMPOS Y CIERRE ===== */

        /* ===== FIN PALETA UNIFICADA DE TEXTO ===== */

        /* ===== AJUSTE SOLICITADO: BOTONES EN BLANCO ===== */
        .social-btn.telegram,
        .social-btn.telegram i,
        .social-btn.telegram span {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            fill: #ffffff !important;
        }

        .game-dl-btn,
        .game-dl-btn i,
        .game-dl-btn span {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            fill: #ffffff !important;
        }

        .game-dl-btn i {
            font-weight: 900;
        }

        /* ===== FONDO UNIFICADO ENTRE INICIO Y VER TODO ===== */
        #main-view,
        #all-comics-view,
        #all-games-view {
            background: transparent !important;
            background-color: transparent !important;
            min-height: 100vh;
            padding-bottom: 28px;
        }
    
        /* ===== BORDE SOLICITADO PARA TARJETAS ===== */

        /* ===== AJUSTE FINAL DE FONDO FIJO ===== */
        html, body {
            background: transparent !important;
            background-color: transparent !important;
        }
        .card,
        .card-game {
            border: 1.5px solid rgba(160, 160, 255, 0.48) !important;
            box-sizing: border-box !important;
        }

        .card:hover,
        .card-game:hover {
            border-color: rgba(160, 160, 255, 0.70) !important;
        }
        /* ===== FIN BORDE SOLICITADO PARA TARJETAS ===== */

        /* ===== OVERRIDE FINAL MODAL DE DESBLOQUEO ===== */
        #adModal .modal-title,
        #adModal .modal-text,
        #adModal .ad-status,
        #adModal .modal-btn.link,
        #adModal .modal-btn.link i,
        #adModal .modal-btn.link span {
            color: #ffffff !important;
        }

    
        /* Ajuste solicitado: textos del recuadro de desbloqueo en blanco */
        #adModal #watchAdBtn,
        #adModal #watchAdBtn *,
        #adModal #watchAdBtn::before,
        #adModal #watchAdBtn::after,
        #adModal #adStatus,
        #adModal .ad-status,
        #adModal .ad-status *,
        #adModal .ad-status::before,
        #adModal .ad-status::after {
            color: #ffffff !important;
        }

    