/* =========================================================
   32 MEN CHAMPIONSHIP SHARED LAYOUT
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f4f6f9;
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.championship-page {
    --champ-primary: #111827;
    --champ-secondary: #253657;
    --champ-accent: #e3b341;
    --champ-light: #f4f6f9;
    --champ-border: #dfe3e8;
    --champ-muted: #697386;
    --champ-white: #ffffff;

    width: 100%;
    min-height: 100vh;
    background: var(--champ-light);
}

.championship-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

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

.championship-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 260px;
    padding: 55px 20px 72px;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(10, 20, 38, 0.98),
            rgba(37, 54, 87, 0.92)
        );
}

.championship-hero::before {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 330px;
    height: 330px;
    border: 55px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.championship-hero::after {
    position: absolute;
    bottom: -145px;
    left: -90px;
    width: 310px;
    height: 310px;
    border: 48px solid rgba(227, 179, 65, 0.08);
    border-radius: 50%;
    content: "";
}

.championship-hero-content {
    max-width: 800px;
}

.championship-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--champ-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.championship-label::before {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--champ-accent);
    content: "";
}

.championship-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
}

.championship-subtitle {
    max-width: 720px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.6;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.championship-navigation-wrap {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    padding: 0 20px;
}

.championship-navigation {
    display: flex;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
    scrollbar-width: thin;
}

.championship-nav-link {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    min-height: 68px;
    padding: 15px 18px;
    border-right: 1px solid var(--champ-border);
    color: #404958;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.championship-nav-link:last-child {
    border-right: 0;
}

.championship-nav-link:hover,
.championship-nav-link.active {
    background: var(--champ-secondary);
    color: #ffffff;
}

.championship-nav-link.active::after {
    position: absolute;
    right: 22px;
    bottom: 0;
    left: 22px;
    height: 4px;
    border-radius: 5px 5px 0 0;
    background: var(--champ-accent);
    content: "";
}

/* =========================================================
   MOBILE BURGER BUTTON
========================================================= */

.championship-mobile-nav-header {
    display: none;
}

.championship-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: var(--champ-secondary);
    cursor: pointer;
}

.championship-menu-toggle span {
    display: block;
    width: 23px;
    height: 3px;
    border-radius: 5px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.championship-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.championship-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.championship-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   SHARED PAGE CONTENT
========================================================= */

.championship-main {
    padding: 65px 20px 80px;
}

.page-heading {
    margin-bottom: 28px;
}

.section-label {
    display: block;
    margin-bottom: 7px;
    color: #a07000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.page-title,
.section-title,
.profile-title {
    position: relative;
    margin: 0;
    padding-bottom: 14px;
    font-size: 34px;
    font-weight: 800;
}

.page-title::after,
.section-title::after,
.profile-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 4px;
    border-radius: 5px;
    background: var(--champ-accent);
    content: "";
}

.page-description,
.section-description,
.profile-subtitle {
    max-width: 780px;
    margin: 15px 0 0;
    color: #5d6675;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   SHARED FOOTER
========================================================= */

.championship-page-footer {
    padding: 24px 20px;
    background: #111a2b;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-align: center;
}

.championship-page-footer strong {
    color: #ffffff;
}

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

@media (min-width: 768px) {
    .championship-navigation {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .championship-hero {
        min-height: 230px;
        padding: 42px 16px 65px;
    }

    .championship-title {
        font-size: 37px;
    }

    .championship-subtitle {
        font-size: 16px;
    }

    .championship-navigation-wrap {
        margin-top: -35px;
        padding: 0 12px;
    }

    .championship-mobile-nav-header {
        position: relative;
        z-index: 6;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 10px 13px 10px 18px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
    }

    .championship-mobile-nav-title {
        color: var(--champ-secondary);
        font-size: 15px;
        font-weight: 800;
    }

    .championship-menu-toggle {
        display: flex;
    }

    .championship-navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 7px;
        overflow: hidden;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
    }

    .championship-navigation.mobile-menu-open {
        display: flex;
    }

    .championship-nav-link {
        flex: none;
        justify-content: flex-start;
        width: 100%;
        min-width: 0;
        min-height: 53px;
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid var(--champ-border);
        text-align: left;
    }

    .championship-nav-link:last-child {
        border-bottom: 0;
    }

    .championship-nav-link.active {
        padding-left: 22px;
        background: var(--champ-secondary);
        color: #ffffff;
    }

    .championship-nav-link.active::after {
        top: 10px;
        right: auto;
        bottom: 10px;
        left: 0;
        width: 4px;
        height: auto;
        border-radius: 0 5px 5px 0;
        background: var(--champ-accent);
    }

    .championship-main {
        padding: 43px 12px 55px;
    }

    .page-title,
    .section-title,
    .profile-title {
        font-size: 29px;
    }
}

@media (max-width: 390px) {
    .championship-title {
        font-size: 32px;
    }

    .championship-label {
        font-size: 11px;
    }
}



/* ===== PAGE-SPECIFIC ORIGINAL STYLES ===== */


/* SOURCE: index.php */


/* =========================================================
   32 MEN CHAMPIONSHIP PAGE
========================================================= */

.championship-page {
    --champ-primary: #111827;
    --champ-secondary: #253657;
    --champ-accent: #e3b341;
    --champ-light: #f4f6f9;
    --champ-border: #dfe3e8;
    --champ-muted: #697386;
    --champ-white: #ffffff;

    width: 100%;
    background: var(--champ-light);
    color: var(--champ-primary);
}

/* =========================================================
   PAGE TITLE
========================================================= */

.championship-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 260px;
    padding: 55px 20px;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(10, 20, 38, 0.97),
            rgba(37, 54, 87, 0.90)
        );
}

.championship-hero::before {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 330px;
    height: 330px;
    border: 55px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.championship-hero::after {
    position: absolute;
    bottom: -145px;
    left: -90px;
    width: 310px;
    height: 310px;
    border: 48px solid rgba(227, 179, 65, 0.08);
    border-radius: 50%;
    content: "";
}

.championship-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.championship-hero-content {
    max-width: 800px;
}

.championship-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--champ-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.championship-label::before {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--champ-accent);
    content: "";
}

.championship-title {
    margin: 0;
    color: var(--champ-white);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
}

.championship-subtitle {
    max-width: 700px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.6;
}

/* =========================================================
   CHAMPIONSHIP NAVIGATION
========================================================= */

.championship-navigation-wrap {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    padding: 0 20px;
}

.championship-navigation {
    display: flex;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    background: var(--champ-white);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
    scrollbar-width: thin;
}

.championship-navigation::-webkit-scrollbar {
    height: 5px;
}

.championship-navigation::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #c6cbd2;
}

.championship-nav-link {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    min-height: 68px;
    padding: 15px 18px;
    border-right: 1px solid var(--champ-border);
    color: #404958;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.championship-nav-link:last-child {
    border-right: 0;
}

.championship-nav-link:hover,
.championship-nav-link.active {
    background: var(--champ-secondary);
    color: var(--champ-white);
    text-decoration: none;
}

.championship-nav-link.active::after {
    position: absolute;
    right: 22px;
    bottom: 0;
    left: 22px;
    height: 4px;
    border-radius: 5px 5px 0 0;
    background: var(--champ-accent);
    content: "";
}

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

.championship-main {
    padding: 65px 20px 80px;
}

.championship-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 30px;
    align-items: start;
}

.championship-content-card,
.championship-side-card {
    border: 1px solid var(--champ-border);
    border-radius: 14px;
    background: var(--champ-white);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

.championship-content-card {
    padding: 36px;
}

.championship-section-heading {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 16px;
    color: var(--champ-primary);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.championship-section-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 4px;
    border-radius: 5px;
    background: var(--champ-accent);
    content: "";
}

.championship-introduction {
    margin: 0 0 28px;
    color: #535d6d;
    font-size: 16px;
    line-height: 1.8;
}

.championship-rules-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.championship-rule {
    position: relative;
    padding: 18px 20px 18px 60px;
    border: 1px solid #e5e8ec;
    border-radius: 10px;
    background: #fafbfc;
    color: #3d4654;
    font-size: 15px;
    line-height: 1.7;
}

.championship-rule-number {
    position: absolute;
    top: 17px;
    left: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--champ-secondary);
    color: var(--champ-white);
    font-size: 12px;
    font-weight: 800;
}

