.content-auto {
    content-visibility: auto;
}
.glow-effect {
    box-shadow: 0 0 15px rgba(14, 109, 182, 0.5);
}
.category2-item {
    position: relative;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
}
.category2-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}
.category2-item::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F19601, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category2-item:hover::after {
    width: 100%;
    left: 0;
}
.category2-item:hover::before {
    opacity: 1;
}
.category2-item.active {
    color: #F19601;
    font-weight: 700;
}
.category2-item.active::after {
    width: 100%;
    left: 0;
    background-color: #F19601;
}
.category2-item.active::before {
    opacity: 1;
}
.card2-hover {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.card2-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(14, 109, 182, 0.5);
}
.card-expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 40;
    max-width: 80vw;
    max-height: 80vh;
    width: 400px;
    box-shadow: 0 0 30px rgba(241, 150, 1, 0.6);
    background: linear-gradient(135deg, rgba(14, 109, 182, 0.9), rgba(14, 109, 182, 0.7));
    filter: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.image-display-area {
    transition: filter 0.3s ease;
    position: relative;
}
.image-display-area.blur {
    filter: blur(5px);
}
