body .gwd-match-countdown {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gwd-countdown-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.gwd-countdown-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 80%;
    max-width: 900px;
}

.gwd-countdown-item {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(237, 0, 27, .25);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.gwd-countdown-number {
    color: #2b2b2b;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.gwd-countdown-label {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .gwd-countdown-title {
        font-size: 14px;
    }

    .gwd-countdown-list {
        width: 90%;
        gap: 10px;
    }

    .gwd-countdown-item {
        min-height: 50px;
        border-radius: 8px;
    }

    .gwd-countdown-number {
        font-size: 20px;
    }

    .gwd-countdown-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    body .gwd-match-countdown {
        width: 75%;
        gap: 12px;
    }
}

.gwd-scoreboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 90%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(20,20,20,.25),
        rgba(35,35,35,.45)
    );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(1px);
}

.gwd-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gwd-team img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.gwd-team-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.gwd-score-center {
    min-width: 140px;
    text-align: center;
}

.gwd-score-detail {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.gwd-score-detail span {
    opacity: .8;
    margin: 0 6px;
}

.gwd-status-detail {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #00c853;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

@media (max-width: 768px) {
    .gwd-unmute-btn {
        font-size: 12px;
        padding: 5px !important;
    }

    #skipBtn {
        font-size: 12px;
        padding: 5px !important;
    }

    .gwd-scoreboard {
        width: 95%;
        gap: 12px;
        padding: 12px;
    }

    .gwd-score-center {
        min-width: unset;
    }

    .gwd-score-detail {
        font-size: 20px;
    }

    .gwd-team img {
        width: 48px;
        height: 48px;
    }

    .gwd-team-name {
        font-size: 13px;
    }
}

#skipBtn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

#skipBtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(253, 253, 253, 0.52);
    padding: 10px;
    line-height: 1;
    border-radius: 4px;
    color: rgb(26, 26, 26);
    z-index: 99999;
}

.gwd-unmute-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(253, 253, 253, 0.52);
    padding: 10px;
    line-height: 1;
    border-radius: 4px;
    color: rgb(26, 26, 26);
    z-index: 99999;
}

.gwd_video-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: opacity .3s ease;
}

.gwd_video-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.gwd_spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: gwd-spin .8s linear infinite;
}

.gwd_loader-play-icon {
    width: 62px;
    height: 62px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.gwd_loader-play-icon i {
    margin-left: 4px;
}

.gwd_video-loader.is-paused {
    cursor: pointer;
}

.gwd_video-loader.is-paused .gwd_spinner {
    display: none;
}

.gwd_video-loader.is-paused .gwd_loader-play-icon {
    display: flex;
}

.gwd_video-loader.is-loading .gwd_spinner {
    display: block;
}

.gwd_video-loader.is-loading .gwd_loader-play-icon {
    display: none;
}

@keyframes gwd-spin {
    100% {
        transform: rotate(360deg);
    }
}

.gwd_player-wrapper video {
    min-height: 470px;
    object-fit: fill;
}

.gwd_blv_wrap {
    gap: 10px;
}

.gwd_controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.gwd_group_vl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
}

.gwd_banner_video_bottom {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
}

.gwd_banner_video_bottom img {
    border-radius: unset !important;
}

@media screen and (max-width: 500px) {
    .gwd_banner_video_bottom {
        flex-direction: column;
    }

    .gwd_banner_video_bottom ins + ins {
        display: none;
    }
}

.gwd-banner-top__overlay {
    position: absolute;
    z-index: 999999;
    top: 4%;
    right: 4%;
    left: auto;
    width: 16%;
}

.gwd-banner-bottom__overlay,
.gwd-banner-bottom__infeed {
    width: 100%;
}

.gwd-banner-bottom__infeed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gwd-banner-bottom__overlay img {
    width: 35%;
    max-width: 500px !important;
}

.gwd-banner-bottom__infeed img {
    margin: auto;
}

.gwd-banner-bottom__overlay img,
.gwd-banner-bottom__overlay iframe,
.gwd-banner-bottom__infeed img,
.gwd-banner-bottom__infeed iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

.gwd-top-strip-marquee {
    overflow: hidden;
    width: 100%;
}

.gwd-top-strip-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    gap: 16px;
    animation: gwdTopStripMarquee 24s linear infinite;
    will-change: transform;
}

.gwd-top-strip-marquee:hover .gwd-top-strip-marquee__track {
    animation-play-state: paused;
}

.gwd-top-strip-marquee__track > * {
    flex: 0 0 auto;
}

.gwd-top-strip-marquee__track img {
    height: 40px;
    width: auto;
}

.gwd-top-strip-marquee img,
.gwd-top-strip-marquee iframe {
    display: block;
    max-width: none;
}

@media (max-width: 768px) {
    .gwd-top-strip-marquee__track img {
        height: 25px;
        width: auto;
    }
}

@keyframes gwdTopStripMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gwd_controls.hide {
    opacity: 0;
    pointer-events: none;
}