.championship-rule strong {
    color: var(--champ-primary);
}

/* =========================================================
   SIDE INFORMATION
========================================================= */

.championship-side-card {
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.championship-side-heading {
    margin: 0;
    padding: 19px 22px;
    background: var(--champ-secondary);
    color: var(--champ-white);
    font-size: 18px;
    font-weight: 800;
}

.championship-side-body {
    padding: 8px 22px;
}

.championship-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--champ-border);
}

.championship-info-row:last-child {
    border-bottom: 0;
}

.championship-info-label {
    color: var(--champ-muted);
    font-size: 13px;
    font-weight: 600;
}

.championship-info-value {
    color: var(--champ-primary);
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.championship-quick-links {
    display: grid;
    gap: 8px;
    padding: 8px 22px 22px;
}

.championship-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid var(--champ-border);
    border-radius: 7px;
    color: var(--champ-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.championship-quick-link::after {
    content: "";
    font-size: 22px;
    line-height: 1;
}

.championship-quick-link:hover {
    border-color: var(--champ-secondary);
    background: #f7f8fa;
    color: var(--champ-secondary);
    text-decoration: none;
}

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

@media (max-width: 991px) {
    .championship-content-layout {
        grid-template-columns: 1fr;
    }

    .championship-side-card {
        position: static;
    }

    .championship-side-body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
    }

    .championship-quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .championship-hero {
        min-height: 230px;
        padding: 42px 16px 65px;
    }

    .championship-title {
        font-size: 37px;
    }

    .championship-subtitle {
        font-size: 16px;
    }

    .championship-navigation-wrap {
        margin-top: -35px;
        padding: 0 12px;
    }

    .championship-navigation {
        justify-content: flex-start;
        border-radius: 9px;
    }

    .championship-nav-link {
        min-width: 125px;
        min-height: 62px;
        padding: 13px 14px;
        font-size: 13px;
    }

    .championship-main {
        padding: 42px 12px 55px;
    }

    .championship-content-card {
        padding: 24px 19px;
    }

    .championship-section-heading {
        font-size: 25px;
    }

    .championship-rule {
        padding: 16px 15px 16px 52px;
        font-size: 14px;
    }

    .championship-rule-number {
        top: 15px;
        left: 14px;
    }

    .championship-side-body {
        grid-template-columns: 1fr;
    }

    .championship-quick-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .championship-title {
        font-size: 32px;
    }

    .championship-label {
        font-size: 11px;
    }

    .championship-content-card {
        padding: 22px 15px;
    }
}


/* SOURCE: 32men_players.php */


        /* =====================================================
           BASE
        ===================================================== */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #f4f6f9;
            color: #111827;
            font-family: Arial, Helvetica, sans-serif;
        }

        a {
            color: inherit;
        }

        .championship-page {
            --champ-primary: #111827;
            --champ-secondary: #253657;
            --champ-accent: #e3b341;
            --champ-light: #f4f6f9;
            --champ-border: #dfe3e8;
            --champ-muted: #697386;
            --champ-white: #ffffff;

            width: 100%;
            min-height: 100vh;
            background: var(--champ-light);
            color: var(--champ-primary);
        }

        .championship-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
        }


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

        .championship-hero {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 260px;
            padding: 55px 20px 72px;
            overflow: hidden;
            background:
                linear-gradient(
                    120deg,
                    rgba(10, 20, 38, 0.98),
                    rgba(37, 54, 87, 0.92)
                );
        }

        .championship-hero::before {
            position: absolute;
            top: -100px;
            right: -80px;
            width: 330px;
            height: 330px;
            border: 55px solid rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            content: "";
        }

        .championship-hero::after {
            position: absolute;
            bottom: -145px;
            left: -90px;
            width: 310px;
            height: 310px;
            border: 48px solid rgba(227, 179, 65, 0.08);
            border-radius: 50%;
            content: "";
        }

        .championship-hero-content {
            max-width: 800px;
        }

        .championship-label {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 14px;
            color: var(--champ-accent);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .championship-label::before {
            display: inline-block;
            width: 32px;
            height: 2px;
            background: var(--champ-accent);
            content: "";
        }

        .championship-title {
            margin: 0;
            color: var(--champ-white);
            font-size: clamp(34px, 5vw, 62px);
            font-weight: 800;
            line-height: 1.08;
        }

        .championship-subtitle {
            max-width: 720px;
            margin: 15px 0 0;
            color: rgba(255, 255, 255, 0.78);
            font-size: 18px;
            line-height: 1.6;
        }


        /* =====================================================
           CHAMPIONSHIP NAVIGATION
        ===================================================== */

        .championship-navigation-wrap {
            position: relative;
            z-index: 5;
            margin-top: -34px;
            padding: 0 20px;
        }

        .championship-navigation {
            display: flex;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            overflow-x: auto;
            border-radius: 12px;
            background: var(--champ-white);
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
            scrollbar-width: thin;
        }

        .championship-navigation::-webkit-scrollbar {
            height: 5px;
        }

        .championship-navigation::-webkit-scrollbar-thumb {
            border-radius: 5px;
            background: #c6cbd2;
        }

        .championship-nav-link {
            position: relative;
            display: flex;
            flex: 1 0 auto;
            align-items: center;
            justify-content: center;
            min-width: 145px;
            min-height: 68px;
            padding: 15px 18px;
            border-right: 1px solid var(--champ-border);
            color: #404958;
            font-size: 14px;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            transition:
                background 0.25s ease,
                color 0.25s ease;
        }

        .championship-nav-link:last-child {
            border-right: 0;
        }

        .championship-nav-link:hover,
        .championship-nav-link.active {
            background: var(--champ-secondary);
            color: var(--champ-white);
            text-decoration: none;
        }

        .championship-nav-link.active::after {
            position: absolute;
            right: 22px;
            bottom: 0;
            left: 22px;
            height: 4px;
            border-radius: 5px 5px 0 0;
            background: var(--champ-accent);
            content: "";
        }


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

        .championship-main {
            padding: 65px 20px 80px;
        }

        .players-heading-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 25px;
            margin-bottom: 30px;
        }

        .section-label {
            display: block;
            margin-bottom: 7px;
            color: #a07000;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-title {
            position: relative;
            margin: 0;
            padding-bottom: 14px;
            color: var(--champ-primary);
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
        }

        .section-title::after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 65px;
            height: 4px;
            border-radius: 5px;
            background: var(--champ-accent);
            content: "";
        }

        .section-description {
            max-width: 720px;
            margin: 17px 0 0;
            color: #5d6675;
            font-size: 15px;
            line-height: 1.7;
        }

        .players-total-card {
            flex: 0 0 auto;
            min-width: 155px;
            padding: 17px 22px;
            border: 1px solid var(--champ-border);
            border-radius: 12px;
            background: var(--champ-white);
            box-shadow: 0 7px 22px rgba(15, 23, 42, 0.06);
            text-align: center;
        }

        .players-total-number {
            display: block;
            color: var(--champ-secondary);
            font-size: 30px;
            font-weight: 800;
            line-height: 1;
        }

        .players-total-label {
            display: block;
            margin-top: 6px;
            color: var(--champ-muted);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }


        /* =====================================================
           GROUP QUICK NAVIGATION
        ===================================================== */

        .group-navigation {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .group-navigation-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 9px 17px;
            border: 1px solid #d7dce2;
            border-radius: 30px;
            background: var(--champ-white);
            color: #414b5a;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition:
                background 0.2s ease,
                border-color 0.2s ease,
                color 0.2s ease;
        }

        .group-navigation-link:hover {
            border-color: var(--champ-secondary);
            background: var(--champ-secondary);
            color: var(--champ-white);
            text-decoration: none;
        }


        /* =====================================================
           GROUP CARDS
        ===================================================== */

        .groups-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 25px;
        }

        .group-card {
            scroll-margin-top: 25px;
            overflow: hidden;
            border: 1px solid var(--champ-border);
            border-radius: 14px;
            background: var(--champ-white);
            box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
        }

        .group-card-header {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            min-height: 78px;
            padding: 20px 23px;
            overflow: hidden;
            background:
                linear-gradient(
                    120deg,
                    var(--champ-secondary),
                    #17243e
                );
        }

        .group-card-header::after {
            position: absolute;
            top: -45px;
            right: -35px;
            width: 130px;
            height: 130px;
            border: 24px solid rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            content: "";
        }

        .group-card-title {
            position: relative;
            z-index: 2;
            margin: 0;
            color: var(--champ-white);
            font-size: 23px;
            font-weight: 800;
        }

        .group-player-count {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 78px;
            min-height: 32px;
            padding: 6px 11px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.09);
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
        }

        .group-player-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .group-player-item {
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr) auto;
            align-items: center;
            gap: 14px;
            min-height: 66px;
            padding: 10px 20px;
            border-bottom: 1px solid #e8ebef;
        }

        .group-player-item:last-child {
            border-bottom: 0;
        }

        .group-player-item:hover {
            background: #fafbfc;
        }

        .player-position {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #edf0f4;
            color: #505968;
            font-size: 12px;
            font-weight: 800;
        }

        .player-name {
            min-width: 0;
            color: #202938;
            font-size: 15px;
            font-weight: 800;
            line-height: 1.35;
            word-break: break-word;
        }

        .star-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            min-height: 28px;
            padding: 5px 9px;
            border: 1px solid #f0d486;
            border-radius: 20px;
            background: #fff8df;
            color: #8c6500;
            font-size: 11px;
            font-weight: 800;
            white-space: nowrap;
        }

        .star-symbol {
            font-size: 13px;
            line-height: 1;
        }

        .no-player-badge {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 5px 9px;
            border-radius: 20px;
            background: #f1f3f5;
            color: #8a919a;
            font-size: 11px;
            font-weight: 700;
        }

        .empty-group {
            padding: 30px 20px;
            color: #7a828e;
            font-size: 14px;
            text-align: center;
        }

        .empty-page {
            padding: 50px 20px;
            border: 1px solid var(--champ-border);
            border-radius: 14px;
            background: var(--champ-white);
            color: #6a7380;
            font-size: 15px;
            text-align: center;
        }


        /* =====================================================
           PAGE FOOTER
        ===================================================== */

        .championship-page-footer {
            padding: 24px 20px;
            background: #111a2b;
            color: rgba(255, 255, 255, 0.65);
            font-size: 13px;
            text-align: center;
        }

        .championship-page-footer strong {
            color: #ffffff;
        }


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

        @media (max-width: 991px) {
            .groups-grid {
                gap: 20px;
            }

            .group-player-item {
                grid-template-columns: 40px minmax(0, 1fr);
            }

            .star-badge,
            .no-player-badge {
                grid-column: 2;
                justify-self: start;
                margin-top: -6px;
                margin-bottom: 5px;
            }
        }

        @media (max-width: 767px) {
            .championship-hero {
                min-height: 230px;
                padding: 42px 16px 65px;
            }

            .championship-title {
                font-size: 37px;
            }

            .championship-subtitle {
                font-size: 16px;
            }

            .championship-navigation-wrap {
                margin-top: -35px;
                padding: 0 12px;
            }

            .championship-navigation {
                justify-content: flex-start;
                border-radius: 9px;
            }

            .championship-nav-link {
                min-width: 125px;
                min-height: 62px;
                padding: 13px 14px;
                font-size: 13px;
            }

            .championship-main {
                padding: 43px 12px 55px;
            }

            .players-heading-row {
                align-items: stretch;
                flex-direction: column;
                gap: 20px;
            }

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

            .players-total-card {
                display: flex;
                align-items: center;
                justify-content: space-between;
                min-width: 0;
                padding: 15px 18px;
                text-align: left;
            }

            .players-total-label {
                margin-top: 0;
            }

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

            .group-navigation {
                flex-wrap: nowrap;
                padding-bottom: 5px;
                overflow-x: auto;
            }

            .group-navigation-link {
                flex: 0 0 auto;
            }

            .group-player-item {
                grid-template-columns: 40px minmax(0, 1fr) auto;
                padding: 11px 16px;
            }

            .star-badge,
            .no-player-badge {
                grid-column: auto;
                justify-self: auto;
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            .championship-title {
                font-size: 32px;
            }

            .championship-label {
                font-size: 11px;
            }

            .group-card-header {
                min-height: 70px;
                padding: 17px;
            }

            .group-card-title {
                font-size: 20px;
            }

            .group-player-item {
                grid-template-columns: 36px minmax(0, 1fr);
                gap: 10px;
                min-height: 65px;
                padding: 11px 14px;
            }

            .player-position {
                width: 31px;
                height: 31px;
            }

            .player-name {
                font-size: 14px;
            }

            .star-badge,
            .no-player-badge {
                grid-column: 2;
                justify-self: start;
                margin-top: -5px;
                margin-bottom: 4px;
            }
        }
    

/* SOURCE: 32men_fixtures.php */


        /* =====================================================
           BASE
        ===================================================== */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #f4f6f9;
            color: #111827;
            font-family: Arial, Helvetica, sans-serif;
        }

        a {
            color: inherit;
        }

        .championship-page {
            --champ-primary: #111827;
            --champ-secondary: #253657;
            --champ-accent: #e3b341;
            --champ-light: #f4f6f9;
            --champ-border: #dfe3e8;
            --champ-muted: #697386;
            --champ-white: #ffffff;
            --champ-live: #c62828;

            width: 100%;
            min-height: 100vh;
            background: var(--champ-light);
            color: var(--champ-primary);
        }

        .championship-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
        }


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

        .championship-hero {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 260px;
            padding: 55px 20px 72px;
            overflow: hidden;
            background:
                linear-gradient(
                    120deg,
                    rgba(10, 20, 38, 0.98),
                    rgba(37, 54, 87, 0.92)
                );
        }

        .championship-hero::before {
            position: absolute;
            top: -100px;
            right: -80px;
            width: 330px;
            height: 330px;
            border: 55px solid rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            content: "";
        }

        .championship-hero::after {
            position: absolute;
            bottom: -145px;
            left: -90px;
            width: 310px;
            height: 310px;
            border: 48px solid rgba(227, 179, 65, 0.08);
            border-radius: 50%;
            content: "";
        }

        .championship-hero-content {
            max-width: 800px;
        }

        .championship-label {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 14px;
            color: var(--champ-accent);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .championship-label::before {
            display: inline-block;
            width: 32px;
            height: 2px;
            background: var(--champ-accent);
            content: "";
        }

        .championship-title {
            margin: 0;
            color: var(--champ-white);
            font-size: clamp(34px, 5vw, 62px);
            font-weight: 800;
            line-height: 1.08;
        }

        .championship-subtitle {
            max-width: 720px;
            margin: 15px 0 0;
            color: rgba(255, 255, 255, 0.78);
            font-size: 18px;
            line-height: 1.6;
        }


        /* =====================================================
           MAIN NAVIGATION
        ===================================================== */

        .championship-navigation-wrap {
            position: relative;
            z-index: 5;
            margin-top: -34px;
            padding: 0 20px;
        }

        .championship-navigation {
            display: flex;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            overflow-x: auto;
            border-radius: 12px;
            background: var(--champ-white);
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
            scrollbar-width: thin;
        }

        .championship-navigation::-webkit-scrollbar {
            height: 5px;
        }

        .championship-navigation::-webkit-scrollbar-thumb {
            border-radius: 5px;
            background: #c6cbd2;
        }

        .championship-nav-link {
            position: relative;
            display: flex;
            flex: 1 0 auto;
            align-items: center;
            justify-content: center;
            min-width: 145px;
            min-height: 68px;
            padding: 15px 18px;
            border-right: 1px solid var(--champ-border);
            color: #404958;
            font-size: 14px;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            transition:
                background 0.25s ease,
                color 0.25s ease;
        }

        .championship-nav-link:last-child {
            border-right: 0;
        }

        .championship-nav-link:hover,
        .championship-nav-link.active {
            background: var(--champ-secondary);
            color: var(--champ-white);
            text-decoration: none;
        }

        .championship-nav-link.active::after {
            position: absolute;
            right: 22px;
            bottom: 0;
            left: 22px;
            height: 4px;
            border-radius: 5px 5px 0 0;
            background: var(--champ-accent);
            content: "";
        }


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

        .championship-main {
            padding: 65px 20px 80px;
        }

        .fixtures-heading-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 25px;
            margin-bottom: 26px;
        }

        .section-label {
            display: block;
            margin-bottom: 7px;
            color: #a07000;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-title {
            position: relative;
            margin: 0;
            padding-bottom: 14px;
            color: var(--champ-primary);
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
        }

        .section-title::after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 65px;
            height: 4px;
            border-radius: 5px;
            background: var(--champ-accent);
            content: "";
        }

        .section-description {
            max-width: 720px;
            margin: 17px 0 0;
            color: #5d6675;
            font-size: 15px;
            line-height: 1.7;
        }


        /* =====================================================
           SUMMARY
        ===================================================== */

        .fixtures-summary {
            display: flex;
            gap: 12px;
        }

        .summary-card {
            min-width: 125px;
            padding: 15px 18px;
            border: 1px solid var(--champ-border);
            border-radius: 11px;
            background: var(--champ-white);
            box-shadow: 0 7px 22px rgba(15, 23, 42, 0.06);
            text-align: center;
        }

        .summary-number {
            display: block;
            color: var(--champ-secondary);
            font-size: 27px;
            font-weight: 800;
            line-height: 1;
        }

        .summary-card.live .summary-number {
            color: var(--champ-live);
        }

        .summary-label {
            display: block;
            margin-top: 7px;
            color: var(--champ-muted);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
        }


        /* =====================================================
           FILTERS
        ===================================================== */

        .fixture-filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            padding: 15px;
            border: 1px solid var(--champ-border);
            border-radius: 12px;
            background: var(--champ-white);
        }

        .fixture-filter-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 9px 18px;
            border: 1px solid #d8dde3;
            border-radius: 30px;
            background: #ffffff;
            color: #414b5a;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition:
                background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease;
        }

        .fixture-filter-link:hover,
        .fixture-filter-link.active {
            border-color: var(--champ-secondary);
            background: var(--champ-secondary);
            color: var(--champ-white);
            text-decoration: none;
        }


        /* =====================================================
           FIXTURE STAGE HEADINGS
        ===================================================== */

        .fixture-stage-heading {
            margin: 0 0 20px;
        }

        .fixture-stage-heading.knockout-heading {
            margin-top: 48px;
        }

        .fixture-stage-label {
            display: block;
            margin-bottom: 6px;
            color: #a07000;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .fixture-stage-title {
            position: relative;
            margin: 0;
            padding-bottom: 12px;
            color: #111827;
            font-size: 26px;
            font-weight: 800;
        }

        .fixture-stage-title::after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 55px;
            height: 4px;
            border-radius: 5px;
            background: #e3b341;
            content: "";
        }


        /* =====================================================
           ROUND SECTION
        ===================================================== */

        .round-section {
            margin-bottom: 32px;
            overflow: hidden;
            border: 1px solid var(--champ-border);
            border-radius: 14px;
            background: var(--champ-white);
            box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
        }

        .round-section:last-child {
            margin-bottom: 0;
        }

        .round-header {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            min-height: 78px;
            padding: 20px 24px;
            overflow: hidden;
            background:
                linear-gradient(
                    120deg,
                    var(--champ-secondary),
                    #17243e
                );
        }

        .round-header::after {
            position: absolute;
            top: -55px;
            right: -40px;
            width: 150px;
            height: 150px;
            border: 27px solid rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            content: "";
        }

        .round-title {
            position: relative;
            z-index: 2;
            margin: 0;
            color: #ffffff;
            font-size: 23px;
            font-weight: 800;
        }

        .round-count {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            padding: 6px 12px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.09);
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
        }


        /* =====================================================
           FIXTURE TABLE
        ===================================================== */

        .fixture-table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        .fixture-table {
            width: 100%;
            min-width: 970px;
            border-collapse: collapse;
        }

        .fixture-table th,
        .fixture-table td {
            padding: 15px 14px;
            border-bottom: 1px solid #e7eaee;
            text-align: left;
            vertical-align: middle;
        }

        .fixture-table th {
            background: #f4f6f8;
            color: #555f6d;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .fixture-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .fixture-table tbody tr:hover {
            background: #fafbfc;
        }

        .fixture-date {
            min-width: 105px;
            color: #283242;
            font-size: 14px;
            font-weight: 800;
            white-space: nowrap;
        }

        .fixture-time {
            color: #475161;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .fixture-group {
            display: inline-flex;
            align-items: center;
            min-height: 29px;
            padding: 5px 10px;
            border-radius: 20px;
            background: #edf0f4;
            color: #505968;
            font-size: 11px;
            font-weight: 800;
            white-space: nowrap;
        }

        .fixture-table-number {
            color: var(--champ-secondary);
            font-size: 14px;
            font-weight: 800;
            white-space: nowrap;
        }

        .fixture-player {
            min-width: 155px;
            color: #202938;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.4;
        }

        .versus-text {
            color: #9198a3;
            font-size: 11px;
            font-weight: 800;
            text-align: center;
            text-transform: uppercase;
        }


        /* =====================================================
           STATUS BADGES
        ===================================================== */

        .fixture-status {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 92px;
            min-height: 30px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            white-space: nowrap;
        }

        .status-yet-to-start {
            border: 1px solid #d7dce2;
            background: #f2f4f6;
            color: #596270;
        }

        .status-live {
            border: 1px solid #ef9a9a;
            background: #ffebee;
            color: #b71c1c;
        }

        .status-live::before {
            width: 7px;
            height: 7px;
            margin-right: 6px;
            border-radius: 50%;
            background: #c62828;
            content: "";
            animation: livePulse 1.2s infinite;
        }

        .status-postponed {
            border: 1px solid #ffe082;
            background: #fff8e1;
            color: #8d6e00;
        }

        .status-bye {
            border: 1px solid #90caf9;
            background: #e3f2fd;
            color: #1565c0;
        }

        .status-default {
            border: 1px solid #d7dce2;
            background: #f2f4f6;
            color: #596270;
        }

        @keyframes livePulse {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }

            100% {
                opacity: 1;
            }
        }


        /* =====================================================
           MOBILE FIXTURE CARDS
        ===================================================== */

        .mobile-fixtures {
            display: none;
        }

        .mobile-fixture-card {
            padding: 18px;
            border-bottom: 1px solid #e5e8ec;
        }

        .mobile-fixture-card:last-child {
            border-bottom: 0;
        }

        .mobile-fixture-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
        }

        .mobile-fixture-date {
            color: #283242;
            font-size: 13px;
            font-weight: 800;
        }

        .mobile-fixture-time {
            margin-left: 5px;
            color: #697386;
            font-weight: 700;
        }

        .mobile-fixture-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .mobile-table-badge {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 5px 10px;
            border-radius: 20px;
            background: #edf0f4;
            color: #4c5664;
            font-size: 11px;
            font-weight: 800;
        }

        .mobile-matchup {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
            align-items: center;
            gap: 10px;
        }

        .mobile-player {
            min-width: 0;
            padding: 13px 10px;
            border: 1px solid #e1e5e9;
            border-radius: 8px;
            background: #fafbfc;
            color: #202938;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.35;
            text-align: center;
            word-break: break-word;
        }

        .mobile-vs {
            color: #8b939e;
            font-size: 11px;
            font-weight: 800;
            text-align: center;
        }


        /* =====================================================
           EMPTY STATE
        ===================================================== */

        .empty-fixtures {
            padding: 55px 20px;
            border: 1px solid var(--champ-border);
            border-radius: 14px;
            background: var(--champ-white);
            box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
            text-align: center;
        }

        .empty-fixtures-title {
            margin: 0 0 9px;
            color: #273140;
            font-size: 21px;
            font-weight: 800;
        }

        .empty-fixtures-text {
            margin: 0;
            color: #737c88;
            font-size: 14px;
            line-height: 1.6;
        }


        /* =====================================================
           PAGE FOOTER
        ===================================================== */

        .championship-page-footer {
            padding: 24px 20px;
            background: #111a2b;
            color: rgba(255, 255, 255, 0.65);
            font-size: 13px;
            text-align: center;
        }

        .championship-page-footer strong {
            color: #ffffff;
        }


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

        @media (max-width: 991px) {
            .fixtures-heading-row {
                align-items: stretch;
                flex-direction: column;
            }

            .fixtures-summary {
                align-self: flex-start;
            }
        }

        @media (max-width: 767px) {
            .championship-hero {
                min-height: 230px;
                padding: 42px 16px 65px;
            }

            .championship-title {
                font-size: 37px;
            }

            .championship-subtitle {
                font-size: 16px;
            }

            .championship-navigation-wrap {
                margin-top: -35px;
                padding: 0 12px;
            }

            .championship-navigation {
                justify-content: flex-start;
                border-radius: 9px;
            }

            .championship-nav-link {
                min-width: 125px;
                min-height: 62px;
                padding: 13px 14px;
                font-size: 13px;
            }

            .championship-main {
                padding: 43px 12px 55px;
            }

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

            .fixtures-summary {
                width: 100%;
            }

            .summary-card {
                flex: 1;
                min-width: 0;
            }

            .fixture-filter-bar {
                flex-wrap: nowrap;
                padding: 12px;
                overflow-x: auto;
            }

            .fixture-filter-link {
                flex: 0 0 auto;
            }

            .round-header {
                min-height: 70px;
                padding: 17px;
            }

            .round-title {
                font-size: 20px;
            }

            .fixture-table-responsive {
                display: none;
            }

            .mobile-fixtures {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .championship-title {
                font-size: 32px;
            }

            .championship-label {
                font-size: 11px;
            }

            .round-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }

            .mobile-fixture-card {
                padding: 16px 13px;
            }

            .mobile-fixture-top {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }

            .mobile-matchup {
                grid-template-columns: 1fr;
            }

            .mobile-vs {
                padding: 1px 0;
            }
        }
    

