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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar (Green/Dark Theme) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #020617; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #10b981; }

/* Glass Card Effect (Frosted Glass) */
.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover Lift Animation */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

/* --- ANIMATIONS --- */

/* 1. Breathing Background Glow */
@keyframes breathe {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.25; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
}
.blob-animation {
    animation: breathe 8s infinite ease-in-out;
}

/* 2. Scroll Reveal (Slide Up) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* 3. Typing Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: #10b981;
}

@keyframes blink {
    50% { opacity: 0; }
}