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

/* Base Reset & Typography */
:root {
    --color-bg: #050505;
    --color-card: #0F0F11;
    --color-accent: #6366f1;
}

body {
    background-color: var(--color-bg);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(15, 15, 17, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Gradient Text Animation */
/* Used for the "Human Potential" text to make the gradient flow */
.animate-gradient {
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Advanced Interactive Hover Effects */
.group:hover .glass-panel {
    border-color: rgba(99, 102, 241, 0.3); /* indigo-500/30 */
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

/* Code block styling fix */
pre {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* Utility to hide text selection on interactive elements */
.no-select {
    user-select: none;
    -webkit-user-select: none;
}

/* Focus styles for accessibility with a modern look */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Custom selection color */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}
