/* ===== BIBLIOTECA DIGITAL - ESTILOS TECNOLÓGICOS CIAN ===== */

:root {
    --biblioteca-primary: #00d4ff;      /* Cian tecnológico */
    --biblioteca-secondary: #0080b3;   /* Azul oscuro */
    --biblioteca-accent: #00ffff;      /* Cyan puro */
    --biblioteca-dark: #0a1428;        /* Fondo oscuro */
    --biblioteca-light: #e0f7ff;       /* Texto claro */
}

.biblioteca-page {
    background: linear-gradient(135deg, var(--biblioteca-dark) 0%, #0d1b2a 100%);
    color: var(--biblioteca-light);
}

/* ===== HEADER BIBLIOTECA ===== */

.biblioteca-header {
    border: 2px solid var(--biblioteca-primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(0, 128, 179, 0.05) 100%);
}

.biblioteca-header::before {
    background: linear-gradient(90deg, 
        rgba(0, 212, 255, 0.2) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(0, 212, 255, 0.2) 100%);
}

.subpage-title {
    background: linear-gradient(135deg, var(--biblioteca-accent), var(--biblioteca-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.subpage-subtitle {
    color: var(--biblioteca-primary);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    letter-spacing: 0.05em;
}

.return-home {
    border: 2px solid var(--biblioteca-primary);
    color: var(--biblioteca-primary);
    background: rgba(0, 212, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.return-home:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* ===== CÁMARA DE CONOCIMIENTO ===== */

.knowledge-chamber {
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 0%, 
        rgba(0, 212, 255, 0.1) 0%, 
        transparent 70%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    margin: 40px 0;
}

.chamber-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--biblioteca-accent);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5),
                 0 0 40px rgba(0, 212, 255, 0.3);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.chamber-subtitle {
    text-align: center;
    color: var(--biblioteca-primary);
    font-size: 1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* ===== GRID DE TARJETAS TÉCNICAS ===== */

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.knowledge-card {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(0, 128, 179, 0.05) 100%);
    border: 2px solid var(--biblioteca-primary);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.knowledge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.knowledge-card:hover {
    transform: translateY(-10px);
    border-color: var(--biblioteca-accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4),
                0 0 30px rgba(0, 255, 255, 0.3),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.knowledge-card:hover::before {
    opacity: 1;
}

/* ===== HEADER DE TARJETA ===== */

.card-header {
    padding: 20px;
    border-bottom: 2px solid currentColor;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
    left: -100%;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.card-header.salud-accent {
    color: #00bcd4;
    background: rgba(0, 188, 212, 0.1);
}

.card-header.gastronomia-accent {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.card-header.mineria-accent {
    color: #9c27b0;
    background: rgba(156, 39, 176, 0.1);
}

.card-header.transportes-accent {
    color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

.card-icon {
    font-size: 2.5rem;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

/* ===== CONTENIDO DE TARJETA ===== */

.card-content {
    padding: 25px;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(224, 247, 255, 0.9);
    margin-bottom: 20px;
}

.card-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.topic-badge {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--biblioteca-primary);
    color: var(--biblioteca-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.topic-badge:hover {
    background: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* ===== BOTONES DE ADQUISICIÓN ===== */

.acquire-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    border: 2px solid;
    background: rgba(0, 212, 255, 0.1);
    color: var(--biblioteca-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.acquire-btn::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.acquire-salud { border-color: #00bcd4; color: #00bcd4; }
.acquire-salud::before { background: rgba(0, 188, 212, 0.2); }
.acquire-salud:hover { border-color: #00bcd4; box-shadow: 0 0 20px rgba(0, 188, 212, 0.4); }

.acquire-gastronomia { border-color: #ff9800; color: #ff9800; }
.acquire-gastronomia::before { background: rgba(255, 152, 0, 0.2); }
.acquire-gastronomia:hover { border-color: #ff9800; box-shadow: 0 0 20px rgba(255, 152, 0, 0.4); }

.acquire-mineria { border-color: #9c27b0; color: #9c27b0; }
.acquire-mineria::before { background: rgba(156, 39, 176, 0.2); }
.acquire-mineria:hover { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.4); }

.acquire-transportes { border-color: #2196f3; color: #2196f3; }
.acquire-transportes::before { background: rgba(33, 150, 243, 0.2); }
.acquire-transportes:hover { border-color: #2196f3; box-shadow: 0 0 20px rgba(33, 150, 243, 0.4); }

.acquire-btn:hover::before {
    left: 0;
}

/* ===== ZONA DE DESCARGAS ===== */

.download-zone {
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 212, 255, 0.15) 0%, 
        transparent 70%);
    border: 2px solid var(--biblioteca-accent);
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.download-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(0, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--biblioteca-accent);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
                 0 0 40px rgba(0, 212, 255, 0.3);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.download-subtitle {
    text-align: center;
    color: var(--biblioteca-primary);
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.download-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download-card {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(0, 128, 179, 0.08) 100%);
    border: 2px solid var(--biblioteca-accent);
    border-radius: 5px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.download-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(0, 255, 255, 0.2) 0%, 
        transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

.download-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.download-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--biblioteca-accent);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.download-content p {
    color: rgba(224, 247, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.download-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.download-features li {
    padding: 8px 0;
    color: var(--biblioteca-primary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.download-features li:last-child {
    border-bottom: none;
}

.download-features li:hover {
    padding-left: 10px;
    color: var(--biblioteca-accent);
}

/* ===== BOTÓN NEÓN ===== */

.neon-btn {
    position: relative;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    border: 3px solid var(--biblioteca-accent);
    color: var(--biblioteca-accent);
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5),
                inset 0 0 10px rgba(0, 255, 255, 0.1);
    z-index: 3;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.3);
    transition: left 0.3s ease;
}

.neon-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 255, 255, 0.5) 0%, 
        transparent 70%);
    opacity: 0;
    animation: none;
    pointer-events: none;
}

.btn-glow {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--biblioteca-accent), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.neon-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8),
                0 0 60px rgba(0, 212, 255, 0.4),
                inset 0 0 20px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.neon-btn:hover::before {
    left: 0;
}

.neon-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
                inset 0 0 30px rgba(0, 255, 255, 0.4);
}

/* ===== NOTA DE MONETIZACIÓN ===== */

.monetization-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px dashed var(--biblioteca-primary);
    border-radius: 5px;
    text-align: center;
    color: var(--biblioteca-primary);
    font-size: 0.9rem;
    opacity: 0.8;
}

.monetization-note p {
    margin: 5px 0;
}

/* ===== ESTADÍSTICAS ===== */

.biblioteca-stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(0, 128, 179, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    margin: 40px 0;
}

.stats-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: var(--biblioteca-accent);
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--biblioteca-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--biblioteca-accent);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--biblioteca-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== CTA FINAL ===== */

.biblioteca-cta {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 0%, 
        rgba(0, 212, 255, 0.2) 0%, 
        transparent 70%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    margin: 60px 0;
}

.biblioteca-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--biblioteca-accent);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.biblioteca-cta p {
    font-size: 1.1rem;
    color: var(--biblioteca-primary);
    margin-bottom: 30px;
    opacity: 0.9;
}

.biblioteca-contact {
    padding: 12px 30px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--biblioteca-primary);
    color: var(--biblioteca-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.biblioteca-contact:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--biblioteca-accent);
    color: var(--biblioteca-accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== SANTUARIO DE LA PALABRA - CARRUSEL MÍSTICO ===== */

.sanctuary-section {
    padding: 80px 20px;
    background: radial-gradient(ellipse at 50% 50%, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(0, 128, 179, 0.03) 50%,
        transparent 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.sanctuary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0) 2px),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0) 2px),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0) 1px),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0) 1px),
        radial-gradient(2px 2px at 90% 60%, rgba(0, 255, 255, 0.15), rgba(0, 255, 255, 0) 2px),
        radial-gradient(1px 1px at 30% 80%, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0) 1px);
    background-size: 200% 200%, 150% 150%, 300% 300%, 250% 250%, 200% 200%, 300% 300%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 0%;
    animation: constellation-drift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes constellation-drift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 0%; }
    25% { background-position: 50% 10%, 80% 90%, 30% 60%, 20% 80%, 90% 20%, 40% 30%; }
    50% { background-position: 100% 20%, 60% 80%, 70% 40%, 50% 50%, 70% 50%, 60% 20%; }
    75% { background-position: 50% 30%, 80% 70%, 40% 70%, 30% 70%, 80% 30%, 30% 40%; }
}

/* ===== ÁREA ACADÉMICA TENS ===== */

.academic-tens-section {
    padding: 60px 20px;
    background: radial-gradient(circle at 50% 50%,
        rgba(255, 215, 0, 0.15) 0%,
        transparent 70%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.academic-tens-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 70%);
    animation: academic-float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes academic-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.academic-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                 0 0 40px rgba(255, 193, 7, 0.3);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.academic-subtitle {
    text-align: center;
    color: #FFA500;
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.academic-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.academic-card {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(255, 193, 7, 0.08) 100%);
    border: 2px solid #FFD700;
    border-radius: 5px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3),
                inset 0 0 30px rgba(255, 215, 0, 0.05);
    margin-bottom: 20px;
}

.academic-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.2) 0%,
        transparent 70%);
    animation: academic-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes academic-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.academic-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.academic-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.05em;
}

.academic-content p {
    color: rgba(255, 247, 224, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.academic-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.academic-features li {
    padding: 8px 0;
    color: #FFA500;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.academic-features li:last-child {
    border-bottom: none;
}

.academic-features li:hover {
    padding-left: 10px;
    color: #FFD700;
}

/* ===== BOTÓN ACADÉMICO ===== */

.academic-btn {
    position: relative;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    border: 3px solid #FFD700;
    color: #FFD700;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                inset 0 0 10px rgba(255, 215, 0, 0.1);
    z-index: 3;
}

.academic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.3);
    transition: left 0.3s ease;
}

.academic-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
        rgba(255, 215, 0, 0.5) 0%,
        transparent 70%);
    opacity: 0;
    animation: none;
    pointer-events: none;
}

