.offer-card {
    backdrop-filter: blur(10px);
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
}

.claim-btn:active {
    transform: translateY(0);
}

.code-container {
    transition: all 0.3s ease;
}

.offer-card:hover .code-container {
    border-color: rgba(42, 42, 42, 0.4);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.discount-badge {
    transition: all 0.3s ease;
}

.offer-card:hover .discount-badge {
    transform: rotate(5deg) scale(1.05);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.offers-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}