/* WYŁĄCZENIE WSZYSTKICH EFEKTÓW ŚWIECENIA W CAŁYM PROJEKCIE */
/* Ten plik musi być ładowany jako ostatni */

/* Globalne wyłączenie dla wszystkich elementów */
* {
    text-shadow: none !important;
}

/* Specyficzne selektory dla pewności */
html, body,
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, label,
.section-title, .page-title, .card-title,
.nav-link, .nav-brand, .nav-brand-text,
.position-title, .news-title, .article-title,
.footer-logo span, .logo span,
.match-title, .player-name, .team-name,
.stat-value, .score, .date-display {
    text-shadow: none !important;
}

/* Wyłączenie dla wszystkich pseudo-elementów */
*::before, *::after {
    text-shadow: none !important;
}

/* Wyłączenie dla stanów hover, focus, active */
*:hover, *:focus, *:active {
    text-shadow: none !important;
}
