* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f1117;
    color: white;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

header {
    background: #161b22;
    border-bottom: 1px solid #2d333b;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 65px;
}

.logo {
    height: 65px;
    width: auto;
    display: block;
    padding: 5px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    line-height: 1;
    transition: 0.3s;
}

nav a:hover {
    color: #f39c12;
}

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
        rgba(5,10,20,0.85),
        rgba(5,10,20,0.95)
    ),
    url("assets/brugge-background.jpg");

    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-logo {
    width: 300px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.4rem;
    color: #b8bcc4;
}

.tagline {
    font-size: 1.2rem;
    color: #f39c12;
    margin-top: 15px;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    width: 180px;
    text-align: center;
}

.stats {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.stat-card {
    background: #161b22;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2d333b;
}

.stat-card h2 {
    font-size: 2.5rem;
    color: #f39c12;
}

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.placeholder-box {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.team-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    text-decoration: none;
    color: white;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.team-profile {
    min-height: 80vh;
    text-align: center;
    padding-top: 50px;
}

.team-profile-logo {
    width: 260px;
    max-width: 80%;
    margin-bottom: 30px;
}

.players-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.player-card {
    width: 360px;
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #0f1117;
}

.player-info {
    padding: 20px;
}

.player-number {
    color: #f39c12;
    font-size: 2rem;
    font-weight: bold;
}

.player-name {
    font-size: 1.4rem;
    margin-top: 5px;
}

footer {
    background: #161b22;
    text-align: center;
    padding: 30px;
    border-top: 1px solid #2d333b;
}

@media (max-width: 768px) {

    .nav {
        flex-direction: column;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .logo {
    height: 58px;
}

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 220px;
    }

    .player-card {
        width: 90%;
    }
}
.btn:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
    box-shadow: 0 10px 20px rgba(243,156,18,0.25);
}
.fixtures-day-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #f5a623;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.fixture-day h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #f39c12;
}

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

.court-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 15px;
    padding: 25px;
}

.court-card h4 {
    text-align: center;
    margin-bottom: 20px;
}

.fixture {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #2d333b;
}

.fixture:last-child {
    border-bottom: none;
}

.fixture span:first-child {
    color: #f39c12;
    font-weight: bold;
}

@media (max-width: 768px) {

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

}
.table-wrap {
    overflow-x: auto;
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 15px;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.standings-table th,
.standings-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #2d333b;
}

.standings-table th {
    color: #f39c12;
    font-weight: bold;
}

.standings-table td:first-child,
.standings-table th:first-child {
    text-align: left;
}

.standings-table tr:last-child td {
    border-bottom: none;
}
.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.table-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.results-day {
    margin-top: 40px;
}

.results-day h3 {
    text-align: center;
    color: #f39c12;
    margin-bottom: 25px;
}

.result-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.result-status {
    text-align: center;
    color: #f39c12;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 35px;
}

.result-team {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.result-team:last-child {
    justify-content: flex-end;
}

.result-team img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.result-score {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.result-info {
    text-align: center;
    margin-top: 25px;
    color: #b8bcc4;
}

.result-potm {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.result-goals {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2d333b;
    color: #d0d5dc;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .result-teams {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .result-team,
    .result-team:last-child {
        justify-content: center;
    }
}
.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.player-card {
    width: 100%;
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.info-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 30px;
}

.info-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.info-card p {
    color: #b8bcc4;
}
.fixture-day {
    margin-top: 40px;
}

.fixture-day h3 {
    text-align: center;
    color: #f39c12;
    margin-bottom: 25px;
}

.court-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 25px 35px;
    margin-bottom: 25px;
}

.court-card h4 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.fixture-row {
    display: grid;
    grid-template-columns: 90px 1fr 60px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #2d333b;
}

.fixture-row:last-child {
    border-bottom: none;
}

#fixturesContainer .fixture-time {
    display: inline-block;
    background: rgba(243,156,18,0.15);
    border: 1px solid rgba(243,156,18,0.3);
    border-radius: 999px;
    padding: 4px 12px;
    color: #f39c12;
    font-weight: 900;
}

.fixture-team {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    min-width: 0;
}

.fixture-team:first-of-type {
    justify-content: flex-start;
}

.fixture-team:last-of-type {
    justify-content: flex-start;
}

.fixture-team img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.fixture-vs {
    color: #b8bcc4;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .fixture-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .fixture-team {
        justify-content: center;
    }

    .fixture-time {
        font-size: 1.2rem;
    }
}
.court-section {
    margin-top: 35px;
}

