.wcc-shell,
.wcc-shell * {
    box-sizing: border-box;
}

.wcc-shell {
    width: 100%;
    margin: 0;
    color: #f8fafc;
    font-family: inherit;
    min-width: 0;
    padding-top: calc(var(--wcc-header-offset, 0px) + var(--wcc-countbar-height, 50px));
    overflow-x: hidden;
}

.wcc-countbar {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--wcc-header-offset, 0px);
    z-index: 10000;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 0;
    background: linear-gradient(110deg, #1246d8 0%, #173184 48%, #0f766e 100%);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(4, 18, 66, .18);
}

.wcc-countbar__clock {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255,255,255,.76);
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.wcc-countbar__clock::before,
.wcc-countbar__clock::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: rgba(255,255,255,.86);
    border-radius: 2px;
}

.wcc-countbar__clock::after {
    top: 7px;
    width: 5px;
    height: 2px;
}

.wcc-countbar__label {
    white-space: nowrap;
}

.wcc-countbar__unit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.wcc-countbar__unit strong {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #ffffff;
    color: #0f56db;
    font-size: 16px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.wcc-hero {
    --wcc-hero-image: linear-gradient(145deg, #0f172a 0%, #173184 48%, #064e3b 100%);
    min-height: calc(100vh - var(--wcc-header-offset, 0px) - var(--wcc-countbar-height, 50px));
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: end;
    border-radius: 0;
    background:
        var(--wcc-hero-image),
        radial-gradient(circle at 50% 22%, rgba(245,158,11,.46), transparent 11%),
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.42), transparent 10%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.36), transparent 12%),
        linear-gradient(145deg, #0f172a 0%, #173184 48%, #064e3b 100%);
    background-size: cover, auto, auto, auto, auto;
    background-position: center;
}

.wcc-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #0f172a;
    opacity: 0;
    transform: translateZ(0);
    transition: opacity .45s ease;
    will-change: transform;
}

.wcc-hero.has-video .wcc-hero__video,
.wcc-hero.is-video-ready .wcc-hero__video {
    opacity: 1;
}

.wcc-hero.has-video .wcc-hero__cup,
.wcc-hero.has-video .wcc-hero__pitch {
    display: none;
}

.wcc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 22px);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.34), transparent 58%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.34), transparent 58%);
    pointer-events: none;
    z-index: 1;
}

.wcc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3,7,18,.12) 0%, rgba(7,23,57,.28) 42%, rgba(3,7,18,.82) 100%),
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.14), transparent 18%);
    pointer-events: none;
    z-index: 1;
}

.wcc-hero__visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.wcc-hero__cup {
    position: absolute;
    left: 50%;
    top: 24%;
    width: 104px;
    height: 158px;
    transform: translateX(-50%);
    border-radius: 46px 46px 28px 28px;
    background: linear-gradient(145deg, #fde68a 0%, #f59e0b 42%, #92400e 100%);
    box-shadow: 0 0 80px rgba(245,158,11,.45);
}

.wcc-hero__cup::before {
    content: "";
    position: absolute;
    left: -28px;
    right: -28px;
    top: 25px;
    height: 52px;
    border: 10px solid rgba(253,230,138,.82);
    border-bottom: 0;
    border-radius: 42px 42px 0 0;
}

.wcc-hero__cup::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -34px;
    width: 60px;
    height: 42px;
    border-radius: 8px 8px 18px 18px;
    background: linear-gradient(180deg, #f59e0b, #78350f);
}

.wcc-hero__pitch {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 190px;
    border-radius: 50% 50% 0 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(22,163,74,.75), rgba(22,101,52,.18) 42%, transparent 69%),
        linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,.25) 49% 51%, transparent 51%);
    opacity: .85;
}

.wcc-hero__content {
    position: relative;
    z-index: 2;
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto clamp(28px, 6vh, 56px);
    text-align: center;
}

.wcc-hero__eyebrow {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 18px;
    margin: 0 0 16px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(15,23,42,.58);
    color: rgba(255,255,255,.92);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.wcc-hero h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 5px 28px rgba(0,0,0,.42);
}