.gwd_controls_banner {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.gwd_fullscreen-btn {
    margin-left: auto;
}

#gwd_volume {
    --gwd-volume-percent: 100%;
    width: 96px;
    height: 18px;
    flex: 0 0 96px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    touch-action: pan-y;
}

.gwd_controls button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

#gwd_volume::-webkit-slider-runnable-track {
    height: 5px;
    background: linear-gradient(
        to right,
        #ff3b3b 0%,
        #ff3b3b var(--gwd-volume-percent),
        rgba(255,255,255,0.28) var(--gwd-volume-percent),
        rgba(255,255,255,0.28) 100%
    );
    border-radius: 999px;
}

#gwd_volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #ff3b3b;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
    cursor: pointer;
    transform: translateY(-4.5px);
}

#gwd_volume::-moz-range-track {
    height: 5px;
    background: rgba(255,255,255,0.28);
    border-radius: 999px;
}

#gwd_volume::-moz-range-progress {
    height: 5px;
    background: #ff3b3b;
    border-radius: 999px;
}

#gwd_volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.gwd_controls button:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.gwd_controls i,
.gwd_controls svg {
    pointer-events: none;
}

.gwd_time {
    color: #ddd;
    font-size: 12px;
    min-width: 90px;
    text-align: left;
    opacity: 0.9;
}

.video-box:fullscreen {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.video-box:fullscreen video {
    height: 100%;
    object-fit: cover;
}

.gwd_video_steaming_wrapper_inner {
    position: relative;
}

.gwd_player-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 16px;
    background: #000;
}

.gwd_player-wrapper video {
    width: 100%;
    display: block;
}

.gwd_banner_top_wrapper {
    position: relative;
    width: 100%;
}

.gwd_banner_top_marquee {
    position: relative;
}

.gwd_banner {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 220px;
    height: 120px;
    background: rgba(255, 225, 78, 0.95);
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 10;
}

#gwd_muteBtn {
    margin-left: 0;
}

@media (min-width: 1024px) {
    .gwd_player-wrapper:fullscreen video {
        object-fit: fill;
    }
}

@media screen and (max-width: 549px) {
    .gwd_controls {
        gap: 8px;
        padding: 10px;
    }

    .gwd_controls button {
        width: 20px;
        height: 20px;
        min-height: 24px;
    }

    #gwd_volume {
        display: none;
        width: 76px;
        flex-basis: 76px;
    }

    .gwd_time {
        min-width: auto;
        font-size: 11px;
    }
}

.gwd_video_steaming_wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
    background: #000;
}

.gwd_video_steaming_wrapper:fullscreen .gwd_video_steaming_wrapper_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.gwd_video_steaming_wrapper:fullscreen .gwd_banner_top_wrapper {
    flex: 0 0 auto;
    width: 100%;
}

.gwd_video_steaming_wrapper:fullscreen .gwd_player-wrapper {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.gwd_video_steaming_wrapper:fullscreen .gwd_player-wrapper video {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    object-fit: cover;
}

.gwd_player-wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
}

.gwd_player-wrapper:fullscreen video {
    width: 100%;
    height: 100%;
}

.gwd_player-wrapper:fullscreen .gwd_banner {
    display: flex;
}

body.gwd-fullscreen header {
    z-index: 0 !important;
}

body.gwd-fullscreen footer {
    z-index: 0 !important;
}

body.gwd-fullscreen main {
    z-index: 1 !important;
}

.gwd-fullscreen > * {
    z-index: 0 !important;
}

body.gwd-fullscreen > #wrapper {
    z-index: 1 !important;
}

@media (min-width: 500px) and (max-width: 940px) {
    .gwd-fake-fullscreen .gwd_banner_video_bottom {
        flex-direction: row;
    }

    .gwd-fake-fullscreen .gwd_video_steaming_wrapper_inner {
        height: 100vh;
    }

    .gwd-fake-fullscreen .gwd_player-wrapper{
        height: calc(100vh - 25px);
    }

    .gwd-fake-fullscreen .gwd-banner-bottom__infeed img {
        height: 32px;
        width: auto;
        margin-right: 0;
    }

    .gwd-fake-fullscreen .gwd-banner-bottom__overlay {
        width: auto;
    }

    .gwd-fake-fullscreen .gwd-banner-bottom__overlay img {
        height: 32px;
        width: auto;
    }
}

@media (max-width: 940px) {
    .gwd-fake-fullscreen{
    	overflow: hidden;
    }
    .gwd-fake-fullscreen .gwd-top-strip-marquee__track img {
      height: 25px;
      width: auto;
    }
    body .gwd_player-wrapper video{
      min-height: unset;
    }
    .gwd_video_steaming_wrapper.gwd-fake-fullscreen {
        position: fixed !important;
        inset: 0 !important;
        z-index: 999999 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #000;
    }
    .gwd-fake-fullscreen .gwd_video_steaming_wrapper_inner{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw !important;
    }
    #gwd_player.gwd-fake-fullscreen video {
        transform: translate(-50%, -50%);
        left: 50%;
        position: absolute;
        top: 50%;
    }
}