.court-section h4 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 25px;
}

#fixturesContainer .fixture-card-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
    margin: 0 auto 40px;
}

.fixture-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    transition: 0.25s ease;
}

.fixture-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 15px 30px rgba(243,156,18,0.12);
}

.fixture-card-time {
    color: #f39c12;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.fixture-card-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.fixture-card-team {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fixture-card-team img {
    width: 105px;
    height: 105px;
    object-fit: contain;
}

.fixture-card-vs {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .fixture-card-grid {
        grid-template-columns: 1fr;
    }

    .fixture-card-teams {
        grid-template-columns: 1fr;
    }

    .fixture-card-vs {
        font-size: 1.5rem;
    }
}
.result-card-score {
    color: white;
    font-size: 2.4rem;
    font-weight: 900;
}

.result-scorers {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #2d333b;
    color: #b8bcc4;
    text-align: center;
}
.standing-team {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.standing-team img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
.standing-team span {
    white-space: nowrap;
}

.points {
    color: #f39c12;
    font-weight: 900;
    font-size: 1.15rem;
}

.standings-table tbody tr {
    transition: 0.2s ease;
}

.standings-table tbody tr:hover {
    background: rgba(243,156,18,0.08);
}
.btn {
    display: inline-block;
    background: #f39c12;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243,156,18,0.25);
}
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.hub-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: 0.25s ease;
}

.hub-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 15px 30px rgba(243,156,18,0.12);
}

.hub-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.hub-card p {
    color: #b8bcc4;
    margin-bottom: 20px;
}
.top-scorers-section {
    margin-top: 70px;
}
.standings-table td {
    vertical-align: middle;
}

.standing-team {
    display: grid;
    grid-template-columns: 52px auto;
    align-items: center;
    justify-content: start;
    gap: 14px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.standing-team img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    justify-self: center;
}
.hub-visual-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    transition: 0.25s ease;
    min-height: 400px;
    overflow: hidden;
}

.hub-match {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 22px;
    width: 100%;
}

.hub-match img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
}

.hub-vs {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
}

.hub-visual-card p {
    color: #b8bcc4;
    margin-bottom: 18px;
}

.hub-mini-table {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.hub-mini-table div {
    display: grid;
    grid-template-columns: 30px 55px 1fr;
    align-items: center;
    gap: 10px;
    text-align: left;
    border-bottom: 1px solid #2d333b;
    padding-bottom: 10px;
}

.hub-mini-table div:last-child {
    border-bottom: none;
}

.hub-mini-table span {
    color: #f39c12;
    font-weight: 900;
}

.hub-mini-table img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hub-mini-table strong {
    color: white;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hub-match img {
        width: 80px;
        height: 80px;
    }

    .hub-vs {
        font-size: 1.5rem;
    }
}
.hub-double-match {
    display: grid;
    gap: 18px;
}

.hub-league-table div {
    grid-template-columns: 28px 45px 1fr auto;
}

.hub-scorer-table div {
    grid-template-columns: 28px 45px 1fr 35px;
}

.hub-mini-table em {
    color: #f39c12;
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.hub-scorer-table strong {
    padding-right: 18px;
}
.sponsors-section {
    margin-bottom: 40px;
}

.sponsors-section h3 {
    color: #f39c12;
    margin-bottom: 25px;
    text-align: center;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.sponsor-logos a {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 30px;
    transition: 0.25s ease;
}

.sponsor-logos a:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 15px 30px rgba(243,156,18,0.12);
}

.sponsor-logos a:hover {
    transform: translateY(-4px);
}

.sponsor-logos img {
    height: 140px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
}

footer {
    padding-top: 50px;
    padding-bottom: 30px;
}
.participant-section {
    padding-top: 20px;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.participant-card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}
.countdown-title {
    display: block;
    width: 100%;
    text-align: center;

    color: #ffffff !important;

    font-size: 1.8rem;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin: 35px 0 20px 0;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 700px;
    margin: 0 auto 25px;
}

.countdown div {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 20px;
}

.countdown span {
    display: block;
    color: #f39c12;
    font-size: 2.4rem;
    font-weight: 900;
}

.countdown p {
    color: #b8bcc4;
    font-size: 0.95rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}
.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-link-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 35px;
    text-decoration: none;
    color: white;
    transition: 0.25s ease;
}

.about-link-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 15px 30px rgba(243,156,18,0.12);
}

