@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-white: #ffffff;
    --premium-black: #000000;
    --premium-white: #ffffff;
    --premium-chrome: #c0c0c0;
    --sport-red: #dc2626;
    --sport-dark-blue: #252850;
    --sand: #fbbf24;
    --sea: #06b6d4;
    --form: #f7fcfd;
    --text-dark: #1f2937;
    --text-light: #f9fafb;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding-top: 8vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.bg-premium-silver {
    background-color: var(--premium-chrome);
}
.bg-sport-red {
    background-color: var(--sport-red);
}
.bg-sport-dark-blue {
    background-color: var(--sport-dark-blue);
}
.bg-light-bg {
    background-color: var(--text-light);
}
.bg-sea-bg {
    background-color: var(--sea);
}
.bg-form-bg {
    background-color: var(--form);
}

.text-sport-red {
    color: var(--sport-red);
}
.text-premium-black {
    color: var(--premium-black);
}
.text-sport-dark-blue {
    color: var(--sport-dark-blue);
}

.border-sport-red {
    border-color: var(--sport-red);
}

.btn-gradient-custom {
    background: linear-gradient(135deg, var(--sport-dark-blue), #2d3a5f);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-gradient-custom:hover {
    background: linear-gradient(135deg, #1e1f3a, var(--sport-dark-blue));
}
.btn-gradient-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.btn-gradient-custom:hover::after {
    left: 100%;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}
.font-lexend {
    font-family: 'Lexend', sans-serif;
}

.navbar-custom {
    background: linear-gradient(135deg, var(--sand), var(--sea));
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.navbar-custom .navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    letter-spacing: 0.5px;
}
.navbar-custom .nav-link {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    color: white !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: text-shadow 0.3s ease;
}
.navbar-custom .nav-link:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after {
    width: 100%;
}
.navbar-custom .navbar-nav .nav-item.active > .nav-link {
    color: var(--sport-dark-blue) !important;
    font-weight: 600;
}
.navbar-custom .dropdown-menu {
    background-color: white !important;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.navbar-custom .dropdown-item {
    font-family: 'Lexend', sans-serif;
    color: var(--text-dark);
    transition: background-color 0.2s, color 0.2s;
}
.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus,
.navbar-custom .dropdown-item.active,
.navbar-custom .dropdown-item:active {
    background-color: var(--sport-dark-blue) !important;
    color: white !important;
}
.navbar-custom .btn-link.nav-link {
    background: transparent;
    border: none;
    box-shadow: none;
    color: white !important;
}

.navbar-red-blue {
    background: linear-gradient(135deg, var(--sport-dark-blue), var(--sport-red)) !important;
}

.footer-custom {
    background: linear-gradient(135deg, var(--sand), var(--sea));
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}
.footer-custom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer-custom a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.footer-custom .social-icons i {
    font-size: 1.5rem;
    margin-right: 1rem;
}
.footer-custom .copyright {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2rem;
}
.footer-red-blue {
    background: linear-gradient(135deg, var(--sport-dark-blue), var(--sport-red)) !important;
}

.card-premium {
    background-color: var(--premium-white);
    border: 1px solid var(--premium-chrome);
    color: var(--premium-black);
}
.card-sport {
    background-color: var(--sport-dark-blue);
    border: none;
    color: white;
}
.card-sport .btn {
    background-color: var(--sport-red);
    border-color: var(--sport-red);
}

.is-invalid {
    border-color: #dc2626 !important;
    ring-color: #dc2626 !important;
}
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.shadow-strong {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}
.shadow-strong:hover {
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
}
.shadow-stronger {
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
}

button, a {
    text-decoration: none !important;
}

.auth-minimal {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}
.auth-minimal:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
}
.auth-minimal .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-minimal .form-control:focus {
    border-color: var(--sport-dark-blue);
    box-shadow: 0 0 0 3px rgba(37, 40, 80, 0.1);
    outline: none;
}
.auth-minimal .form-control.is-invalid {
    border-color: var(--sport-red);
}
.auth-minimal .form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.auth-minimal label {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}
.auth-minimal .btn-primary-minimal {
    background-color: var(--sport-dark-blue);
    border: none;
    border-radius: 40px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
    color: white;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px -1px rgba(37, 40, 80, 0.1);
}
.auth-minimal .btn-primary-minimal:hover {
    background-color: #1a1c3b;
    transform: translateY(-1px);
    box-shadow: 0 8px 12px -3px rgba(37, 40, 80, 0.2);
}
.auth-minimal .btn-primary-minimal:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(37, 40, 80, 0.1);
}
.auth-minimal .auth-link {
    color: var(--sport-red);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s;
}
.auth-minimal .auth-link:hover {
    border-bottom-color: var(--sport-red);
}
.auth-minimal.fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}
.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sport-red);
}

