/* Hot */
.gwd-football-grid-matches-two .matches__item--hot:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 11px;
    padding: 1px;
    background: linear-gradient(155deg, #FF0000 0%, #630606 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* VS Button */
.gmd-score-box.vs:not(.t_vs_num) {
    width: 40px;
    font-weight: bold;
}

/* Is Win */
.is-win {
    background: linear-gradient(136deg, #3effff, #166def 31.07%, #5968f7 45.94%, #ad1bf1 80.51%);
    stroke-width: 1px;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup */
.matches__item {
    position: relative;
}

.incident-popup {
    position: absolute;
    z-index: 60;
}

.match-popup.statistic-section {
    position: absolute;
    inset: 0;
    z-index: 10001;
    pointer-events: none;
}

.incident-popup,
.statics-popup {
    position: absolute;
    z-index: 10001;
    pointer-events: auto;
    margin: 0;
}

/* Comentator */
.gmd-match-footer__streamer {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #bbbbbb;
    justify-content: center;
}

.toggle-btn {
    background: none;
    border: none;
    color: #bbbbbb;
    border: 1px solid transparent;
    border-radius: 38px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin: 0;
}

.blv-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

button.toggle-btn span {
    font-size: 12px;
    font-weight: normal;
}

span.blv-arrow {
    color: #424242;
}

/* Readmore */
.dashicons-update {
    margin-top: 3px !important;
    margin-left: 3px !important;
}

/* ============================================================
   Skeleton Dark Gray Shimmer (Desktop + Mobile, Full WebKit Fix)
   ============================================================ */

/* ===== DESKTOP / DEFAULT ===== */
.gmd-skeleton {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;

    /* Desktop gradient */
    background: linear-gradient(
        90deg,
        #4a4a4a 0%,
        #6b6b6b 40%,
        #4a4a4a 80%
    );
    background-size: 250% 100%;
    animation: gmd-shimmer 2.6s infinite ease-in-out;

    /* --- Mobile browser FIX (applied on desktop too, safe) --- */
    background-image: -webkit-linear-gradient(
        left,
        #4a4a4a 0%,
        #6b6b6b 40%,
        #4a4a4a 80%
    );
    -webkit-background-size: 250% 100%;
    -webkit-animation: gmd-shimmer 2.6s infinite ease-in-out;
}

/* KEYFRAMES DESKTOP */
@keyframes gmd-shimmer {
    0%   { background-position: -150% 0; }
    100% { background-position: 150% 0; }
}

@-webkit-keyframes gmd-shimmer {
    0%   { background-position: -150% 0; }
    100% { background-position: 150% 0; }
}


/* ========= SKELETON SIZES ========= */
.gmd-skeleton-logo {
    width: 26px;
    height: 26px;
}

.gmd-skeleton-text-sm {
    height: 10px;
    width: 40px;
    margin-top: 4px;
}

.gmd-skeleton-text-md {
    height: 12px;
    width: 70px;
    margin-top: 4px;
}

.gmd-skeleton-text-lg {
    height: 14px;
    width: 90px;
    margin-top: 4px;
}

.gmd-skeleton-score {
    height: 20px;
    width: 60px;
    margin: 0 auto;
}

.gmd-skeleton-odds-line {
    height: 12px;
    width: 100%;
    margin-top: 4px;
}

.matches__item.is-skeleton a {
    pointer-events: none;
}

.gmd-match-date-skeleton {
    margin-left: 180px;
}


/* ============================================================
   MOBILE VERSION — Shimmer rõ hơn, sáng hơn, chạy chậm hơn
   ============================================================ */
@media (max-width: 768px) {

    .gmd-skeleton {
        /* Mobile gradient (tương phản cao hơn) */
        background: #3a3a3a;
        background-image: linear-gradient(
            90deg,
            #3a3a3a 0%,
            #888888 40%,
            #3a3a3a 80%
        );
        background-size: 300% 100%;
        animation: gmd-shimmer-mobile 3s infinite linear;

        /* --- Mobile WebKit Fix --- */
        background-image: -webkit-linear-gradient(
            left,
            #3a3a3a 0%,
            #888888 40%,
            #3a3a3a 80%
        );
        -webkit-background-size: 300% 100%;
        -webkit-animation: gmd-shimmer-mobile 3s infinite linear;
    }

    /* Keyframes cho mobile */
    @keyframes gmd-shimmer-mobile {
        0%   { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    @-webkit-keyframes gmd-shimmer-mobile {
        0%   { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }
}

.grid-match__date-skeleton {
    background: none !important;
}