/*
Theme Name: FiterFast AI Theme
Theme URI: https://fiterfastai.com
Author: FiterFast Team
Author URI: https://fiterfastai.com
Description: Premium AI-powered platform theme to filter images, enhance photos, and optimize text content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fiterfast-ai
Tags: ai, saas, dark, modern, clean, responsive, blog
*/

/* 
  Tailwind CSS is loaded via CDN in header.php for this version.
  Custom styles below.
*/

:root {
    --background: #0B0F19;
    --primary: #6C63FF;
    --secondary: #00D4FF;
    --accent: #1E293B;
    --muted: #AAB0C0;
}

body {
    background-color: var(--background);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-primary {
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* AI Orb Animation */
.ai-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--primary), var(--secondary));
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite alternate;
    position: relative;
}

.ai-orb::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 50% 50%, white, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes glow {
    0% { filter: blur(40px) brightness(1); }
    100% { filter: blur(60px) brightness(1.5); box-shadow: 0 0 80px var(--primary); }
}

/* Tool Card Hover */
.tool-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 99, 255, 0.2);
}

/* Processing Animation */
.processing-bar {
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Typography Improvements */
.prose {
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.prose h2, .prose h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: white;
}

.prose p {
    margin-bottom: 1.5rem;
}
