body {
    font-family: 'Geist', sans-serif;
    background-color: #121315;
    color: #e3e2e4;
}
.glass-card {
    background: rgba(27, 28, 30, 0.4);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    border-color: #d2f036;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(223, 253, 67, 0.15);
}
.neon-glow:hover {
    text-shadow: 0 0 8px rgba(223, 253, 67, 0.6);
}
.inner-glow {
    position: relative;
}
.inner-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.05);
}
.hero-gradient {
    background: linear-gradient(to bottom, rgba(18, 19, 21, 0) 0%, rgba(18, 19, 21, 1) 100%);
}