.academic-btn:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                0 0 60px rgba(255, 193, 7, 0.4),
                inset 0 0 20px rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.academic-btn:hover::before {
    left: 0;
}

.academic-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                inset 0 0 30px rgba(255, 215, 0, 0.4);
}

/* ===== NOTA DE MONETIZACIÓN ACADÉMICA ===== */

.academic-monetization-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px dashed #FFD700;
    border-radius: 5px;
    text-align: center;
    color: #FFA500;
    font-size: 0.9rem;
    opacity: 0.8;
}

.academic-monetization-note p {
    margin: 5px 0;
}

.sanctuary-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--biblioteca-accent);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
                 0 0 40px rgba(0, 212, 255, 0.3);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.sanctuary-subtitle {
    text-align: center;
    color: var(--biblioteca-primary);
    font-size: 1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ===== CARRUSEL DE VERSOS ===== */

.carousel-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    perspective: 1000px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.verse-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(0, 128, 179, 0.05) 100%);
    border: 2px solid var(--biblioteca-primary);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verse-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.verse-card.exit-left {
    transform: translateX(-100%);
}

.verse-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(0, 212, 255, 0.2) 0%, 
        transparent 70%);
    animation: verse-float 15s ease-in-out infinite;
    pointer-events: none;
}

.verse-glow.spotlight-glow {
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.15) 0%, 
        transparent 70%);
}