.wcc-hero__note {
    width: min(820px, 100%);
    margin: 0 auto 16px;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
    text-shadow: 0 2px 14px rgba(0,0,0,.72);
}

.wcc-hero__data-card {
    width: min(980px, 100%);
    margin: 0 auto 20px;
    padding: 18px 22px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(29,78,216,.92), rgba(14,116,144,.9)),
        radial-gradient(circle at 4% 20%, rgba(255,255,255,.18), transparent 32%);
    border: 1px solid rgba(191,219,254,.28);
    box-shadow: 0 22px 80px rgba(2,6,23,.34);
    backdrop-filter: blur(8px);
}

.wcc-hero__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 22px;
}

.wcc-hero__features span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(147,197,253,.24);
    border: 1px solid rgba(191,219,254,.24);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.wcc-hero__stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wcc-hero__stats span {
    min-width: 82px;
    min-height: 48px;
    display: grid;
    align-content: center;
    justify-items: center;
    border-radius: 8px;
    background: rgba(15,23,42,.42);
    color: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    font-weight: 900;
}

.wcc-hero__stats strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
}

.wcc-hero__cta,
.wcc-popup__button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 24px;
    background: #f59e0b;
    color: #111827;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.wcc-hero__cta:hover,
.wcc-popup__button:hover {
    color: #111827;
    background: #fbbf24;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(245,158,11,.24);
}

.wcc-lower {
    display: block;
    width: 100%;
    margin: 0;
    min-width: 0;
}

.wcc-match-placeholder {
    width: min(1180px, calc(100% - 32px));
    min-width: 0;
    min-height: 132px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
    gap: 18px;
    align-items: center;
    margin: 24px auto;
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
}

.wcc-match-placeholder h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0;
}

.wcc-match-placeholder p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
    font-size: 14px;
}

.wcc-match-placeholder__grid {
    display: grid;
    gap: 8px;
}

.wcc-match-placeholder__grid span {
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e0f2fe, #dcfce7);
}

.wcc-analysis {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 94px 0 100px;
    border-radius: 0;
    scroll-margin-top: calc(var(--wcc-header-offset, 0px) + var(--wcc-countbar-height, 50px));
    background:
        linear-gradient(180deg, rgba(7,18,69,.28), rgba(5,15,55,.42)),
        url("https://static.nami.com/_nuxt/map.274f65a8.webp") center top / cover no-repeat,
        #061745;
    color: #ffffff;
}

.wcc-analysis__head {
    width: min(1040px, calc(100% - 32px));
    display: grid;
    justify-items: center;
    gap: 0;
    margin: 0 auto;
    text-align: center;
}

.wcc-analysis h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.wcc-analysis__head p {
    width: min(760px, 100%);
    margin: 12px auto 0;
    color: rgba(255,255,255,.86);
    line-height: 1.4;
    font-size: 16px;
}

