<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* URSKEEN - AI Facial Analysis Assistant - CSS Filters */

/* Container styling for filter images */
.filter-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.filter-image-container:hover {
    transform: scale(1.02);
}

/* Filter image styling */
.filter-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Filter overlay effects */
.filter-image-container.css-filter-applied::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* UV View specific overlay */
.filter-image-container.css-filter-applied:nth-child(1)::before {
    background: radial-gradient(circle at center, rgba(0, 100, 255, 0.4), rgba(100, 180, 255, 0.2) 70%);
    mix-blend-mode: screen;
    box-shadow: inset 0 0 20px rgba(0, 100, 255, 0.5);
}

/* Thermal Map specific overlay */
.filter-image-container.css-filter-applied:nth-child(2)::before {
    background: linear-gradient(45deg, rgba(255, 50, 0, 0.4), rgba(255, 200, 0, 0.3), rgba(0, 50, 255, 0.3));
    mix-blend-mode: overlay;
    box-shadow: inset 0 0 15px rgba(255, 100, 0, 0.6);
}

/* Pore Highlight specific overlay */
.filter-image-container.css-filter-applied:nth-child(3)::before {
    background: radial-gradient(circle at center, transparent, rgba(0, 255, 255, 0.4) 80%);
    mix-blend-mode: hard-light;
    box-shadow: inset 0 0 15px rgba(0, 200, 200, 0.5);
}

/* Pore Highlight zoom effect on hover */
.filter-image-container:nth-child(3):hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Filter labels */
.filter-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    font-size: 14px;
    text-align: center;
    z-index: 2;
}

/* Highlight spots for different skin issues */
.uv-damage-spot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    pointer-events: none;
    z-index: 2;
    animation: pulse 2s infinite;
}

.pore-spot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
    pointer-events: none;
    z-index: 2;
    animation: pulse 1.5s infinite;
}

.hydration-spot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(0, 0, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 0, 255, 0.7);
    pointer-events: none;
    z-index: 2;
    animation: pulse 2.5s infinite;
}

/* Pulse animation for spots */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .filter-image-container {
        margin-bottom: 15px;
    }
    
    .filter-label {
        font-size: 12px;
        padding: 5px;
    }
}</pre></body></html>