@keyframes verse-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.verse-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    text-align: center;
}

.verse-label {
    display: block;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.verse-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--biblioteca-light);
    font-style: italic;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.verse-text.highlight-text {
    color: var(--biblioteca-accent);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.verse-author {
    color: var(--biblioteca-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.verse-topic {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* ===== CONTROLES DEL CARRUSEL ===== */

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--biblioteca-primary);
    color: var(--biblioteca-primary);
    width: 50px;
    height: 50px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--biblioteca-accent);
    color: var(--biblioteca-accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 15px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    border: 2px solid var(--biblioteca-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--biblioteca-primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.dot-highlight {
    background: #ffd700;
    border-color: #ffd700;
}

.dot-highlight.active {
    background: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* ===== ORÁCULO NUMÉRICO - SECCIÓN MÍSTICA ===== */

.oracle-section {
    padding: 80px 20px;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 212, 255, 0.12) 0%, 
        rgba(0, 128, 179, 0.05) 40%,
        transparent 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 10px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.oracle-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10% 20%, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0) 1px),
        radial-gradient(1px 1px at 80% 80%, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0) 1px),
        radial-gradient(2px 2px at 50% 50%, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0) 2px),
        radial-gradient(1px 1px at 20% 70%, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0) 1px),
        radial-gradient(1px 1px at 90% 30%, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0) 1px);
    background-size: 100% 100%;
    animation: oracle-twinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes oracle-twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.oracle-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--biblioteca-accent);
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.7),
                 0 0 50px rgba(255, 215, 0, 0.3);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.oracle-subtitle {
    text-align: center;
    color: var(--biblioteca-primary);
    font-size: 1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.oracle-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.oracle-inner {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    border: 2px solid var(--biblioteca-accent);
    border-radius: 5px;
    padding: 60px 40px;
    overflow: hidden;
}

.star-field {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0) 1px),
        radial-gradient(1px 1px at 85% 75%, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0) 1px),
        radial-gradient(1px 1px at 50% 10%, rgba(0, 255, 255, 0.3), rgba(0, 255, 255, 0) 1px),
        radial-gradient(1px 1px at 30% 60%, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0) 1px),
        radial-gradient(1px 1px at 70% 40%, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0) 1px);
    background-size: 200% 200%;
    animation: stars-shimmer 6s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes stars-shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.oracle-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.oracle-intro {
    color: var(--biblioteca-primary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* ===== BOTÓN ORÁCULO ===== */

.oracle-btn {
    position: relative;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, 
        transparent, 
        rgba(255, 215, 0, 0.15), 
        transparent);
    border: 3px solid #ffd700;
    color: #ffd700;
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                inset 0 0 15px rgba(255, 215, 0, 0.1);
    z-index: 3;
    width: 100%;
}

.oracle-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shimmer-move 3s infinite;
}

