﻿
                /* =========================================
           PREMIUM WORLD GYMNASTICS NAVBAR CSS
           Ultra Modern Professional UI
        ========================================= */
        :root {
            /* COLORS */
            --dark: #21192d;
            --dark2: #2c213a;
            --lime: #d8f23f;
            --white: #ffffff;
            --gray: #858585;
            --primary: #0f172a;
            --secondary: #1e293b;
            --light: #ffffff;
            --muted: #94a3b8;
            --gradient: linear-gradient( 135deg, #00c6ff 0%, #00d084 50%, #8bc34a 100% );
            /* EFFECTS */
            --shadow-sm: 0 4px 12px rgba(15,23,42,.06);
            --shadow-md: 0 12px 30px rgba(15,23,42,.08);
            --shadow-lg: 0 18px 50px rgba(15,23,42,.12);
            --glass: rgba(255,255,255,0.72);
            --blur: blur(18px);
            --radius-sm: 14px;
            --radius-md: 22px;
            --radius-lg: 32px;
            --transition: cubic-bezier(.4,0,.2,1);
        }
        /* =========================================
           GLOBAL
        ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins',sans-serif;
            background: radial-gradient(circle at top left,#f8fafc,#eef2ff);
            overflow-x: hidden;
            color: var(--primary);
        }
        /* =========================================
           TOP HEADER
        ========================================= */
        .topbar {
            position: relative;
            background: rgba(255,255,255,.75);
            backdrop-filter: var(--blur);
            -webkit-backdrop-filter: var(--blur);
            border-bottom: 1px solid rgba(255,255,255,.25);
            padding: 14px 0;
            z-index: 1000;
        }
        .topbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: nowrap;
        }
        .topbar::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( 90deg, rgba(255,255,255,.05), rgba(255,255,255,.3), rgba(255,255,255,.05) );
            pointer-events: none;
        }
        /* =========================================
           TOP HEADER LINKS
        ========================================= */
        .top-links {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: nowrap wrap;
            overflow-x: auto;
            scrollbar-width: none;
        }
            .top-links a {
                position: relative;
                display: flex;
                align-items: center;
                gap: 10px;
                text-decoration: none;
                color: #475569;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: .5px;
                padding: 12px 18px;
                border-radius: 50px;
                overflow: hidden;
                background: rgba(255,255,255,.35);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255,255,255,.25);
                transition: .4s cubic-bezier(.4,0,.2,1);
            }

                /* Glass Hover Layer */

                .top-links a::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background: linear-gradient( 135deg, rgba(0,198,255,.12), rgba(0,208,132,.18) );
                    opacity: 0;
                    transition: .4s ease;
                }
                /* Animated Border */
                .top-links a::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    bottom: 0;
                    transform: translateX(-50%);
                    width: 0%;
                    height: 3px;
                    border-radius: 50px;
                    background: linear-gradient( to right, #00c6ff, #00d084 );
                    transition: .4s ease;
                }
                .top-links a i {
                    position: relative;
                    z-index: 2;
                    font-size: 15px;
                    transition: .4s ease;
                }

                .top-links a span,
                .top-links a {
                    position: relative;
                    z-index: 2;
                }

                    /* Hover Effects */

                    .top-links a:hover {
                        color: #00b894;
                        transform: translateY(-4px);
                        box-shadow: 0 12px 30px rgba(0,208,132,.14);
                    }

                        .top-links a:hover::before {
                            opacity: 1;
                        }

                        .top-links a:hover::after {
                            width: 75%;
                        }

                        .top-links a:hover i {
                            transform: rotate(-8deg) scale(1.15);
                            color: #00b894;
                        }

                    /* Active Link */

                    .top-links a.active {
                        background: rgba(0,208,132,.08);
                        color: #00b894;
                        box-shadow: 0 10px 25px rgba(0,208,132,.12);
                    }

        /* Mobile */

        @media(max-width:1200px) {

            .top-links {
                gap: 8px;
            }

                .top-links a {
                    padding: 10px 14px;
                    font-size: 12px;
                }
        }

        @media(max-width:991px) {

            .top-links {
                display: none !important;
            }
        }
        /* =========================================
           SOCIAL ICONS
        ========================================= */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 16px;
        }
            .social-icons a {
                position: relative;
                width: 46px;
                height: 46px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                text-decoration: none;
                color: var(--secondary);
                background: rgba(255,255,255,.7);
                backdrop-filter: blur(12px);
                border: 1px solid rgba(255,255,255,.3);
                box-shadow: 0 8px 22px rgba(0,0,0,.06);
                overflow: hidden;
                transition: .45s var(--transition);
            }
                .social-icons a::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background: var(--gradient);
                    opacity: 0;
                    transition: .45s var(--transition);
                }
                .social-icons a i {
                    position: relative;
                    z-index: 2;
                    font-size: 17px;
                    transition: .4s var(--transition);
                }
                .social-icons a:hover {
                    transform: translateY(-8px) scale(1.08);
                    box-shadow: 0 18px 35px rgba(0,208,132,.25);
                }
                    .social-icons a:hover::before {
                        opacity: 1;
                    }
                    .social-icons a:hover i {
                        color: white;
                        transform: rotate(8deg);
                    }
        /* =========================================
           MAIN NAVBAR
        ========================================= */

        .main-navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(255,255,255,.82);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255,255,255,.25);
            box-shadow: 0 12px 45px rgba(15,23,42,.06);
        }
        /* =========================================
           NAV CONTAINER
        ========================================= */
        .nav-wrapper {
            min-height: 110px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        /* =========================================
           LOGO
        ========================================= */
        .logo-area {
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
        }
        .logo-circle {
            position: relative;
            width: 78px;
            height: 78px;
            border-radius: 50%;
            background: conic-gradient( from 180deg, #00c6ff, #00d084, #8bc34a, #7c3aed, #00c6ff );
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 30px rgba(0,208,132,.25);
        }
            .logo-circle::before {
                content: "";
                position: absolute;
                inset: 5px;
                border-radius: 50%;
                background: white;
            }
            .logo-circle span {
                position: relative;
                z-index: 2;
                font-size: 28px;
                font-weight: 700;
                background: var(--gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        .logo-text h2 {
            margin: 0;
            font-size: 34px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary);
        }
        .logo-text p {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 600;
        }
        /* =========================================
           NAV LINKS
        ========================================= */
        .navbar-nav {
            gap: 8px;
        }
        /* EVENT WIDGET */
        .event-widget {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 20px;
            border-radius: 20px;
            background: linear-gradient( 135deg, rgba(0,198,255,.08), rgba(0,208,132,.08) );
        }
        .event-date {
            width: 80px;
            height: 80px;
            border-radius: 22px;
            background: linear-gradient( 135deg, #00c6ff, #00d084 );
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 12px 30px rgba(0,208,132,.25);
        }
            .event-date span {
                font-size: 28px;
                line-height: 1;
            }
        .event-info h4 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 6px;
            color: #0f172a;
        }
        .event-info p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
        }
        .navbar-nav .nav-link {
            position: relative;
            padding: 14px 20px !important;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: .4px;
            color: var(--secondary);
            border-radius: 16px;
            overflow: hidden;
            transition: .4s var(--transition);
        }
        /* =====================================================
   RELATED EVENTS SECTION
===================================================== */
        .related-events-section {
            background: #f8fafc;
        }
        .related-events-card {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 12px 40px rgba(15,23,42,.06);
            overflow: hidden;
        }
        /* HEADER */

        .events-header {
            margin-bottom: 28px;
        }
            .events-header h2 {
                font-size: 38px;
                font-weight: 800;
                color: #0f172a;
                margin: 0;
            }
        /* TABLE */
        .events-table {
            margin: 0;
            border-collapse: separate;
            border-spacing: 0 14px;
        }
            .events-table thead th {
                border: none;
                color: #64748b;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 1px;
                padding: 0 18px 12px;
                background: transparent;
            }
            .events-table tbody tr {
                background: #ffffff;
                border-radius: 18px;
                transition: .35s ease;
                box-shadow: 0 6px 18px rgba(15,23,42,.04);
            }
                .events-table tbody tr:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 14px 35px rgba(0,208,132,.10);
                }
            .events-table tbody td {
                padding: 22px 18px;
                border: none;
                font-size: 15px;
                color: #334155;
                font-weight: 500;
                vertical-align: middle;
            }
                /* TITLE COLUMN */
                .events-table tbody td:nth-child(2) {
                    font-weight: 700;
                    color: #0f172a;
                }
        /* SEARCH BUTTON */
        .event-search {
            width: 70px;
            text-align: center;
        }
            .event-search a {
                width: 42px;
                height: 42px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                background: rgba(0,198,255,.08);
                color: #00b894;
                transition: .35s ease;
            }
                .event-search a:hover {
                    background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    color: white;
                    transform: scale(1.08);
                }
        /* RESPONSIVE */
        @media(max-width:991px) {
            .related-events-card {
                padding: 28px;
            }
            .events-header h2 {
                font-size: 30px;
            }
            .events-table tbody td {
                min-width: 180px;
            }
        }
        @media(max-width:768px) {
            .events-header h2 {
                font-size: 24px;
            }
            .events-table tbody td {
                font-size: 14px;
            }
        }
        /* Hover Glass Effect */
        .navbar-nav .nav-link::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,.45);
            opacity: 0;
            transition: .4s var(--transition);
        }
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 7px;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            border-radius: 20px;
            background: var(--gradient);
            transition: .4s var(--transition);
        }
        /* Hover */
        .navbar-nav .nav-link:hover {
            color: #00b894;
            transform: translateY(-3px);
        }
            .navbar-nav .nav-link:hover::before {
                opacity: 1;
            }
            .navbar-nav .nav-link:hover::after {
                width: 70%;
            }
        /* Active Link */

        .navbar-nav .nav-link.active {
            background: rgba(0,208,132,.08);
            color: #00b894;
        }

        /* =========================================
           DROPDOWN
        ========================================= */

        .dropdown-menu {
            border: none;
            border-radius: 24px;
            padding: 16px;
            min-width: 250px;
            background: rgba(255,255,255,.85);
            backdrop-filter: blur(25px);
            box-shadow: 0 25px 60px rgba(15,23,42,.12);
            animation: dropdownFade .35s ease;
        }

        .dropdown-item {
            padding: 14px 18px;
            border-radius: 14px;
            font-weight: 500;
            transition: .35s var(--transition);
        }

            .dropdown-item:hover {
                background: var(--gradient);
                color: white;
                transform: translateX(8px);
            }

        /* =========================================
           RIGHT BUTTONS
        ========================================= */

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        /* Search */

        .search-btn {
            width: 52px;
            height: 52px;
            border: none;
            border-radius: 50%;
            background: rgba(255,255,255,.8);
            backdrop-filter: blur(10px);
            color: var(--secondary);
            box-shadow: 0 10px 25px rgba(15,23,42,.08);
            transition: .4s var(--transition);
        }

            .search-btn:hover {
                background: var(--gradient);
                color: white;
                transform: rotate(10deg) scale(1.08);
            }

        /* AI Button */

        .ai-btn {
            position: relative;
            border: none;
            padding: 15px 28px;
            border-radius: 60px;
            font-weight: 600;
            color: white;
            background: var(--gradient);
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,208,132,.25);
            transition: .45s var(--transition);
        }

            .ai-btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: -120%;
                width: 100%;
                height: 100%;
                background: linear-gradient( 120deg, transparent, rgba(255,255,255,.45), transparent );
                transition: .8s;
            }

            .ai-btn:hover {
                transform: translateY(-5px);
                box-shadow: 0 22px 45px rgba(0,208,132,.35);
            }

                .ai-btn:hover::before {
                    left: 120%;
                }

        /* =========================================
           MOBILE
        ========================================= */

        /* Auth Buttons */

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-login {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 11px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: rgba(255,255,255,.8);
            backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255,255,255,.4);
            box-shadow: 0 8px 22px rgba(15,23,42,.08);
            transition: .4s var(--transition);
        }

            .btn-login:hover {
                background: white;
                color: #00b894;
                transform: translateY(-3px);
                box-shadow: 0 14px 30px rgba(0,208,132,.15);
            }

        .btn-register {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 11px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            color: white;
            background: var(--gradient);
            border: none;
            box-shadow: 0 10px 28px rgba(0,208,132,.25);
            transition: .45s var(--transition);
            position: relative;
            overflow: hidden;
        }

            .btn-register::before {
                content: "";
                position: absolute;
                top: 0;
                left: -120%;
                width: 100%;
                height: 100%;
                background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
                transition: .7s;
            }

            .btn-register:hover {
                transform: translateY(-3px);
                box-shadow: 0 18px 38px rgba(0,208,132,.35);
                color: white;
            }

            .btn-register:hover::before {
                left: 120%;
            }

        .user-greeting {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 50px;
            background: rgba(255,255,255,.7);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255,255,255,.4);
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            box-shadow: 0 6px 18px rgba(0,0,0,.06);
        }

        .user-greeting .role-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 50px;
            background: var(--gradient);
            color: white;
            letter-spacing: .5px;
        }

        .btn-logout {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 11px 22px;
            border-radius: 50px;
            border: 1.5px solid rgba(239,68,68,.25);
            background: rgba(254,242,242,.8);
            backdrop-filter: blur(10px);
            font-size: 13px;
            font-weight: 600;
            color: #dc2626;
            cursor: pointer;
            transition: .35s cubic-bezier(.4,0,.2,1);
            box-shadow: 0 6px 18px rgba(220,38,38,.08);
        }

        .btn-logout:hover {
            background: #dc2626;
            color: white;
            border-color: #dc2626;
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(220,38,38,.25);
        }

        @media(max-width:991px) {
            .auth-buttons { gap: 8px; }
            .btn-login, .btn-register, .btn-logout { padding: 9px 16px; font-size: 12px; }
            .user-greeting { padding: 8px 14px; font-size: 12px; }
        }

        .navbar-toggler {
            border: none;
            background: none;
            font-size: 34px;
            color: var(--primary);
        }

            .navbar-toggler:focus {
                box-shadow: none;
            }

        @media(max-width:991px) {

            .main-navbar {
                padding: 10px 0;
            }

            .navbar-collapse {
                margin-top: 24px;
                padding: 28px;
                border-radius: 28px;
                background: rgba(255,255,255,.9);
                backdrop-filter: blur(22px);
                box-shadow: 0 18px 55px rgba(0,0,0,.08);
            }

            .navbar-nav {
                gap: 10px;
            }

            .nav-right {
                margin-top: 22px;
            }

            .logo-circle {
                width: 64px;
                height: 64px;
            }

            .logo-text h2 {
                font-size: 26px;
            }
        }


                /* =========================================
           HERO
        ========================================= */

                /* =========================================
           ADVANCED HERO SLIDER
        ========================================= */

                .hero-slider {
                    position: relative;
                    width: 100%;
                    height: 100vh;
                    overflow: hidden;
                }

                /* SLIDES */

                .hero-slide {
                    position: absolute;
                    inset: 0;
                    background-size: cover;
                    background-position: center;
                    opacity: 0;
                    visibility: hidden;
                    transform: scale(1.08);
                    transition: opacity 1.2s ease, transform 2s ease;
                }

                    .hero-slide.active {
                        opacity: 1;
                        visibility: visible;
                        transform: scale(1);
                        z-index: 2;
                    }

                /* OVERLAY */

                .hero-overlay {
                    position: absolute;
                    inset: 0;
                    background: linear-gradient( to right, rgba(15,23,42,.85), rgba(15,23,42,.45) );
                }

                /* CONTENT */

                .hero-content {
                    position: relative;
                    z-index: 5;
                    height: 100%;
                    max-width: 760px;
                    padding-left: 8%;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    color: white;
                    animation: contentFade 1.5s ease;
                }

                /* Badge */

                .hero-badge {
                    width: fit-content;
                    padding: 12px 22px;
                    border-radius: 50px;
                    background: rgba(255,255,255,.12);
                    backdrop-filter: blur(12px);
                    border: 1px solid rgba(255,255,255,.15);
                    font-size: 13px;
                    font-weight: 600;
                    letter-spacing: 2px;
                    margin-bottom: 24px;
                    animation: slideUp 1s ease;
                }

                /* TITLE */

                .hero-content h1 {
                    font-size: 92px;
                    font-weight: 800;
                    line-height: 1.05;
                    margin-bottom: 24px;
                    animation: slideUp 1.2s ease;
                }

                    .hero-content h1 span {
                        display: block;
                        background: linear-gradient( 135deg, #00c6ff, #00d084, #8bc34a );
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }

                /* TEXT */

                .hero-content p {
                    max-width: 650px;
                    font-size: 18px;
                    line-height: 1.9;
                    color: rgba(255,255,255,.85);
                    margin-bottom: 36px;
                    animation: slideUp 1.4s ease;
                }

                /* BUTTON */

                .hero-btn {
                    width: fit-content;
                    text-decoration: none;
                    padding: 18px 34px;
                    border-radius: 60px;
                    background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    color: white;
                    font-weight: 600;
                    box-shadow: 0 18px 40px rgba(0,208,132,.25);
                    transition: .4s ease;
                    animation: slideUp 1.6s ease;
                }

                    .hero-btn:hover {
                        transform: translateY(-6px) scale(1.03);
                        box-shadow: 0 24px 55px rgba(0,208,132,.35);
                        color: white;
                    }

                /* DOTS */

                .hero-dots {
                    position: absolute;
                    left: 50%;
                    bottom: 40px;
                    transform: translateX(-50%);
                    display: flex;
                    gap: 14px;
                    z-index: 20;
                }

                .dot {
                    width: 14px;
                    height: 14px;
                    border-radius: 50%;
                    background: rgba(255,255,255,.4);
                    cursor: pointer;
                    transition: .4s ease;
                }

                    .dot.active {
                        width: 42px;
                        border-radius: 20px;
                        background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    }

                /* ANIMATIONS */

                @keyframes slideUp {

                    from {
                        opacity: 0;
                        transform: translateY(40px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                @keyframes contentFade {

                    from {
                        opacity: 0;
                    }

                    to {
                        opacity: 1;
                    }
                }
                /* RESPONSIVE */

                @media(max-width:991px) {

                    .hero-content {
                        padding: 0 30px;
                    }

                        .hero-content h1 {
                            font-size: 58px;
                        }
                }
                @media(max-width:768px) {
                    .hero-content h1 {
                        font-size: 42px;
                    }
                    .hero-content p {
                        font-size: 16px;
                    }
                    .hero-btn {
                        padding: 15px 26px;
                    }
                }
                /* =========================================
           ANIMATIONS
        ========================================= */
                @keyframes dropdownFade {
                    from {
                        opacity: 0;
                        transform: translateY(18px) scale(.96);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0) scale(1);
                    }
                }
        /* =========================================================
   ULTRA PREMIUM AI NEWS SECTION — FINAL VERSION
========================================================= */
        .ai-news-section {
            position: relative;
            padding: 70px 0;
            overflow: hidden;
            background: radial-gradient(circle at top left,#eef6ff,#f8fbff 45%,#ffffff);
        }
            /* BACKGROUND GLOW */
            .ai-news-section::before {
                content: "";
                position: absolute;
                width: 700px;
                height: 700px;
                background: radial-gradient(circle, rgba(0,198,255,.12), transparent 70%);
                top: -250px;
                left: -200px;
                border-radius: 50%;
            }
            .ai-news-section::after {
                content: "";
                position: absolute;
                width: 600px;
                height: 600px;
                background: radial-gradient(circle, rgba(0,208,132,.10), transparent 70%);
                bottom: -250px;
                right: -200px;
                border-radius: 50%;
            }
        /* =========================================================
   PARTNERS
========================================================= */
        .partners-wrapper {
            position: relative;
            z-index: 5;
        }
        .partners-title {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 6px;
            color: #64748b;
            margin-bottom: 50px;
            position: relative;
        }
            .partners-title::after {
                content: "";
                width: 120px;
                height: 2px;
                background: linear-gradient(to right,#00c6ff,#00d084);
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: -18px;
            }

        .partner-logo {
            height: 48px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: .7;
            transition: .5s ease;
        }

            .partner-logo:hover {
                filter: none;
                opacity: 1;
                transform: translateY(-8px) scale(1.05);
            }

        /* =========================================================
   MAIN CARD
========================================================= */

        .wow-news-card {
            position: relative;
            z-index: 10;
            border-radius: 36px;
            overflow: hidden;
            background: rgba(255,255,255,.72);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,.35);
            box-shadow: 0 30px 80px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.7);
            transition: .5s ease;
        }
            .wow-news-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 40px 100px rgba(0,208,132,.14);
            }
        /* =========================================================
   TOP AREA
========================================================= */
        .news-top-area {
            position: relative;
            padding: 55px 50px 85px;
            overflow: hidden;
            background: linear-gradient( 135deg, rgba(15,23,42,.97), rgba(30,41,59,.94) );
        }
            /* GRID OVERLAY */
            .news-top-area::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
                background-size: 40px 40px;
            }
        /* HUGE BACKGROUND TEXT */
        .bg-word {
            position: absolute;
            left: 30px;
            top: 0;
            font-size: 120px;
            font-weight: 800;
            color: rgba(255,255,255,.03);
            letter-spacing: 10px;
            line-height: 1;
            user-select: none;
        }
        /* FLOATING GLOW */

        .floating-glow {
            position: absolute;
            width: 280px;
            height: 280px;
            background: radial-gradient( circle, rgba(0,198,255,.7), rgba(0,208,132,.5), transparent 70% );
            right: -80px;
            top: -80px;
            filter: blur(45px);
            opacity: .7;
            animation: floatGlow 8s ease-in-out infinite;
        }

        @keyframes floatGlow {

            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* =========================================================
   TEXTS
========================================================= */

        .main-heading {
            font-size: 42px;
            font-weight: 800;
            color: white;
            line-height: 1.1;
            letter-spacing: 1px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        /* BUTTON */

        .all-news-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 38px;
            border-radius: 70px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            letter-spacing: .5px;
            background: linear-gradient( 135deg, #00c6ff, #00d084 );
            overflow: hidden;
            box-shadow: 0 18px 45px rgba(0,208,132,.25);
            transition: .5s ease;
            z-index: 2;
        }

            .all-news-btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: -120%;
                width: 100%;
                height: 100%;
                background: linear-gradient( 120deg, transparent, rgba(255,255,255,.45), transparent );
                transition: .8s;
            }

            .all-news-btn:hover::before {
                left: 120%;
            }

            .all-news-btn:hover {
                transform: translateY(-5px);
                color: white;
            }

        /* =========================================================
   CONTENT
========================================================= */

        .news-content-wrapper {
            margin-top: -55px;
            position: relative;
            z-index: 5;
            display: flex;
            align-items: stretch;
            background: white;
        }

        /* FIX HEIGHT */

        .row.g-0.align-items-center {
            min-height: 340px;
        }

        /* =========================================================
   IMAGE
========================================================= */

        .image-wrapper {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 340px;
        }

        .news-image {
            width: 100%;
            height: 100%;
            min-height: 340px;
            max-height: 340px;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: 1s ease;
        }

        .wow-news-card:hover .news-image {
            transform: scale(1.08);
        }

        /* IMAGE OVERLAY */

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient( to right, rgba(15,23,42,.25), transparent );
        }

        /* =========================================================
   TEXT SIDE
========================================================= */

        .news-text {
            padding: 40px 50px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .news-date {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #64748b;
            margin-bottom: 24px;
        }

            .news-date::before {
                content: "";
                width: 40px;
                height: 2px;
                background: linear-gradient( to right, #00c6ff, #00d084 );
            }

        .news-title {
            font-size: 40px;
            line-height: 1.08;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            max-width: 680px;
        }

        .news-description {
            font-size: 17px;
            line-height: 1.7;
            color: #64748b;
            max-width: 520px;
        }

        /* =========================================================
   ARROW BUTTON
========================================================= */

        .arrow-button {
            position: absolute;
            right: 35px;
            bottom: 35px;
            width: 58px;
            height: 58px;
            border: none;
            border-radius: 50%;
            background: linear-gradient( 135deg, #00c6ff, #00d084 );
            color: white;
            font-size: 28px;
            box-shadow: 0 15px 40px rgba(0,208,132,.25);
            transition: .5s ease;
        }

            .arrow-button:hover {
                transform: translateX(8px) scale(1.08) rotate(-8deg);
            }

        /* =========================================================
   RESPONSIVE
========================================================= */

        @media(max-width:992px) {

            .main-heading {
                font-size: 36px;
            }

            .news-title {
                font-size: 32px;
            }

            .news-text {
                padding: 40px;
            }

            .news-top-area {
                padding: 70px 35px 110px;
            }

            .news-image {
                min-height: 300px;
                max-height: 300px;
            }
        }

        @media(max-width:768px) {

            .bg-word {
                font-size: 80px;
            }

            .main-heading {
                font-size: 28px;
            }

            .news-title {
                font-size: 24px;
                line-height: 1.2;
            }

            .news-description {
                font-size: 15px;
            }

            .news-text {
                padding: 35px 25px;
            }

            .news-top-area {
                padding: 55px 20px 90px;
            }

            .news-content-wrapper {
                margin-top: -40px;
            }

            .image-wrapper {
                min-height: 240px;
            }

            .news-image {
                min-height: 240px;
                max-height: 240px;
            }

            .arrow-button {
                width: 52px;
                height: 52px;
                font-size: 22px;
                right: 20px;
                bottom: 20px;
            }
        }

        /* =========================================================
   PREMIUM INSTITUTIONAL NEWS
========================================================= */

        .institutional-news {
            position: relative;
            padding: 90px 0;
            background: linear-gradient( to bottom, #ffffff, #f8fbff );
        }

        /* TITLE */

        .institutional-header {
            margin-bottom: 60px;
        }

        .institutional-title {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: 4px;
            color: #111827;
            margin-bottom: 15px;
        }

        .institutional-subtitle {
            color: #64748b;
            font-size: 17px;
        }

        /* CARD */

        .institutional-card {
            position: relative;
            overflow: hidden;
            border-radius: 32px;
            background: rgba(255,255,255,.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,.5);
            box-shadow: 0 20px 60px rgba(15,23,42,.08);
            transition: .5s ease;
        }

            .institutional-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 30px 80px rgba(0,208,132,.12);
            }

        /* IMAGE */

        .institutional-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 260px;
        }

        .institutional-image {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: cover;
            transition: 1s ease;
        }

        .institutional-card:hover .institutional-image {
            transform: scale(1.08);
        }

        /* CONTENT */

        .institutional-content {
            position: relative;
            padding: 45px 55px;
        }

        /* DATE */

        .institutional-date {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 700;
            color: #64748b;
            margin-bottom: 18px;
        }

            .institutional-date::before {
                content: "";
                width: 45px;
                height: 2px;
                background: linear-gradient( to right, #00c6ff, #00d084 );
            }

        /* TITLE */

        .institutional-card-title {
            font-size: 38px;
            line-height: 1.15;
            font-weight: 800;
            color: #111827;
            margin-bottom: 18px;
            max-width: 900px;
        }

        /* TEXT */

        .institutional-description {
            font-size: 17px;
            line-height: 1.8;
            color: #64748b;
            max-width: 850px;
        }

        /* BUTTON */

        .institutional-arrow {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            width: 68px;
            height: 68px;
            border: none;
            border-radius: 50%;
            background: linear-gradient( 135deg, #00c6ff, #00d084 );
            color: white;
            font-size: 24px;
            box-shadow: 0 15px 40px rgba(0,208,132,.25);
            transition: .5s ease;
        }

            .institutional-arrow:hover {
                transform: translateY(-50%) translateX(8px) scale(1.08);
            }

        /* SPACING */

        .institutional-card + .institutional-card {
            margin-top: 30px;
        }

        /* RESPONSIVE */

        @media(max-width:992px) {

            .institutional-title {
                font-size: 40px;
            }

            .institutional-card-title {
                font-size: 30px;
            }

            .institutional-content {
                padding: 40px;
            }

            .institutional-arrow {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                margin-top: 25px;
            }
        }

        @media(max-width:768px) {

            .institutional-title {
                font-size: 30px;
            }

            .institutional-card-title {
                font-size: 24px;
            }

            .institutional-description {
                font-size: 15px;
            }

            .institutional-content {
                padding: 30px 25px;
            }

            .institutional-image-wrapper {
                min-height: 220px;
            }

            .institutional-image {
                min-height: 220px;
            }
        }
        /* =====================================================
   SECTION GLOBAL
===================================================== */

        .section-tag {
            display: inline-block;
            padding: 10px 22px;
            border-radius: 50px;
            background: rgba(0,208,132,.08);
            color: #00b894;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }

        .section-title {
            font-size: 54px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .section-subtitle {
            max-width: 700px;
            margin: auto;
            color: #64748b;
            font-size: 17px;
            line-height: 1.8;
        }

        /* =====================================================
   DISCIPLINES
===================================================== */

        .disciplines-section {
            position: relative;
            padding: 100px 0;
            background: radial-gradient(circle at top right, rgba(0,198,255,.08), transparent 40%), #fff;
        }

        .discipline-card {
            position: relative;
            overflow: hidden;
            border-radius: 32px;
            background: white;
            box-shadow: 0 20px 60px rgba(15,23,42,.08);
            transition: .5s ease;
            height: 100%;
        }

            .discipline-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 80px rgba(0,208,132,.15);
            }

        .discipline-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .discipline-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1s ease;
        }

        .discipline-card:hover .discipline-image {
            transform: scale(1.1);
        }

        .discipline-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient( to top, rgba(15,23,42,.7), transparent);
        }

        .discipline-content {
            padding: 30px;
            position: relative;
        }

        .discipline-number {
            font-size: 14px;
            font-weight: 700;
            color: #00b894;
            letter-spacing: 2px;
        }

        .discipline-content h3 {
            font-size: 28px;
            font-weight: 800;
            margin: 14px 0;
            color: #0f172a;
        }

        .discipline-content p {
            color: #64748b;
            line-height: 1.8;
            font-size: 15px;
        }

        .discipline-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            text-decoration: none;
            color: #00b894;
            font-weight: 700;
            transition: .4s ease;
        }

            .discipline-btn:hover {
                gap: 16px;
                color: #00b894;
            }
        /* =========================================
   FORCE 3 COLUMN LAYOUT
========================================= */

        .news-grid {
            width: 100%;
            display: flex !important;
            gap: 30px;
            padding: 50px;
            flex-wrap: wrap;
            align-items: stretch;
        }

        /* CARD */

        .news-card {
            flex: 1 1 calc(33.333% - 20px);
            max-width: calc(33.333% - 20px);
            background: white;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(15,23,42,.06);
            box-shadow: 0 15px 40px rgba(15,23,42,.06);
            transition: .4s ease;
            display: flex;
            flex-direction: column;
        }

            /* HOVER */

            .news-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 60px rgba(15,23,42,.12);
            }

        /* IMAGE */

        .news-image-wrapper {
            width: 100%;
            height: 260px;
            overflow: hidden;
        }

        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* CONTENT */

        .news-content {
            padding: 32px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        /* DATE */

        .news-date {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #00d084;
            margin-bottom: 16px;
        }

        /* TITLE */

        .news-title {
            font-size: 28px;
            line-height: 1.2;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 18px;
        }

        /* DESCRIPTION */

        .news-description {
            font-size: 15px;
            line-height: 1.7;
            color: #64748b;
            margin-bottom: 30px;
        }

        /* BUTTON */

        .news-arrow {
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 50%;
            margin-top: auto;
            background: linear-gradient(135deg,#00c6ff,#00d084);
            color: white;
            font-size: 22px;
            transition: .35s;
        }

            .news-arrow:hover {
                transform: rotate(-45deg);
            }

        /* =========================================
   RESPONSIVE
========================================= */

        @media(max-width:992px) {

            .news-card {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
        /* =====================================================
   CHAMPIONS SECTION
===================================================== */

        .champions-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient( 135deg, #0f172a, #111827);
            overflow: hidden;
        }

        .champions-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .champions-content h2 {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 24px;
        }

        .champions-content p {
            color: rgba(255,255,255,.75);
            line-height: 1.9;
            font-size: 17px;
            margin-bottom: 40px;
        }

        .champions-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-box {
            flex: 1;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            backdrop-filter: blur(14px);
            padding: 28px;
            border-radius: 24px;
            text-align: center;
        }

            .stat-box h3 {
                font-size: 38px;
                color: #00d084;
                font-weight: 800;
                margin-bottom: 8px;
            }

            .stat-box span {
                color: white;
                font-size: 14px;
                letter-spacing: 1px;
            }

        .champions-btn {
            display: inline-block;
            padding: 18px 34px;
            border-radius: 60px;
            background: linear-gradient( 135deg, #00c6ff, #00d084);
            color: white;
            text-decoration: none;
            font-weight: 700;
            transition: .4s ease;
        }

            .champions-btn:hover {
                transform: translateY(-5px);
                color: white;
            }

        .champions-image-area {
            position: relative;
        }

        .champions-main-image {
            width: 100%;
            border-radius: 36px;
            object-fit: cover;
            min-height: 620px;
            box-shadow: 0 25px 80px rgba(0,0,0,.25);
        }

        .floating-card {
            position: absolute;
            bottom: 40px;
            left: -40px;
            background: rgba(255,255,255,.9);
            backdrop-filter: blur(18px);
            padding: 28px;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(15,23,42,.15);
            max-width: 280px;
        }

            .floating-card h4 {
                font-size: 24px;
                font-weight: 800;
                margin-bottom: 10px;
                color: #0f172a;
            }

            .floating-card p {
                color: #64748b;
                margin-bottom: 8px;
            }

            .floating-card span {
                color: #00b894;
                font-weight: 700;
            }

        /* =====================================================
   RESPONSIVE
===================================================== */

        @media(max-width:991px) {

            .champions-wrapper {
                grid-template-columns: 1fr;
            }

            .champions-content h2 {
                font-size: 46px;
            }

            .section-title {
                font-size: 40px;
            }

            .floating-card {
                left: 20px;
                bottom: 20px;
            }
        }

        @media(max-width:768px) {

            .champions-content h2 {
                font-size: 34px;
            }

            .section-title {
                font-size: 32px;
            }

            .champions-stats {
                flex-direction: column;
            }

            .discipline-content h3 {
                font-size: 24px;
            }
        }
        /* =========================================
   PREMIUM EVENTS SECTION
   MATCHING YOUR WEBSITE DESIGN
========================================= */

        .events-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
            background: radial-gradient(circle at top left,#eef6ff,#f8fbff 45%,#ffffff);
        }

            /* BACKGROUND GLOWS */

            .events-section::before {
                content: "";
                position: absolute;
                width: 700px;
                height: 700px;
                top: -250px;
                left: -250px;
                background: radial-gradient(circle, rgba(0,198,255,.12), transparent 70%);
                border-radius: 50%;
            }

            .events-section::after {
                content: "";
                position: absolute;
                width: 600px;
                height: 600px;
                bottom: -220px;
                right: -220px;
                background: radial-gradient(circle, rgba(0,208,132,.10), transparent 70%);
                border-radius: 50%;
            }

        /* =========================================
   MAIN WRAPPER
========================================= */

        .events-wrapper {
            position: relative;
            z-index: 5;
            display: grid;
            grid-template-columns: 1fr 340px;
            border-radius: 36px;
            overflow: hidden;
            background: rgba(255,255,255,.75);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,.4);
            box-shadow: 0 30px 80px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.7);
        }

        /* =========================================
   LEFT SIDE
========================================= */

        .events-left {
            background: white;
        }

        /* HEADER */

        .events-header {
            position: relative;
            overflow: hidden;
            padding: 70px 80px;
            background: linear-gradient( 135deg, rgba(15,23,42,.97), rgba(30,41,59,.94) );
        }

            /* GRID EFFECT */

            .events-header::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
                background-size: 40px 40px;
            }

            /* GLOW */

            .events-header::after {
                content: "";
                position: absolute;
                width: 320px;
                height: 320px;
                right: -100px;
                top: -100px;
                background: radial-gradient(circle, rgba(0,198,255,.65), rgba(0,208,132,.35), transparent 70%);
                filter: blur(30px);
            }

            /* TITLE */

            .events-header h2 {
                position: relative;
                z-index: 2;
                font-size: 90px;
                line-height: 1;
                font-weight: 800;
                letter-spacing: 6px;
                color: rgba(255,255,255,.08);
                margin: 0;
            }

        /* BUTTON */

        .all-events-btn {
            position: absolute;
            z-index: 5;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            padding: 16px 34px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .5px;
            color: white;
            background: linear-gradient( 135deg, #00c6ff, #00d084 );
            box-shadow: 0 15px 40px rgba(0,208,132,.25);
            transition: .45s ease;
        }

            .all-events-btn:hover {
                transform: translate(-50%,-50%) translateY(-4px);
                color: white;
                box-shadow: 0 22px 50px rgba(0,208,132,.35);
            }

        /* =========================================
   EVENT ROW
========================================= */

        .event-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 38px 70px;
            border-bottom: 1px solid #edf2f7;
            transition: .4s ease;
        }

            .event-row:hover {
                background: #f8fbff;
            }

        /* INFO */

        .event-info h3 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .event-info span {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #00b894;
            margin-bottom: 8px;
        }

        .event-info p {
            margin: 0;
            font-size: 15px;
            color: #64748b;
            letter-spacing: .5px;
        }

        /* TAGS */

        .event-tags {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

            .event-tags span,
            .event-tag {
                padding: 10px 18px;
                border-radius: 50px;
                background: rgba(0,198,255,.08);
                border: 1px solid rgba(0,198,255,.12);
                color: #0f172a;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: .6px;
                transition: .35s ease;
            }

                .event-tags span:hover {
                    background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    color: white;
                    transform: translateY(-3px);
                }
        /* =========================================
   PREMIUM EVENTS SIDEBAR
========================================= */

        .events-sidebar {
            position: sticky;
            top: 120px;
            padding: 35px 28px;
            border-radius: 32px;
            background: linear-gradient(145deg, rgba(15,23,42,.96), rgba(30,41,59,.94));
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,.08);
            box-shadow: 0 25px 60px rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.05);
            overflow: hidden;
            min-height: 100%;
        }

            /* Glow background */

            .events-sidebar::before {
                content: "";
                position: absolute;
                width: 280px;
                height: 280px;
                background: radial-gradient( circle, rgba(0,198,255,.28), rgba(0,208,132,.18), transparent 70% );
                top: -100px;
                right: -80px;
                border-radius: 50%;
                filter: blur(30px);
            }

            /* Small pattern */

            .events-sidebar::after {
                content: "";
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
                background-size: 30px 30px;
                pointer-events: none;
            }

        /* =========================================
   SIDEBAR TEXT
========================================= */

        .sidebar-mini-title {
            position: relative;
            z-index: 2;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .sidebar-title {
            position: relative;
            z-index: 2;
            font-size: 48px;
            line-height: .95;
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
        }

        .sidebar-divider {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 1px;
            background: rgba(255,255,255,.12);
            margin: 25px 0;
        }

        .sidebar-filter {
            position: relative;
            z-index: 2;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #cbd5e1;
            margin-bottom: 22px;
        }

        /* =========================================
   EVENTS GRID
========================================= */

        .sidebar-events {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        /* EVENT ITEM */

        .sidebar-event {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 78px;
            padding: 14px 10px;
            border-radius: 18px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            color: white;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.4;
            transition: .4s ease;
            backdrop-filter: blur(10px);
        }

            .sidebar-event:hover {
                transform: translateY(-5px);
                background: linear-gradient( 135deg, #00c6ff, #00d084 );
                box-shadow: 0 15px 35px rgba(0,208,132,.22);
            }

        /* =========================================
   BOTTOM BUTTONS
========================================= */

        .sidebar-bottom {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 12px;
            margin-top: 28px;
        }

        .sidebar-btn {
            flex: 1;
            border: none;
            padding: 14px 16px;
            border-radius: 16px;
            font-size: 13px;
            font-weight: 700;
            color: white;
            background: rgba(255,255,255,.08);
            transition: .4s ease;
        }

            .sidebar-btn:hover {
                background: linear-gradient( 135deg, #00c6ff, #00d084 );
                transform: translateY(-3px);
            }
        /* =========================================
   RIGHT SIDEBAR — PREMIUM VERSION
========================================= */

        .events-sidebar {
            position: relative;
            padding: 55px 32px;
            background: linear-gradient( 180deg, rgba(15,23,42,.98), rgba(30,41,59,.96) );
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
           
            height:100%;
            transform:translateY(-120px);
        }

            /* GLOW EFFECT */

            .events-sidebar::before {
                content: "";
                position: absolute;
                width: 260px;
                height: 260px;
                top: -120px;
                right: -120px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(0,198,255,.35), rgba(0,208,132,.18), transparent 70%);
                filter: blur(20px);
            }

            /* SMALL GRID OVERLAY */

            .events-sidebar::after {
                content: "";
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
                background-size: 32px 32px;
                pointer-events: none;
            }

            /* UPCOMING */

            .events-sidebar h4 {
                position: relative;
                z-index: 2;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 3px;
                color: #00d084;
                margin-bottom: 12px;
            }
        /* =====================================================
   HOSTING SECTION
===================================================== */

        .hosting-section {
            position: relative;
            padding: 120px 20px;
            overflow: hidden;
            background: linear-gradient( 135deg, #b8ff5a 0%, #8ee96f 20%, #41d6d6 50%, #1da1f2 75%, #d7ff54 100% );
        }

            .hosting-section::before {
                content: "";
                position: absolute;
                top: -120px;
                right: -120px;
                width: 420px;
                height: 420px;
                border-radius: 50%;
                background: rgba(255,255,255,.12);
            }

            .hosting-section::after {
                content: "";
                position: absolute;
                bottom: -180px;
                left: -100px;
                width: 380px;
                height: 380px;
                border-radius: 50%;
                background: rgba(255,255,255,.08);
            }

        .hosting-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient( to right, rgba(255,255,255,.12), rgba(255,255,255,.02) );
        }

        .hosting-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hosting-subtitle {
            display: block;
            font-size: 28px;
            font-weight: 300;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .hosting-content h2 {
            font-size: 72px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .hosting-and {
            display: block;
            font-size: 32px;
            color: #334155;
            margin-bottom: 12px;
        }

        .hosting-content h3 {
            font-size: 68px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #1e293b;
            margin-bottom: 35px;
        }

        .hosting-btn {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 28px;
            color: white;
            background: #1e293b;
            box-shadow: 0 18px 45px rgba(15,23,42,.18);
            transition: .4s ease;
        }

            .hosting-btn:hover {
                transform: translateY(-8px) scale(1.08);
                background: linear-gradient( 135deg, #00c6ff, #00d084 );
                color: white;
            }

        /* =====================================================
   PREMIUM FOOTER
===================================================== */

        .premium-footer {
            position: relative;
            background: linear-gradient( 135deg, #081120, #0f172a, #132238 );
            padding: 90px 20px 45px;
            overflow: hidden;
        }

        .footer-glow {
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient( rgba(0,198,255,.16), transparent 70% );
        }

        .footer-logo-area {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            margin-bottom: 45px;
        }

        .footer-logo-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient( 135deg, #00c6ff, #00d084, #8bc34a );
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 18px 40px rgba(0,208,132,.25);
        }

            .footer-logo-circle span {
                font-size: 32px;
                font-weight: 800;
                color: white;
            }

        .footer-logo-text h2 {
            margin: 0;
            color: white;
            font-size: 42px;
            font-weight: 800;
            line-height: 1;
        }

        .footer-logo-text p {
            margin: 0;
            color: #94a3b8;
            font-size: 14px;
            letter-spacing: 6px;
            font-weight: 600;
        }

        .footer-links {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
            margin-bottom: 40px;
        }

            .footer-links a {
                text-decoration: none;
                color: #cbd5e1;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 1px;
                transition: .3s ease;
            }

                .footer-links a:hover {
                    color: #00d084;
                }

        .footer-social {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 35px;
        }

            .footer-social a {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                background: rgba(255,255,255,.06);
                border: 1px solid rgba(255,255,255,.08);
                color: white;
                font-size: 18px;
                transition: .35s ease;
            }

                .footer-social a:hover {
                    transform: translateY(-6px);
                    background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    color: white;
                    box-shadow: 0 14px 30px rgba(0,208,132,.22);
                }

        .footer-bottom {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
            border-top: 1px solid rgba(255,255,255,.08);
            padding-top: 28px;
        }

        /* =====================================================
   RESPONSIVE
===================================================== */

        @media(max-width:991px) {

            .hosting-content h2 {
                font-size: 48px;
            }

            .hosting-content h3 {
                font-size: 42px;
            }

            .hosting-subtitle {
                font-size: 22px;
            }

            .footer-logo-text h2 {
                font-size: 34px;
            }
        }

        @media(max-width:768px) {

            .hosting-section {
                padding: 90px 20px;
            }

            .hosting-content h2 {
                font-size: 34px;
            }

            .hosting-content h3 {
                font-size: 30px;
            }

            .hosting-subtitle {
                font-size: 18px;
            }

            .hosting-btn {
                width: 62px;
                height: 62px;
                font-size: 22px;
            }

            .footer-links {
                gap: 18px;
            }

                .footer-links a {
                    font-size: 12px;
                }

            .footer-logo-circle {
                width: 72px;
                height: 72px;
            }

            .footer-logo-text h2 {
                font-size: 28px;
            }
        }

            /* SPORT EVENTS */

            .events-sidebar h2 {
                position: relative;
                z-index: 2;
                font-size: 42px;
                line-height: 1.05;
                font-weight: 800;
                color: white;
                margin-bottom: 22px;
            }

            /* FILTER TEXT */

            .events-sidebar p {
                position: relative;
                z-index: 2;
                font-size: 15px;
                font-weight: 600;
                letter-spacing: 1.5px;
                color: #94a3b8;
                margin-bottom: 18px;
            }

        /* DISCIPLINE GRID */

        .discipline-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 12px;
        }

            /* LINKS */

            .discipline-grid a {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                min-height: 58px;
                padding: 12px;
                border-radius: 16px;
                text-decoration: none;
                background: rgba(255,255,255,.05);
                border: 1px solid rgba(255,255,255,.06);
                color: #f8fafc;
                text-shadow: 0 1px 2px rgba(0,0,0,.4);
                font-size: 11px;
                font-weight: 700;
                line-height: 1.3;
                transition: .35s ease;
                margin-top:75px;
            }

                /* HOVER */

                .discipline-grid a:hover {
                    background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    transform: translateY(-4px);
                    color: white;
                    box-shadow: 0 12px 30px rgba(0,208,132,.18);
                }

        /* =========================================
   RESPONSIVE
========================================= */

        @media(max-width:992px) {

            .events-sidebar {
                padding: 45px 24px;
            }

                .events-sidebar h2 {
                    font-size: 34px;
                }
        }

        @media(max-width:768px) {

            .discipline-grid {
                grid-template-columns: 1fr;
            }

            .events-sidebar h2 {
                font-size: 30px;
            }
        }
        /* =========================================
   RESPONSIVE
========================================= */

        @media(max-width:991px) {

            .events-sidebar {
                margin-top: 30px;
            }

            .sidebar-title {
                font-size: 38px;
            }
        }

        @media(max-width:576px) {

            .sidebar-events {
                grid-template-columns: 1fr;
            }

            .sidebar-title {
                font-size: 32px;
            }
        }
        /* DISCIPLINES */

        .discipline-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px 18px;
        }

            .discipline-grid a {
                text-decoration: none;
                color: #1b2500;
                font-size: 13px;
                font-weight: 700;
                line-height: 1.4;
                transition: .35s ease;
            }

                .discipline-grid a:hover {
                    transform: translateX(6px);
                    color: white;
                }

        /* =========================================
   RESPONSIVE
========================================= */

        @media(max-width:992px) {

            .events-wrapper {
                grid-template-columns: 1fr;
            }

            .events-sidebar {
                padding: 60px 35px;
            }

            .events-header {
                padding: 60px 35px;
            }

                .events-header h2 {
                    font-size: 60px;
                }

            .event-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
                padding: 35px;
            }

            .events-sidebar h2 {
                font-size: 46px;
            }
        }

        @media(max-width:768px) {

            .events-header h2 {
                font-size: 42px;
            }

            .event-info h3 {
                font-size: 22px;
            }

            .discipline-grid {
                grid-template-columns: 1fr;
            }

            .events-sidebar h2 {
                font-size: 36px;
            }
        }
        /* =========================================
MODERN HOSTING SECTION
========================================= */

        .hosting-modern {
            position: relative;
            overflow: hidden;
            padding: 140px 8%;
            background: linear-gradient( 135deg, #071120 0%, #0f172a 45%, #111827 100% );
        }

        /* SHAPES */

        .hosting-bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(10px);
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,198,255,.25), transparent 70%);
            top: -200px;
            right: -100px;
        }

        .shape-2 {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(0,208,132,.18), transparent 70%);
            bottom: -180px;
            left: -120px;
        }

        /* INNER */

        .hosting-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: auto;
        }

        /* TEXT */

        .hosting-text {
            max-width: 700px;
        }

        .hosting-tag {
            display: inline-block;
            padding: 10px 18px;
            margin-bottom: 28px;
            border-radius: 50px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.08);
            color: #00d084;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        /* TITLE */

        .hosting-text h2 {
            font-size: 72px;
            line-height: 1.05;
            font-weight: 800;
            color: white;
            margin-bottom: 24px;
        }

            .hosting-text h2 span {
                display: block;
                background: linear-gradient( 90deg, #00c6ff, #00d084 );
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        /* DESCRIPTION */

        .hosting-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #94a3b8;
            margin-bottom: 40px;
            max-width: 620px;
        }

        /* BUTTON */

        .hosting-link {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 18px 28px;
            border-radius: 16px;
            background: linear-gradient( 135deg, #00c6ff, #00d084 );
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            transition: .35s ease;
        }

            .hosting-link span {
                font-size: 18px;
            }

            .hosting-link:hover {
                transform: translateY(-4px);
                box-shadow: 0 18px 40px rgba(0,208,132,.25);
            }

        /* =========================================
MODERN FOOTER
========================================= */

        .footer-modern {
            position: relative;
            overflow: hidden;
            background: linear-gradient( 180deg, #020617, #071120 );
            padding: 90px 8% 35px;
        }

            /* TOP BORDER */

            .footer-modern::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background: linear-gradient( 90deg, transparent, rgba(255,255,255,.2), transparent );
            }

        /* GLOW */

        .footer-gradient {
            position: absolute;
            width: 600px;
            height: 600px;
            top: -300px;
            right: -200px;
            background: radial-gradient(circle, rgba(0,198,255,.15), transparent 70%);
        }

        /* CONTAINER */

        .footer-container {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: auto;
        }

        /* TOP */

        .footer-top {
            display: flex;
            justify-content: space-between;
            gap: 80px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        /* BRAND */

        .footer-brand {
            max-width: 340px;
        }

            .footer-brand h2 {
                font-size: 54px;
                line-height: .95;
                font-weight: 800;
                color: white;
                margin-bottom: 24px;
            }

            .footer-brand p {
                color: #94a3b8;
                line-height: 1.8;
                font-size: 15px;
            }

        /* NAV */

        .footer-nav {
            display: flex;
            gap: 70px;
        }

        .footer-column h4 {
            color: white;
            margin-bottom: 24px;
            font-size: 15px;
            font-weight: 700;
        }

        .footer-column a {
            display: block;
            margin-bottom: 16px;
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: .3s ease;
        }

            .footer-column a:hover {
                color: #00d084;
                transform: translateX(4px);
            }

        /* BOTTOM */

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
        }

            .footer-bottom p {
                color: #64748b;
                font-size: 14px;
            }

        /* SOCIALS */

        .footer-socials {
            display: flex;
            gap: 14px;
        }

            .footer-socials a {
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
                background: rgba(255,255,255,.05);
                color: white;
                text-decoration: none;
                font-size: 13px;
                font-weight: 700;
                transition: .35s ease;
            }

                .footer-socials a:hover {
                    background: linear-gradient( 135deg, #00c6ff, #00d084 );
                    transform: translateY(-4px);
                }

        /* =========================================
RESPONSIVE
========================================= */

        @media(max-width:992px) {

            .footer-top {
                flex-direction: column;
            }

            .footer-nav {
                flex-wrap: wrap;
                gap: 40px;
            }

            .hosting-text h2 {
                font-size: 54px;
            }
        }

        @media(max-width:768px) {

            .hosting-modern {
                padding: 100px 7%;
            }

            .hosting-text h2 {
                font-size: 42px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }

            .footer-brand h2 {
                font-size: 40px;
            }
        }
    
