@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");


:root {
    --green: #009846;
    --green-dark: #006b34;
    --green-light: #18b660;

    --red: #e52727;
    --red-dark: #b51616;

    --black: #080b0a;
    --black-soft: #0e1311;
    --panel: #121816;
    --panel-light: #18201d;

    --white: #ffffff;
    --text: #f4f6f5;
    --text-muted: #9ca9a3;

    --border: rgba(255, 255, 255, 0.1);

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);

    --radius: 14px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    min-width: 320px;
    background:
        radial-gradient(
            circle at top,
            rgba(0, 152, 70, 0.08),
            transparent 35%
        ),
        var(--black);

    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    color: inherit;
}


.section-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(8, 11, 10, 0.94);

    border-bottom:
        1px solid rgba(0, 152, 70, 0.35);

    backdrop-filter: blur(16px);
}


.header-inner {
    width: min(1180px, calc(100% - 40px));
    height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.club-logo-link {
    position: relative;
    z-index: 20;

    width: 94px;
    height: 104px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}


.club-logo {
    width: 88px;
    margin-top: 8px;

    filter:
        drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}


.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}


.nav-link {
    position: relative;

    padding: 28px 16px;

    border: none;
    background: transparent;

    color: #e7ece9;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}


.nav-link::after {
    content: "";

    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;

    height: 2px;

    background: var(--red);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--green-light);
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


.nav-dropdown {
    position: relative;
}


.nav-dropdown-button {
    display: flex;
    align-items: center;
    gap: 7px;
}


.dropdown-arrow {
    color: var(--green-light);
    font-size: 18px;

    transition: transform 0.25s ease;
}


.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}


.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;

    width: 170px;

    padding: 8px;

    background:
        rgba(18, 24, 22, 0.98);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, -8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}


.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


.dropdown-menu a {
    display: block;

    padding: 12px 14px;

    border-radius: 7px;

    color: #e5ebe8;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.dropdown-menu a:hover {
    color: var(--white);
    background: rgba(0, 152, 70, 0.22);
}


.mobile-menu-button,
.mobile-nav {
    display: none;
}


/* HERO */

.hero {
    position: relative;

    min-height: 380px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 11, 0.95) 0%,
            rgba(3, 17, 11, 0.72) 45%,
            rgba(3, 17, 11, 0.18) 100%
        ),
        radial-gradient(
            circle at 75% 60%,
            rgba(0, 152, 70, 0.38),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #0d2f20,
            #08110d 70%
        );
}


.hero::after {
    content: "⚽";

    position: absolute;
    right: 10%;
    bottom: -100px;

    font-size: 360px;
    line-height: 1;

    opacity: 0.18;

    filter: grayscale(1);
    transform: rotate(-10deg);
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8, 11, 10, 0.55)
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    padding-top: 30px;
}


.hero-label {
    margin-bottom: 8px;

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


.hero h1 {
    max-width: 700px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(54px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 800;

    letter-spacing: -1px;
    text-transform: uppercase;
}


.hero-line {
    display: flex;
    width: 190px;
    height: 4px;

    margin-top: 28px;

    overflow: hidden;
    border-radius: 20px;
}


.hero-line span:first-child {
    width: 55%;
    background: var(--green);
}


.hero-line span:last-child {
    flex: 1;
    background: var(--red);
}


/* MAIN CONTENT */

.main-content {
    position: relative;
    z-index: 10;

    margin-top: -55px;
}


.content-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(340px, 1fr);

    gap: 20px;
    align-items: start;
}


.left-column,
.right-column {
    display: grid;
    gap: 20px;
}


.panel {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(24, 32, 29, 0.98),
            rgba(14, 19, 17, 0.98)
        );

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}


.panel-heading {
    min-height: 62px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-bottom:
        1px solid var(--border);
}


.panel-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.panel-icon {
    color: var(--green-light);
    font-size: 20px;
}


.panel-icon.red {
    color: var(--red);
}


/* UPCOMING MATCH */

.match-card-content,
.last-match-main {
    min-height: 220px;

    padding: 28px 24px;

    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    gap: 20px;
    align-items: center;
}


.team-block {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.team-logo {
    width: 82px;
    height: 96px;

    object-fit: contain;

    margin-bottom: 14px;
}


.team-block h3 {
    font-size: 16px;
    font-weight: 700;
}


.match-center {
    padding: 18px;

    text-align: center;

    border-right:
        1px solid var(--border);

    border-left:
        1px solid var(--border);
}


.match-date {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}


.match-time {
    margin: 6px 0;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
}


.match-type {
    color: var(--green-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.opponent-placeholder {
    width: 82px;
    height: 82px;

    margin-bottom: 14px;

    display: grid;
    place-items: center;

    border:
        3px solid rgba(255, 255, 255, 0.72);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #1e4b82,
            #0b2340
        );

    color: var(--white);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    font-weight: 800;
}


.opponent-placeholder.blue {
    background:
        linear-gradient(
            145deg,
            #3468a5,
            #102743
        );
}


.match-location {
    min-height: 50px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-top:
        1px solid var(--border);

    color: var(--text-muted);
    font-size: 14px;
}


.match-location span {
    color: var(--green-light);
}


/* LAST MATCH */

.final-score {
    text-align: center;
}


.final-score strong {
    display: block;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 62px;
    line-height: 1;
    font-weight: 800;
}


.final-score span {
    display: block;

    margin-top: 6px;

    color: var(--text-muted);
    font-size: 14px;
}


.match-statistics {
    display: grid;
    grid-template-columns:
        1.15fr 0.8fr 1.4fr;

    border-top:
        1px solid var(--border);
}


.stat-box {
    min-height: 145px;

    padding: 20px;
}


.stat-box + .stat-box {
    border-left:
        1px solid var(--border);
}


.stat-box h4 {
    margin-bottom: 14px;

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 4px 0;

    color: #d8dfdb;
    font-size: 13px;
}


.stat-box p {
    color: #c4cdc8;
    font-size: 13px;
    line-height: 1.7;
}


.card-statistics {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}


.card-statistics > div {
    display: flex;
    align-items: center;
    gap: 8px;
}


.yellow-card,
.red-card {
    width: 16px;
    height: 21px;

    display: inline-block;

    border-radius: 2px;
}


.yellow-card {
    background: #f5c72c;
}


.red-card {
    background: #df2d32;
}


/* TABLE */

.table-wrapper {
    overflow-x: auto;
}


table {
    width: 100%;
    border-collapse: collapse;
}


th,
td {
    padding: 12px 10px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    text-align: center;
    white-space: nowrap;

    font-size: 12px;
}


th {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}


th:nth-child(2),
td:nth-child(2) {
    text-align: left;
}


.club-row {
    background:
        linear-gradient(
            90deg,
            rgba(0, 152, 70, 0.48),
            rgba(0, 152, 70, 0.18)
        );

    color: var(--white);
    font-weight: 700;
}


.club-row td:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 7px;
}


.club-row img {
    width: 22px;
    height: 25px;

    object-fit: contain;
}


.panel-link {
    min-height: 48px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-top:
        1px solid var(--border);

    color: var(--green-light);

    font-size: 13px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.panel-link:hover {
    color: var(--white);
    background: rgba(0, 152, 70, 0.16);
}


/* FIXTURES */

.fixture-row {
    min-height: 75px;

    padding: 13px 18px;

    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 14px;
    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.fixture-date {
    width: 48px;
    height: 48px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(0, 152, 70, 0.18);

    color: var(--green-light);
}


.fixture-date strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    line-height: 1;
}


.fixture-date span {
    margin-top: 2px;

    font-size: 9px;
    font-weight: 800;
}


.fixture-team {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.fixture-team strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 13px;
}


.fixture-team span {
    margin-top: 3px;

    color: var(--text-muted);
    font-size: 11px;
}


.fixture-row time {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
}


/* SECTION HEADINGS */

.section-heading {
    margin-bottom: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}


.section-heading span {
    display: block;

    margin-bottom: 5px;

    color: var(--green-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.section-heading h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.section-heading > a {
    color: var(--text-muted);

    font-size: 13px;
    font-weight: 700;

    transition: color 0.2s ease;
}


.section-heading > a:hover {
    color: var(--green-light);
}


/* NEWS */

.news-section {
    padding: 90px 0;
}


.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.news-card {
    overflow: hidden;

    background: var(--panel);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 152, 70, 0.55);
}


.news-image {
    aspect-ratio: 16 / 9;
}


.placeholder-image {
    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 152, 70, 0.45),
            rgba(14, 19, 17, 0.95)
        );

    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 600;
}


.news-content {
    padding: 22px;
}


.news-date {
    margin-bottom: 8px;

    color: var(--red);
    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
}


.news-content h3 {
    margin-bottom: 10px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 700;
}


.news-content > p:not(.news-date) {
    min-height: 62px;

    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}


.news-content a {
    display: inline-flex;

    margin-top: 18px;

    color: var(--green-light);

    font-size: 13px;
    font-weight: 700;
}


/* PARTNERS */

.partners-section {
    padding: 70px 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 152, 70, 0.05),
            rgba(0, 152, 70, 0.11)
        );

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}


