/* ProjectThinkSpot Master Styles */

/* 1. Base Defaults */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.font-mono {
    font-family: 'Fira Code', monospace;
}

/* 2. UI Components */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. Interactive Project/Game Cards */
.app-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover:not(.disabled) {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #4f46e5;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* 4. Visual Effects & Backgrounds */
.hero-pattern {
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

.hero-pill {
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.code-window {
    background: #0f172a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* 5. Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Standard float used on Home and Math */
.animate-float {
    animation: float 8s ease-in-out infinite;
}

/* Delayed float for background blobs */
.animate-float-delayed {
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}