/* SOURCE: 32men_results(1).php */


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#f4f6f9;color:#111827;font-family:Arial,Helvetica,sans-serif}
a{color:inherit}

.championship-page{
    --champ-primary:#111827;
    --champ-secondary:#253657;
    --champ-accent:#e3b341;
    --champ-light:#f4f6f9;
    --champ-border:#dfe3e8;
    --champ-muted:#697386;
    --champ-white:#fff;
    width:100%;
    min-height:100vh;
    background:var(--champ-light);
}

.championship-container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1240px;
    margin:0 auto;
}

.championship-hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:260px;
    padding:55px 20px 72px;
    overflow:hidden;
    background:linear-gradient(120deg,rgba(10,20,38,.98),rgba(37,54,87,.92));
}

.championship-hero:before{
    position:absolute;
    top:-100px;
    right:-80px;
    width:330px;
    height:330px;
    border:55px solid rgba(255,255,255,.04);
    border-radius:50%;
    content:"";
}

.championship-hero:after{
    position:absolute;
    bottom:-145px;
    left:-90px;
    width:310px;
    height:310px;
    border:48px solid rgba(227,179,65,.08);
    border-radius:50%;
    content:"";
}

.championship-hero-content{max-width:800px}

.championship-label{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:14px;
    color:var(--champ-accent);
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.championship-label:before{
    display:inline-block;
    width:32px;
    height:2px;
    background:var(--champ-accent);
    content:"";
}

.championship-title{
    margin:0;
    color:#fff;
    font-size:clamp(34px,5vw,62px);
    font-weight:800;
    line-height:1.08;
}

.championship-subtitle{
    max-width:720px;
    margin:15px 0 0;
    color:rgba(255,255,255,.78);
    font-size:18px;
    line-height:1.6;
}

.championship-navigation-wrap{
    position:relative;
    z-index:5;
    margin-top:-34px;
    padding:0 20px;
}

.championship-navigation{
    display:flex;
    width:100%;
    max-width:1240px;
    margin:0 auto;
    overflow-x:auto;
    border-radius:12px;
    background:#fff;
    box-shadow:0 12px 35px rgba(15,23,42,.14);
    scrollbar-width:thin;
}

.championship-nav-link{
    position:relative;
    display:flex;
    flex:1 0 auto;
    align-items:center;
    justify-content:center;
    min-width:145px;
    min-height:68px;
    padding:15px 18px;
    border-right:1px solid var(--champ-border);
    color:#404958;
    font-size:14px;
    font-weight:800;
    text-align:center;
    text-decoration:none;
}

.championship-nav-link:last-child{border-right:0}
.championship-nav-link:hover,
.championship-nav-link.active{background:var(--champ-secondary);color:#fff}

.championship-nav-link.active:after{
    position:absolute;
    right:22px;
    bottom:0;
    left:22px;
    height:4px;
    border-radius:5px 5px 0 0;
    background:var(--champ-accent);
    content:"";
}

.championship-main{padding:65px 20px 80px}

.page-heading{margin-bottom:28px}

.section-label{
    display:block;
    margin-bottom:7px;
    color:#a07000;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.page-title{
    position:relative;
    margin:0;
    padding-bottom:14px;
    font-size:34px;
    font-weight:800;
}

.page-title:after{
    position:absolute;
    bottom:0;
    left:0;
    width:65px;
    height:4px;
    border-radius:5px;
    background:var(--champ-accent);
    content:"";
}

.page-description{
    max-width:760px;
    margin:15px 0 0;
    color:#5d6675;
    font-size:15px;
    line-height:1.7;
}

.summary-strip{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:25px;
    padding:17px 20px;
    border:1px solid var(--champ-border);
    border-radius:12px;
    background:#fff;
    box-shadow:0 6px 20px rgba(15,23,42,.05);
}

.summary-strip strong{font-size:22px}
.summary-strip span{color:var(--champ-muted);font-size:14px}

.groups-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.group-card{
    overflow:hidden;
    border:1px solid var(--champ-border);
    border-radius:14px;
    background:#fff;
    box-shadow:0 8px 26px rgba(15,23,42,.07);
}

.group-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:18px 20px;
    background:var(--champ-secondary);
    color:#fff;
}

.group-card-title{
    margin:0;
    font-size:22px;
    font-weight:800;
}

.group-table-label{
    display:inline-flex;
    padding:6px 10px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:20px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:12px;
    font-weight:800;
}

.results-list{padding:16px}

.result-card{
    margin-bottom:14px;
    padding:15px;
    border:1px solid var(--champ-border);
    border-radius:10px;
    background:#fff;
}

.result-card:last-child{margin-bottom:0}

.result-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:13px;
}

