/* ═══════════════════════════════════════════════════════════════
   CODEX ASTRA - Fantasy Sci-Fi Book Catalog
   Aesthetic: Classic Fantasy meets Cyberpunk
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Slate Palette */
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;

    /* Accent Colors - tonos CODEX */
    --gold-metallic: #C7A56B;
    --gold-light: #DDC293;
    --gold-dark: #8D6F47;
    --cyan-neon: #7dd3e8;
    --cyan-light: #a5f3fc;
    --cyan-dark: #4fb8d1;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Glass */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

/* Scrollbar base */
::-webkit-scrollbar {
    width: 12px;
    background: var(--slate-950);
}

::-webkit-scrollbar-track {
    background: var(--slate-950);
}

::-webkit-scrollbar-thumb {
    background: var(--slate-700);
    border-radius: 6px;
    border: 3px solid var(--slate-950);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--slate-600);
}

/* Scrollbar invisible cuando modal abierto */
html.modal-open {
    scrollbar-color: #020617 #020617;
}

html.modal-open::-webkit-scrollbar {
    background-color: #020617 !important;
}

html.modal-open::-webkit-scrollbar-track {
    background-color: #020617 !important;
}

html.modal-open::-webkit-scrollbar-thumb {
    background-color: #020617 !important;
    border-color: #020617 !important;
}

html.modal-open::-webkit-scrollbar-corner {
    background-color: #020617 !important;
}

body {
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: var(--slate-200);

    /* Radial gradient background */
    background:
        radial-gradient(
            ellipse 80% 50% at 50% -20%,
            rgba(6, 182, 212, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 60% 40% at 50% 100%,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            var(--slate-900) 0%,
            var(--slate-950) 100%
        );
    background-attachment: fixed;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem var(--space-md);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(6, 182, 212, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--slate-200) 0%,
        var(--gold-metallic) 25%,
        var(--slate-300) 50%,
        var(--cyan-neon) 75%,
        var(--slate-200) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-metallic);
    margin-top: var(--space-sm);
    position: relative;
    z-index: 1;
}

.hero-line {
    width: 120px;
    height: 1px;
    margin-top: var(--space-md);
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-metallic),
        var(--cyan-neon),
        transparent
    );
}

/* Logo header styles */
.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-logo-book {
    width: 118px;
    height: auto;
}

.hero-logo-text {
    width: min(1050px, 90vw);
    height: auto;
}

/* Screen reader only - para SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Descomentar para activar brillo del logo
.hero-logo-container img {
    animation: subtle-glow 3s ease-in-out infinite;
}
@keyframes subtle-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}
*/

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.navigation {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-sm) var(--space-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--slate-700);
    border-radius: 6px;
    color: var(--slate-400);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(6, 182, 212, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-btn:hover {
    border-color: var(--gold-metallic);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn.active {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(6, 182, 212, 0.1) 100%
    );
    border-color: var(--gold-metallic);
    color: var(--gold-metallic);
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   ARCHIVISTA SHOWCASE - Exhibition Display
   ═══════════════════════════════════════════════════════════════ */

.archivista-showcase {
    position: relative;
    max-width: 1500px;
    margin: 2rem auto var(--space-lg) auto;
    padding: var(--space-lg) var(--space-md);

    /* Subtle elevated background */
    background:
        linear-gradient(
            180deg,
            rgba(212, 175, 55, 0.02) 0%,
            rgba(15, 23, 42, 0.4) 15%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.4) 85%,
            rgba(6, 182, 212, 0.02) 100%
        );

    /* Elegant border */
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;

    /* Outer glow */
    box-shadow:
        0 0 80px rgba(212, 175, 55, 0.03),
        0 0 120px rgba(6, 182, 212, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Decorative corners */
.showcase-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.showcase-corner::before,
.showcase-corner::after {
    content: '';
    position: absolute;
    background: var(--gold-metallic);
    opacity: 0.6;
}

.showcase-corner::before {
    width: 24px;
    height: 1px;
}

.showcase-corner::after {
    width: 1px;
    height: 24px;
}

.showcase-corner-tl { top: -1px; left: -1px; }
.showcase-corner-tl::before { top: 0; left: 0; }
.showcase-corner-tl::after { top: 0; left: 0; }

.showcase-corner-tr { top: -1px; right: -1px; }
.showcase-corner-tr::before { top: 0; right: 0; }
.showcase-corner-tr::after { top: 0; right: 0; }

.showcase-corner-bl { bottom: -1px; left: -1px; }
.showcase-corner-bl::before { bottom: 0; left: 0; }
.showcase-corner-bl::after { bottom: 0; left: 0; }

.showcase-corner-br { bottom: -1px; right: -1px; }
.showcase-corner-br::before { bottom: 0; right: 0; }
.showcase-corner-br::after { bottom: 0; right: 0; }

/* Header section */
.showcase-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.showcase-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        transparent
    );
}

.showcase-header-content {
    text-align: center;
    padding: 0 var(--space-md);
}

.showcase-emblem {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-metallic);
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.1),
        inset 0 0 15px rgba(212, 175, 55, 0.05);
}

