/**
 * Interface Polish CSS
 * Provides visual enhancements and polish for WPA components
 */

/* Interactive Elements Polish */
.wpa-interactive-element {
    transition: all 0.3s ease;
}

.wpa-interactive-element:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Polish */
.wpa-btn-polished {
    position: relative;
    overflow: hidden;
}

.wpa-btn-polished::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wpa-btn-polished:hover::before {
    left: 100%;
}

/* Card Polish */
.wpa-card-polished {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation Polish */
@keyframes wpa-shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.wpa-shimmer-effect {
    animation: wpa-shimmer 1.5s linear infinite;
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200px 100%;
}

/* Polish Utilities */
.wpa-glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wpa-subtle-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wpa-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}