.partner-card {
    min-height: 100px;

    padding: 16px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.03);

    color: var(--text-muted);
    font-weight: 700;

    text-align: center;
}


/* FOOTER */

.footer {
    padding: 34px 0;

    background: #050706;
}


.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}


.footer-club {
    display: flex;
    align-items: center;
    gap: 14px;
}


.footer-club img {
    width: 52px;
    height: 60px;

    object-fit: contain;
}


.footer-club div {
    display: flex;
    flex-direction: column;
}


.footer-club strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}


.footer-club span,
.footer-contact,
.footer-credit {
    color: var(--text-muted);
    font-size: 12px;
}


.footer-contact {
    display: flex;
    gap: 22px;
}


.footer-credit {
    text-align: right;
}


.footer-credit strong {
    color: var(--white);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 14px;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .right-column {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card:last-child {
        grid-column: 1 / -1;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        justify-content: flex-end;
    }

    .footer-credit {
        grid-column: 1 / -1;
        text-align: center;
    }
}


@media (max-width: 780px) {

    .section-container,
    .header-inner,
    .hero-content {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        height: 70px;
    }

    .club-logo-link {
        width: 72px;
        height: 80px;
    }

    .club-logo {
        width: 66px;
        margin-top: 7px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;

        border:
            1px solid var(--border);

        border-radius: 8px;

        background:
            rgba(255, 255, 255, 0.03);

        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 22px;
        height: 2px;

        display: block;

        background: var(--white);

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .mobile-menu-button.open span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .mobile-menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.open span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .mobile-nav {
        max-height: 0;

        display: block;

        overflow: hidden;

        background: #0c110f;

        border-top:
            1px solid var(--border);

        transition: max-height 0.35s ease;
    }

    .mobile-nav.open {
        max-height: 600px;
    }

   .mobile-nav > a,
.mobile-dropdown-button,
.mobile-dropdown-menu {
        width: 100%;

        padding: 15px 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border: none;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);

        background: transparent;

        color: #e7ece9;

        font-size: 14px;
        font-weight: 600;

        text-align: left;
    }

    .mobile-nav > a.active {
        color: var(--green-light);
    }

    .mobile-teams-button {
        cursor: pointer;
    }

    .mobile-teams-menu {
        max-height: 0;
        overflow: hidden;

        background:
            rgba(0, 152, 70, 0.09);

        transition: max-height 0.25s ease;
    }

    .mobile-teams-menu.open {
        max-height: 130px;
    }

    .mobile-teams-menu a {
        padding-left: 38px;
        color: var(--text-muted);
    }

    .mobile-dropdown-arrow {
        color: var(--green-light);
        font-size: 20px;

        transition: transform 0.25s ease;
    }

    .mobile-teams-button.open .mobile-teams-arrow {
        transform: rotate(45deg);
    }

    .hero {
        min-height: 310px;
    }

    .hero::after {
        right: -65px;
        bottom: -45px;
        font-size: 250px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .main-content {
        margin-top: -30px;
    }

    .match-card-content,
    .last-match-main {
        grid-template-columns: 1fr 130px 1fr;
        padding: 24px 14px;
    }

    .team-logo {
        width: 62px;
        height: 74px;
    }

    .opponent-placeholder {
        width: 64px;
        height: 64px;
    }

    .match-time {
        font-size: 42px;
    }

    .final-score strong {
        font-size: 48px;
    }

    .match-statistics {
        grid-template-columns: 1fr;
    }

    .stat-box + .stat-box {
        border-left: none;
        border-top:
            1px solid var(--border);
    }

    .right-column {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card:last-child {
        grid-column: auto;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-club {
        justify-content: center;
    }

    .footer-contact {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .footer-credit {
        grid-column: auto;
    }
}


@media (max-width: 520px) {

    .hero {
        min-height: 270px;
    }

    .hero h1 {
        max-width: 270px;
        font-size: 46px;
    }

    .hero-label {
        font-size: 14px;
    }

    .panel-heading {
        padding: 0 16px;
    }

    .panel-heading h2 {
        font-size: 19px;
    }

    .match-card-content,
    .last-match-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .match-center {
        width: 100%;

        border-right: none;
        border-left: none;
        border-top:
            1px solid var(--border);
        border-bottom:
            1px solid var(--border);
    }

    .last-match-main .final-score {
        order: -1;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    th,
    td {
        padding: 11px 8px;
    }
}
/* =========================
   STRÁNKA ZÁPASY A-TÝMU
========================= */

.subpage-hero {
    position: relative;
    min-height: 290px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 10, 0.96),
            rgba(3, 16, 10, 0.68)
        ),
        radial-gradient(
            circle at 80% 40%,
            rgba(0, 152, 70, 0.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #0e3221,
            #070c09
        );
}


.subpage-hero::after {
    content: "⚽";

    position: absolute;
    right: 8%;
    bottom: -105px;

    font-size: 300px;
    line-height: 1;

    opacity: 0.12;

    filter: grayscale(1);
}


.subpage-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8, 11, 10, 0.75)
        );
}


.subpage-hero-content {
    position: relative;
    z-index: 2;

    padding-bottom: 48px;
}


.subpage-label,
.section-kicker {
    display: block;

    color: var(--green-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.subpage-hero h1 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 7vw, 80px);
    line-height: 0.95;
    font-weight: 800;

    text-transform: uppercase;
}


.subpage-season {
    margin-top: 13px;

    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}


.matches-page {
    padding-top: 70px;
    padding-bottom: 90px;
}


.matches-header {
    margin-bottom: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.matches-header h2 {
    margin-top: 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.matches-filters {
    display: flex;
    gap: 8px;
}


.match-filter {
    padding: 11px 17px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.03);

    color: var(--text-muted);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.match-filter:hover,
.match-filter.active {
    color: var(--white);

    border-color:
        rgba(0, 152, 70, 0.6);

    background:
        rgba(0, 152, 70, 0.22);
}


/* NEJBLIŽŠÍ ZÁPAS */

.next-match-highlight {
    margin-bottom: 24px;

    overflow: hidden;

    border:
        1px solid rgba(0, 152, 70, 0.48);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(18, 36, 28, 0.98),
            rgba(12, 17, 15, 0.98)
        );

    box-shadow: var(--shadow);
}


.next-match-label {
    padding: 13px 22px;

    background:
        linear-gradient(
            90deg,
            var(--green-dark),
            rgba(0, 107, 52, 0.2)
        );

    color: var(--white);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.next-match-layout {
    min-height: 250px;

    padding: 32px;

    display: grid;
    grid-template-columns: 1fr 230px 1fr;
    gap: 30px;
    align-items: center;
}


.next-match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    text-align: center;
}


.next-match-team img {
    width: 100px;
    height: 115px;

    object-fit: contain;
}


.next-match-team strong {
    font-size: 18px;
}


.match-club-placeholder {
    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    border:
        3px solid rgba(255, 255, 255, 0.68);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #23598d,
            #0b243d
        );

    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    font-weight: 800;
}


.next-match-center {
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border-right:
        1px solid var(--border);

    border-left:
        1px solid var(--border);

    text-align: center;
}


.round-label {
    margin-bottom: 10px;

    color: var(--red);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.next-match-center time {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}


.next-match-center strong {
    margin: 6px 0;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 62px;
    line-height: 1;
}


.match-venue {
    color: var(--green-light);
    font-size: 12px;
    font-weight: 700;
}


.next-match-actions {
    min-height: 60px;

    padding: 12px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid var(--border);
}


.next-match-actions > span {
    color: var(--text-muted);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}


.match-action-button {
    padding: 10px 16px;

    border-radius: 7px;

    background: var(--green);

    font-size: 12px;
    font-weight: 800;

    transition: background 0.2s ease;
}


.match-action-button:hover {
    background: var(--green-light);
}


/* SEZNAM ZÁPASŮ */

.matches-list {
    display: grid;
    gap: 16px;
}


.season-match-card {
    overflow: hidden;

    display: grid;
    grid-template-columns: 160px 1fr 200px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 28, 25, 0.98),
            rgba(13, 18, 16, 0.98)
        );

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.season-match-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(0, 152, 70, 0.48);
}


.season-match-date {
    min-height: 150px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.02);
}


.season-match-date span {
    margin-bottom: 9px;

    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.season-match-date strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
}


.season-match-date time {
    margin-top: 4px;

    color: var(--text-muted);
    font-size: 13px;
}


.season-match-teams {
    padding: 22px 30px;

    display: grid;
    grid-template-columns: 1fr 115px 1fr;
    gap: 20px;
    align-items: center;
}


