/* Reward Buddy Premium Design System - Custom Extended Styles */
/* Brand: WEBNOVA TECH */

:root {
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(251, 244, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-white {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Buttons (Standard CSS fallback or custom components) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(135deg, #5543cf, #9e93ff);
    color: #f5f0ff;
    box-shadow: 0 10px 15px -3px rgba(85, 67, 207, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(85, 67, 207, 0.1);
}

.btn-secondary {
    background: #f6edff;
    color: #34284f;
}

.btn-secondary:hover {
    background: #efe3ff;
}

/* Card Style */
.card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 24px 48px -12px rgba(52, 40, 79, 0.05);
    border: 1px solid rgba(239, 227, 255, 0.5);
}

/* Custom Scrollbar */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Micro-animations */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Fill Icon Utility */
.fill-1 {
    font-variation-settings: 'FILL' 1;
}

/* QR Scanner Animation */
@keyframes scan-move {
    0% { top: 0%; opacity: 0.8; }
    50% { top: 100%; opacity: 1; }
    100% { top: 0%; opacity: 0.8; }
}

.animate-scan {
    animation: scan-move 3s infinite linear;
}