.showcase-emblem svg {
    width: 100%;
    height: 100%;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 500;
    color: var(--gold-metallic);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.3rem;
    text-shadow:
        0 0 30px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.1);
}

.showcase-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--slate-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Content area */
.showcase-content {
    position: relative;
}

.showcase-content .books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
    justify-items: center;
}

@media (min-width: 900px) {
    .showcase-content .books-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .showcase-content .books-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: var(--space-sm);
    }

    .showcase-content .book-card {
        max-width: 220px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   BOOKS GRID (Legacy/Full catalog)
   ═══════════════════════════════════════════════════════════════ */

.library {
    padding: var(--space-lg) var(--space-md);
    max-width: 1600px;
    margin: 0 auto;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════
   BOOK CARD - GLASSMORPHISM
   ═══════════════════════════════════════════════════════════════ */

.book-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 48px rgba(212, 175, 55, 0.04),
        0 0 64px rgba(125, 211, 232, 0.03);
}

.book-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.15s ease;
}

.book-card:hover::before {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.6) 0%,
        rgba(6, 182, 212, 0.4) 50%,
        rgba(212, 175, 55, 0.6) 100%
    );
}

.book-card:hover {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.12),
        0 0 80px rgba(125, 211, 232, 0.06);
}

/* Book Cover */
.book-cover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background-color: var(--slate-950);
    border-radius: 8px 8px 0 0;
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-card:hover .book-cover {
    transform: scale(1.08);
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(2, 6, 23, 0.2) 70%,
        rgba(2, 6, 23, 0.7) 100%
    );
    pointer-events: none;
}

/* Author Badge */
.author-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.7rem;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold-metallic);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Book Info */
.book-info {
    padding: var(--space-sm);
    position: relative;
}

.book-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-100);
    line-height: 1.3;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--slate-400);
}

.book-quote-preview {
    margin-top: var(--space-xs);
    padding-top: var(--space-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--slate-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.08),
        0 0 120px rgba(6, 182, 212, 0.05);
}


.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid var(--slate-600);
    border-radius: 50%;
    color: var(--slate-300);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-metallic);
    color: var(--gold-metallic);
    transform: rotate(90deg);
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.4);
    z-index: 5;
    cursor: pointer;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: var(--gold-metallic);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-play-overlay:hover .video-play-btn {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-metallic);
    transform: scale(1.1);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.4),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Overlay para video standby - más oscuro */
.video-standby-overlay {
    background: rgba(2, 6, 23, 0.6);
}

.video-standby-overlay .video-play-btn {
    background: rgba(2, 6, 23, 0.9);
}

.neon-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    margin-bottom: calc(var(--space-sm) + 8px);
    text-shadow: 0 0 10px rgba(125, 211, 232, 0.5);
}

.spectrum-genre {
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--slate-500);
    text-shadow: none;
    letter-spacing: 0.1em;
}

.neon-bar-container {
    width: 100%;
    height: 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-sm);
}

.neon-segment {
    height: 100%;
    position: relative;
}