.season-team {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    text-align: center;
}


.season-team img,
.small-club-placeholder {
    width: 60px;
    height: 68px;

    object-fit: contain;
}


.season-team span {
    font-size: 13px;
    font-weight: 700;
}


.small-club-placeholder {
    display: grid;
    place-items: center;

    border:
        2px solid rgba(255, 255, 255, 0.58);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #215d43,
            #0b2f21
        );

    color: white;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 800;
}


.small-club-placeholder.blue {
    background:
        linear-gradient(
            145deg,
            #32659c,
            #112940
        );
}


.small-club-placeholder.red {
    background:
        linear-gradient(
            145deg,
            #a63c3c,
            #481515
        );
}


.season-match-status {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.season-match-status strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 38px;
    line-height: 1;
}


.season-match-status span {
    margin-top: 7px;

    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}


.season-match-status.result strong {
    color: var(--green-light);
}


.season-match-status.result.lost strong {
    color: var(--red);
}


.season-match-info {
    padding: 22px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;

    border-left:
        1px solid var(--border);

    text-align: right;
}


.season-match-info span {
    color: var(--text-muted);
    font-size: 12px;
}


.season-match-info a {
    color: var(--green-light);

    font-size: 12px;
    font-weight: 800;
}


.season-match-details {
    grid-column: 2 / 4;

    padding: 16px 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    border-top:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.02);
}


.season-match-details div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.season-match-details span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.season-match-details strong {
    color: #d6ded9;
    font-size: 12px;
    font-weight: 600;
}


.matches-bottom-links {
    margin-top: 35px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.large-page-link {
    padding: 25px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.03);

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.large-page-link:hover {
    border-color:
        rgba(0, 152, 70, 0.55);

    background:
        rgba(0, 152, 70, 0.1);
}


.large-page-link span {
    color: var(--text-muted);
    font-size: 11px;

    text-transform: uppercase;
}


.large-page-link strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
}


/* RESPONSIVNÍ VERZE ZÁPASŮ */

@media (max-width: 900px) {

    .season-match-card {
        grid-template-columns: 130px 1fr;
    }

    .season-match-info {
        grid-column: 1 / -1;

        min-height: 55px;

        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        border-top:
            1px solid var(--border);

        border-left: none;

        text-align: left;
    }

    .season-match-details {
        grid-column: 1 / -1;
    }
}


@media (max-width: 700px) {

    .matches-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .matches-filters {
        width: 100%;

        overflow-x: auto;
    }

    .match-filter {
        flex: 0 0 auto;
    }

    .next-match-layout {
        grid-template-columns: 1fr;
    }

    .next-match-center {
        width: 100%;

        border-right: none;
        border-left: none;
        border-top:
            1px solid var(--border);
        border-bottom:
            1px solid var(--border);
    }

    .season-match-card {
        grid-template-columns: 1fr;
    }

    .season-match-date {
        min-height: auto;

        border-right: none;
        border-bottom:
            1px solid var(--border);

        text-align: center;
    }

    .season-match-teams {
        grid-template-columns: 1fr 90px 1fr;
        padding: 24px 14px;
    }

    .season-match-info,
    .season-match-details {
        grid-column: auto;
    }

    .season-match-details {
        grid-template-columns: 1fr;
    }

    .matches-bottom-links {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 450px) {

    .subpage-hero {
        min-height: 240px;
    }

    .subpage-hero h1 {
        font-size: 48px;
    }

    .next-match-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .match-action-button {
        width: 100%;
        text-align: center;
    }

    .season-match-teams {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .season-match-status {
        width: 100%;

        padding: 14px 0;

        border-top:
            1px solid var(--border);
        border-bottom:
            1px solid var(--border);
    }
}
.match-number {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
}

.season-match-info small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 600;
}
.season-not-started {
    min-height: 280px;
    padding: 40px 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.season-not-started > img {
    width: 110px !important;
    height: 130px !important;
    max-width: 110px !important;

    flex: 0 0 110px;

    object-fit: contain;
}

.season-not-started > div {
    max-width: 470px;
}
/* =========================
   STRÁNKA TABULKA A-TÝMU
========================= */

.standings-page {
    padding-top: 70px;
    padding-bottom: 90px;
}


.standings-page-heading {
    margin-bottom: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.standings-page-heading h2 {
    margin-top: 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.standings-program-link {
    color: var(--green-light);

    font-size: 13px;
    font-weight: 800;

    transition: color 0.2s ease;
}


.standings-program-link:hover {
    color: var(--white);
}


.standings-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(20, 28, 25, 0.98),
            rgba(11, 16, 14, 0.98)
        );

    box-shadow: var(--shadow);
}


.standings-card-header {
    min-height: 88px;

    padding: 22px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom:
        1px solid var(--border);
}


.standings-card-header > div:first-child {
    display: flex;
    flex-direction: column;
}


.standings-card-header span {
    color: var(--green-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.standings-card-header strong {
    margin-top: 5px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;

    text-transform: uppercase;
}


.standings-status {
    padding: 9px 13px;

    border:
        1px solid rgba(0, 152, 70, 0.4);

    border-radius: 7px;

    background:
        rgba(0, 152, 70, 0.13);

    color: var(--green-light);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
}


.full-table-wrapper {
    overflow-x: auto;
}


.full-standings-table {
    min-width: 900px;
}


.full-standings-table th,
.full-standings-table td {
    padding: 17px 16px;

    font-size: 13px;
}


.full-standings-table th {
    background:
        rgba(255, 255, 255, 0.025);

    color: var(--text-muted);

    font-size: 11px;
}


.full-standings-table td:first-child,
.full-standings-table th:first-child {
    width: 85px;
    text-align: center;
}


.full-standings-table td:nth-child(2),
.full-standings-table th:nth-child(2) {
    min-width: 260px;
}


.full-standings-table tbody tr {
    transition: background 0.2s ease;
}


.full-standings-table tbody tr:hover {
    background:
        rgba(255, 255, 255, 0.035);
}


.full-club-row {
    background:
        linear-gradient(
            90deg,
            rgba(0, 152, 70, 0.58),
            rgba(0, 152, 70, 0.22)
        );
}


.full-club-row:hover {
    background:
        linear-gradient(
            90deg,
            rgba(0, 152, 70, 0.68),
            rgba(0, 152, 70, 0.3)
        ) !important;
}


.table-team {
    display: flex;
    align-items: center;
    gap: 13px;
}


.table-team img {
    width: 34px;
    height: 40px;

    flex: 0 0 34px;

    object-fit: contain;
}


.table-team strong,
.table-team span {
    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    text-transform: none;
    letter-spacing: 0;
}


.table-club-placeholder {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border:
        2px solid rgba(255, 255, 255, 0.5);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #1e6042,
            #0a3020
        );

    color: var(--white);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 800;
}


.table-club-placeholder.blue {
    background:
        linear-gradient(
            145deg,
            #315f94,
            #102b48
        );
}


.table-club-placeholder.red {
    background:
        linear-gradient(
            145deg,
            #9c3c3c,
            #451818
        );
}


.table-club-placeholder.black {
    background:
        linear-gradient(
            145deg,
            #3a3a3a,
            #101010
        );
}


.table-club-placeholder.gray {
    background:
        linear-gradient(
            145deg,
            #89928f,
            #38413e
        );
}


.table-club-placeholder.purple {
    background:
        linear-gradient(
            145deg,
            #75559b,
            #322042
        );
}


.table-club-placeholder.yellow {
    background:
        linear-gradient(
            145deg,
            #9b8d32,
            #423b14
        );
}


.table-club-placeholder.yellow-dark {
    background:
        linear-gradient(
            145deg,
            #9b7924,
            #3c2d0e
        );
}


.table-club-placeholder.light {
    background:
        linear-gradient(
            145deg,
            #7c8985,
            #2e3935
        );
}


.position-empty {
    color: var(--white);
    font-weight: 800;
}


.standings-legend {
    min-height: 72px;

    padding: 18px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border-top:
        1px solid var(--border);
}


.standings-legend > div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--text-muted);
    font-size: 12px;
}


.legend-box {
    width: 17px;
    height: 17px;

    display: inline-block;

    border-radius: 3px;
}


.club-highlight {
    background: var(--green-dark);
}


.standings-legend p {
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}


.standings-info-grid {
    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.standings-info-card {
    min-height: 145px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(12, 17, 15, 0.98)
        );
}


.standings-info-card span {
    margin-bottom: 7px;

    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.standings-info-card strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1.1;
}


.standings-info-card p {
    margin-top: 8px;

    color: var(--text-muted);
    font-size: 12px;
}


@media (max-width: 800px) {

    .standings-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .standings-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .standings-info-grid {
        grid-template-columns: 1fr;
    }

    .standings-legend {
        align-items: flex-start;
        flex-direction: column;
    }

    .standings-legend p {
        text-align: left;
    }
}


@media (max-width: 500px) {

    .standings-page {
        padding-top: 50px;
    }

    .standings-page-heading h2 {
        font-size: 35px;
    }

    .standings-card-header {
        padding: 20px;
    }
}
/* =========================
   STATISTIKY HRÁČŮ A-TÝMU
========================= */

.player-stats-section {
    margin-top: 70px;
}


.player-stats-heading {
    margin-bottom: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.player-stats-heading h2 {
    margin-top: 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.player-stats-heading p {
    max-width: 430px;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;

    text-align: right;
}


.player-stats-highlights {
    margin-bottom: 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.player-highlight-card {
    min-height: 145px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(12, 17, 15, 0.98)
        );

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.17);
}


.player-highlight-card span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.player-highlight-card strong {
    margin-top: 8px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}


.player-highlight-card p {
    margin-top: 9px;

    color: var(--text-muted);
    font-size: 12px;
}


.player-stats-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(20, 28, 25, 0.98),
            rgba(11, 16, 14, 0.98)
        );

    box-shadow: var(--shadow);
}


