.mission-stat-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 34px 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 28% 20%, rgba(116, 194, 240, 0.16), transparent 34%),
        radial-gradient(circle at 82% 82%, rgba(239, 62, 109, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(14, 32, 54, 0.96), rgba(7, 17, 31, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    color: #fff;
}

.mission-stat-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(239, 62, 109, 0.28), rgba(116, 194, 240, 0.24), transparent 62%);
    opacity: 0.55;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    padding: 1px;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ms-stage {
    position: relative;
    min-height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-dial {
    position: relative;
    width: min(320px, 88vw);
    height: min(320px, 88vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-dial svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.25));
}

.ms-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.ms-big {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.8px;
    color: #fff;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 28px rgba(116, 194, 240, 0.12), 0 10px 28px rgba(0, 0, 0, 0.22);
}

.ms-big small {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
}

.ms-chip {
    position: absolute;
    z-index: 3;
    min-width: 155px;
    padding: 13px 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.ms-chip span {
    display: block;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
}

.ms-chip small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.25;
}

.ms-chip-old {
    top: 28px;
    left: 4px;
}

.ms-old-val {
    color: #8FC4E8;
}

.ms-chip-live {
    right: 0;
    bottom: 36px;
}

.ms-live-val {
    color: #fff;
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.ms-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #74C2F0;
    box-shadow: 0 0 0 rgba(116, 194, 240, 0.6);
    animation: msLivePulse 1.5s infinite;
    flex: 0 0 auto;
}

.mission-stat-lbl {
    margin-top: 4px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

.mission-stat-sub {
    max-width: 420px;
    margin: 8px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
}

.reveal {
    transform: translateY(18px);
    opacity: 0;
}

.reveal.in {
    animation: cocRevealIn 0.75s ease forwards;
}

@keyframes cocRevealIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes msLivePulse {
    0% { box-shadow: 0 0 0 0 rgba(116, 194, 240, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(116, 194, 240, 0); }
    100% { box-shadow: 0 0 0 0 rgba(116, 194, 240, 0); }
}

@media (max-width: 480px) {
    .mission-stat-card {
        padding: 24px 18px 24px;
        border-radius: 22px;
    }

    .ms-stage {
        min-height: 390px;
        align-items: center;
    }

    .ms-chip {
        min-width: 138px;
        padding: 11px 12px;
    }

    .ms-chip-old {
        top: 0;
        left: 0;
    }

    .ms-chip-live {
        right: 0;
        bottom: 0;
    }

    .ms-big {
        width: 112px;
        height: 112px;
        font-size: 34px;
    }

    .mission-stat-lbl {
        font-size: 21px;
    }
}