.neon-segment.neon-adventure {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-metallic), var(--gold-light));
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.neon-segment.neon-magic {
    background: linear-gradient(90deg, var(--cyan-dark), var(--cyan-neon), var(--cyan-light));
    box-shadow:
        0 0 20px rgba(125, 211, 232, 0.6),
        0 0 40px rgba(125, 211, 232, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.neon-segment.neon-drama {
    background: linear-gradient(90deg, #7c3aed, #8b5cf6, #a78bfa);
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.neon-legend {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-md);
    gap: var(--space-sm);
}

.neon-legend-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.neon-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.neon-value-adventure {
    color: var(--gold-metallic);
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.neon-value-magic {
    color: var(--cyan-neon);
    text-shadow:
        0 0 10px rgba(125, 211, 232, 0.8),
        0 0 20px rgba(125, 211, 232, 0.5),
        0 0 30px rgba(125, 211, 232, 0.3);
}

.neon-value-drama {
    color: #a78bfa;
    text-shadow:
        0 0 10px rgba(167, 139, 250, 0.8),
        0 0 20px rgba(167, 139, 250, 0.5),
        0 0 30px rgba(167, 139, 250, 0.3);
}

.neon-name {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* Versión vertical del espectro - oculta en desktop */
.neon-bar-vertical {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT CRONISTA FULL
   ═══════════════════════════════════════════════════════════════ */

.modal-content-cronista-full {
    max-width: 1300px;
    overflow: hidden;
}

.cronista-full-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    min-height: 0;
}

/* Columna Izquierda: Contenido completo */
.cronista-full-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
}

.cronista-full-layout {
    display: flex;
    gap: var(--space-lg);
    flex: 1;
}

.cronista-full-cover {
    flex-shrink: 0;
    width: 200px;
}

.cronista-full-cover-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--slate-950);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 2/3;
}

.cronista-full-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Hover sutil */
.cronista-full-cover:hover .cronista-full-cover-inner {
    transform: scale(1.03) translateY(-4px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(34, 211, 238, 0.1);
}

.cronista-full-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cronista-full-texto .modal-synopsis {
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.cronista-full-texto .modal-quote {
    margin-bottom: var(--space-md);
}

/* ADN en columna central */
.cronista-full-dna {
    margin-top: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cronista-full-dna .neon-legend {
    margin-top: var(--space-sm);
}

.cronista-full-dna .neon-value {
    font-size: 1.6rem;
}

/* Botón Amazon en columna central */
.cronista-full-amazon {
    margin-top: var(--space-md);
    align-self: flex-start;
}

/* Columna Derecha: Video Full Height */
.cronista-full-video {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(15, 23, 42, 0.98) 100%
    );
    border-left: 1px solid rgba(125, 211, 232, 0.1);
    overflow: hidden;
}

/* Efecto scan lines */
.cronista-full-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(125, 211, 232, 0.015) 2px,
        rgba(125, 211, 232, 0.015) 4px
    );
    pointer-events: none;
    z-index: 2;
}

.cronista-full-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cronista-full-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Viñeta sutil en los bordes del video */
.cronista-full-video-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    box-shadow:
        inset 0 0 100px rgba(2, 6, 23, 0.4),
        inset 0 0 200px rgba(2, 6, 23, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   REVISIÓN DEL CRONISTA - Panel con imagen estática
   ═══════════════════════════════════════════════════════════════ */

.cronista-review-panel {
    display: flex;
    align-items: stretch;
}

.cronista-review-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Capa de ruido/grain para efecto pantalla */
.cronista-review-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: overlay;
}

.cronista-review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) saturate(0.8);
}

.cronista-review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) saturate(0.8);
}

.cronista-review-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(2, 6, 23, 0.7) 40%,
        rgba(2, 6, 23, 0.3) 70%,
        transparent 100%
    );
    z-index: 4;
}

.cronista-review-content {
    max-width: 90%;
    text-align: center;
}

.cronista-review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Header para video dual con exégesis */
.cronista-video-header {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.cronista-video-header .cronista-review-icon {
    width: 20px;
    height: 20px;
}

.cronista-video-header .cronista-review-title {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
}

/* Contenedor del video dual necesita position relative */
.cronista-dual-video {
    position: relative;
}

/* Zoom ligero en el video de standby para ocultar marca de agua */
.cronista-dual-video .cronista-full-video-element:not(.cronista-main-video) {
    transform: scale(1.05);
    transform-origin: center center;
}

.cronista-review-icon {
    width: 32px;
    height: 32px;
    color: #7dd3e8;
    filter: drop-shadow(0 0 8px rgba(125, 211, 232, 0.6));
    transition: transform 0.6s ease, filter 0.3s ease;
}

.cronista-review-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7dd3e8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(125, 211, 232, 0.4);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cronista-review-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.9);
    font-style: italic;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effects para el panel de revisión */