@keyframes shimmer-move {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.oracle-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(255, 215, 0, 0.2), 
        rgba(255, 215, 0, 0.1));
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8),
                0 0 80px rgba(255, 215, 0, 0.4),
                inset 0 0 20px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.oracle-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                inset 0 0 30px rgba(255, 215, 0, 0.3);
}

/* ===== RESULTADO DEL ORÁCULO ===== */

.oracle-result {
    margin-top: 50px;
    animation: result-fade-in 0.8s ease-out;
}

@keyframes result-fade-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.number-display {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                 0 0 60px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-family: 'Courier New', monospace;
    animation: number-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes number-pop {
    0% {
        font-size: 2rem;
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        font-size: 4.5rem;
    }
    100% {
        font-size: 4rem;
        opacity: 1;
        transform: scale(1);
    }
}

.oracle-message {
    font-size: 1.2rem;
    color: var(--biblioteca-accent);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    animation: message-slide-up 0.8s ease-out 0.2s both;
}

@keyframes message-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oracle-date {
    color: var(--biblioteca-primary);
    font-size: 0.9rem;
    opacity: 0.8;
    animation: message-slide-up 0.8s ease-out 0.4s both;
}

/* ===== PARTÍCULAS DORADAS (Generado por JS) ===== */

.golden-particle {
    position: fixed;
    pointer-events: none;
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    animation: particle-float 2s ease-out forwards;
}

@keyframes particle-float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {
    .sanctuary-title,
    .oracle-title {
        font-size: 1.8rem;
    }

    .verse-card {
        height: 300px;
    }

    .verse-content {
        padding: 30px;
    }

    .verse-text {
        font-size: 1.1rem;
    }

    .carousel-wrapper {
        height: 300px;
    }

    .oracle-inner {
        padding: 40px 30px;
    }

    .oracle-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .number-display {
        font-size: 3rem;
    }

    .oracle-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sanctuary-title,
    .oracle-title {
        font-size: 1.4rem;
    }

    .verse-card {
        height: 250px;
    }

    .verse-content {
        padding: 20px;
    }

    .verse-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .carousel-wrapper {
        height: 250px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-controls {
        gap: 15px;
        margin-top: 25px;
    }

    .oracle-inner {
        padding: 30px 20px;
    }

    .oracle-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .number-display {
        font-size: 2.5rem;
    }

    .oracle-message {
        font-size: 0.9rem;
    }
}

/* ===== FOOTER ===== */

.subpage-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--biblioteca-primary);
    font-size: 0.9rem;
    margin-top: 60px;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 1024px) {
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subpage-title {
        font-size: 2rem;
    }

    .chamber-title,
    .download-title,
    .stats-title {
        font-size: 1.8rem;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 20px;
    }

    .neon-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .biblioteca-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .subpage-title {
        font-size: 1.5rem;
    }

    .chamber-title,
    .download-title,
    .stats-title {
        font-size: 1.4rem;
    }

    .knowledge-chamber,
    .download-zone,
    .biblioteca-stats,
    .biblioteca-cta {
        padding: 30px 15px;
    }

    .card-header h3,
    .download-content h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===== CÁMARA DE LA LUZ ETERNA - SECCIÓN CELESTIAL ===== */

.eternal-light-chamber {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 50%, #ffffff 100%);
    border: none;
    padding: 80px 40px;
    margin: 80px 0 0 0;
    border-radius: 0;
    animation: fade-light-in 1.2s ease-out;
    text-align: center;
}

@keyframes fade-light-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.eternal-light-chamber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        rgba(255, 215, 0, 0.15) 0%,
        rgba(255, 215, 0, 0.05) 50%,
        transparent 100%);
    pointer-events: none;
    animation: light-glow 4s ease-in-out infinite;
}

