.matchday-page .matchday-hero{
    border-radius: 28px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(125deg, rgba(15, 23, 42, .95), rgba(30, 41, 59, .9)),
        radial-gradient(circle at 90% 15%, rgba(252, 211, 77, .35), transparent 45%);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, .25);
    box-shadow: 0 26px 50px rgba(15, 23, 42, .28);
}
.matchday-page .matchday-hero::after{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
    background: radial-gradient(circle, rgba(253, 224, 71, .3) 0%, rgba(253, 224, 71, 0) 70%);
    pointer-events: none;
}
.matchday-page .hero-chip{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    color: #fcd34d;
    background: rgba(251, 191, 36, .12);
    border: 1px solid rgba(252, 211, 77, .35);
}
.matchday-page .hero-title{
    font-size: 2.3rem;
    color: #fff;
    margin: .9rem 0 .45rem;
    font-weight: 900;
}
.matchday-page .hero-subtitle{
    margin: 0;
    max-width: 68ch;
    color: rgba(226, 232, 240, .92);
}
.matchday-page .mini-pill{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    color: #0f172a;
    background: rgba(250, 204, 21, .92);
    border: 1px solid rgba(250, 204, 21, 1);
}
.matchday-page .hero-note{
    border-radius: 18px;
    background: rgba(15, 23, 42, .42);
    border: 1px solid rgba(148, 163, 184, .32);
    padding: 1rem 1.1rem;
}
.matchday-page .hero-note h3{
    font-size: 1.05rem;
    color: #fde68a;
    margin-bottom: .5rem;
}
.matchday-page .hero-note p{
    margin: 0;
    font-size: .95rem;
    color: rgba(226, 232, 240, .9);
}

.matchday-page .phase-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.matchday-page .phase-card{
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-left: 6px solid #0ea5e9;
    border-radius: 18px;
    padding: 1.05rem 1.1rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}
.matchday-page .phase-card:nth-child(2){ border-left-color: #22c55e; }
.matchday-page .phase-card:nth-child(3){ border-left-color: #f59e0b; }
.matchday-page .phase-index{
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: .4rem;
}
.matchday-page .phase-card h2{
    font-size: 1.15rem;
    margin-bottom: .6rem;
}
.matchday-page .tick-list{
    margin: 0;
    padding-left: 1.1rem;
}
.matchday-page .tick-list li{
    margin-bottom: .4rem;
    color: #475569;
}

.matchday-page .strip-card,
.matchday-page .timeline-card,
.matchday-page .quick-links{
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}
.matchday-page .strip-title,
.matchday-page .timeline-title{
    font-size: 1.15rem;
    margin-bottom: .65rem;
    font-weight: 800;
}
.matchday-page .timeline-list{
    list-style: none;
    padding: 0;
}
.matchday-page .timeline-list li{
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .75rem;
    color: #475569;
}
.matchday-page .timeline-list span{
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    background: #0f172a;
}
.matchday-page .quick-links .btn{
    border-radius: 12px;
    font-weight: 700;
}

.matchday-page .card:hover,
.matchday-page .phase-card:hover{
    transform: none;
}

@media (max-width: 768px){
    .matchday-page .matchday-hero{
        padding: 1.4rem;
    }
    .matchday-page .hero-title{
        font-size: 1.85rem;
    }
}