.pagination-wrapper {
    background: transparent;
    border: 2px solid var(--sport-dark-blue);
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.pagination-custom {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pagination-custom .page-item {
    margin: 0;
}
.pagination-custom .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--sport-dark-blue);
    color: white;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 1rem;
}
.pagination-custom .page-link:hover {
    background-color: var(--sport-red);
    border-radius: 50%;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.3);
}
.pagination-custom .active .page-link {
    background-color: var(--sport-red);
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.4);
    cursor: default;
    transform: scale(1);
}
.pagination-custom .disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.2);
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 15s infinite linear;
}
.particle-1 { width: 4px; height: 4px; top: 10%; left: 20%; animation-duration: 12s; }
.particle-2 { width: 6px; height: 6px; top: 30%; left: 70%; animation-duration: 18s; }
.particle-3 { width: 3px; height: 3px; top: 50%; left: 10%; animation-duration: 14s; }
.particle-4 { width: 5px; height: 5px; top: 80%; left: 40%; animation-duration: 20s; }
.particle-5 { width: 8px; height: 8px; top: 20%; left: 85%; animation-duration: 11s; }
.particle-6 { width: 4px; height: 4px; top: 60%; left: 55%; animation-duration: 16s; }
.particle-7 { width: 6px; height: 6px; top: 40%; left: 30%; animation-duration: 13s; }
.particle-8 { width: 5px; height: 5px; top: 90%; left: 75%; animation-duration: 22s; }
@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    50% { opacity: 0.8; transform: translateY(-20px) translateX(10px) rotate(180deg); }
    100% { transform: translateY(-40px) translateX(20px) rotate(360deg); opacity: 0; }
}

