body {
    background-color: #1c2534;
    color: #F8FAFC;
    font-family: 'Montserrat', system-ui, sans-serif;
}

/* Header styles */
.header-card {
    background: linear-gradient(180deg, #162030 0%, #1c2534 100%);
    border: 1px solid rgba(40, 119, 250, 0.2);
}

.header-blur {
    backdrop-filter: blur(10px);
    background: rgba(19, 25, 32, 0.95) !important;
}

/* Section cards */
.section-card {
    background: #162030;
    border: 1px solid rgba(40, 119, 250, 0.15);
}

.info-tag {
    background: rgba(40, 119, 250, 0.1);
    border: 1px solid rgba(40, 119, 250, 0.3);
}

/* Hero section */
.hero-bg {
    background: linear-gradient(180deg, #1c2534 0%, #162030 50%, #1c2534 100%);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-slider::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(80% 60% at 70% 30%, rgba(40, 119, 250, 0.15) 0%, transparent 60%), linear-gradient(180deg, rgba(10, 14, 20, 0.7) 0%, rgba(10, 14, 20, 0.85) 100%);
    }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    filter: brightness(0.5) contrast(1.1) saturate(0.9);
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

/* Card hover effects */
.card-hover {
    background: #162030;
    border: 1px solid rgba(40, 119, 250, 0.15);
    transition: all 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(40, 119, 250, 0.15);
        border-color: rgba(40, 119, 250, 0.4);
    }

/* Action buttons */
.action-btn {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(40, 119, 250, 0.2);
    transition: all 0.2s ease;
}

    .action-btn:hover {
        background: rgba(40, 119, 250, 0.2);
        border-color: #2877fa;
    }

/* Filter buttons */
.filter-btn {
    background: #1c2534;
    border: 1px solid rgba(40, 119, 250, 0.2);
    transition: all 0.2s ease;
}

    .filter-btn:hover {
        background: rgba(40, 119, 250, 0.1);
    }

    .filter-btn.active {
        background: #2877fa;
        border-color: #2877fa;
    }

/* Partner logos */
.partner-logo {
    background: #1c2534;
    border: 1px solid rgba(40, 119, 250, 0.15);
    transition: all 0.3s ease;
}

    .partner-logo:hover {
        border-color: rgba(40, 119, 250, 0.4);
        transform: scale(1.05);
    }

    .partner-logo img {
        filter: grayscale(100%) brightness(0.8);
        transition: all 0.3s ease;
    }

    .partner-logo:hover img {
        filter: grayscale(0%) brightness(1);
    }

/* Glow effect */
.glow-effect {
    box-shadow: 0 0 30px rgba(40, 119, 250, 0.3);
}

/* Step number */
.step-number {
    background: linear-gradient(135deg, #2877fa 0%, #1a5fd4 100%);
    box-shadow: 0 4px 15px rgba(40, 119, 250, 0.4);
}

/* Sport card icon */
.sport-icon-bg {
    background: linear-gradient(135deg, #2877fa 0%, #1a5fd4 100%);
}

/* Testimonial card */
.testimonial-card {
    background: #162030;
    border: 1px solid rgba(40, 119, 250, 0.15);
}

/* Club card */
.club-card {
    background: #162030;
    border: 1px solid rgba(40, 119, 250, 0.15);
    transition: all 0.3s ease;
}

    .club-card:hover {
        border-color: rgba(40, 119, 250, 0.4);
        transform: translateY(-4px);
    }

/* Academy card */
.academy-card {
    background: #162030;
    border: 1px solid rgba(40, 119, 250, 0.15);
    transition: all 0.3s ease;
}

    .academy-card:hover {
        border-color: rgba(40, 119, 250, 0.4);
        transform: translateY(-4px);
    }

/* Footer */
.footer-section {
    background: #162030;
    border-top: 1px solid rgba(40, 119, 250, 0.15);
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: #2877fa;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.text-success {
    color: #7faa3a;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

@media (prefers-reduced-motion: reduce) {

    .particle,
    .card-hover,
    .partner-logo {
        animation: none;
        transition: none;
    }
}

/* Custom Dropdown Styles */
.custom-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown .dropdown-trigger.open i:last-child {
    transform: rotate(180deg);
}

.custom-dropdown .dropdown-trigger:hover {
    border-color: rgba(40, 119, 250, 0.4);
}

.custom-dropdown .dropdown-item {
    border-bottom: 1px solid rgba(40, 119, 250, 0.1);
}

    .custom-dropdown .dropdown-item:last-child {
        border-bottom: none;
    }

    .custom-dropdown .dropdown-item:hover i {
        color: #2877fa;
    }

    .custom-dropdown .dropdown-item.selected {
        background: rgba(40, 119, 250, 0.1);
    }

        .custom-dropdown .dropdown-item.selected span {
            color: #2877fa;
        }

.lang-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(40, 119, 250, 0.12);
    color: #E2E8F0;
    border: 1px solid rgba(40, 119, 250, 0.3);
}

/* Header Language Dropdown Specific Styles */
#header-language-dropdown .dropdown-trigger {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(10px);
}

    #header-language-dropdown .dropdown-trigger:hover {
        background: rgba(26, 35, 50, 0.95);
        border-color: rgba(40, 119, 250, 0.5);
    }

#header-language-dropdown .dropdown-menu {
    backdrop-filter: blur(10px);
}

#header-language-dropdown .lang-code {
    font-size: 0.875rem;
    padding: 6px 10px;
    min-width: 40px;
}

/* Mobile Language Dropdown Fix */
#mobile-language-dropdown .dropdown-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    margin-top: 0.5rem;
    box-shadow: none !important;
}

    #mobile-language-dropdown .dropdown-menu.show {
        display: block;
        animation: fadeIn 0.2s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