.player-stats-table-wrapper {
    overflow-x: auto;
}


.player-stats-table {
    width: 100%;
    min-width: 760px;
}


.player-stats-table th,
.player-stats-table td {
    padding: 16px 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    text-align: center;
}


.player-stats-table th {
    background:
        rgba(255, 255, 255, 0.025);

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.player-stats-table th:nth-child(2),
.player-stats-table td:nth-child(2) {
    text-align: left;
}


.player-stats-table tbody tr {
    transition: background 0.2s ease;
}


.player-stats-table tbody tr:hover {
    background:
        rgba(255, 255, 255, 0.035);
}


.player-table-name {
    display: flex;
    align-items: center;
    gap: 12px;
}


.player-avatar-placeholder {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(0, 152, 70, 0.5);

    border-radius: 50%;

    background:
        rgba(0, 152, 70, 0.15);

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 800;
}


.player-table-name strong {
    color: var(--white);
    font-size: 13px;
}


@media (max-width: 800px) {

    .player-stats-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .player-stats-heading p {
        text-align: left;
    }

    .player-stats-highlights {
        grid-template-columns: 1fr;
    }
}
/* =========================
   STRÁNKA A-TÝM
========================= */

.team-page-hero {
    position: relative;
    min-height: 360px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(0, 152, 70, 0.34),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            #07110c,
            #0a2d1d 65%,
            #07100b
        );
}


.team-page-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.015) 81px
        );
}


.team-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08),
            rgba(5, 8, 7, 0.58)
        );
}


.team-page-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.team-page-hero-text {
    max-width: 650px;
}


.team-page-hero-text > span {
    color: var(--green-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.team-page-hero-text h1 {
    margin-top: 8px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(58px, 7vw, 88px);
    line-height: 0.9;
    font-weight: 800;

    text-transform: uppercase;
}


.team-page-hero-text p {
    max-width: 480px;

    margin-top: 22px;

    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


.team-hero-links {
    margin-top: 26px;

    display: flex;
    gap: 10px;
}


.team-hero-links a {
    padding: 11px 18px;

    border:
        1px solid rgba(0, 152, 70, 0.48);

    border-radius: 8px;

    background:
        rgba(0, 152, 70, 0.13);

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.team-hero-links a:hover {
    border-color: var(--green-light);
    background: rgba(0, 152, 70, 0.3);
}


.team-page-hero-logo {
    width: 190px;
    max-height: 230px;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}


/* PŘEHLED TÝMU */

.team-overview {
    position: relative;
    z-index: 5;

    margin-top: -35px;
}


.team-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


.team-overview-card {
    min-height: 135px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 31, 27, 0.99),
            rgba(12, 17, 15, 0.99)
        );

    box-shadow: var(--shadow);
}


.team-overview-card span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.team-overview-card strong {
    margin-top: 8px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    line-height: 1.05;
}


.team-overview-card p {
    margin-top: 7px;

    color: var(--text-muted);
    font-size: 11px;
}


/* SOUPISKA */

.squad-section {
    padding-top: 90px;
    padding-bottom: 90px;
}


.team-section-heading {
    margin-bottom: 38px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.team-section-heading h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.team-section-heading > p {
    max-width: 480px;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;

    text-align: right;
}


.position-group + .position-group {
    margin-top: 65px;
}


.position-heading {
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    gap: 14px;
}


.position-heading > span {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(0, 152, 70, 0.48);

    border-radius: 50%;

    background:
        rgba(0, 152, 70, 0.12);

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 800;
}


.position-heading h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    font-weight: 800;

    text-transform: uppercase;
}


.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.player-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 30, 27, 0.98),
            rgba(11, 16, 14, 0.98)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.player-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0, 152, 70, 0.55);
}


.player-photo-placeholder {
    position: relative;

    aspect-ratio: 4 / 4.5;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(0, 152, 70, 0.38),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #183329,
            #0a110e
        );
}


.player-photo-placeholder::before {
    content: "⚽";

    position: absolute;
    bottom: -30px;
    right: -15px;

    font-size: 130px;

    opacity: 0.08;
    filter: grayscale(1);
}


.player-photo-placeholder span {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}


.player-card-content {
    min-height: 88px;

    padding: 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    border-top:
        1px solid var(--border);
}


.player-number {
    min-width: 38px;

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}


.player-card-content p {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.player-card-content h4 {
    margin-top: 3px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    line-height: 1;
}


.player-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top:
        1px solid var(--border);
}


.player-card-stats div {
    min-height: 60px;

    padding: 10px 6px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.player-card-stats div + div {
    border-left:
        1px solid var(--border);
}


.player-card-stats span {
    color: var(--text-muted);
    font-size: 8px;

    text-transform: uppercase;
}


.player-card-stats strong {
    margin-top: 3px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
}


/* REALIZAČNÍ TÝM */

.staff-section {
    padding: 75px 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 152, 70, 0.05),
            rgba(0, 152, 70, 0.1)
        );

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.staff-card {
    overflow: hidden;

    display: grid;
    grid-template-columns: 130px 1fr;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 30, 27, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.staff-photo-placeholder {
    min-height: 160px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(0, 152, 70, 0.28),
            rgba(8, 15, 11, 0.9)
        );

    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 700;
}


.staff-card-content {
    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.staff-card-content span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.staff-card-content h3 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1;
}


/* ODKAZY */

