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

body {
    font-family: 'Inter', sans-serif;
}

/* Special transparent effect classes */
.bg-undefined-500 {
    background-color: transparent;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
}

.text-undefined-500 {
    color: transparent;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.border-undefined-500 {
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

/* Animation for undefined elements */
@keyframes undefinedPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
}

.animate-undefined {
    animation: undefinedPulse 3s ease-in-out infinite;
}