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

:root {
    --primary: #4169E1;   /* Royal Blue */
    --accent: #A020F0;    /* Neon Purple */
    --dark: #0a0a0a;      /* Graphite Black */
    --surface: #121212;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* --- Utilities --- */

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-neon-gradient {
    background: radial-gradient(circle at center, rgba(65, 105, 225, 0.15) 0%, rgba(10, 10, 10, 1) 70%);
}

/* Glassmorphism */
.glass-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 0 25px rgba(65, 105, 225, 0.15);
}

/* Neon Glows */
.glow-text {
    text-shadow: 0 0 20px rgba(65, 105, 225, 0.5);
}

.glow-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.4);
    transform: translateY(-2px);
}

.glow-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Scroll Elements --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Cursor if needed later, but sticking to basics for now */
