@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;900&family=JetBrains+Mono:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Effects */
.glow-text-accent {
    text-shadow: 0 0 20px rgba(48, 213, 200, 0.5);
}

.glow-text-warning {
    text-shadow: 0 0 30px rgba(255, 77, 77, 0.6);
}

.glow-text-secondary {
    text-shadow: 0 0 30px rgba(194, 178, 128, 0.4);
}

/* Crisis Mode Transitions */
.crisis-mode-active .crisis-text {
    color: #FF4D4D !important;
}
.crisis-mode-active .crisis-bg {
    background-color: #FF4D4D !important;
}
.crisis-mode-active .crisis-border {
    border-color: rgba(255, 77, 77, 0.3) !important;
}
.crisis-mode-active .crisis-glow-text {
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.5) !important;
}
.crisis-mode-active .crisis-bg-10 {
    background-color: rgba(255, 77, 77, 0.1) !important;
}
.crisis-mode-active .crisis-btn {
    background-color: rgba(255, 77, 77, 0.1) !important;
    border-color: #FF4D4D !important;
    color: #FF4D4D !important;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.5) !important;
}
.crisis-mode-active .crisis-hover-border:hover {
    border-color: rgba(255, 77, 77, 0.8) !important;
}
.crisis-mode-active .group:hover .crisis-hover-bg {
    background-color: rgba(255, 77, 77, 0.1) !important;
}
.crisis-mode-active .crisis-drop-shadow {
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.8)) !important;
}

/* Pulse Animation for Crisis Icon */
@keyframes pulse-fast {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-pulse-fast {
    animation: pulse-fast 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hide scrollbar globally for a cleaner app-like feel */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