.about-link-card h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-link-card p {
    color: #b8bcc4;
}

.event-pack-card {
    margin-top: 35px;
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 40px;
    text-align: center;
}

.event-pack-card h3 {
    color: #f39c12;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.event-pack-card p {
    color: #b8bcc4;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-card-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    min-height: 220px;
    overflow: hidden;
    transition: 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 15px 30px rgba(243,156,18,0.12);
}

.gallery-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
    font-weight: 900;
    font-size: 1.3rem;
    text-align: center;
}
.player-profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.player-profile-image img {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
}

.player-profile-stats {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 40px;
    text-align: center;
}

.profile-team-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
}

.stats-card-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.stats-card-large div {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 25px 15px;
}

.stats-card-large span {
    color: #f39c12;
    font-size: 2.6rem;
    font-weight: 900;
}

.stats-card-large p {
    color: #b8bcc4;
    font-weight: bold;
}

@media (max-width: 900px) {
    .player-profile-layout {
        grid-template-columns: 1fr;
    }
}
.player-table-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.player-table-link:hover {
    color: #f39c12;
}

.admin-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.admin-card h3 {
    color: #f39c12;
    margin-bottom: 25px;
    text-align: center;
}

.admin-form {
    display: grid;
    gap: 18px;
}

.admin-form label {
    color: white;
    font-weight: bold;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 10px;
    padding: 14px;
    color: white;
    font-size: 1rem;
}

.admin-form textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-score-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 768px) {
    .admin-score-grid {
        grid-template-columns: 1fr;
    }
}
.admin-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.admin-sub-card {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 22px;
}

.admin-sub-card h4 {
    color: #f39c12;
    margin-bottom: 15px;
}

.admin-inline {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.small-btn {
    padding: 12px 18px;
    margin-top: 0;
}

.admin-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: grid;
    gap: 8px;
}

.admin-list li {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-list button {
    background: transparent;
    border: none;
    color: #f39c12;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 900px) {
    .admin-two-column {
        grid-template-columns: 1fr;
    }
}
.admin-preview {
    display: grid;
    gap: 15px;
    color: #b8bcc4;
}

.admin-fixture-preview {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 14px;
    padding: 18px;
}
.admin-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.admin-delete-btn {
    background: transparent;
    border: 1px solid #f39c12;
    color: #f39c12;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
}

.admin-delete-btn:hover {
    background: #f39c12;
    color: #0f1117;
}
#fixturesContainer .fixture-card-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
}
#fixturesContainer .fixture-card-compact {
    padding: 12px 20px;
}

#fixturesContainer .fixture-match-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    margin: 4px 0;
}

#fixturesContainer .fixture-team-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 800;
}

#fixturesContainer .fixture-team-compact img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

#fixturesContainer .fixture-vs {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    min-width: 40px;
    text-align: center;
}

#fixturesContainer .fixture-time {
    margin-bottom: 4px;
}

#fixturesContainer .fixture-meta {
    margin-top: 4px;
    font-size: 0.95rem;
}
/* =========================
   AUTOMATED RESULTS PAGE
========================= */

#resultsContainer .result-card {
    max-width: 620px;
    margin: 0 auto 35px;
    padding: 22px;
}

#resultsContainer .result-team {
    color: white;
    text-decoration: none;
    font-weight: 900;
}

#resultsContainer .result-team:hover {
    color: #f39c12;
}

#resultsContainer .result-team span {
    color: white;
    text-decoration: none;
}

