body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0E0A;
}

.grid-bg {
    background-image:
        linear-gradient(rgba(198, 244, 50, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 244, 50, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.radial-glow {
    background: radial-gradient(ellipse at top, rgba(198, 244, 50, 0.15) 0%, transparent 60%);
}

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

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #C6F432;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(198, 244, 50, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(198, 244, 50, 0);
    }
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 244, 50, 0.4);
}
