    /* ============================================
       CARTUCHO EGIPCIO - FONDO OSCURO
       ============================================ */

.cartucho {
    display: inline;
    font-family: 'Noto Sans Egyptian Hieroglyphs', 'Segoe UI Historic', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    background: linear-gradient(145deg, #d4a86a, #b8894a);
    border: 1px solid #8b6b3c;
    border-radius: 0.8em 0.8em 0.2em 0.2em;
    color: #2c1810;
    padding: 1px 5px 1px 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    line-height: 1.2;
}
/* ============================================
   MALDICIÓN SANGRIENTA - MURO DE PIEDRA
   ============================================ */


/* ============================================
   TEXTO DE PIEDRA SANGRIENTA
   ============================================ */

.texto-piedra-sangre {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    
    /* Color rojo sangre con textura */
    color: #cc1122;
    text-shadow: 
        0 0 10px rgba(200,0,0,0.3),
        0 0 20px rgba(150,0,0,0.2),
        0 4px 8px rgba(0,0,0,0.5);
    
    /* Bordes con textura de sangre seca */
    border-top: 4px solid #8b0000;
    border-bottom: 4px solid #8b0000;
    border-image: linear-gradient(90deg, #8b0000, #cc2233, #8b0000) 1;
    
    /* Fondo con textura de piedra manchada */
    background: 
        /* Manchas de sangre en el fondo */
        radial-gradient(ellipse at 20% 30%, rgba(180,0,0,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(200,0,0,0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(150,0,0,0.08) 0%, transparent 30%),
        /* Base de piedra */
        #ebe2d1;
    
    /* Sombra para dar profundidad */
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 2px 20px rgba(139,0,0,0.2),
        inset 0 -2px 20px rgba(0,0,0,0.2);
    
    /* Aplicamos el filtro de distorsión */
    filter: url(#piedra-rota);
    
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    transition: all 0.3s ease;
    
    /* Textura de sangre adicional en el borde */
    position: relative;
}

/* Gotas de sangre en la parte inferior del texto */
.texto-piedra-sangre::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 20px;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(139,0,0,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 40% 0%, rgba(180,0,0,0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 65% 0%, rgba(139,0,0,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 0%, rgba(200,0,0,0.15) 0%, transparent 40%);
    filter: blur(2px);
    pointer-events: none;
}

/* ============================================
   TEXTO DE LA LEYENDA (sangriento)
   ============================================ */

.leyenda-sangre {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #cc1122;
    font-size: 1.1rem;
    font-style: italic;
    text-shadow: 
        0 0 15px rgba(200,0,0,0.2),
        0 0 30px rgba(150,0,0,0.1),
        0 2px 4px rgba(0,0,0,0.5);
    background: 
        linear-gradient(180deg, 
            rgba(139,0,0,0.1) 0%, 
            transparent 30%, 
            transparent 70%, 
            rgba(139,0,0,0.05) 100%);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    backdrop-filter: blur(2px);
    margin-top: 1rem;
    letter-spacing: 0.05em;
    border-left: 3px solid rgba(139,0,0,0.3);
    border-right: 3px solid rgba(139,0,0,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    
    .texto-piedra-sangre {
        padding: 1.2rem 2rem;
        border-top-width: 3px;
        border-bottom-width: 3px;
        font-size: 0.95rem;
    }
    
    .leyenda-sangre {
        font-size: 1rem;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .muro-maldicion {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
    
    .texto-piedra-sangre {
        padding: 1rem 1.5rem;
        border-top-width: 3px;
        border-bottom-width: 3px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
    }
    
    .texto-piedra-sangre::after {
        height: 15px;
    }
    
    .leyenda-sangre {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .muro-maldicion {
        padding: 1rem 0.8rem;
    }
    
    .texto-piedra-sangre {
        padding: 0.8rem 1rem;
        border-top-width: 2px;
        border-bottom-width: 2px;
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    .texto-piedra-sangre::after {
        height: 10px;
    }
    
    .leyenda-sangre {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        border-left-width: 2px;
        border-right-width: 2px;
    }
}

/* Pantallas grandes */
@media (min-width: 1400px) {
    .muro-maldicion {
        padding: 4rem 3rem;
    }
    
    .texto-piedra-sangre {
        padding: 2rem 4rem;
        border-top-width: 6px;
        border-bottom-width: 6px;
        font-size: 1.3rem;
    }
    
    .leyenda-sangre {
        font-size: 1.3rem;
    }
}

/* ============================================
   ANIMACIÓN DE GOTEO (opcional)
   ============================================ */

@keyframes gotear {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

.texto-piedra-sangre.goteo::after {
    animation: gotear 3s ease-in-out infinite;
}
/* ============================================
   /MALDICIÓN SANGRIENTA - MURO DE PIEDRA
   ============================================ */

dt {font-weight:bold;}
dd {}