.cronista-review-wrapper:hover .cronista-review-icon {
    transform: rotate(45deg);
    filter: drop-shadow(0 0 12px rgba(125, 211, 232, 0.8));
}

.cronista-review-wrapper:hover .cronista-review-title {
    color: #a5e8f7;
    text-shadow: 0 0 15px rgba(125, 211, 232, 0.6);
}

.cronista-review-wrapper:hover .cronista-review-text {
    color: rgba(248, 250, 252, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(125, 211, 232, 0.15);
}

/* Efecto de borde luminoso para el panel de review */
.cronista-review-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(125, 211, 232, 0.15);
    pointer-events: none;
    z-index: 5;
}

/* Versión móvil de la revisión */
.cronista-review-mobile .cronista-review-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.cronista-review-mobile .cronista-review-image {
    border-radius: 8px;
}

.cronista-review-mobile .cronista-review-video {
    border-radius: 8px;
}

.cronista-review-mobile .cronista-review-overlay {
    border-radius: 8px;
    padding: 1.5rem;
}

.cronista-review-mobile .cronista-review-text {
    font-size: 0.85rem;
    line-height: 1.6;
}

.cronista-review-mobile .cronista-review-title {
    font-size: 0.95rem;
}

/* Responsive para Cronista Full */
@media (max-width: 1100px) {
    .cronista-full-grid {
        grid-template-columns: 1fr;
    }

    .cronista-full-video {
        border-left: none;
        border-top: 1px solid rgba(125, 211, 232, 0.1);
        height: 400px;
    }

    .cronista-full-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cronista-full-cover {
        width: 160px;
    }

    .cronista-full-texto .modal-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .cronista-full-amazon {
        align-self: center;
    }

    .cronista-full-dna .neon-value {
        font-size: 1.4rem;
    }
}

.modal-author-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan-neon);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--slate-100);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--gold-metallic),
        var(--cyan-neon),
        transparent
    );
    margin: var(--space-sm) 0;
}

.modal-synopsis {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 2;
    color: var(--slate-200);
    margin-bottom: var(--space-md);
}

.modal-quote {
    position: relative;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(125, 211, 232, 0.04) 100%
    );
    border-left: 3px solid var(--gold-metallic);
    border-radius: 0 12px 12px 0;
    margin-top: auto;
}

.modal-quote p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--slate-100);
}

/* ═══════════════════════════════════════════════════════════════
   DNA BAR - Composition Visualization
   ═══════════════════════════════════════════════════════════════ */

.dna-section {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dna-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: var(--space-xs);
}

.dna-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.dna-segment {
    height: 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dna-segment.adventure {
    background: linear-gradient(90deg, var(--gold-metallic), var(--gold-light));
}

.dna-segment.magic {
    background: linear-gradient(90deg, var(--cyan-dark), var(--cyan-neon));
}

.dna-segment.drama {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.dna-legend {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.dna-legend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    text-align: center;
}

.dna-legend-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}

.dna-legend-item.adventure .dna-legend-value {
    color: var(--gold-metallic);
}

.dna-legend-item.magic .dna-legend-value {
    color: var(--cyan-neon);
}

.dna-legend-item.drama .dna-legend-value {
    color: #a78bfa;
}

.dna-legend-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
}

/* ═══════════════════════════════════════════════════════════════
   AMAZON LINK
   ═══════════════════════════════════════════════════════════════ */

.amazon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: var(--space-md);
    padding: 0.9rem 1.6rem;
    background: linear-gradient(
        135deg,
        var(--gold-metallic) 0%,
        var(--gold-dark) 100%
    );
    border: none;
    border-radius: 8px;
    color: var(--slate-950);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.amazon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--gold-light) 0%,
        var(--gold-metallic) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amazon-link:hover {
    color: var(--slate-950);
    box-shadow:
        0 6px 25px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.amazon-link:hover::before {
    opacity: 1;
}

.amazon-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.amazon-text {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid var(--glass-border);
}

.footer-line {
    width: 80px;
    height: 1px;
    margin: 0 auto var(--space-sm);
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-metallic),
        var(--cyan-neon),
        transparent
    );
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--slate-500);
    letter-spacing: 0.05em;
}