.auth-double-triangle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    display: flex;
    pointer-events: none;
}
.auth-double-triangle .left {
    flex: 1;
    background: var(--sport-dark-blue);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.auth-double-triangle .right {
    flex: 1;
    background: var(--sport-red);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.site-login, .site-register {
    position: relative;
    z-index: 10;
    background: transparent !important;
}
.site-login .max-w-md, .site-register .max-w-md {
    background: transparent;
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
    margin-right: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-loading { opacity: 0.7; cursor: wait; }

.noUi-target { background: #e5e7eb; border: none; box-shadow: none; }
.noUi-connect { background: #dc2626; }
.noUi-handle { border-radius: 50%; background: white; border: 2px solid #252850; cursor: pointer; }
.noUi-handle:after, .noUi-handle:before { display: none; }

#filters-panel {
    transition: all 0.3s ease;
}
.hidden {
    display: none;
}
@media (max-width: 640px) {
    #list-view .flex {
        flex-direction: column;
    }
    #list-view .sm\:w-48 {
        width: 100%;
        height: 180px;
    }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    30% { transform: scale(1.5); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.heart-animate {
    animation: heartBeat 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

[data-bs-theme="dark"],
html.dark {
    --bg-white: #1e293b;
    --premium-black: #f1f5f9;
    --premium-white: #0f172a;
    --premium-chrome: #475569;
    --sport-red: #ef4444;
    --sport-dark-blue: #3b3f7c;
    --sand: #f59e0b;
    --sea: #0891b2;
    --form: #1e293b;
    --text-dark: #e2e8f0;
    --text-light: #1e293b;
}

html.dark body,
[data-bs-theme="dark"] body {
    background-color: #0f172a;
    color: #e2e8f0;
}

html.dark .bg-white,
[data-bs-theme="dark"] .bg-white,
html.dark .bg-light-bg,
[data-bs-theme="dark"] .bg-light-bg,
html.dark .bg-form-bg,
[data-bs-theme="dark"] .bg-form-bg,
html.dark .bg-gray-50,
[data-bs-theme="dark"] .bg-gray-50,
html.dark .bg-gray-100,
[data-bs-theme="dark"] .bg-gray-100,
html.dark .bg-gray-200,
[data-bs-theme="dark"] .bg-gray-200,
html.dark .auth-minimal,
[data-bs-theme="dark"] .auth-minimal,
html.dark .card-premium,
[data-bs-theme="dark"] .card-premium,
html.dark .bg-white\/50,
[data-bs-theme="dark"] .bg-white\/50,
html.dark .dropdown-menu,
[data-bs-theme="dark"] .dropdown-menu,
html.dark .pagination-wrapper,
[data-bs-theme="dark"] .pagination-wrapper,
html.dark .bg-gradient-to-br.from-white.to-gray-50,
[data-bs-theme="dark"] .bg-gradient-to-br.from-white.to-gray-50,
html.dark .bg-gray-100,
[data-bs-theme="dark"] .bg-gray-100,
html.dark .bg-gray-200,
[data-bs-theme="dark"] .bg-gray-200 {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
    border-color: #334155 !important;
}

html.dark .bg-gradient-to-br.from-white.to-gray-50 {
    background-image: linear-gradient(135deg, #1e293b, #0f172a) !important;
}

html.dark .card-sport,
[data-bs-theme="dark"] .card-sport {
    background-color: #0f172a !important;
}
html.dark .card-premium,
[data-bs-theme="dark"] .card-premium {
    background-color: #1e293b;
    border-color: #334155;
}

/* Текст */
html.dark .text-gray-500,
[data-bs-theme="dark"] .text-gray-500,
html.dark .text-gray-600,
[data-bs-theme="dark"] .text-gray-600,
html.dark .text-gray-700,
[data-bs-theme="dark"] .text-gray-700,
html.dark .text-gray-800,
[data-bs-theme="dark"] .text-gray-800,
html.dark .text-sport-dark-blue,
[data-bs-theme="dark"] .text-sport-dark-blue,
html.dark .text-premium-black,
[data-bs-theme="dark"] .text-premium-black,
html.dark .text-dark,
[data-bs-theme="dark"] .text-dark,
html.dark .text-body,
[data-bs-theme="dark"] .text-body,
html.dark .auth-minimal label,
[data-bs-theme="dark"] .auth-minimal label,
html.dark .font-lexend,
[data-bs-theme="dark"] .font-lexend,
html.dark .auth-minimal .form-control,
[data-bs-theme="dark"] .auth-minimal .form-control {
    color: #e2e8f0 !important;
}

html.dark .text-gray-500,
[data-bs-theme="dark"] .text-gray-500,
html.dark .text-muted,
[data-bs-theme="dark"] .text-muted {
    color: #94a3b8 !important;
}

html.dark .border,
[data-bs-theme="dark"] .border,
html.dark .border-gray-100,
[data-bs-theme="dark"] .border-gray-100,
html.dark .border-gray-200,
[data-bs-theme="dark"] .border-gray-200,
html.dark .border-gray-300,
[data-bs-theme="dark"] .border-gray-300,
html.dark .border-sport-dark-blue\/20,
[data-bs-theme="dark"] .border-sport-dark-blue\/20,
html.dark .border-sport-dark-blue\/30,
[data-bs-theme="dark"] .border-sport-dark-blue\/30,
html.dark .auth-minimal .form-control,
[data-bs-theme="dark"] .auth-minimal .form-control {
    border-color: #334155 !important;
}

/* Тени */
html.dark .shadow-strong,
[data-bs-theme="dark"] .shadow-strong,
html.dark .shadow-stronger,
[data-bs-theme="dark"] .shadow-stronger,
html.dark .shadow-md,
[data-bs-theme="dark"] .shadow-md,
html.dark .shadow-lg,
[data-bs-theme="dark"] .shadow-lg,
html.dark .shadow-xl,
[data-bs-theme="dark"] .shadow-xl {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5) !important;
}

html.dark input:not([type="checkbox"]):not([type="radio"]),
[data-bs-theme="dark"] input:not([type="checkbox"]):not([type="radio"]),
html.dark select,
[data-bs-theme="dark"] select,
html.dark textarea,
[data-bs-theme="dark"] textarea,
html.dark .form-control,
[data-bs-theme="dark"] .form-control {
    background-color: #0f172a !important;
    border-color: #475569 !important;
    color: #e2e8f0 !important;
}
html.dark input:focus,
[data-bs-theme="dark"] input:focus,
html.dark select:focus,
[data-bs-theme="dark"] select:focus,
html.dark textarea:focus,
[data-bs-theme="dark"] textarea:focus {
    border-color: #ef4444 !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

html.dark .btn-gradient-custom,
[data-bs-theme="dark"] .btn-gradient-custom {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
html.dark .btn-gradient-custom:hover,
[data-bs-theme="dark"] .btn-gradient-custom:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}
html.dark .btn-outline-danger,
[data-bs-theme="dark"] .btn-outline-danger {
    border-color: #ef4444;
    color: #ef4444;
}

html.dark .pagination-custom .page-link,
[data-bs-theme="dark"] .pagination-custom .page-link {
    background-color: #2d3748;
    color: #cbd5e1;
    border-color: #475569;
}
html.dark .pagination-custom .page-link:hover,
[data-bs-theme="dark"] .pagination-custom .page-link:hover {
    background-color: #ef4444;
    color: white;
}
html.dark .pagination-custom .active .page-link,
[data-bs-theme="dark"] .pagination-custom .active .page-link {
    background-color: #ef4444;
    color: white;
}
html.dark .pagination-wrapper,
[data-bs-theme="dark"] .pagination-wrapper {
    border-color: #3b3f7c;
}

html.dark .dropdown-item,
[data-bs-theme="dark"] .dropdown-item {
    color: #e2e8f0;
}
html.dark .dropdown-item:hover,
[data-bs-theme="dark"] .dropdown-item:hover,
html.dark .dropdown-item:focus,
[data-bs-theme="dark"] .dropdown-item:focus {
    background-color: #ef4444;
    color: white;
}

html.dark .noUi-target,
[data-bs-theme="dark"] .noUi-target {
    background-color: #334155;
}
html.dark .noUi-connect,
[data-bs-theme="dark"] .noUi-connect {
    background-color: #ef4444;
}
html.dark .noUi-handle,
[data-bs-theme="dark"] .noUi-handle {
    background-color: #e2e8f0;
    border-color: #ef4444;
}

html.dark table,
[data-bs-theme="dark"] table,
html.dark .table,
[data-bs-theme="dark"] .table {
    background-color: #1e293b;
    color: #e2e8f0;
}
html.dark table td,
[data-bs-theme="dark"] table td,
html.dark table th,
[data-bs-theme="dark"] table th,
html.dark .table td,
[data-bs-theme="dark"] .table td,
html.dark .table th,
[data-bs-theme="dark"] .table th {
    border-color: #334155;
}
html.dark .bg-gray-50,
[data-bs-theme="dark"] .bg-gray-50 {
    background-color: #334155 !important;
}

html.dark .fa,
[data-bs-theme="dark"] .fa,
html.dark .fas,
[data-bs-theme="dark"] .fas,
html.dark .far,
[data-bs-theme="dark"] .far {
    color: inherit;
}

html.dark .modal-content,
[data-bs-theme="dark"] .modal-content,
html.dark .fixed .bg-white,
[data-bs-theme="dark"] .fixed .bg-white,
html.dark .bg-white.rounded-2xl,
[data-bs-theme="dark"] .bg-white.rounded-2xl,
html.dark .bg-white.rounded-xl,
[data-bs-theme="dark"] .bg-white.rounded-xl,
html.dark .bg-white.rounded-lg,
[data-bs-theme="dark"] .bg-white.rounded-lg {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}
html.dark .fixed.bg-black\/50,
[data-bs-theme="dark"] .fixed.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

html.dark .navbar-custom,
[data-bs-theme="dark"] .navbar-custom,
html.dark .footer-custom,
[data-bs-theme="dark"] .footer-custom {
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
}

html.dark a:not(.btn):not(.nav-link),
[data-bs-theme="dark"] a:not(.btn):not(.nav-link) {
    color: #ef4444;
}
html.dark a:not(.btn):not(.nav-link):hover,
[data-bs-theme="dark"] a:not(.btn):not(.nav-link):hover {
    color: #f87171;
}

html.dark .bg-sport-red\/10,
[data-bs-theme="dark"] .bg-sport-red\/10,
html.dark .bg-sport-red\/20,
[data-bs-theme="dark"] .bg-sport-red\/20 {
    background-color: rgba(239, 68, 68, 0.15) !important;
}
html.dark .text-sport-red,
[data-bs-theme="dark"] .text-sport-red {
    color: #ef4444 !important;
}
html.dark .border-sport-red,
[data-bs-theme="dark"] .border-sport-red {
    border-color: #ef4444 !important;
}
html.dark .bg-sport-red,
[data-bs-theme="dark"] .bg-sport-red {
    background-color: #ef4444 !important;
}

html.dark .bg-yellow-100,
[data-bs-theme="dark"] .bg-yellow-100 {
    background-color: #713f12 !important;
    color: #fef08a !important;
}
html.dark .bg-green-100,
[data-bs-theme="dark"] .bg-green-100 {
    background-color: #14532d !important;
    color: #bbf7d0 !important;
}
html.dark .bg-red-100,
[data-bs-theme="dark"] .bg-red-100 {
    background-color: #7f1d1d !important;
    color: #fecaca !important;
}
html.dark .bg-gray-100,
[data-bs-theme="dark"] .bg-gray-100 {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
}
html.dark .text-yellow-800,
[data-bs-theme="dark"] .text-yellow-800 {
    color: #fef08a !important;
}
html.dark .text-green-800,
[data-bs-theme="dark"] .text-green-800 {
    color: #bbf7d0 !important;
}
html.dark .text-red-800,
[data-bs-theme="dark"] .text-red-800 {
    color: #fecaca !important;
}
html.dark .text-gray-800,
[data-bs-theme="dark"] .text-gray-800 {
    color: #cbd5e1 !important;
}

html.dark .bg-blue-100,
[data-bs-theme="dark"] .bg-blue-100 {
    background-color: #1e3a8a !important;
    color: #bfdbfe !important;
}
html.dark .border-blue-500,
[data-bs-theme="dark"] .border-blue-500 {
    border-color: #3b82f6 !important;
}
html.dark .text-blue-600,
[data-bs-theme="dark"] .text-blue-600 {
    color: #60a5fa !important;
}

html.dark canvas {
    filter: brightness(0.85) contrast(1.1);
}

html.dark .toast {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
html.dark .toast-success {
    background-color: #14532d !important;
}
html.dark .toast-error {
    background-color: #7f1d1d !important;
}
html.dark .toast-info {
    background-color: #1e3a8a !important;
}
html.dark .toast-warning {
    background-color: #713f12 !important;
}

html.dark .fade-in {
    opacity: 1;
}

html.dark .bg-white,
[data-bs-theme="dark"] .bg-white,
html.dark .bg-white.rounded-2xl,
[data-bs-theme="dark"] .bg-white.rounded-2xl,
html.dark .bg-white.shadow-xl,
[data-bs-theme="dark"] .bg-white.shadow-xl,
html.dark .bg-white.p-6,
[data-bs-theme="dark"] .bg-white.p-6,
html.dark .bg-white.rounded-2xl.shadow-xl,
[data-bs-theme="dark"] .bg-white.rounded-2xl.shadow-xl {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

html.dark .bg-white.rounded-2xl.shadow-lg,
[data-bs-theme="dark"] .bg-white.rounded-2xl.shadow-lg {
    background-color: #1e293b !important;
    border-color: #334155 !important;
}

html.dark .bg-white.rounded-2xl.shadow-lg .text-sport-dark-blue,
[data-bs-theme="dark"] .bg-white.rounded-2xl.shadow-lg .text-sport-dark-blue {
    color: #e2e8f0 !important;
}

html.dark .bg-white.rounded-2xl.shadow-lg .text-gray-600,
[data-bs-theme="dark"] .bg-white.rounded-2xl.shadow-lg .text-gray-600 {
    color: #94a3b8 !important;
}

html.dark .bg-white.p-6.rounded-2xl.shadow-xl,
[data-bs-theme="dark"] .bg-white.p-6.rounded-2xl.shadow-xl {
    background-color: #1e293b !important;
    border-color: #334155 !important;
}

html.dark .border-b.border-gray-100,
[data-bs-theme="dark"] .border-b.border-gray-100 {
    border-bottom-color: #334155 !important;
}

html.dark .py-1\.5.px-3.border.border-sport-red,
[data-bs-theme="dark"] .py-1\.5.px-3.border.border-sport-red {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}
html.dark .py-1\.5.px-3.border.border-sport-red:hover,
[data-bs-theme="dark"] .py-1\.5.px-3.border.border-sport-red:hover {
    background-color: #ef4444 !important;
    color: white !important;
}

html.dark .bg-green-100,
[data-bs-theme="dark"] .bg-green-100 {
    background-color: #14532d !important;
}
html.dark .text-green-800,
[data-bs-theme="dark"] .text-green-800 {
    color: #bbf7d0 !important;
}
html.dark .bg-yellow-100,
[data-bs-theme="dark"] .bg-yellow-100 {
    background-color: #713f12 !important;
}
html.dark .text-yellow-800,
[data-bs-theme="dark"] .text-yellow-800 {
    color: #fef08a !important;
}
html.dark .bg-red-100,
[data-bs-theme="dark"] .bg-red-100 {
    background-color: #7f1d1d !important;
}
html.dark .text-red-800,
[data-bs-theme="dark"] .text-red-800 {
    color: #fecaca !important;
}
html.dark .bg-gray-100,
[data-bs-theme="dark"] .bg-gray-100 {
    background-color: #334155 !important;
}
html.dark .text-gray-800,
[data-bs-theme="dark"] .text-gray-800 {
    color: #cbd5e1 !important;
}

html.dark .bg-gray-100,
[data-bs-theme="dark"] .bg-gray-100 {
    background-color: #0f172a !important;
}

html.dark a.text-sport-red,
[data-bs-theme="dark"] a.text-sport-red {
    color: #ef4444 !important;
}
html.dark a.text-sport-red:hover,
[data-bs-theme="dark"] a.text-sport-red:hover {
    color: #f87171 !important;
}

html.dark .page-link,
[data-bs-theme="dark"] .page-link {
    background-color: #2d3748 !important;
    border-color: #475569 !important;
    color: #cbd5e1 !important;
}
html.dark .page-link:hover,
[data-bs-theme="dark"] .page-link:hover {
    background-color: #ef4444 !important;
    color: white !important;
}
html.dark .pagination-custom .active .page-link,
[data-bs-theme="dark"] .pagination-custom .active .page-link {
    background-color: #ef4444 !important;
    color: white !important;
}

html.dark .navbar-custom,
[data-bs-theme="dark"] .navbar-custom,
html.dark .footer-custom,
[data-bs-theme="dark"] .footer-custom {
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
}

html.dark [class*="bg-white"],
html.dark [class*="bg-gray-"],
html.dark [class*="bg-light-bg"],
html.dark [class*="bg-form-bg"],
[data-bs-theme="dark"] [class*="bg-white"],
[data-bs-theme="dark"] [class*="bg-gray-"],
[data-bs-theme="dark"] [class*="bg-light-bg"],
[data-bs-theme="dark"] [class*="bg-form-bg"] {
    background-color: #1e293b !important;
}

html.dark .bg-white,
html.dark .bg-gray-50,
html.dark .bg-gray-100,
html.dark .bg-gray-200,
html.dark .bg-gray-300,
html.dark .bg-gray-400,
html.dark .bg-gray-500,
html.dark .bg-gray-600,
html.dark .bg-gray-700,
html.dark .bg-gray-800,
html.dark .bg-gray-900,
html.dark .bg-slate-50,
html.dark .bg-slate-100,
html.dark .bg-slate-200,
html.dark .bg-zinc-50,
html.dark .bg-zinc-100,
html.dark .bg-neutral-50,
html.dark .bg-neutral-100,
html.dark .bg-light-bg,
html.dark .bg-form-bg,
html.dark .bg-white\/50,
html.dark .bg-white\/80,
[data-bs-theme="dark"] .bg-white,
[data-bs-theme="dark"] .bg-gray-50,
[data-bs-theme="dark"] .bg-gray-100,
[data-bs-theme="dark"] .bg-gray-200,
[data-bs-theme="dark"] .bg-gray-300,
[data-bs-theme="dark"] .bg-light-bg,
[data-bs-theme="dark"] .bg-form-bg {
    background-color: #1e293b !important;
}

html.dark .bg-sport-red,
[data-bs-theme="dark"] .bg-sport-red,
html.dark .bg-sport-dark-blue,
[data-bs-theme="dark"] .bg-sport-dark-blue,
html.dark .bg-red-500,
[data-bs-theme="dark"] .bg-red-500,
html.dark .bg-blue-500,
[data-bs-theme="dark"] .bg-blue-500,
html.dark .bg-green-500,
[data-bs-theme="dark"] .bg-green-500,
html.dark .bg-yellow-500,
[data-bs-theme="dark"] .bg-yellow-500,
html.dark .btn-gradient-custom,
[data-bs-theme="dark"] .btn-gradient-custom,
html.dark .bg-sport-red\/10,
[data-bs-theme="dark"] .bg-sport-red\/10 {
    background-color: initial !important;
}
html.dark .bg-sport-red\/10 {
    background-color: rgba(239, 68, 68, 0.15) !important;
}

html.dark .bg-red-500 {
    background-color: #ef4444 !important;
}
html.dark .bg-yellow-500 {
    background-color: #eab308 !important;
}
html.dark .bg-green-500 {
    background-color: #22c55e !important;
}
html.dark .bg-gray-200 {
    background-color: #334155 !important;
}
html.dark #pwd-strength-text {
    color: #cbd5e1 !important;
}