#resultsContainer .result-team img {
    width: 70px;
    height: 70px;
}

#resultsContainer .result-score {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    min-width: 120px;
    text-align: center;
}

#resultsContainer .result-status {
    color: #f39c12;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.result-scorers {
    margin: 10px 0;
    line-height: 1.5;
}

.result-scorers strong {
    display: block;
    margin-bottom: 4px;
}

#resultsContainer .results-day h3 {
    text-align: center;
    color: #f39c12;
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}
#resultsContainer .result-card {
    max-width: 620px;
    padding: 22px;
}

#resultsContainer .result-team img {
    width: 55px;
    height: 55px;
}

#resultsContainer .result-score {
    font-size: 2.5rem;
}

#resultsContainer .result-info {
    text-align: center;
    margin: 12px 0 8px;
    color: #b8bcc4;
}

#resultsContainer .result-potm {
    text-align: center;
    font-weight: 700;
    margin: 10px 0;
    color: white;
}

#resultsContainer .result-goals {
    text-align: center;
    color: #b8bcc4;
    line-height: 1.5;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.admin-link {
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.2s ease;
}

.admin-link:hover {
    opacity: 1;
    transform: scale(1.1);
}
.admin-login-card {
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
}

.admin-input {
    width: 100%;
    padding: 14px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid #333;
    background: #161b22;
    color: white;
}
.danger-card {
    border-color: #c0392b;
}

.danger-card h3 {
    color: #ff6b6b;
}

.danger-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 15px 30px rgba(255,107,107,0.12);
}
.admin-nav {
    padding: 20px 0;
}

.admin-nav .btn {
    display: inline-block;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #161b22;
        border-top: 1px solid #2d333b;
        padding: 20px;
        z-index: 999;
    }

    nav.open {
        display: grid;
        gap: 15px;
    }

    nav a {
        margin: 0;
        font-size: 1.1rem;
    }
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.location-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.25s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 15px 30px rgba(243,156,18,0.12);
}

.location-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.location-card div {
    padding: 25px;
}

.location-card h3 {
    color: #f39c12;
    margin-bottom: 10px;
}

