/* ============================
   MATCHES PAGE — TITLES
============================ */
.page-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: white !important;
    margin: 25px 0 15px 20px;
    text-align: left;
    letter-spacing: 1px;
}

.subtitle {
    color: white !important;
    opacity: 0.9;
}

/* ============================
   GAMEWEEK SELECTOR
============================ */
.gw-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 26px;
    font-weight: 900;
    color: #4b0082;
    margin: 20px 0;
}

.gw-arrow {
    background: black;
    color: #4b0082;
    border: 2px solid #4b0082;
    padding: 6px 14px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.gw-arrow:hover {
    background: #4b0082;
    color: black;
}

/* ============================
   FULL FIXTURE CARD
============================ */
.full-fixture {
    background: rgba(0, 0, 0, 0.45);
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.2s ease;
}

.full-fixture:hover {
    background: rgba(0, 0, 0, 0.65);
}

.full-fixture-team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    flex: 1;
    min-width: 0;
}

.full-fixture-team:last-child {
    justify-content: flex-end;
    text-align: right;
}

.full-fixture-team img {
    height: 28px;
    width: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
}

.full-fixture-score {
    font-size: 22px;
    font-weight: 900;
    color: #4b0082;
    width: 20%;
    text-align: center;
}

/* ============================
   GAMEDAY TITLE
============================ */
.gameday-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 20px 0 10px 0;
    text-align: left;
}

/* ============================
   MINI FIXTURES
============================ */
.mini-fixture {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    transition: 0.2s ease;
}

.mini-fixture-team {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}

.mini-fixture-team img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* ============================
   UPCOMING FIXTURES HEADER
============================ */
.fixture-header {
    text-align: center;
    margin-bottom: 20px;
}

.fixture-header-title {
    font-size: 28px;
    font-weight: 900;
    color: #4b0082;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fixture-header-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

/* ============================
   RESPONSIVE FIXTURES
============================ */
@media (max-width: 600px) {
    .full-fixture-team {
        font-size: 14px;
    }

    .full-fixture-score {
        font-size: 18px;
    }

    .gw-selector {
        font-size: 20px;
        gap: 12px;
    }

    .gw-arrow {
        padding: 6px 10px;
        font-size: 18px;
    }
}