.team-page-links {
    padding-top: 70px;
    padding-bottom: 70px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.team-large-link {
    min-height: 130px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}


.team-large-link:hover {
    transform: translateY(-3px);

    border-color:
        rgba(0, 152, 70, 0.58);
}


.team-large-link span {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


.team-large-link strong {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
}


/* RESPONSIVNÍ A-TÝM */

@media (max-width: 1050px) {

    .team-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 760px) {

    .team-page-hero {
        min-height: 430px;
    }

    .team-page-hero-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .team-page-hero-logo {
        width: 115px;
        max-height: 140px;
    }

    .team-overview {
        margin-top: -20px;
    }

    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-section-heading > p {
        text-align: left;
    }

    .team-page-links {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 520px) {

    .team-page-hero-text h1 {
        font-size: 50px;
    }

    .team-overview-grid {
        grid-template-columns: 1fr;
    }

    .players-grid {
        grid-template-columns: 1fr;
    }

    .staff-card {
        grid-template-columns: 100px 1fr;
    }

    .team-hero-links {
        width: 100%;
    }

    .team-hero-links a {
        flex: 1;
        text-align: center;
    }
}
/* =========================
   KONTAKT
========================= */

.contact-page {
    padding-top: 70px;
    padding-bottom: 90px;
}


.contact-heading {
    margin-bottom: 32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.contact-heading h2 {
    margin-top: 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.contact-heading p {
    max-width: 430px;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;

    text-align: right;
}


.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


.contact-card {
    min-height: 155px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.contact-card-label {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.contact-card strong,
.contact-card > a {
    margin-top: 9px;

    color: var(--white);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 800;
}


.contact-card > a:hover {
    color: var(--green-light);
}


.contact-card p {
    margin-top: 10px;

    color: var(--text-muted);
    font-size: 11px;
}


.contact-main-layout {
    margin-top: 55px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}


.contact-club-info,
.contact-competitions {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 28, 25, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.contact-section-title {
    margin-bottom: 23px;
}


.contact-section-title h3 {
    margin-top: 5px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.club-information-list {
    display: grid;
    gap: 0;
}


.club-information-list > div {
    min-height: 68px;

    padding: 14px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.club-information-list span {
    color: var(--text-muted);
    font-size: 11px;

    text-transform: uppercase;
}


.club-information-list strong,
.club-information-list a {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;

    text-align: right;
}


.club-information-list a:hover {
    color: var(--green-light);
}


.competition-contact-card {
    min-height: 96px;

    padding: 16px;

    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.competition-code {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(0, 152, 70, 0.2);

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 800;
}


.competition-code.youth {
    background: rgba(229, 39, 39, 0.16);
    color: #ff5656;
}


.competition-contact-card > div:nth-child(2) {
    display: flex;
    flex-direction: column;
}


.competition-contact-card span {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}


.competition-contact-card strong {
    margin-top: 3px;

    font-size: 13px;
}


.competition-contact-card p {
    margin-top: 4px;

    color: var(--text-muted);
    font-size: 10px;
}


.competition-contact-card a {
    color: var(--green-light);

    font-size: 11px;
    font-weight: 800;
}


.stadium-section {
    margin-top: 55px;

    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1.2fr;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(20, 28, 25, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.stadium-information {
    padding: 42px;
}


.stadium-information h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.stadium-information > p {
    margin-top: 16px;

    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}


.stadium-address {
    margin-top: 24px;

    display: flex;
    flex-direction: column;
}


.stadium-address span {
    color: var(--green-light);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}


.stadium-address strong {
    margin-top: 5px;

    font-size: 14px;
}


.stadium-map-button {
    margin-top: 28px;

    padding: 12px 17px;

    display: inline-flex;

    border-radius: 8px;

    background: var(--green);

    color: var(--white);

    font-size: 12px;
    font-weight: 800;
}


.stadium-map-button:hover {
    background: var(--green-light);
}


.map-placeholder {
    min-height: 360px;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(0, 152, 70, 0.23),
            transparent 40%
        ),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 20px,
            transparent 20px,
            transparent 40px
        ),
        #0b1510;
}


.map-placeholder div {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.map-placeholder strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 27px;

    text-transform: uppercase;
}


.map-placeholder span {
    margin-top: 7px;

    color: var(--text-muted);
    font-size: 11px;
}


.club-contacts-section {
    margin-top: 70px;
}


.contact-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.contact-person-card {
    min-height: 140px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.contact-person-card span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.contact-person-card strong {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
}


.contact-person-card p {
    margin-top: 8px;

    color: var(--text-muted);
    font-size: 11px;
}


@media (max-width: 950px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .stadium-section {
        grid-template-columns: 1fr;
    }

    .contact-people-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 620px) {

    .contact-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-heading p {
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .club-information-list > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .club-information-list strong,
    .club-information-list a {
        text-align: left;
    }

    .competition-contact-card {
        grid-template-columns: 48px 1fr;
    }

    .competition-contact-card a {
        grid-column: 2;
    }

    .stadium-information {
        padding: 30px 22px;
    }
}
/* =========================
   STRÁNKA KLUB
========================= */

.club-page-hero {
    position: relative;
    min-height: 360px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(0, 152, 70, 0.36),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #06100b,
            #0b2c1d 65%,
            #07100b
        );
}


.club-page-hero::after {
    content: "1912";

    position: absolute;
    right: 5%;
    bottom: -45px;

    color: rgba(255, 255, 255, 0.035);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 250px;
    line-height: 1;
    font-weight: 800;
}


.club-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(5, 8, 7, 0.55)
        );
}


.club-page-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.club-page-hero-content > div {
    max-width: 680px;
}


.club-page-hero-content span {
    color: var(--green-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.club-page-hero-content h1 {
    margin-top: 8px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(58px, 7vw, 88px);
    line-height: 0.92;
    font-weight: 800;

    text-transform: uppercase;
}


.club-page-hero-content p {
    max-width: 520px;

    margin-top: 20px;

    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


.club-page-hero-content img {
    width: 190px;
    max-height: 230px;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}


/* ÚVOD */

.club-introduction {
    padding-top: 80px;
    padding-bottom: 90px;
}


.club-introduction-heading {
    margin-bottom: 30px;
}


.club-introduction-heading h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.club-introduction-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 30px;
    align-items: start;
}


.club-introduction-main {
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.club-introduction-main p {
    color: #d5ded9;
    font-size: 16px;
    line-height: 1.9;
}


.club-introduction-main p + p {
    margin-top: 22px;
}


.club-facts-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.club-facts-card div {
    min-height: 86px;

    padding: 17px 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-bottom:
        1px solid var(--border);
}


.club-facts-card div:last-child {
    border-bottom: none;
}


.club-facts-card span {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.club-facts-card strong {
    margin-top: 6px;

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 27px;
    line-height: 1;
}


/* HISTORIE */

.club-history-section {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 152, 70, 0.04),
            rgba(0, 152, 70, 0.09)
        );

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


.club-history-heading {
    margin-bottom: 50px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.club-history-heading h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.club-history-heading > p {
    max-width: 440px;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;

    text-align: right;
}


.club-timeline {
    position: relative;

    max-width: 950px;
    margin: 0 auto;
}


.club-timeline::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 109px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            var(--green),
            rgba(0, 152, 70, 0.1)
        );
}


.timeline-item {
    position: relative;

    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 38px;
}


.timeline-item + .timeline-item {
    margin-top: 34px;
}


.timeline-year {
    position: relative;
    z-index: 2;

    width: 82px;
    height: 82px;

    display: grid;
    place-items: center;

    border:
        2px solid rgba(0, 152, 70, 0.55);

    border-radius: 50%;

    background: #0b1510;

    color: var(--green-light);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
    font-weight: 800;
}


.timeline-item.featured .timeline-year {
    border-color: var(--red);
    color: #ff5c5c;
}


.timeline-content {
    padding: 27px 30px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.timeline-item.featured .timeline-content {
    border-color: rgba(0, 152, 70, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(14, 50, 33, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.timeline-content > span {
    color: var(--green-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.timeline-content h3 {
    margin-top: 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 800;
}


.timeline-content p {
    margin-top: 13px;

    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* HISTORICKÁ FOTOGRAFIE */

.historical-photo-section {
    padding-top: 90px;
    padding-bottom: 90px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
}


.historical-photo-placeholder {
    min-height: 410px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        linear-gradient(
            rgba(5, 8, 7, 0.35),
            rgba(5, 8, 7, 0.78)
        ),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.025) 18px,
            transparent 18px,
            transparent 36px
        ),
        #18201d;
}


.historical-photo-placeholder div {
    max-width: 400px;
    padding: 30px;

    text-align: center;
}


.historical-photo-placeholder span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.historical-photo-placeholder strong {
    display: block;

    margin-top: 8px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    line-height: 1;
}


.historical-photo-placeholder p {
    margin-top: 15px;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}


.historical-photo-text h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.historical-photo-text p {
    margin-top: 18px;

    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* MEMORIÁL */

.memorial-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            rgba(120, 18, 18, 0.35),
            rgba(11, 16, 14, 0.98)
        );

    border-top: 1px solid rgba(229, 39, 39, 0.25);
    border-bottom: 1px solid rgba(229, 39, 39, 0.25);
}


.memorial-layout {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 45px;
    align-items: center;
}


.memorial-symbol {
    width: 150px;
    height: 150px;

    display: grid;
    place-items: center;

    border:
        2px solid rgba(229, 39, 39, 0.6);

    border-radius: 50%;

    background:
        rgba(229, 39, 39, 0.1);

    color: #ff6464;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 46px;
    font-weight: 800;
}


.memorial-content h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.memorial-content > p {
    max-width: 720px;

    margin-top: 18px;

    color: #d3d9d6;
    font-size: 14px;
    line-height: 1.75;
}


.memorial-note {
    color: var(--text-muted) !important;
    font-size: 11px !important;
}


/* SOUČASNOST */

.club-present {
    padding-top: 90px;
    padding-bottom: 90px;
}


.club-present-heading {
    margin-bottom: 30px;
}


.club-present-heading h2 {
    margin-top: 7px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.club-present-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


.club-present-grid article {
    min-height: 175px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );
}


.club-present-grid span {
    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.club-present-grid strong {
    margin-top: 8px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    line-height: 1.05;
}


.club-present-grid a {
    margin-top: 20px;

    color: var(--green-light);

    font-size: 11px;
    font-weight: 800;
}


/* RESPONSIVE KLUB */

@media (max-width: 950px) {

    .club-introduction-layout {
        grid-template-columns: 1fr;
    }

    .historical-photo-section {
        grid-template-columns: 1fr;
    }

    .club-present-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 760px) {

    .club-page-hero {
        min-height: 430px;
    }

    .club-page-hero-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .club-page-hero-content img {
        width: 115px;
        max-height: 140px;
    }

    .club-history-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .club-history-heading > p {
        text-align: left;
    }

    .club-timeline::before {
        left: 37px;
    }

    .timeline-item {
        grid-template-columns: 76px 1fr;
        gap: 20px;
    }

    .timeline-year {
        width: 74px;
        height: 74px;

        font-size: 20px;
    }

    .memorial-layout {
        grid-template-columns: 1fr;
    }

    .memorial-symbol {
        width: 110px;
        height: 110px;

        font-size: 36px;
    }
}


@media (max-width: 520px) {

    .club-page-hero-content h1 {
        font-size: 50px;
    }

    .club-introduction-main {
        padding: 25px;
    }

    .club-introduction-main p {
        font-size: 14px;
    }

    .club-timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-year {
        width: 68px;
        height: 68px;
    }

    .timeline-content {
        padding: 23px;
    }

    .historical-photo-placeholder {
        min-height: 320px;
    }

    .club-present-grid {
        grid-template-columns: 1fr;
    }
}
.historical-photo {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: #0b100e;

    box-shadow: var(--shadow);
}

.historical-photo img {
    width: 100%;
    min-height: 410px;

    display: block;

    object-fit: contain;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.03),
            rgba(0, 0, 0, 0.15)
        );

    filter:
        contrast(1.05)
        brightness(0.94);
}

.historical-photo figcaption {
    padding: 13px 18px;

    border-top: 1px solid var(--border);

    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
}

@media (max-width: 760px) {
    .historical-photo img {
        min-height: 260px;
    }
}
/* =========================
   STRÁNKA AKTUALITY
========================= */

.updates-page {
    padding-top: 70px;
    padding-bottom: 90px;
}


.updates-heading {
    margin-bottom: 32px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.updates-heading h2 {
    margin-top: 6px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
}


.updates-filters {
    display: flex;
    gap: 8px;
}


.update-filter {
    padding: 11px 17px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.update-filter:hover,
.update-filter.active {
    border-color: rgba(0, 152, 70, 0.65);

    background: rgba(0, 152, 70, 0.2);
    color: var(--white);
}


/* HLAVNÍ AKTUALITA */

.featured-update {
    margin-bottom: 24px;

    overflow: hidden;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    border: 1px solid rgba(0, 152, 70, 0.42);
    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(20, 34, 28, 0.98),
            rgba(10, 15, 13, 0.98)
        );

    box-shadow: var(--shadow);
}


.featured-update-image {
    position: relative;

    min-height: 410px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 152, 70, 0.36),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #113524,
            #080d0a
        );
}


.featured-update-image::after {
    content: "TJ";

    position: absolute;
    right: -15px;
    bottom: -55px;

    color: rgba(255, 255, 255, 0.035);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 260px;
    font-weight: 800;
}


.featured-update-image img {
    position: relative;
    z-index: 2;

    width: 180px;
    max-height: 220px;

    object-fit: contain;
}


.featured-update-category {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;

    padding: 8px 12px;

    border-radius: 6px;

    background: var(--green);

    color: var(--white);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.featured-update-content {
    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.update-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    color: var(--green-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.featured-update-content h2 {
    margin-top: 15px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    line-height: 1.02;
    font-weight: 800;

    text-transform: uppercase;
}


.featured-update-content p {
    margin-top: 16px;

    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* KARTY AKTUALIT */

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.update-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 29, 26, 0.98),
            rgba(11, 16, 14, 0.98)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.update-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 152, 70, 0.55);
}


.update-card-image {
    min-height: 210px;

    display: flex;
    align-items: flex-end;

    padding: 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(0, 152, 70, 0.45),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #17372a,
            #090f0c
        );
}


.update-card-image span {
    padding: 7px 10px;

    border-radius: 5px;

    background: rgba(0, 0, 0, 0.62);

    color: var(--white);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


.football-schedule-image {
    background:
        linear-gradient(
            rgba(4, 12, 8, 0.38),
            rgba(4, 12, 8, 0.85)
        ),
        radial-gradient(
            circle at 75% 35%,
            rgba(0, 152, 70, 0.65),
            transparent 30%
        ),
        #10261c;
}


.season-image {
    background:
        linear-gradient(
            rgba(5, 8, 7, 0.2),
            rgba(5, 8, 7, 0.85)
        ),
        radial-gradient(
            circle at center,
            rgba(229, 39, 39, 0.4),
            transparent 35%
        ),
        #251010;
}


.history-image {
    background:
        linear-gradient(
            rgba(5, 8, 7, 0.25),
            rgba(5, 8, 7, 0.88)
        ),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.025) 20px,
            transparent 20px,
            transparent 40px
        ),
        #20231f;
}


.update-card-content {
    padding: 23px;
}


.update-card-content h3 {
    margin-top: 13px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 27px;
    line-height: 1.05;
    font-weight: 800;
}


.update-card-content > p {
    min-height: 86px;

    margin-top: 13px;

    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}


.update-card-content > a {
    display: inline-flex;

    margin-top: 20px;

    color: var(--green-light);

    font-size: 11px;
    font-weight: 800;
}


.updates-empty-message {
    display: none;

    margin-top: 25px;
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 12px;

    color: var(--text-muted);

    text-align: center;
}


.update-item.is-hidden {
    display: none;
}


@media (max-width: 900px) {

    .featured-update {
        grid-template-columns: 1fr;
    }

    .featured-update-image {
        min-height: 300px;
    }

    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .updates-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .updates-filters {
        width: 100%;

        overflow-x: auto;
    }

    .update-filter {
        flex: 0 0 auto;
    }

    .featured-update-content {
        padding: 28px 22px;
    }

    .featured-update-content h2 {
        font-size: 32px;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .update-card-content > p {
        min-height: auto;
    }
}
.match-note {
    grid-column: 2 / 4;

    padding: 9px 22px;

    border-top: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.015);

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;
}

.match-note::before {
    content: "Poznámka: ";

    color: var(--green-light);
    font-weight: 800;
}

@media (max-width: 900px) {
    .match-note {
        grid-column: 1 / -1;
    }
}
.season-match-note {
    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 10px;
    font-style: normal;
    line-height: 1.4;
    text-align: right;
}

.season-match-note::before {
    content: "Poznámka: ";
    color: var(--green-light);
    font-weight: 700;
}
.team-page-hero-text h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

@media (max-width: 900px) {
    .team-page-hero-text h1 {
        font-size: clamp(42px, 8vw, 66px);
    }
}

@media (max-width: 600px) {
    .team-page-hero-text h1 {
        font-size: 42px;
    }
}
.contact-person-card a {
    display: block;
    width: fit-content;

    margin-top: 7px;

    color: var(--green-light);
    font-weight: 700;
    text-decoration: none;
}

.contact-person-card a:hover {
    text-decoration: underline;
}
.contact-map {
    min-height: 430px;
    overflow: hidden;

    border-left: 1px solid var(--border);
    background: #101813;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
}

@media (max-width: 900px) {
    .contact-map {
        min-height: 320px;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .contact-map iframe {
        min-height: 320px;
    }
}
.news-card {
    display: flex;
    flex-direction: column;
}

.news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-content h3 {
    min-height: 58px;
}
.update-card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.update-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-card-image > span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;

    padding: 8px 11px;
    border-radius: 4px;

    background: rgba(0, 0, 0, 0.85);
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}
.partner-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: #fff;
    text-align: center;
    text-decoration: none;
}

.partner-card-link img {
    width: auto;
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

.partner-card-link:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}
/* =========================
   REGISTRACE A PŘIHLÁŠENÍ
========================= */

.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 20px 60px;

    background:
        radial-gradient(
            circle at top,
            rgba(0, 152, 70, 0.18),
            transparent 42%
        ),
        #07100b;
}

.auth-card {
    width: 100%;
    max-width: 560px;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;

    background: rgba(14, 24, 18, 0.96);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);
}

.auth-heading {
    margin-bottom: 30px;
}

.auth-heading span {
    display: block;

    margin-bottom: 8px;

    color: var(--green-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.auth-heading h1 {
    margin: 0 0 10px;

    color: #fff;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
}

.auth-heading p {
    margin: 0;

    color: var(--text-muted);
    line-height: 1.7;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-field label {
    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

.auth-field input,
.auth-field select {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    outline: none;

    background: #0b1510;
    color: #fff;

    font: inherit;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.auth-field input:focus,
.auth-field select:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(0, 152, 70, 0.14);
}

.player-registration-fields {
    display: none;

    padding: 20px;

    border: 1px solid rgba(0, 152, 70, 0.25);
    border-radius: 10px;

    background: rgba(0, 152, 70, 0.05);
}

.player-registration-fields.is-visible {
    display: grid;
    gap: 18px;
}

.auth-note {
    margin: 0;

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.6;
}

.auth-submit {
    width: 100%;

    padding: 15px 20px;

    border: 0;
    border-radius: 8px;

    background: var(--green);
    color: #fff;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.auth-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.auth-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.auth-message {
    display: none;

    margin: 0;
    padding: 13px 15px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.auth-message.success,
.auth-message.error {
    display: block;
}

.auth-message.success {
    border: 1px solid rgba(0, 152, 70, 0.35);

    background: rgba(0, 152, 70, 0.12);
    color: #79e8a9;
}

.auth-message.error {
    border: 1px solid rgba(229, 39, 39, 0.35);

    background: rgba(229, 39, 39, 0.12);
    color: #ff8e8e;
}

.auth-footer {
    margin-top: 24px;

    color: var(--text-muted);
    text-align: center;
    font-size: 13px;
}

.auth-footer a {
    color: var(--green-light);
    font-weight: 800;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .auth-page {
        padding: 40px 14px;
        align-items: flex-start;
    }

    .auth-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .auth-heading h1 {
        font-size: 42px;
    }
}
.nav-register-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;
    margin-left: 6px;

    border-radius: 7px;
    background: var(--green);
    color: #fff;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.nav-register-link:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.mobile-register-link {
    margin: 10px 16px 16px;
    padding: 13px 16px;

    border-radius: 7px;
    background: var(--green);
    color: #fff !important;

    text-align: center;
    font-weight: 800;
}
.nav-login-link,
.nav-register-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    border-radius: 7px;

    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.nav-login-link {
    margin-left: 8px;
    background: var(--green);
}

.nav-register-link {
    margin-left: 8px;
    background: var(--red);
}

.nav-login-link:hover,
.nav-register-link:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.nav-user-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-user,
.auth-admin {
    display: none;
}

.nav-profile-link,
.nav-admin-link,
.nav-logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 15px;

    border: 0;
    border-radius: 7px;

    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;
}

.nav-profile-link {
    background: var(--green);
}

.nav-admin-link {
    background: #b88918;
}

.nav-logout-button {
    background: var(--red);
}

.mobile-user-area {
    display: grid;
}

.mobile-logout-button {
    margin: 0 16px 16px;
    padding: 13px 16px;

    border: 0;
    border-radius: 7px;

    background: var(--red);
    color: #fff;

    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
/* Výchozí stav: návštěvník není přihlášený */
.nav-user-area .auth-user,
.nav-user-area .auth-admin,
.mobile-user-area .auth-user,
.mobile-user-area .auth-admin {
    display: none;
}

/* Přihlášení a registrace zůstávají viditelné */
.nav-user-area .auth-guest {
    display: inline-flex;
}

.mobile-user-area .auth-guest {
    display: block;
}
/* =========================
   UŽIVATELSKÝ PROFIL
========================= */

.profile-page {
    min-height: 100vh;
    padding: 150px 20px 80px;

    display: flex;
    justify-content: center;

    background:
        radial-gradient(
            circle at top,
            rgba(0, 152, 70, 0.16),
            transparent 40%
        ),
        #07100b;
}

.profile-card {
    width: 100%;
    max-width: 760px;
    height: fit-content;

    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;

    background: rgba(14, 24, 18, 0.96);

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.profile-heading {
    margin-bottom: 30px;
}

.profile-heading span {
    display: block;
    margin-bottom: 8px;

    color: var(--green-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.profile-heading h1 {
    margin: 0 0 10px;

    color: #fff;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
}

.profile-heading p,
.profile-loading {
    color: var(--text-muted);
}

.profile-content {
    display: none;
}

.profile-content.is-visible {
    display: grid;
}

.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-row:last-child {
    border-bottom: 0;
}

.profile-row span {
    color: var(--text-muted);
    font-size: 13px;
}

.profile-row strong {
    color: #fff;
    text-align: right;
}

@media (max-width: 600px) {
    .profile-page {
        padding: 110px 14px 50px;
    }

    .profile-card {
        padding: 26px 20px;
    }

    .profile-heading h1 {
        font-size: 42px;
    }

    .profile-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .profile-row strong {
        text-align: left;
    }
}
/* =========================
   ADMINISTRACE
========================= */

.admin-page {
    min-height: 100vh;
    padding: 145px 20px 80px;

    background:
        radial-gradient(
            circle at top,
            rgba(0, 152, 70, 0.14),
            transparent 38%
        ),
        #07100b;
}

.admin-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.admin-heading {
    margin-bottom: 30px;
}

.admin-heading > span,
.admin-panel-heading span {
    display: block;
    margin-bottom: 7px;

    color: var(--green-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.admin-heading h1 {
    margin: 0 0 10px;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 58px;
    line-height: 1;
    text-transform: uppercase;
}

.admin-heading p {
    color: var(--text-muted);
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 22px;
}

.admin-tab {
    padding: 12px 17px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

    background: #0d1812;
    color: var(--text-muted);

    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-tab.active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.admin-tab:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.admin-panel {
    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;

    background: rgba(14, 24, 18, 0.96);
}

.admin-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 25px;
}

.admin-panel-heading h2 {
    margin: 0;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    text-transform: uppercase;
}

.admin-secondary-button {
    padding: 11px 16px;

    border: 1px solid var(--green);
    border-radius: 7px;

    background: transparent;
    color: var(--green-light);

    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-loading,
.admin-empty {
    padding: 30px;

    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    color: var(--text-muted);
    text-align: center;
}

.applications-list {
    display: grid;
    gap: 14px;
}

.application-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    background: #0a1510;
}

.application-card-main {
    display: grid;
    gap: 20px;
}

.application-label {
    color: var(--green-light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.application-card h3 {
    margin: 5px 0;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
}

.application-card a {
    color: var(--text-muted);
    text-decoration: none;
}

.application-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.application-details div {
    display: grid;
    gap: 4px;
}

.application-details span {
    color: var(--text-muted);
    font-size: 11px;
}

.application-details strong {
    color: #fff;
}

.application-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
}

.application-actions button {
    min-width: 115px;
    padding: 11px 15px;

    border: 0;
    border-radius: 7px;

    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.application-approve {
    background: var(--green);
}

.application-reject {
    background: var(--red);
}

.application-actions button:disabled {
    cursor: wait;
    opacity: 0.6;
}

@media (max-width: 700px) {
    .admin-page {
        padding: 110px 14px 50px;
    }

    .admin-heading h1 {
        font-size: 46px;
    }

    .admin-panel {
        padding: 20px;
    }

    .admin-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .application-card {
        grid-template-columns: 1fr;
    }

    .application-actions {
        flex-direction: row;
    }

    .application-actions button {
        flex: 1;
    }
}
.admin-back-link {
    display: inline-flex;
    align-items: center;

    margin-bottom: 24px;

    color: var(--green-light);
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.admin-back-link:hover {
    color: #fff;
    transform: translateX(-3px);
}
.player-profile-form {
    display: grid;
    gap: 18px;

    margin-top: 32px;
    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.player-profile-form[hidden] {
    display: none;
}

.player-profile-heading span {
    display: block;
    margin-bottom: 6px;

    color: var(--green-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.player-profile-heading h2 {
    margin: 0;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    text-transform: uppercase;
}

.auth-field textarea {
    width: 100%;
    resize: vertical;

    padding: 14px 15px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    outline: none;

    background: #0b1510;
    color: #fff;

    font: inherit;
    line-height: 1.6;
}

.auth-field textarea:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(0, 152, 70, 0.14);
}
.player-photo-editor {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 22px;

    padding: 20px;

    border: 1px solid rgba(0, 152, 70, 0.22);
    border-radius: 12px;

    background: rgba(0, 152, 70, 0.04);
}

.player-photo-preview {
    width: 150px;
    height: 180px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;

    background: #09120d;
}

.player-photo-preview img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-photo-preview span {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    color: var(--text-muted);
    text-align: center;
    font-size: 12px;
}

.auth-field input[type="file"] {
    padding: 10px;
}

.auth-field small {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .player-photo-editor {
        grid-template-columns: 1fr;
    }

    .player-photo-preview {
        width: 130px;
        height: 155px;
    }
}
.player-photo-live img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roster-loading,
.roster-empty {
    grid-column: 1 / -1;

    padding: 24px;

    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    color: var(--text-muted);
    text-align: center;
}
.player-photo-live img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roster-loading,
.roster-empty {
    grid-column: 1 / -1;

    padding: 24px;

    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    color: var(--text-muted);
    text-align: center;
}
/* =========================
   OPRAVA UŽIVATELSKÉHO MENU NA MOBILU
========================= */

@media (max-width: 900px) {
    .mobile-nav {
        max-height: calc(100vh - 82px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 24px;
    }

    .mobile-user-area {
        display: grid;
        gap: 10px;

        width: 100%;
        padding: 18px 24px 24px;

        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-user-area > a,
    .mobile-user-area > button {
        width: 100%;
        min-height: 50px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0;
        padding: 13px 16px;

        border: 0;
        border-radius: 8px;

        color: #fff;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mobile-user-area .auth-admin {
        background: #c99716;
    }

    .mobile-user-area .auth-user {
        background: var(--green);
    }

    .mobile-user-area .mobile-logout-button {
        background: var(--red);
        font-family: inherit;
        cursor: pointer;
    }

    .mobile-user-area .auth-guest:first-child {
        background: var(--green);
    }

    .mobile-user-area .mobile-register-link {
        background: var(--red);
    }
}
.player-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.player-card-link .player-card {
    height: 100%;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.player-card-link:hover .player-card {
    transform: translateY(-4px);
    border-color: var(--green);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28);
}
@media (max-width: 900px) {
    .mobile-nav {
        display: none;
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-menu-button.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
.player-card-clickable {
    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.player-card-clickable:hover {
    transform: translateY(-4px);
    border-color: var(--green);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28);
}

.player-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.player-modal.is-open {
    display: flex;
}

.player-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.player-modal-card {
    position: relative;
    z-index: 1;

    width: min(900px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: #0d1812;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.65);
}

.player-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: #111d16;
    color: #fff;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.player-modal-photo {
    width: 100%;
    height: 390px;

    overflow: hidden;

    border-radius: 14px;
    background: #08110c;
}

.player-modal-photo img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-modal-photo span {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--text-muted);
}

.player-modal-content {
    padding-top: 22px;
}

.player-modal-content h2 {
    margin: 8px 0 24px;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 58px;
    line-height: 1;
    text-transform: uppercase;
}

.player-modal-info,
.player-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.player-modal-info div,
.player-modal-stats div,
.player-modal-bio {
    padding: 17px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    background: #09130e;
}

.player-modal-info span,
.player-modal-stats span,
.player-modal-bio > span {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.player-modal-info strong,
.player-modal-stats strong {
    display: block;
    margin-top: 6px;

    color: #fff;
}

.player-modal-bio {
    margin: 18px 0;
}

.player-modal-bio p {
    margin: 8px 0 0;

    color: var(--text-muted);
    line-height: 1.7;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 750px) {
    .player-modal {
        padding: 12px;
    }

    .player-modal-card {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 20px;
    }

    .player-modal-photo {
        width: 180px;
        height: 220px;
    }

    .player-modal-content h2 {
        font-size: 44px;
    }

    .player-modal-info,
    .player-modal-stats {
        grid-template-columns: 1fr;
    }
}
.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}
.admin-users-list {
    display: grid;
    gap: 14px;
}

.admin-user-card {
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    background: #0a1510;
}

.admin-user-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.admin-user-role {
    color: var(--green-light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-user-card h3 {
    margin: 6px 0;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 27px;
}

.admin-user-card a {
    color: var(--text-muted);
    text-decoration: none;
}

.admin-user-player-data {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.admin-user-player-data div {
    display: grid;
    gap: 4px;
}

.admin-user-player-data span {
    color: var(--text-muted);
    font-size: 11px;
}

.admin-user-player-data strong {
    color: #fff;
}

@media (max-width: 750px) {
    .admin-user-main {
        align-items: flex-start;
        flex-direction: column;
    }
}
.admin-user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-user-actions button {
    min-width: 130px;
    padding: 11px 15px;

    border: 1px solid var(--green);
    border-radius: 7px;

    background: transparent;
    color: var(--green-light);

    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-user-actions button:hover {
    background: var(--green);
    color: #fff;
}
.player-admin-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.player-admin-modal.is-open {
    display: flex;
}

.player-admin-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.player-admin-modal-card {
    position: relative;
    z-index: 1;

    width: min(560px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: #0d1812;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.65);
}

.player-admin-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: #111d16;
    color: #fff;

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.player-admin-modal-heading {
    margin-bottom: 26px;
    padding-right: 52px;
}

.player-admin-modal-heading > span {
    display: block;
    margin-bottom: 7px;

    color: var(--green-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.player-admin-modal-heading h2 {
    margin: 0 0 8px;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
}

.player-admin-modal-heading p {
    margin: 0;
    color: var(--text-muted);
}

#player-admin-form {
    display: grid;
    gap: 18px;
}

.player-admin-visible {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.player-admin-visible input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .player-admin-modal {
        padding: 12px;
    }

    .player-admin-modal-card {
        padding: 22px;
    }

    .player-admin-modal-heading h2 {
        font-size: 36px;
    }
}
.admin-match-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.admin-match-edit-button {
    padding: 9px 14px;

    border: 1px solid var(--green);
    border-radius: 7px;

    background: transparent;
    color: var(--green-light);

    font: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.admin-match-edit-button:hover {
    background: var(--green);
    color: #fff;
}
.admin-matches-list {
    display: grid;
    gap: 14px;
}

.admin-match-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;

    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.015);
}

.admin-match-card h3 {
    margin: 5px 0 6px;
}

.admin-match-card p {
    margin: 3px 0;
}

.admin-match-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.admin-match-edit-button {
    min-width: 90px;
}
.match-stats-list {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.match-stats-player {
    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.02);
}

.match-stats-player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 14px;
}

.match-stats-player-header strong {
    display: block;
    margin-bottom: 4px;

    color: #fff;
    font-size: 16px;
}

.match-stats-player-header span {
    color: var(--text-muted);
    font-size: 12px;
}

.match-stats-player-header label {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.match-stats-player-header input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--green);
}

.match-stats-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.match-stats-fields label {
    display: grid;
    gap: 6px;

    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.match-stats-fields input {
    width: 100%;
    min-width: 0;
    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;

    background: #0a140e;
    color: #fff;

    font: inherit;
}

.match-stats-fields input:focus {
    outline: none;
    border-color: var(--green);
}

#match-stats-modal .player-admin-modal-card {
    width: min(720px, 100%);
}

@media (max-width: 600px) {
    .match-stats-player-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .match-stats-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.admin-match-stats-button {
    min-width: 120px;
    padding: 9px 14px;

    border: 1px solid var(--green);
    border-radius: 7px;

    background: transparent;
    color: var(--green-light);

    font: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.admin-match-stats-button:hover {
    background: var(--green);
    color: #fff;
}

.admin-match-actions {
    min-width: 130px;
}
.match-detail-content {
    display: grid;
    gap: 16px;
}

.match-detail-content section {
    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.02);
}

.match-detail-content h3 {
    margin: 0 0 12px;

    color: var(--green-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.match-detail-content section:first-child {
    text-align: center;
}

.match-detail-content section:first-child > strong {
    display: block;

    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 46px;
    line-height: 1;
}

.match-detail-content ul {
    display: grid;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.match-detail-content li {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 12px;

    border-radius: 8px;

    background: rgba(0, 0, 0, 0.18);
}

.match-detail-content li strong {
    color: #fff;
}

.match-detail-content li span {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 12px;
}

.match-detail-content p {
    margin: 0;
    color: var(--text-muted);
}

#match-detail-modal .player-admin-modal-card {
    width: min(680px, 100%);
}
.match-detail-score {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;

    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);
}

.match-detail-score span {
    color: #fff;
    font-weight: 800;
}

.match-detail-score span:last-child {
    text-align: right;
}

.match-detail-score strong {
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 44px;
    line-height: 1;
}

.match-detail-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.match-detail-team-column {
    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.02);
}

.match-detail-team-column > h3 {
    margin: 0 0 18px;

    color: #fff;
    font-size: 20px;
    text-align: center;
}

.match-detail-team-section {
    margin-top: 16px;
}

.match-detail-team-section h4 {
    margin: 0 0 10px;

    color: var(--green-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.match-detail-team-column ul {
    display: grid;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.match-detail-team-column li {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 10px;

    border-radius: 8px;

    background: rgba(0, 0, 0, 0.18);
}

.match-detail-team-column li strong {
    color: #fff;
}

.match-detail-team-column li span:last-child {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 12px;
}

.match-detail-scorers b {
    margin-left: auto;
    color: var(--green-light);
}

#match-detail-modal .player-admin-modal-card {
    width: min(960px, 100%);
}

@media (max-width: 760px) {
    .match-detail-score {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .match-detail-score span:last-child {
        text-align: center;
    }

    .match-detail-columns {
        grid-template-columns: 1fr;
    }
}
.match-detail-team-column {
    padding: 14px;
}

.match-detail-team-column > h3 {
    margin-bottom: 12px;
    font-size: 17px;
}

.match-detail-team-section {
    margin-top: 12px;
}

.match-detail-team-section h4 {
    margin-bottom: 7px;
    font-size: 10px;
}

.match-detail-team-column ul {
    gap: 5px;
}

.match-detail-team-column li {
    padding: 6px 8px;
    font-size: 12px;
}

.match-detail-team-column li strong {
    font-size: 12px;
}

.match-detail-team-column li b,
.match-detail-team-column li span {
    font-size: 11px;
}

.match-detail-columns {
    gap: 10px;
}

.match-detail-score {
    padding: 12px 16px;
}

.match-detail-score strong {
    font-size: 36px;
}

#match-detail-modal .player-admin-modal-card {
    width: min(860px, 100%);
    padding: 22px;
}
.match-card-yellow,
.match-card-red {
    margin-left: auto;
    font-size: 13px;
    line-height: 1;
}

.match-detail-team-column li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-detail-team-column li b {
    color: var(--text-muted);
}