.location-card p {
    color: #b8bcc4;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}
.location-detail-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.location-detail-card > img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.location-detail-content {
    padding: 35px;
    text-align: center;
}

.location-detail-content h3 {
    color: #f39c12;
    font-size: 2rem;
    margin-bottom: 15px;
}

.location-detail-content p {
    color: #b8bcc4;
    margin-bottom: 25px;
}

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

@media (max-width: 768px) {
    .location-detail-card > img {
        height: 240px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
.site-credit {
    margin: 35px auto 20px;
    text-align: center;
    opacity: 0.85;
}

.site-credit p {
    color: #b8bcc4;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-credit img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: 0.25s ease;
}

.site-credit img:hover {
    transform: scale(1.04);
    opacity: 1;
}
.fixtures-day-block {
    margin-top: 55px;
}

.fixtures-courts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.fixtures-court-column h4 {
    text-align: center;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.fixtures-court-column .fixture-card-grid {
    max-width: none !important;
    margin: 0 !important;
}

.fixtures-court-column .fixture-card-compact {
    padding: 10px 14px !important;
}

.fixtures-court-column .fixture-time {
    font-size: 1rem;
    margin-bottom: 4px;
}

.fixtures-court-column .fixture-match-row {
    gap: 8px;
    margin: 3px 0;
}

.fixtures-court-column .fixture-team-compact {
    font-size: 0.9rem;
    gap: 6px;
}

.fixtures-court-column .fixture-team-compact img {
    width: 34px;
    height: 34px;
}

.fixtures-court-column .fixture-vs {
    font-size: 1rem;
    min-width: 28px;
}

.fixtures-court-column .fixture-meta {
    font-size: 0.8rem;
    margin-top: 4px;
}

.no-fixtures-text {
    text-align: center;
    color: #b8bcc4;
    font-style: italic;
    padding: 20px;
}

@media (max-width: 900px) {
    .fixtures-courts-grid {
        grid-template-columns: 1fr;
    }
}
.results-day-block {
    margin-top: 55px;
}

.results-courts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.results-court-column h4 {
    text-align: center;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.results-court-column .results-list {
    display: grid;
    gap: 14px;
}

.results-court-column .result-card {
    max-width: none !important;
    margin: 0 !important;
    padding: 18px !important;
}

.results-court-column .result-status {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.results-court-column .result-teams {
    gap: 12px;
}

.results-court-column .result-team {
    font-size: 0.85rem;
    gap: 6px;
}

.results-court-column .result-team img {
    width: 38px !important;
    height: 38px !important;
}

.results-court-column .result-score {
    font-size: 1.8rem !important;
    min-width: 70px;
}

.results-court-column .result-info,
.results-court-column .result-potm,
.results-court-column .result-goals {
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .results-courts-grid {
        grid-template-columns: 1fr;
    }
}
.hub-mini-match {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hub-mini-match:last-of-type {
    border-bottom: none;
}

.hub-mini-match strong {
    display: block;
    color: #f6a313;
    margin-bottom: 4px;
}

.hub-mini-match p {
    margin: 0;
    font-size: 0.95rem;
}

.hub-mini-match small {
    opacity: 0.8;
}
.hub-court-row {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hub-court-row:last-of-type {
    border-bottom: none;
}

.hub-court-row strong {
    display: block;
    color: #f39c12;
    margin-bottom: 8px;
}

.hub-court-match {
    display: grid;
    grid-template-columns: 55px 1fr 55px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hub-court-match img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.hub-court-match span {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
}

.hub-court-row p {
    margin: 0;
    color: #b8bcc4;
    font-size: 0.9rem;
}

.hub-court-row small {
    color: #ffffff;
    opacity: 0.85;
}
.hub-visual-card {
    display: flex;
    flex-direction: column;
}

.hub-visual-card .btn {
    margin-top: auto;
}
/* =========================
   STANDINGS - SCORERS / ASSISTS
========================= */

.stats-tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.compact-stats-table h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.stats-scroll-box {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 18px;
}

.stats-scroll-box table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

.stats-scroll-box .standings-table th,
.stats-scroll-box .standings-table td {
    padding: 14px 8px;
    font-size: 0.95rem;
    white-space: normal;
}

.stats-scroll-box .standings-table th:nth-child(1),
.stats-scroll-box .standings-table td:nth-child(1) {
    width: 45px;
}

.stats-scroll-box .standings-table th:nth-child(2),
.stats-scroll-box .standings-table td:nth-child(2) {
    width: 32%;
}

.stats-scroll-box .standings-table th:nth-child(3),
.stats-scroll-box .standings-table td:nth-child(3) {
    width: 38%;
}

.stats-scroll-box .standings-table th:nth-child(4),
.stats-scroll-box .standings-table td:nth-child(4) {
    width: 70px;
    text-align: center;
}

.stats-scroll-box .standing-team {
    gap: 8px;
}

.stats-scroll-box .standing-team img {
    width: 32px;
    height: 32px;
}

.stats-scroll-box .standing-team span,
.stats-scroll-box .player-table-link {
    font-size: 0.95rem;
    line-height: 1.2;
}

.stats-scroll-box::-webkit-scrollbar {
    width: 8px;
}

.stats-scroll-box::-webkit-scrollbar-thumb {
    background: #f39c12;
    border-radius: 10px;
}

.stats-scroll-box::-webkit-scrollbar-track {
    background: #161b22;
}

@media (max-width: 900px) {
    .stats-tables-grid {
        grid-template-columns: 1fr;
    }

    .stats-scroll-box {
        max-height: 430px;
        overflow-x: auto;
    }
}
.day-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.day-filter {
    background: #161b22;
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s;
}

.day-filter:hover {
    background: #f39c12;
}

.day-filter.active {
    background: #f39c12;
    color: #fff;
}
.team-matches-section {
    margin-top: 70px;
}

.team-matches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 30px;
}

.team-match-block {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 25px;
}

.team-match-block h3 {
    color: #f39c12;
    text-align: center;
    margin-bottom: 20px;
}

.team-match-card {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    text-align: center;
}

.team-match-card strong {
    color: #f39c12;
}

.team-match-card p {
    margin: 8px 0;
    color: white;
    font-weight: 700;
}

.team-match-card span,
.team-empty-text {
    color: #b8bcc4;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .team-matches-grid {
        grid-template-columns: 1fr;
    }
}
.team-fixture-row {
    display: grid;
    grid-template-columns: 110px 1.5fr 80px 1.5fr 110px;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.team-fixture-row img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    justify-self: center;
}

.team-fixture-row span {
    font-size: 1.15rem;
    text-align: center;
    white-space: nowrap;
}

.team-fixture-row strong {
    color: #f39c12;
    font-size: 1.8rem;
    text-align: center;
}
.vip-profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vip-sticker img {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
}

.vip-details {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 22px;
    padding: 40px;
}

.vip-details h1 {
    color: #ffffff;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
}

.vip-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.vip-info-grid div {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
}

.vip-info-grid strong {
    color: #f39c12;
    display: block;
    margin-bottom: 8px;
}

.vip-info-grid p {
    color: #ffffff;
    font-weight: 700;
}

.honours-section {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 16px;
    padding: 22px;
    margin-top: 20px;
}

.honours-section h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.honours-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.honours-section li {
    color: #b8bcc4;
    padding: 8px 0;
    border-bottom: 1px solid #2d333b;
}

.honours-section li:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .vip-profile-layout {
        grid-template-columns: 1fr;
    }

    .vip-info-grid {
        grid-template-columns: 1fr;
    }
}
.fixture-card,
.result-card {
    cursor: pointer;
}
.match-centre-card {
    background: #161b22;
    border: 1px solid #2d333b;
    border-radius: 24px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.match-meta {
    color: #f39c12;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-scoreboard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 35px;
    margin-bottom: 40px;
}

.match-team img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 15px;
}

.match-team h3 {
    color: white;
    font-size: 1.6rem;
}

.match-score {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    white-space: nowrap;
}

.match-details-grid {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    gap: 25px;
    align-items: stretch;
    margin-top: 30px;
}

.match-scorers,
.match-potm-centre {
    background: #0f1117;
    border: 1px solid #2d333b;
    border-radius: 18px;
    padding: 25px;
}

.match-scorers h3,
.match-potm-centre h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.match-scorers p,
.match-potm-centre p {
    color: white;
    font-weight: 700;
    margin: 8px 0;
}

.match-potm-centre {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-potm-centre span {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.match-empty {
    color: #b8bcc4 !important;
    font-weight: 400 !important;
}

.match-actions {
    margin-top: 35px;
}

@media (max-width: 900px) {
    .match-scoreboard {
        grid-template-columns: 1fr;
    }

    .match-score {
        font-size: 3rem;
    }

    .match-details-grid {
        grid-template-columns: 1fr;
    }

    .match-team img {
        width: 130px;
        height: 130px;
    }
}
.results-court-column .result-team {
    font-size: 1.35rem !important;
    gap: 16px !important;
}

.results-court-column .result-team img {
    width: 70px !important;
    height: 70px !important;
}

.results-court-column .result-score {
    font-size: 2.8rem !important;
}

.results-court-column .result-teams {
    gap: 28px !important;
}
.results-court-column .result-team span {
    white-space: nowrap;
}
.match-team-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.match-team-link:hover .match-team img {
    transform: scale(1.05);
}

.match-team-link:hover .match-team h3 {
    color: #f39c12;
}

.match-team img {
    transition: all 0.2s ease;
}

.match-team h3 {
    transition: all 0.2s ease;
}
.match-player-link {
    display: block;
    color: white;
    font-weight: 700;
    text-decoration: none;
    margin: 8px 0;
}

.match-player-link:hover {
    color: #f39c12;
}
.fixture-referee {
    margin-top: 8px;
    text-align: center;
    color: #f39c12;
    font-size: 0.9rem;
    font-weight: 700;
}
.match-referee {
    text-align: center;
    color: #f39c12;
    font-weight: 800;
    margin-top: -18px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.match-vip {
    margin-top: 8px;
    color: #f39c12;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}
/* Mobile teams grid: 2 per row */
@media (max-width: 768px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-card {
        padding: 18px 10px;
        border-radius: 16px;
    }

    .team-card img {
        width: 115px;
        height: 115px;
        margin-bottom: 10px;
    }

    .team-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .team-card img {
        width: 95px;
        height: 95px;
    }

    .team-card h3 {
        font-size: 0.9rem;
    }
}
/* Mobile participant grids (VIPs, Referees & Staff) */
@media (max-width: 768px) {

    .participants-grid,
    .vip-grid,
    .staff-grid,
    .referees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .participant-card,
    .vip-card,
    .staff-card,
    .referee-card {
        padding: 16px 10px;
    }

    .participant-card img,
    .vip-card img,
    .staff-card img,
    .referee-card img {
        width: 90px;
        height: 90px;
    }

    .participant-card h3,
    .vip-card h3,
    .staff-card h3,
    .referee-card h3 {
        font-size: 1rem;
        margin-top: 10px;
    }

    .participant-card p,
    .vip-card p,
    .staff-card p,
    .referee-card p {
        font-size: 0.85rem;
    }
}
/* Mobile: team/player cards 2 side by side */
@media (max-width: 768px) {
    .players-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        margin-top: 25px !important;
    }

    .players-grid .player-card {
        width: 100% !important;
        border-radius: 14px !important;
    }

    .players-grid .player-info {
        padding: 12px 8px !important;
    }

    .players-grid .player-number {
        font-size: 1.25rem !important;
    }

    .players-grid .player-name {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
    }
}
/* Mobile: compact team page fixtures/results rows */
@media (max-width: 768px) {
    .team-matches-section {
        margin-top: 40px;
    }

    .team-match-block {
        padding: 18px 12px;
        border-radius: 18px;
        overflow: hidden;
    }

    .team-match-card {
        padding: 14px 10px;
        overflow: hidden;
    }

    .team-fixture-row {
        grid-template-columns: 42px 1fr 42px 1fr 42px !important;
        gap: 6px !important;
        align-items: center;
    }

    .team-fixture-row img {
        width: 38px !important;
        height: 38px !important;
    }

    .team-fixture-row span {
        font-size: 0.85rem !important;
        white-space: normal !important;
        line-height: 1.15;
    }

    .team-fixture-row strong {
        font-size: 1.1rem !important;
        line-height: 1;
    }

    .team-match-card > strong {
        font-size: 0.95rem;
        display: block;
        margin-bottom: 8px;
    }

    .team-match-card > span {
        font-size: 0.85rem;
        display: block;
        margin-top: 8px;
    }
}
/* Mobile day filters */
@media (max-width:768px){

    .day-filters{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        max-width:340px;
        margin:0 auto 35px;
    }

    .day-filter{
        width:100%;
        margin:0;
        padding:12px 0;
        font-size:0.95rem;
    }

}
/* Mobile day filters (Fixtures & Results) */
@media (max-width:768px){

    .day-filters,
    .results-filters{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        max-width:340px;
        margin:0 auto 35px;
    }

    .day-filter,
    .results-filter{
        width:100%;
        margin:0;
        padding:12px 0;
        font-size:0.95rem;
    }

}
/* Mobile: compact Match Centre */
@media (max-width: 768px) {
    .match-centre-card {
        padding: 22px 14px !important;
        border-radius: 18px !important;
    }

    .match-meta {
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.6px !important;
    }

    .match-referee {
        font-size: 0.9rem !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }

    .match-scoreboard {
        grid-template-columns: 1fr auto 1fr !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
        align-items: center !important;
    }

    .match-team img {
        width: 82px !important;
        height: 82px !important;
        margin-bottom: 8px !important;
    }

    .match-team h3 {
        font-size: 1rem !important;
        line-height: 1.15 !important;
    }

    .match-vip {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin-top: 5px !important;
    }

    .match-score {
        font-size: 2.2rem !important;
        line-height: 1 !important;
        padding: 0 4px !important;
    }

    .match-details-grid {
        margin-top: 20px !important;
        gap: 14px !important;
    }

    .match-scorers,
    .match-potm-centre {
        padding: 18px 14px !important;
    }
}