/*!
Theme Name: TechStackFlow
Description: Custom theme with Blue Plasma Infrastructure.
Version: 1.4
*/

/* --- TAILWIND CORE VARIABLES --- */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}

/* --- TSF CUSTOM OVERRIDES (BOTTOM OF FILE FOR PRIORITY) --- */

@keyframes plasma-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.4) !important; border-color: rgba(0, 209, 255, 0.2) !important; }
    70% { box-shadow: 0 0 0 12px rgba(0, 209, 255, 0) !important; border-color: rgba(0, 209, 255, 0.7) !important; }
    100% { box-shadow: 0 0 0 0 rgba(0, 209, 255, 0) !important; border-color: rgba(0, 209, 255, 0.2) !important; }
}

@keyframes blueprint-glow {
    0%, 100% { border-color: rgba(59, 130, 246, 0.3) !important; box-shadow: 0 0 20px rgba(59, 130, 246, 0.1) !important; }
    50% { border-color: rgba(59, 130, 246, 0.8) !important; box-shadow: 0 0 40px rgba(59, 130, 246, 0.3) !important; }
}

.tsf-protocol-badge {
    animation: plasma-pulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1) !important;
}

.tsf-audit-featured {
    animation: blueprint-glow 4s infinite ease-in-out !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.tsf-audit-featured:hover {
    transform: translateY(-8px) scale(1.01) !important;
    border-color: #00D1FF !important;
    box-shadow: 0 0 60px rgba(0, 209, 255, 0.4) !important;
}

/* --- REMAINDER OF UTILITY CLASSES --- */
.bg-slate-900 { background-color: #0f172a; }
.border { border-width: 1px; }
.rounded-full { border-radius: 9999px; }