/* Smart App Micro-Interactions & Shimmer Skeletons */
.ea-shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: eaShimmer 1.5s infinite;
}

@keyframes eaShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Glassmorphism Balance Pill */
.ea-balance-pill {
    background: rgba(18, 24, 38, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 200, 77, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 200, 77, 0.12) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ea-balance-pill:hover {
    border-color: rgba(255, 200, 77, 0.6) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 200, 77, 0.2) !important;
}

/* Smooth Tap Feedback on Cards & Buttons */
.offer-card, .fc-offer-hcard, .partner-card, .fc-partner-card, .btn-freecash {
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease !important;
    -webkit-tap-highlight-color: transparent;
}

.offer-card:active, .fc-offer-hcard:active, .partner-card:active, .fc-partner-card:active {
    transform: scale(0.97) !important;
}
