body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050505;
    color: #ffffff;
    scroll-behavior: smooth;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typewriter Cursor */
.cursor {
    display: inline-block;
    width: 3px;
    background-color: #38bdf8;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
    height: 0.8em;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 40px) scale(1.1); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: width .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.experience-card:hover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.05);
}