html{box-sizing:border-box;font-size:100%}*,:after,:before{box-sizing:inherit}body{background-color:#060042;background-image:linear-gradient(#060042 2%,#20a39e 108%);color:#fff;min-height:100vh;text-align:center;font-family:Oswald,sans-serif;font-weight:300}.logo{width:120px}a.featured:hover,a:hover{background-color:#ffffff;color:#060042}a{display:block;max-width:400px;margin:0 auto 15px;padding:15px 20px;font-size:1.3rem;text-transform: uppercase;color:#fff;border:2px solid #fff;text-decoration:none;transition:all .2s ease-in-out}a.featured{position:relative;background-color:#fff;color:#060042;}a.featured:before{content:"";position:absolute;top:2px;left:2px;width:calc(100% - 4px);height:calc(100% - 4px);border:2px solid #060042}h2{font-size:14px;text-transform:uppercase;font-weight:600;letter-spacing:2px}.channels{display:flex;max-width:400px;margin:0 auto}.channels a{flex:1;padding:5px 10px;font-size: 0.9rem; margin-right:10px;background-color:#060042;border:none}.channels a:last-child{margin-right:0}.channels a:hover{text-decoration:none;background-color:#fff; }.pitch-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.pitch-map-modal.is-open {
    display: block;
}

.pitch-map-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.pitch-map-modal__content {
    position: relative;
    z-index: 1;
    width: min(95vw, 1200px);
    height: 90vh;
    margin: 5vh auto;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.pitch-map-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 3;
    border: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.pitch-map-modal__toolbar {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.pitch-map-modal__toolbar button {
    border: 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.pitch-map-modal__image-wrap {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pitch-map-modal__image-wrap img {
    max-width: 100%;
    max-height: 100%;
    transform-origin: center center;
    transition: transform 0.15s ease;
    cursor: zoom-in;
}.pitch-map-modal__image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.pitch-map-modal__image-wrap img {
    max-width: 100%;
    max-height: 100%;
    transform-origin: center center;
    transition: transform 0.15s ease;
    user-select: none;
    pointer-events: none;
}

.pitch-map-modal__image-wrap.is-draggable {
    cursor: grab;
}

.pitch-map-modal__image-wrap.is-dragging {
    cursor: grabbing;
}

.pitch-map-modal__image-wrap.is-dragging img {
    transition: none;
}