.wcc-analysis__summary {
    display: none;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.wcc-analysis__summary span {
    min-width: 86px;
    min-height: 52px;
    display: grid;
    align-content: center;
    justify-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(226,232,240,.86);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    font-weight: 900;
}

.wcc-analysis__summary strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.wcc-analysis__tabs {
    width: min(1234px, calc(100% - 32px));
    min-height: 50px;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 8px;
    margin: 40px auto 0;
    overflow-x: auto;
    border-radius: 56px;
    background: #354588;
    border: 0;
    scrollbar-width: none;
}

.wcc-analysis__tabs::-webkit-scrollbar {
    display: none;
}

.wcc-analysis__tabs button {
    flex: 0 0 auto;
    min-width: 58px;
    min-height: 32px;
    padding: 6px 18px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.wcc-analysis__tabs button:hover,
.wcc-analysis__tabs button:focus {
    outline: none;
    background: rgba(255,255,255,.13);
    color: #ffffff;
}

.wcc-analysis__tabs button.is-active {
    background: #0074ff;
    color: #ffffff;
    box-shadow: none;
}

.wcc-analysis__board {
    width: min(1234px, calc(100% - 32px));
    margin: 24px auto 0;
    padding: 24px;
    border-radius: 24px;
    background: rgba(0,0,0,.9);
    border: 0;
    box-shadow: none;
}

.wcc-analysis__board.is-all {
    width: min(1228px, calc(100% - 32px));
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.wcc-analysis__main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.wcc-all-groups {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.wcc-all-groups[hidden],
.wcc-analysis__main[hidden] {
    display: none;
}

.wcc-standings,
.wcc-map {
    border-radius: 16px;
    overflow: hidden;
    border: 0;
}

.wcc-standings {
    flex: 0 0 382px;
    width: 382px;
    background: transparent;
}

.wcc-standings__top {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    border-radius: 16px 16px 0 0;
    background: url("https://static.nami.com/_nuxt/fx-group.d225b8ff.png") center / cover no-repeat;
    color: #ffffff;
}

.wcc-standings__top strong {
    font-size: 16px;
    font-weight: 700;
}

.wcc-standings__metrics {
    display: grid;
    grid-template-columns: repeat(5, 44px);
    align-items: center;
    justify-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.wcc-standings__top > span {
    font-size: 12px;
    color: rgba(255,255,255,.72);
}

.wcc-standings__table {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.wcc-standing-row,
.wcc-standing-head {
    display: grid;
    grid-template-columns: minmax(104px, 1fr) repeat(5, 44px);
    align-items: center;
    min-height: 56px;
    padding: 0 8px;
    gap: 0;
    font-size: 14px;
}

.wcc-standing-head {
    display: none;
}

.wcc-standing-row {
    border-top: 1px solid #f1f2f6;
    color: #0f172a;
    background: #ffffff;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease;
}

.wcc-standing-row:first-child {
    border-top: 0;
}

.wcc-standing-row > span {
    text-align: center;
    color: #212532;
}

.wcc-standing-row:hover,
.wcc-standing-row:focus,
.wcc-standing-row.is-active {
    outline: none;
    background: #2854ff;
    color: #ffffff;
}

.wcc-standing-row:hover > span,
.wcc-standing-row:focus > span,
.wcc-standing-row.is-active > span,
.wcc-standing-row:hover .wcc-standing-row__team,
.wcc-standing-row:focus .wcc-standing-row__team,
.wcc-standing-row.is-active .wcc-standing-row__team,
.wcc-standing-row:hover .wcc-rank,
.wcc-standing-row:focus .wcc-rank,
.wcc-standing-row.is-active .wcc-rank {
    color: #ffffff;
}

.wcc-standing-row__team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-weight: 400;
    color: #101827;
}

.wcc-rank {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
    color: #212532;
}

.wcc-team-logo {
    width: 24px;
    min-width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.wcc-code {
    width: 36px;
    min-width: 36px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #ecfeff;
    color: #0f766e;
    border: 1px solid #99f6e4;
    font-size: 10px;
    font-weight: 900;
}

.wcc-standing-row__team span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcc-group-card {
    width: 605px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    animation: wccFadeInUp .34s ease both;
    animation-delay: var(--wcc-card-delay, 0ms);
}

.wcc-group-card__top {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(190px, 1fr) repeat(5, 58px);
    align-items: center;
    padding: 0 16px;
    background: url("https://static.nami.com/_nuxt/fx-group.d225b8ff.png") center / cover no-repeat;
    color: #ffffff;
}

.wcc-group-card__top strong {
    font-size: 16px;
    font-weight: 700;
}

.wcc-group-card__metrics {
    display: contents;
}

.wcc-group-card__metrics span {
    text-align: center;
    font-size: 14px;
}

.wcc-group-card__table {
    background: #ffffff;
}

.wcc-group-card .wcc-standing-row,
.wcc-group-card .wcc-standing-head {
    grid-template-columns: minmax(190px, 1fr) repeat(5, 58px);
    min-height: 62px;
    padding: 0 16px;
}

.wcc-map {
    flex: 1 1 0%;
    height: 524px;
    min-width: 0;
    position: relative;
    border-color: transparent;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.1)),
        #141624;
}

.wcc-map__chart {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wcc-map__land,
.wcc-map__grid,
.wcc-map__points {
    position: absolute;
    inset: 0;
}

.wcc-map__land {
    background:
        url("https://static.nami.com/_nuxt/map.274f65a8.webp") center / 120% auto no-repeat;
    opacity: .22;
    filter: contrast(1.18) saturate(.8);
    transform: scale(1.08);
}

.wcc-map.is-chart-ready .wcc-map__land {
    opacity: 0;
}

.wcc-map__grid {
    inset: 22px;
    z-index: 1;
    background-image: radial-gradient(rgba(255,255,255,.42) 1.2px, transparent 1.6px);
    background-size: 12px 12px;
    opacity: .42;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.wcc-map__grid::before {
    content: "";
    position: absolute;
    inset: 8% 9%;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 48% 46% 42% 48%;
}

.wcc-map__points {
    z-index: 2;
    pointer-events: none;
}

.wcc-map-point {
    position: absolute;
    width: 36px;
    height: 36px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #182033;
    border: 2px solid rgba(255,255,255,.92);
    box-shadow: 0 10px 22px rgba(0,0,0,.36);
    font-size: 8px;
    font-weight: 700;
    z-index: 1;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    animation: wccPointFloat 4.8s ease-in-out infinite;
    animation-delay: var(--wcc-delay, 0s);
}

.wcc-map-point:hover,
.wcc-map-point:focus,
.wcc-map-point.is-active {
    outline: none;
    z-index: 4;
    border-color: #60a5fa;
    box-shadow: 0 0 0 5px rgba(37,99,235,.28), 0 12px 28px rgba(0,0,0,.42);
}

.wcc-map-point::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(0,116,255,.86);
    animation: wccMapPulse 2.4s ease-out infinite;
    animation-delay: var(--wcc-delay, 0s);
}

.wcc-map-point img {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.wcc-map-card {
    position: absolute;
    right: 68px;
    top: 36%;
    z-index: 5;
    width: 312px;
    min-height: 189px;
    padding: 16px 14px 14px;
    border-radius: 14px;
    background: #2854ff;
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(0,0,0,.38);
    overflow: hidden;
}

.wcc-map-card__host {
    min-height: 132px;
    display: grid;
    align-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.wcc-map-card__host strong {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.wcc-map-card__host span {
    color: rgba(255,255,255,.84);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.wcc-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.12), transparent 42%);
    pointer-events: none;
}

.wcc-map-card.is-changing {
    animation: wccCardSwitch .22s ease both;
}

.wcc-map-card__top,
.wcc-map-card__match {
    position: relative;
    z-index: 1;
}

.wcc-map-card__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.wcc-map-card__top strong,
.wcc-map-card__top span {
    display: block;
}

.wcc-map-card__top strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

.wcc-map-card__top span {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
}

.wcc-map-card__top time {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    border-radius: 4px;
    background: rgba(255,255,255,.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.wcc-map-card__match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 18px 0 14px;
}

.wcc-map-card__team {
    display: grid;
    gap: 8px;
    justify-items: start;
    min-width: 0;
}

.wcc-map-card__team.is-away {
    justify-items: end;
    text-align: right;
}

.wcc-map-card__team strong {
    max-width: 100%;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wcc-map-card__flag {
    width: 46px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: rgba(0,0,0,.2);
    overflow: hidden;
}

.wcc-map-card__flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wcc-map-card__flag span {
    font-size: 11px;
    font-weight: 900;
}

.wcc-map-card__score {
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.wcc-analysis__main:not([hidden]) {
    animation: wccFadeInUp .28s ease both;
}

.wcc-loading-row {
    height: 42px;
    margin: 12px;
    border-radius: 7px;
    background: linear-gradient(90deg, #f1f5f9, #e2e8f0, #f8fafc);
    background-size: 260% 100%;
    animation: wccShimmer 1.4s ease-in-out infinite;
}

.wcc-popup[hidden] {
    display: none;
}

.wcc-popup {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    padding: 18px;
}

.wcc-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,.66);
    backdrop-filter: blur(5px);
}

.wcc-popup__dialog {
    position: relative;
    width: min(520px, 100%);
    border-radius: 8px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 8%, rgba(245,158,11,.24), transparent 28%),
        linear-gradient(145deg, #0f172a, #1e3a8a 58%, #115e59);
    color: #ffffff;
    box-shadow: 0 24px 80px rgba(0,0,0,.4);
}

.wcc-popup__dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: .38;
    pointer-events: none;
}

.wcc-popup__close {
    position: absolute;
    z-index: 2;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.wcc-popup__badge,
.wcc-popup h2,
.wcc-popup p,
.wcc-popup__actions,
.wcc-popup__timer {
    position: relative;
    z-index: 1;
}

.wcc-popup__badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(20,184,166,.18);
    color: #ccfbf1;
    font-size: 11px;
    font-weight: 900;
}

.wcc-popup h2 {
    margin: 16px 0 10px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.wcc-popup p {
    margin: 0;
    color: rgba(255,255,255,.86);
    line-height: 1.75;
    font-size: 15px;
}

.wcc-popup__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.wcc-popup__ghost {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    padding: 9px 18px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.wcc-popup__timer {
    margin-top: 14px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

@keyframes wccShimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}

@keyframes wccMapPulse {
    0% {
        opacity: .72;
        transform: scale(.72);
    }
    70% {
        opacity: 0;
        transform: scale(1.55);
    }
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@keyframes wccPointFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

@keyframes wccFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wccCardSwitch {
    0% {
        opacity: .72;
        transform: translateY(8px) scale(.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wcc-loading-row {
        animation: none;
    }
    .wcc-map-point::before {
        animation: none;
    }
    .wcc-map-point {
        animation: none;
    }
    .wcc-group-card,
    .wcc-analysis__main:not([hidden]),
    .wcc-map-card.is-changing {
        animation: none;
    }
    .wcc-hero__cta,
    .wcc-popup__button {
        transition: none;
    }
}

@media (max-width: 991px) {
    .wcc-hero {
        min-height: calc(100vh - var(--wcc-header-offset, 0px) - var(--wcc-countbar-height, 50px));
    }
    .wcc-hero h1 {
        font-size: 34px;
    }
    .wcc-analysis__head,
    .wcc-analysis__board,
    .wcc-match-placeholder {
        grid-template-columns: 1fr;
    }
    .wcc-analysis {
        padding: 70px 0 72px;
    }
    .wcc-analysis__head {
        display: grid;
    }
    .wcc-analysis__summary {
        justify-content: center;
    }
    .wcc-analysis__tabs {
        justify-content: flex-start;
        gap: 8px;
    }
    .wcc-analysis__main {
        display: grid;
        grid-template-columns: 1fr;
    }
    .wcc-all-groups {
        align-items: flex-start;
    }
    .wcc-group-card {
        width: 100%;
    }
    .wcc-group-card__top,
    .wcc-group-card .wcc-standing-row,
    .wcc-group-card .wcc-standing-head {
        grid-template-columns: minmax(140px, 1fr) repeat(5, 45px);
    }
    .wcc-standings {
        width: 100%;
        flex-basis: auto;
    }
    .wcc-map {
        height: 420px;
    }
    .wcc-map-card {
        right: 20px;
        top: auto;
        bottom: 18px;
        width: min(312px, calc(100% - 40px));
    }
}

@media (max-width: 575px) {
    .wcc-shell {
        padding-top: var(--wcc-header-offset, 0px);
    }
    .wcc-countbar {
        position: relative;
        top: auto;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: visible;
        border-radius: 0;
        gap: 5px;
        min-height: 44px;
        padding: 8px 6px;
        font-size: 12px;
    }
    .wcc-countbar__label {
        white-space: nowrap;
        text-align: center;
    }
    .wcc-countbar__clock {
        width: 15px;
        height: 15px;
    }
    .wcc-countbar__clock::before {
        left: 6px;
        top: 3px;
        height: 5px;
    }
    .wcc-countbar__clock::after {
        left: 6px;
        top: 6px;
        width: 5px;
    }
    .wcc-countbar__unit {
        gap: 3px;
    }
    .wcc-countbar__unit strong {
        min-width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .wcc-hero {
        min-height: calc(100vh - var(--wcc-header-offset, 0px) - var(--wcc-countbar-height, 88px));
        border-radius: 0;
    }
    .wcc-hero__content {
        width: calc(100% - 24px);
        margin-bottom: 24px;
    }
    .wcc-hero h1 {
        font-size: 28px;
    }
    .wcc-hero__note {
        font-size: 14px;
    }
    .wcc-hero__data-card {
        padding: 14px 12px;
    }
    .wcc-hero__features span {
        min-height: 32px;
        padding: 7px 12px;
        font-size: 12px;
    }
    .wcc-match-placeholder {
        padding: 16px;
    }
    .wcc-analysis {
        padding: 46px 0 52px;
    }
    .wcc-analysis__board {
        width: calc(100% - 24px);
        padding: 12px;
        border-radius: 16px;
    }
    .wcc-analysis h2 {
        font-size: 24px;
    }
    .wcc-analysis__head p {
        font-size: 14px;
    }
    .wcc-analysis__tabs {
        width: calc(100% - 24px);
        min-height: 48px;
        margin-top: 28px;
        border-radius: 24px;
    }
    .wcc-analysis__tabs button {
        min-width: 50px;
        padding: 6px 12px;
        font-size: 13px;
    }
    .wcc-standing-row,
    .wcc-standing-head {
        grid-template-columns: minmax(90px, 1fr) repeat(5, 28px);
        min-height: 48px;
        font-size: 12px;
    }
    .wcc-group-card__top,
    .wcc-group-card .wcc-standing-row,
    .wcc-group-card .wcc-standing-head {
        grid-template-columns: minmax(92px, 1fr) repeat(5, 28px);
        padding: 0 8px;
    }
    .wcc-group-card__top {
        min-height: 50px;
    }
    .wcc-group-card .wcc-standing-row {
        min-height: 48px;
    }
    .wcc-group-card__metrics span {
        font-size: 12px;
    }
    .wcc-standings__top {
        min-height: 50px;
    }
    .wcc-standings__metrics {
        grid-template-columns: repeat(5, 28px);
        font-size: 12px;
    }
    .wcc-team-logo {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }
    .wcc-code {
        width: 28px;
        min-width: 28px;
        font-size: 9px;
    }
    .wcc-map {
        height: 300px;
    }
    .wcc-map-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        min-height: 154px;
        padding: 12px;
        border-radius: 12px;
    }
    .wcc-map-card__top {
        grid-template-columns: 1fr;
        gap: 6px;
        padding-bottom: 8px;
    }
    .wcc-map-card__top time {
        justify-self: start;
        min-height: 24px;
        padding: 4px 7px;
        font-size: 11px;
    }
    .wcc-map-card__match {
        gap: 8px;
        padding: 12px 0 10px;
    }
    .wcc-map-card__score {
        font-size: 24px;
    }
    .wcc-map-card__flag {
        width: 38px;
        height: 25px;
    }
    .wcc-map-card__team strong {
        font-size: 13px;
    }
    .wcc-map-point {
        width: 30px;
        height: 30px;
        font-size: 7px;
    }
    .wcc-map-point img {
        width: 22px;
        height: 22px;
    }
    .wcc-popup__dialog {
        padding: 24px 18px;
    }
    .wcc-popup h2 {
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .wcc-countbar {
        gap: 3px;
        padding-left: 4px;
        padding-right: 4px;
        font-size: 11px;
    }
    .wcc-countbar__clock {
        display: none;
    }
    .wcc-countbar__unit strong {
        min-width: 24px;
        height: 26px;
        font-size: 13px;
    }
}