.footer-symbols {
    margin-top: var(--space-xs);
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--slate-600);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--slate-950);
}

::-webkit-scrollbar-thumb {
    background: var(--slate-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--slate-600);
}

/* Video móvil - oculto por defecto */
.cronista-video-mobile {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   MENSAJE ENTRANTE DEL CRONISTA - Hero Accordion
   ═══════════════════════════════════════════════════════════════ */

.cronista-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.cronista-message-text {
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--cyan-neon);
    text-shadow:
        0 0 10px rgba(125, 211, 232, 0.6),
        0 0 20px rgba(125, 211, 232, 0.4),
        0 0 40px rgba(125, 211, 232, 0.2);
    animation: messageGlow 2.5s ease-in-out infinite;
}

.cronista-message-text.no-blink {
    animation: none;
    opacity: 1;
}

@keyframes messageGlow {
    /* 3 parpadeos rápidos */
    0%, 6% { opacity: 1; }
    7%, 13% { opacity: 0.2; }
    14%, 20% { opacity: 1; }
    21%, 27% { opacity: 0.2; }
    28%, 34% { opacity: 1; }
    35%, 41% { opacity: 0.2; }
    /* Pausa con brillo */
    42%, 100% { opacity: 1; }
}

/* Waveform Button */
.cronista-waveform-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(125, 211, 232, 0.1);
    border: 1px solid rgba(125, 211, 232, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cronista-waveform-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(125, 211, 232, 0.2) 0%,
        rgba(125, 211, 232, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cronista-waveform-btn:hover {
    border-color: var(--cyan-neon);
    box-shadow:
        0 0 20px rgba(125, 211, 232, 0.3),
        0 0 40px rgba(125, 211, 232, 0.1);
    transform: translateY(-2px);
}

.cronista-waveform-btn:hover::before {
    opacity: 1;
}

.cronista-waveform-btn.active {
    background: rgba(125, 211, 232, 0.2);
    border-color: var(--cyan-neon);
    box-shadow:
        0 0 25px rgba(125, 211, 232, 0.4),
        inset 0 0 15px rgba(125, 211, 232, 0.1);
}

.waveform-container {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.waveform-bar {
    width: 3px;
    height: 100%;
    background: var(--cyan-neon);
    border-radius: 2px;
    animation: waveformPulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(125, 211, 232, 0.6);
}

@keyframes waveformPulse {
    0%, 100% {
        transform: scaleY(0.3);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.waveform-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan-neon);
    position: relative;
    z-index: 1;
}

/* Accordion Container */
.cronista-accordion {
    width: 100%;
    max-width: 700px;
    margin: var(--space-md) auto 0;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.cronista-accordion-inner {
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(125, 211, 232, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(125, 211, 232, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cronista-accordion-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--slate-950);
    overflow: hidden;
}

.cronista-accordion-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scanlines effect */
.cronista-accordion-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(125, 211, 232, 0.02) 2px,
        rgba(125, 211, 232, 0.02) 4px
    );
    pointer-events: none;
    z-index: 2;
}

/* Vignette effect */
.cronista-accordion-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    box-shadow:
        inset 0 0 80px rgba(2, 6, 23, 0.5),
        inset 0 0 150px rgba(2, 6, 23, 0.3);
}

/* Close Button (hidden on desktop, visible on mobile fullscreen) */
.cronista-accordion-close {
    display: none;
}

/* Subtitle Overlay (hidden on desktop, visible on mobile fullscreen) */
.cronista-subtitle-overlay {
    display: none;
}

/* Mute Button */
.cronista-mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(125, 211, 232, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.cronista-mute-btn svg {
    width: 20px;
    height: 20px;
    color: var(--cyan-neon);
}

.cronista-mute-btn:hover {
    background: rgba(125, 211, 232, 0.2);
    border-color: var(--cyan-neon);
    box-shadow: 0 0 15px rgba(125, 211, 232, 0.3);
}

/* Terminal-style Subtitles */
.cronista-subtitle-display {
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(125, 211, 232, 0.2);
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subtitle-prefix {
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan-neon);
    text-shadow: 0 0 8px rgba(125, 211, 232, 0.6);
    flex-shrink: 0;
}

.subtitle-text {
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--cyan-light);
    text-shadow: 0 0 10px rgba(125, 211, 232, 0.4);
    flex: 1;
}

.subtitle-cursor {
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan-neon);
    text-shadow: 0 0 8px rgba(125, 211, 232, 0.6);
    animation: cursorBlink 1s step-end infinite;
    flex-shrink: 0;
}

.subtitle-cursor.typing {
    animation: none;
    opacity: 1;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
    .hero {
        min-height: 35vh;
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-title {
        letter-spacing: 0.15em;
    }

    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--space-sm);
    }

    .book-title {
        font-size: 0.95rem;
    }

    .book-quote-preview {
        display: none;
    }

    /* ═══════════════════════════════════════════════════════════════
       MODAL - MOBILE FULLSCREEN
       ═══════════════════════════════════════════════════════════════ */

    .modal-backdrop {
        padding: 0;
        align-items: stretch;
    }

    .modal-content {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-content-cronista-full {
        max-width: 100%;
    }

    .modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        background: rgba(2, 6, 23, 0.95);
        border-color: var(--slate-600);
        z-index: 1002;
    }

    /* Grid a una columna */
    .cronista-full-grid {
        grid-template-columns: 1fr;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Contenido principal */
    .cronista-full-content {
        padding: var(--space-md) var(--space-sm);
        padding-top: 60px; /* Espacio para el botón cerrar */
        padding-bottom: 80px; /* Espacio para el botón sticky */
    }

    .cronista-full-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-sm);
    }

    /* Portada centrada y más pequeña */
    .cronista-full-cover {
        width: 140px;
        margin-bottom: var(--space-xs);
    }

    .cronista-full-cover-inner {
        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(212, 175, 55, 0.08);
    }

    /* Texto centrado */
    .cronista-full-texto {
        align-items: center;
        text-align: center;
    }

    .cronista-full-texto .modal-divider {
        margin-left: auto;
        margin-right: auto;
        max-width: 200px;
    }

    /* Título más compacto */
    .modal-title {
        font-size: 1.4rem;
        margin-bottom: var(--space-xs);
    }

    .modal-author-label {
        font-size: 0.7rem;
    }

    /* Sinopsis compacta */
    .modal-synopsis {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: var(--space-sm);
    }

    /* Cita más compacta */
    .modal-quote {
        padding: var(--space-xs) var(--space-sm);
        margin-top: var(--space-sm);
    }

    .modal-quote p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* ADN Narrativo compacto */
    .cronista-full-dna {
        margin-top: var(--space-sm);
        padding-top: var(--space-sm);
    }

    .neon-label {
        font-size: 0.65rem;
        margin-bottom: var(--space-xs);
    }

    .neon-bar-container {
        height: 12px;
    }

    .neon-legend {
        margin-top: var(--space-sm);
        gap: var(--space-xs);
    }

    .neon-legend-item {
        flex-direction: row;
        gap: 0.3rem;
        align-items: baseline;
    }

    .neon-value {
        font-size: 1.1rem;
    }

    .cronista-full-dna .neon-value {
        font-size: 1.1rem;
    }

    .neon-name {
        font-size: 0.6rem;
    }

    /* Ocultar video de columna derecha en móvil */
    .cronista-full-video {
        display: none;
    }

    /* Video móvil debajo de la cita - ancho completo sin caja */
    .cronista-video-mobile {
        display: block;
        position: relative;
        margin: var(--space-md) calc(-1 * var(--space-sm));
        width: calc(100% + 2 * var(--space-sm));
        overflow: hidden;
        aspect-ratio: 16/9;
    }

    /* Encuadrar la cara del cronista */
    .cronista-video-mobile .cronista-full-video-element {
        object-position: center 35%;
    }

    .cronista-full-video-wrapper {
        height: 100%;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }

    /* Botón Amazon sticky */
    .cronista-full-amazon {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        padding: 1rem;
        justify-content: center;
        z-index: 1000;
        background: linear-gradient(
            135deg,
            var(--gold-metallic) 0%,
            var(--gold-dark) 100%
        );
        box-shadow:
            0 -4px 20px rgba(0, 0, 0, 0.4),
            0 -2px 10px rgba(212, 175, 55, 0.2);
    }

    .amazon-link.cronista-full-amazon {
        width: 100%;
        text-align: center;
    }
}