@keyframes light-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.light-chamber-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    margin: 30px 0 10px 0;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.light-chamber-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 60px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* ===== TARJETAS DE PROMESAS ===== */

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.promise-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    border: 3px solid #FFD700;
    border-radius: 2px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3),
                inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent);
    animation: card-shimmer 4s infinite;
}

@keyframes card-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5),
                inset 0 0 30px rgba(255, 215, 0, 0.15);
    border-color: #FFF8DC;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.promise-book {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #C9A961;
}

.promise-text {
    color: #1a1a1a;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Georgia', serif;
    margin: 20px 0;
    border-left: 3px solid #FFD700;
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.promise-reflection {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* ===== MENSAJE FINAL ===== */

.light-chamber-message {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 2px solid #FFD700;
    border-radius: 2px;
    padding: 40px;
    margin: 60px auto 50px auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.light-chamber-message p {
    color: #1a1a1a;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* ===== BOTÓN PUENTE DE MANDO ===== */

.bridge-return {
    position: sticky;
    top: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border: 3px solid #FFD700;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 100;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bridge-return:hover {
    background: linear-gradient(135deg, #FFC700 0%, #FFB700 100%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8),
                0 0 60px rgba(255, 215, 0, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.bridge-return:active {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                inset 0 0 15px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVO - CÁMARA CELESTIAL ===== */

@media (max-width: 1024px) {
    .eternal-light-chamber {
        padding: 60px 30px;
    }

    .light-chamber-title {
        font-size: 2.2rem;
    }

    .promises-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .eternal-light-chamber {
        padding: 40px 20px;
        margin: 60px 0 0 0;
    }

    .light-chamber-title {
        font-size: 1.8rem;
    }

    .light-chamber-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .promise-card {
        padding: 25px 20px;
    }

    .promise-text {
        font-size: 1rem;
    }

    .light-chamber-message {
        padding: 25px;
    }

    .light-chamber-message p {
        font-size: 0.95rem;
    }

    .bridge-return {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .eternal-light-chamber {
        padding: 30px 15px;
    }

    .light-chamber-title {
        font-size: 1.4rem;
    }

    .promise-card {
        padding: 20px 15px;
    }

    .promise-icon {
        font-size: 2rem;
    }

    .promise-text {
        font-size: 0.9rem;
        padding-left: 15px;
    }

    .light-chamber-message {
        padding: 20px 15px;
    }

    .light-chamber-message p {
        font-size: 0.85rem;
    }

    .bridge-return {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
}
