/* Global Styles & Custom Utilities */
:root {
    --glow-primary: 0 0 20px rgba(6, 182, 212, 0.15);
    --glow-secondary: 0 0 20px rgba(99, 102, 241, 0.15);
}

body {
    background-color: #0a0a0f;
    color: #cbd5e1;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Typography Enhancements */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Utility Classes */
.glass-panel {
    background: rgba(30, 30, 46, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, #22d3ee 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Terminal Effect */
.terminal-text::before {
    content: '> ';
    color: #22d3ee;
}

/* Link Hover Effects */
.hover-underline {
    position: relative;
}
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #22d3ee;
    transition: width 0.3s ease;
}
.hover-underline:hover::after {
    width: 100%;
}