/* TailwindCSS CDN replaces this */
/* Shared styles can go here if needed */

/* Custom animations */
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce-delay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Utility classes */
.gradient-text {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-red {
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.15);
}

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

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.format-card {
    position: relative;
    overflow: hidden;
}

.format-card:hover img {
    transform: scale(1.05);
}

.animate-pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid #22c55e;
    animation: pulse-ring 1.5s ease-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-bounce-delay span:nth-child(1) { animation-delay: 0s; }
.animate-bounce-delay span:nth-child(2) { animation-delay: 0.1s; }
.animate-bounce-delay span:nth-child(3) { animation-delay: 0.2s; }
