@layer utilities {
    .text-shadow-neon-purple {
        text-shadow: 0 0 5px #bc13fe, 0 0 15px #bc13fe;
    }

    .text-shadow-neon-cyan {
        text-shadow: 0 0 5px #0ff0fc, 0 0 15px #0ff0fc;
    }
}

body {
    background-color: #050505;
    background-image: radial-gradient(circle at center, #111 0%, #000 100%);
}

.grid-bg {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(15, 240, 252, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 240, 252, 0.05) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 80%, transparent);
}

.neon-border-pulse {
    animation: pulse-border 2s infinite alternate;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 5px #0ff0fc, 0 0 15px #0ff0fc;
    }

    100% {
        box-shadow: 0 0 15px #0ff0fc, 0 0 30px #0ff0fc, 0 0 45px #0ff0fc;
    }
}

/* ===== נגישות – Focus Indicator (תקן 5568 AA) ===== */
*:focus-visible {
    outline: 3px solid #F600A7;
    outline-offset: 3px;
    border-radius: 4px;
}

/* עצירת אנימציות עבור משתמשים שמגדירים כך בהגדרות המערכת */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== ניאון גולף - תיקוני שכבות (Mobile Footer Padding) ===== */
.pb-28 {
    padding-bottom: 7rem !important;
}

.pb-32 {
    padding-bottom: 8rem !important;
}

@media (min-width: 1024px) {
    .lg\:pb-6 {
        padding-bottom: 1.5rem !important;
    }

    .lg\:py-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}