.result-date{
    color:#4b5563;
    font-size:13px;
    font-weight:700;
}

.status-badge{
    display:inline-flex;
    padding:5px 9px;
    border-radius:20px;
    font-size:11px;
    font-weight:800;
}

.status-completed{background:#d4edda;color:#155724}
.status-bye{background:#d1ecf1;color:#0c5460}

.result-match{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
    align-items:center;
    gap:14px;
}

.result-player{
    min-width:0;
    font-size:15px;
    font-weight:800;
}

.result-player:last-child{text-align:right}

.player-profile-link{
    color:var(--champ-secondary);
    text-decoration:none;
}

.player-profile-link:hover{text-decoration:underline}

.winner-player{color:#137447}

.score-box{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:82px;
    padding:9px 12px;
    border-radius:8px;
    background:var(--champ-secondary);
    color:#fff;
    font-size:19px;
    font-weight:900;
    letter-spacing:1px;
}

.result-details{
    display:flex;
    flex-wrap:wrap;
    gap:7px 14px;
    margin-top:12px;
    padding-top:11px;
    border-top:1px solid #edf0f2;
    color:var(--champ-muted);
    font-size:12px;
}

.winner-line{
    margin-top:11px;
    padding:9px 11px;
    border-radius:7px;
    background:#edf8f2;
    color:#105c36;
    font-size:13px;
    font-weight:800;
}

.empty-message{
    padding:38px 20px;
    color:var(--champ-muted);
    font-size:14px;
    text-align:center;
}

.championship-page-footer{
    padding:24px 20px;
    background:#111a2b;
    color:rgba(255,255,255,.65);
    font-size:13px;
    text-align:center;
}

.championship-page-footer strong{color:#fff}

@media(max-width:960px){
    .groups-grid{grid-template-columns:1fr}
}

@media(max-width:767px){
    .championship-hero{
        min-height:230px;
        padding:42px 16px 65px;
    }

    .championship-title{font-size:37px}
    .championship-subtitle{font-size:16px}

    .championship-navigation-wrap{
        margin-top:-35px;
        padding:0 12px;
    }

    .championship-navigation{
        justify-content:flex-start;
        border-radius:9px;
    }

    .championship-nav-link{
        min-width:125px;
        min-height:62px;
        padding:13px 14px;
        font-size:13px;
    }

    .championship-main{padding:43px 12px 55px}
    .page-title{font-size:29px}

    .summary-strip{
        align-items:flex-start;
        flex-direction:column;
    }

    .group-card-header{padding:16px}
    .group-card-title{font-size:20px}

    .result-match{
        grid-template-columns:1fr;
        text-align:center;
    }

    .result-player,
    .result-player:last-child{text-align:center}

    .score-box{
        width:100%;
        max-width:150px;
        margin:0 auto;
    }

    .result-details{justify-content:center}
}


/* SOURCE: 32men_group_table(1).php */


*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:#f4f6f9;color:#111827;font-family:Arial,Helvetica,sans-serif}a{color:inherit}.championship-page{--champ-primary:#111827;--champ-secondary:#253657;--champ-accent:#e3b341;--champ-light:#f4f6f9;--champ-border:#dfe3e8;--champ-muted:#697386;--champ-white:#fff;width:100%;min-height:100vh;background:var(--champ-light)}.championship-container{position:relative;z-index:2;width:100%;max-width:1240px;margin:0 auto}.championship-hero{position:relative;display:flex;align-items:center;min-height:260px;padding:55px 20px 72px;overflow:hidden;background:linear-gradient(120deg,rgba(10,20,38,.98),rgba(37,54,87,.92))}.championship-hero:before{position:absolute;top:-100px;right:-80px;width:330px;height:330px;border:55px solid rgba(255,255,255,.04);border-radius:50%;content:""}.championship-hero:after{position:absolute;bottom:-145px;left:-90px;width:310px;height:310px;border:48px solid rgba(227,179,65,.08);border-radius:50%;content:""}.championship-hero-content{max-width:800px}.championship-label{display:inline-flex;align-items:center;gap:9px;margin-bottom:14px;color:var(--champ-accent);font-size:13px;font-weight:800;letter-spacing:2px;text-transform:uppercase}.championship-label:before{display:inline-block;width:32px;height:2px;background:var(--champ-accent);content:""}.championship-title{margin:0;color:#fff;font-size:clamp(34px,5vw,62px);font-weight:800;line-height:1.08}.championship-subtitle{max-width:720px;margin:15px 0 0;color:rgba(255,255,255,.78);font-size:18px;line-height:1.6}.championship-navigation-wrap{position:relative;z-index:5;margin-top:-34px;padding:0 20px}.championship-navigation{display:flex;width:100%;max-width:1240px;margin:0 auto;overflow-x:auto;border-radius:12px;background:#fff;box-shadow:0 12px 35px rgba(15,23,42,.14);scrollbar-width:thin}.championship-nav-link{position:relative;display:flex;flex:1 0 auto;align-items:center;justify-content:center;min-width:145px;min-height:68px;padding:15px 18px;border-right:1px solid var(--champ-border);color:#404958;font-size:14px;font-weight:800;text-align:center;text-decoration:none}.championship-nav-link:last-child{border-right:0}.championship-nav-link:hover,.championship-nav-link.active{background:var(--champ-secondary);color:#fff}.championship-nav-link.active:after{position:absolute;right:22px;bottom:0;left:22px;height:4px;border-radius:5px 5px 0 0;background:var(--champ-accent);content:""}.championship-main{padding:65px 20px 80px}.page-heading{margin-bottom:28px}.section-label{display:block;margin-bottom:7px;color:#a07000;font-size:12px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase}.page-title{position:relative;margin:0;padding-bottom:14px;font-size:34px;font-weight:800}.page-title:after{position:absolute;bottom:0;left:0;width:65px;height:4px;border-radius:5px;background:var(--champ-accent);content:""}.page-description{max-width:760px;margin:15px 0 0;color:#5d6675;font-size:15px;line-height:1.7}.groups-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.group-card{overflow:hidden;border:1px solid var(--champ-border);border-radius:14px;background:#fff;box-shadow:0 8px 26px rgba(15,23,42,.07)}.group-card-header{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:18px 20px;background:var(--champ-secondary);color:#fff}.group-card-title{margin:0;font-size:22px;font-weight:800}.group-table-label{display:inline-flex;padding:6px 10px;border:1px solid rgba(255,255,255,.22);border-radius:20px;background:rgba(255,255,255,.08);color:#fff;font-size:12px;font-weight:800}.table-responsive{width:100%;overflow-x:auto}.standings-table{width:100%;min-width:560px;border-collapse:collapse}.standings-table th,.standings-table td{padding:14px 12px;border-bottom:1px solid var(--champ-border);font-size:14px;text-align:center}.standings-table th{background:#f7f8f9;color:#505968;font-size:12px;font-weight:800;text-transform:uppercase}.standings-table th:nth-child(2),.standings-table td:nth-child(2){text-align:left}.standings-table tbody tr:last-child td{border-bottom:0}.standings-table tbody tr:hover{background:#fafbfc}.position-cell{width:60px;color:#6b7280;font-weight:800}.player-link{color:var(--champ-secondary);font-weight:800;text-decoration:none}.player-link:hover{text-decoration:underline}.points-cell{color:#a07000;font-size:16px;font-weight:900}.top-four{background:#fffaf0}.qualification-mark{display:inline-block;width:8px;height:8px;margin-right:8px;border-radius:50%;background:var(--champ-accent)}.empty-message{padding:35px 20px;color:var(--champ-muted);font-size:14px;text-align:center}.championship-page-footer{padding:24px 20px;background:#111a2b;color:rgba(255,255,255,.65);font-size:13px;text-align:center}.championship-page-footer strong{color:#fff}@media(max-width:960px){.groups-grid{grid-template-columns:1fr}}@media(max-width:767px){.championship-hero{min-height:230px;padding:42px 16px 65px}.championship-title{font-size:37px}.championship-subtitle{font-size:16px}.championship-navigation-wrap{margin-top:-35px;padding:0 12px}.championship-navigation{justify-content:flex-start;border-radius:9px}.championship-nav-link{min-width:125px;min-height:62px;padding:13px 14px;font-size:13px}.championship-main{padding:43px 12px 55px}.page-title{font-size:29px}.group-card-header{padding:16px}.group-card-title{font-size:20px}}


/* SOURCE: 32men_knockout_results(1).php */


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#f4f6f9;color:#111827;font-family:Arial,Helvetica,sans-serif}
a{color:inherit}
.championship-page{--champ-primary:#111827;--champ-secondary:#253657;--champ-accent:#e3b341;--champ-light:#f4f6f9;--champ-border:#dfe3e8;--champ-muted:#697386;--champ-white:#fff;width:100%;min-height:100vh;background:var(--champ-light)}
.championship-container{position:relative;z-index:2;width:100%;max-width:1240px;margin:0 auto}
.championship-hero{position:relative;display:flex;align-items:center;min-height:260px;padding:55px 20px 72px;overflow:hidden;background:linear-gradient(120deg,rgba(10,20,38,.98),rgba(37,54,87,.92))}
.championship-hero:before{position:absolute;top:-100px;right:-80px;width:330px;height:330px;border:55px solid rgba(255,255,255,.04);border-radius:50%;content:""}
.championship-hero:after{position:absolute;bottom:-145px;left:-90px;width:310px;height:310px;border:48px solid rgba(227,179,65,.08);border-radius:50%;content:""}
.championship-hero-content{max-width:800px}
.championship-label{display:inline-flex;align-items:center;gap:9px;margin-bottom:14px;color:var(--champ-accent);font-size:13px;font-weight:800;letter-spacing:2px;text-transform:uppercase}
.championship-label:before{display:inline-block;width:32px;height:2px;background:var(--champ-accent);content:""}
.championship-title{margin:0;color:#fff;font-size:clamp(34px,5vw,62px);font-weight:800;line-height:1.08}
.championship-subtitle{max-width:720px;margin:15px 0 0;color:rgba(255,255,255,.78);font-size:18px;line-height:1.6}
.championship-navigation-wrap{position:relative;z-index:5;margin-top:-34px;padding:0 20px}
.championship-navigation{display:flex;width:100%;max-width:1240px;margin:0 auto;overflow-x:auto;border-radius:12px;background:#fff;box-shadow:0 12px 35px rgba(15,23,42,.14);scrollbar-width:thin}
.championship-nav-link{position:relative;display:flex;flex:1 0 auto;align-items:center;justify-content:center;min-width:145px;min-height:68px;padding:15px 18px;border-right:1px solid var(--champ-border);color:#404958;font-size:14px;font-weight:800;text-align:center;text-decoration:none}
.championship-nav-link:last-child{border-right:0}
.championship-nav-link:hover,.championship-nav-link.active{background:var(--champ-secondary);color:#fff}
.championship-nav-link.active:after{position:absolute;right:22px;bottom:0;left:22px;height:4px;border-radius:5px 5px 0 0;background:var(--champ-accent);content:""}
.championship-main{padding:65px 20px 80px}
.page-heading{margin-bottom:25px}
.section-label{display:block;margin-bottom:7px;color:#a07000;font-size:12px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase}
.page-title{position:relative;margin:0;padding-bottom:14px;font-size:34px;font-weight:800}
.page-title:after{position:absolute;bottom:0;left:0;width:65px;height:4px;border-radius:5px;background:var(--champ-accent);content:""}
.page-description{max-width:780px;margin:15px 0 0;color:#5d6675;font-size:15px;line-height:1.7}
.competition-tabs{display:flex;gap:12px;margin-bottom:25px;padding:8px;border:1px solid var(--champ-border);border-radius:12px;background:#fff;box-shadow:0 7px 22px rgba(15,23,42,.06)}
.competition-tab{display:flex;flex:1;align-items:center;justify-content:center;min-height:52px;padding:12px 18px;border-radius:8px;color:#4b5563;font-size:15px;font-weight:800;text-align:center;text-decoration:none}
.competition-tab:hover,.competition-tab.active{background:var(--champ-secondary);color:#fff}
.summary-strip{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:25px;padding:17px 20px;border:1px solid var(--champ-border);border-radius:12px;background:#fff}
.summary-strip strong{font-size:22px}
.summary-strip span{color:var(--champ-muted);font-size:14px}
.round-section{margin-bottom:25px;overflow:hidden;border:1px solid var(--champ-border);border-radius:14px;background:#fff;box-shadow:0 8px 26px rgba(15,23,42,.07)}
.round-section:last-child{margin-bottom:0}
.round-header{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:18px 21px;background:var(--champ-secondary);color:#fff}
.round-title{margin:0;font-size:22px;font-weight:800}
.round-count{display:inline-flex;padding:6px 11px;border:1px solid rgba(255,255,255,.22);border-radius:20px;background:rgba(255,255,255,.08);font-size:12px;font-weight:800}
.results-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;padding:18px}
.result-card{padding:17px;border:1px solid var(--champ-border);border-radius:10px;background:#fff}
.result-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}
.result-date{color:#4b5563;font-size:13px;font-weight:700}
.status-badge{display:inline-flex;padding:5px 9px;border-radius:20px;font-size:11px;font-weight:800}
.status-completed{background:#d4edda;color:#155724}
.status-bye{background:#d1ecf1;color:#0c5460}
.result-match{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);align-items:center;gap:14px}
.result-player{min-width:0;font-size:15px;font-weight:800}
.result-player:last-child{text-align:right}
.player-profile-link{color:var(--champ-secondary);text-decoration:none}
.player-profile-link:hover{text-decoration:underline}
.winner-player{color:#137447}
.score-box{display:flex;align-items:center;justify-content:center;min-width:82px;padding:9px 12px;border-radius:8px;background:var(--champ-secondary);color:#fff;font-size:19px;font-weight:900;letter-spacing:1px}
.result-details{display:flex;flex-wrap:wrap;gap:7px 14px;margin-top:12px;padding-top:11px;border-top:1px solid #edf0f2;color:var(--champ-muted);font-size:12px}
.winner-line{margin-top:11px;padding:9px 11px;border-radius:7px;background:#edf8f2;color:#105c36;font-size:13px;font-weight:800}
.page-empty{padding:55px 20px;border:1px solid var(--champ-border);border-radius:14px;background:#fff;color:var(--champ-muted);text-align:center}
.championship-page-footer{padding:24px 20px;background:#111a2b;color:rgba(255,255,255,.65);font-size:13px;text-align:center}
.championship-page-footer strong{color:#fff}
@media(max-width:950px){.results-grid{grid-template-columns:1fr}}
@media(max-width:767px){
.championship-hero{min-height:230px;padding:42px 16px 65px}
.championship-title{font-size:37px}
.championship-subtitle{font-size:16px}
.championship-navigation-wrap{margin-top:-35px;padding:0 12px}
.championship-navigation{justify-content:flex-start;border-radius:9px}
.championship-nav-link{min-width:125px;min-height:62px;padding:13px 14px;font-size:13px}
.championship-main{padding:43px 12px 55px}
.page-title{font-size:29px}
.competition-tabs{flex-direction:column}
.competition-tab{width:100%}
.summary-strip{align-items:flex-start;flex-direction:column}
.round-header{padding:16px}
.round-title{font-size:20px}
.results-grid{padding:13px}
.result-match{grid-template-columns:1fr;text-align:center}
.result-player,.result-player:last-child{text-align:center}
.score-box{width:100%;max-width:150px;margin:0 auto}
.result-details{justify-content:center}
}


/* SOURCE: player_profile(1).php */


*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:#f4f6f9;color:#111827;font-family:Arial,Helvetica,sans-serif}a{color:inherit}.championship-page{--champ-primary:#111827;--champ-secondary:#253657;--champ-accent:#e3b341;--champ-light:#f4f6f9;--champ-border:#dfe3e8;--champ-muted:#697386;--champ-white:#fff;--champ-live:#c62828;width:100%;min-height:100vh;background:var(--champ-light)}.championship-container{position:relative;z-index:2;width:100%;max-width:1240px;margin:0 auto}.championship-hero{position:relative;display:flex;align-items:center;min-height:260px;padding:55px 20px 72px;overflow:hidden;background:linear-gradient(120deg,rgba(10,20,38,.98),rgba(37,54,87,.92))}.championship-hero:before{position:absolute;top:-100px;right:-80px;width:330px;height:330px;border:55px solid rgba(255,255,255,.04);border-radius:50%;content:""}.championship-hero:after{position:absolute;bottom:-145px;left:-90px;width:310px;height:310px;border:48px solid rgba(227,179,65,.08);border-radius:50%;content:""}.championship-hero-content{max-width:800px}.championship-label{display:inline-flex;align-items:center;gap:9px;margin-bottom:14px;color:var(--champ-accent);font-size:13px;font-weight:800;letter-spacing:2px;text-transform:uppercase}.championship-label:before{display:inline-block;width:32px;height:2px;background:var(--champ-accent);content:""}.championship-title{margin:0;color:#fff;font-size:clamp(34px,5vw,62px);font-weight:800;line-height:1.08}.championship-subtitle{max-width:720px;margin:15px 0 0;color:rgba(255,255,255,.78);font-size:18px;line-height:1.6}.championship-navigation-wrap{position:relative;z-index:5;margin-top:-34px;padding:0 20px}.championship-navigation{display:flex;width:100%;max-width:1240px;margin:0 auto;overflow-x:auto;border-radius:12px;background:#fff;box-shadow:0 12px 35px rgba(15,23,42,.14);scrollbar-width:thin}.championship-nav-link{position:relative;display:flex;flex:1 0 auto;align-items:center;justify-content:center;min-width:145px;min-height:68px;padding:15px 18px;border-right:1px solid var(--champ-border);color:#404958;font-size:14px;font-weight:800;text-align:center;text-decoration:none}.championship-nav-link:last-child{border-right:0}.championship-nav-link:hover,.championship-nav-link.active{background:var(--champ-secondary);color:#fff}.championship-nav-link.active:after{position:absolute;right:22px;bottom:0;left:22px;height:4px;border-radius:5px 5px 0 0;background:var(--champ-accent);content:""}.championship-main{padding:65px 20px 80px}.profile-heading-row{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:26px}.section-label{display:block;margin-bottom:7px;color:#a07000;font-size:12px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase}.profile-title{position:relative;margin:0;padding-bottom:14px;font-size:34px;font-weight:800}.profile-title:after{position:absolute;bottom:0;left:0;width:65px;height:4px;border-radius:5px;background:var(--champ-accent);content:""}.profile-subtitle{margin:15px 0 0;color:#5d6675;font-size:15px;line-height:1.7}.profile-actions{display:flex;gap:10px;flex-wrap:wrap}.action-button{display:inline-flex;align-items:center;justify-content:center;min-height:45px;padding:10px 18px;border-radius:8px;background:var(--champ-secondary);color:#fff;font-size:14px;font-weight:800;text-decoration:none}.action-button.secondary{border:1px solid var(--champ-border);background:#fff;color:var(--champ-secondary)}.summary-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;margin-bottom:22px}.summary-card{padding:17px;border:1px solid var(--champ-border);border-radius:11px;background:#fff;box-shadow:0 7px 22px rgba(15,23,42,.06)}.summary-label{display:block;margin-bottom:7px;color:var(--champ-muted);font-size:11px;font-weight:800;text-transform:uppercase}.summary-value{display:block;color:var(--champ-secondary);font-size:27px;font-weight:800}.content-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(300px,.85fr);gap:22px;align-items:start}.card{margin-bottom:22px;padding:22px;border:1px solid var(--champ-border);border-radius:14px;background:#fff;box-shadow:0 8px 26px rgba(15,23,42,.07)}.section-title{position:relative;margin:0 0 18px;padding-bottom:12px;font-size:24px;font-weight:800}.section-title:after{position:absolute;bottom:0;left:0;width:48px;height:3px;border-radius:5px;background:var(--champ-accent);content:""}.fixture-card{margin-bottom:14px;padding:17px;border:1px solid var(--champ-border);border-radius:10px;background:#fff}.fixture-card:last-child{margin-bottom:0}.fixture-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:13px}.fixture-time{font-size:14px;font-weight:800}.fixture-meta{margin-bottom:13px;color:var(--champ-muted);font-size:13px}.fixture-players{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);gap:12px;align-items:center}.fixture-player{padding:12px;border-radius:7px;background:#f7f8f9;font-size:15px;font-weight:800}.fixture-player:last-child{text-align:right}.fixture-vs{color:var(--champ-muted);font-size:12px;font-weight:800}.fixture-score{min-width:82px;padding:9px 12px;border-radius:7px;background:var(--champ-secondary);color:#fff;text-align:center;font-size:20px;font-weight:800;letter-spacing:1px}.score-label{display:block;margin-bottom:3px;color:#cfd4d8;font-size:9px;letter-spacing:.8px;text-transform:uppercase}.result-box{margin-top:13px;padding:11px 13px;border-radius:7px;background:#edf8f2;color:#105333;font-size:14px;font-weight:800}.result-loss{background:#fbeeee;color:#a32b2b}.status-badge{display:inline-block;padding:6px 10px;border-radius:20px;font-size:12px;font-weight:800;white-space:nowrap}.status-yet-to-start{color:#555d63;background:#e9ecef}.status-live{color:#721c24;background:#f8d7da}.status-completed{color:#155724;background:#d4edda}.status-cancelled{color:#721c24;background:#f5c6cb}.status-postponed{color:#856404;background:#fff3cd}.status-bye{color:#0c5460;background:#d1ecf1}.group-table{width:100%;border-collapse:collapse}.group-table th,.group-table td{padding:11px 8px;border-bottom:1px solid var(--champ-border);text-align:center;font-size:13px}.group-table th:nth-child(2),.group-table td:nth-child(2){text-align:left}.group-table th{background:#f7f8f9;font-size:12px}.current-player-row{background:#fff8e6;font-weight:800}.empty-message{padding:25px 10px;color:var(--champ-muted);text-align:center}.championship-page-footer{padding:24px 20px;background:#111a2b;color:rgba(255,255,255,.65);font-size:13px;text-align:center}.championship-page-footer strong{color:#fff}@media(max-width:1000px){.summary-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.content-grid{grid-template-columns:1fr}}@media(max-width:767px){.championship-hero{min-height:230px;padding:42px 16px 65px}.championship-title{font-size:37px}.championship-subtitle{font-size:16px}.championship-navigation-wrap{margin-top:-35px;padding:0 12px}.championship-navigation{justify-content:flex-start;border-radius:9px}.championship-nav-link{min-width:125px;min-height:62px;padding:13px 14px;font-size:13px}.championship-main{padding:43px 12px 55px}.profile-heading-row{align-items:stretch;flex-direction:column}.profile-actions{width:100%}.action-button{flex:1}.summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.card{padding:16px}.fixture-players{grid-template-columns:1fr}.fixture-player:last-child{text-align:left}.fixture-vs,.fixture-score{justify-self:center}}@media(max-width:390px){.summary-grid{grid-template-columns:1fr}}



/* =========================================================
   FINAL SHARED NAVIGATION OVERRIDES
   Keep this section last.
========================================================= */
@media (min-width: 768px) {
    .championship-mobile-nav-header { display: none !important; }
    .championship-menu-toggle { display: none !important; }
    .championship-navigation { display: flex !important; }
}

@media (max-width: 767px) {
    .championship-navigation-wrap {
        margin-top: -35px !important;
        padding: 0 12px !important;
    }

    .championship-mobile-nav-header {
        position: relative;
        z-index: 6;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 10px 13px 10px 18px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(15,23,42,.14);
    }

    .championship-mobile-nav-title {
        color: var(--champ-secondary);
        font-size: 15px;
        font-weight: 800;
    }

    .championship-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 42px;
        padding: 0;
        border: 0;
        border-radius: 7px;
        background: var(--champ-secondary);
        cursor: pointer;
    }

    .championship-menu-toggle span {
        display: block;
        width: 23px;
        height: 3px;
        border-radius: 5px;
        background: #fff;
        transition: transform .25s ease, opacity .25s ease;
    }

    .championship-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .championship-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .championship-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .championship-navigation {
        display: none !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 7px !important;
        overflow: hidden !important;
        border-radius: 10px !important;
        background: #fff !important;
        box-shadow: 0 12px 35px rgba(15,23,42,.14) !important;
    }

    .championship-navigation.mobile-menu-open {
        display: flex !important;
    }

    .championship-nav-link {
        flex: none !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 53px !important;
        padding: 14px 18px !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--champ-border) !important;
        text-align: left !important;
    }

    .championship-nav-link:last-child { border-bottom: 0 !important; }

    .championship-nav-link.active {
        padding-left: 22px !important;
        background: var(--champ-secondary) !important;
        color: #fff !important;
    }

    .championship-nav-link.active::after {
        top: 10px !important;
        right: auto !important;
        bottom: 10px !important;
        left: 0 !important;
        width: 4px !important;
        height: auto !important;
        border-radius: 0 5px 5px 0 !important;
        background: var(--champ-accent) !important;
    }
}
