/* Verification page styles */

.flame-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #ec4899 100%);
}

.flame-text {
    background: linear-gradient(to right, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.flame-flicker {
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.verification-loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

    50% {
        opacity: .5;
    }
}

.security-badge {
    position: relative;
    overflow: hidden;
}

.security-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.test-result-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.test-result-card.pass {
    border-left-color: #10b981;
}

.test-result-card.fail {
    border-left-color: #ef4444;
}

.test-result-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pdf-link {
    transition: all 0.3s ease;
}

.pdf-link:hover {
    background-color: #f3f4f6;
    transform: translateX(4px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* QR Scanner modal styles */
.qr-scanner-video {
    height: 400px;
}

.qr-scanner-frame {
    width: 250px;
    height: 250px;
}

/* Additional utility classes to replace inline styles */
.h-400px {
    height: 400px;
}

.w-250px {
    width: 250px;
}

.h-250px {
    height: 250px;
}
