/**
 * The Goalie Map — world map of goaltender hometowns.
 */

body.ingoal-goalie-map { background: var(--ig-navy, #0A1628); }

.gm-page {
    max-width: 1340px;
    margin: 0 auto;
    padding: var(--ig-space-xl, 32px) 24px 80px;
    font-family: var(--ig-font-ui, 'Inter', sans-serif);
    background: linear-gradient(180deg, #11203a 0%, var(--ig-navy, #0A1628) 320px);
}
.gm-hero { text-align: center; margin-bottom: 18px; }
.gm-hero__title {
    font-family: var(--ig-font-heading, 'Inter', sans-serif);
    font-size: var(--ig-text-5xl, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 8px;
}
.gm-hero__sub { font-size: 16px; line-height: 1.5; color: var(--ig-ice, #8FB8DE); max-width: 560px; margin: 0 auto; }

.gm-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.gm-filter {
    font-family: var(--ig-font-ui, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(143,184,222,.12);
    border: 1px solid rgba(143,184,222,.35);
    border-radius: 999px;
    padding: 8px 18px;
    min-height: 40px;
    cursor: pointer;
}
.gm-filter.is-active { background: var(--ig-accent-blue, #31487A); }
.gm-count {
    margin-left: auto;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--ig-ice, #8FB8DE);
}

.gm-layout { position: relative; }
.gm-map {
    height: 620px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(143,184,222,.3);
    background: #0d1830;
}
.gm-map .leaflet-container { background: #b8d0e8; }

.gm-panel {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1000;
    width: 360px;
    max-width: calc(100% - 32px);
    background: rgba(10,22,40,.92);
    border: 1px solid rgba(143,184,222,.35);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(4px);
}
.gm-panel[hidden] { display: none; }
.gm-panel__close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 5;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}
.gm-panel__card .igcard-scene { --igcard-w: 300px; margin: 14px auto 0; display: block; }
.gm-panel__profile {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ig-ice, #8FB8DE);
}
.gm-panel__profile:hover { color: #ffffff; }

.gm-noscript { color: var(--ig-ice, #8FB8DE); padding: 30px; text-align: center; }
.gm-noscript a, .gm-about a { color: var(--ig-ice, #8FB8DE); }
.gm-about { max-width: 680px; margin: 18px auto 0; text-align: center; }
.gm-about p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); }

@media (max-width: 760px) {
    .gm-map { height: 460px; }
    .gm-panel { top: 8px; right: 8px; width: 300px; }
    .gm-panel__card .igcard-scene { --igcard-w: 260px; }
    .gm-hero__title { font-size: 30px; }
}

/* --- Crawlable country index below the map --- */
.gm-index {
    max-width: 1100px;
    margin: 48px auto 60px;
    padding: 0 24px;
}
.gm-index__title {
    font-family: var(--ig-font-display, 'Bebas Neue', sans-serif);
    font-size: 30px;
    letter-spacing: .04em;
    color: #ffffff;
    margin: 0 0 8px;
}
.gm-index__intro {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    max-width: 680px;
    margin: 0 0 28px;
}
.gm-index__group { margin-bottom: 28px; }
.gm-index__country {
    font-family: var(--ig-font-display, 'Bebas Neue', sans-serif);
    font-size: 20px;
    letter-spacing: .06em;
    color: var(--ig-ice, #8FB8DE);
    border-bottom: 1px solid rgba(143,184,222,.25);
    padding-bottom: 6px;
    margin: 0 0 12px;
}
.gm-index__count {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-left: 8px;
}
.gm-index__list {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 3;
    column-gap: 32px;
}
.gm-index__row {
    break-inside: avoid;
    font-size: 14px;
    line-height: 1.3;
    padding: 4px 0;
}
.gm-index__row a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
.gm-index__row a:hover { color: var(--ig-ice, #8FB8DE); }
.gm-index__home {
    color: rgba(255,255,255,.55);
    font-size: 12.5px;
    margin-left: 6px;
}
.gm-index__league {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #c9b8ec;
    border: 1px solid rgba(124,92,191,.6);
    border-radius: 3px;
    padding: 1px 4px;
    margin-left: 6px;
    vertical-align: 1px;
}

@media (max-width: 900px) {
    .gm-index__list { columns: 2; }
}
@media (max-width: 560px) {
    .gm-index__list { columns: 1; }
}
