@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
    .spotlight {
        position: relative;
    }
    .spotlight::before {
        content: '';
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse at center, rgba(255, 45, 85, 0.18), transparent 70%);
        pointer-events: none;
        z-index: 0;
    }
}