.vtx-wc-banner,
.vtx-wc-banner * {
    box-sizing: border-box;
}

.vtx-wc-banner {
    --vtx-navy: #1b2a4a;
    --vtx-gold-1: #FFDA45;
    --vtx-gold-2: #E5AD1C;
    position: relative;
    width: 650px;
    height: 75px;
    max-width: calc(100vw - 12px);
    border-radius: 13px;
    background: var(--vtx-navy);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 5px 14px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.16);
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    overflow: visible;
    z-index: 999999;
}

.vtx-wc-banner--fixed {
    position: fixed;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
}

.vtx-wc-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(8,12,30,.35), rgba(255,255,255,.05) 45%, rgba(4,7,18,.28));
    pointer-events: none;
}

.vtx-wc-banner:after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -4px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    filter: blur(6px);
    z-index: -1;
}

.vtx-wc-banner.is-hidden {
    display: none !important;
}

.vtx-wc-banner__ball {
    position: absolute;
    left: -6px;
    bottom: -2px;
    width: 178px;
    height: 178px;
    object-fit: contain;
    object-position: center;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 7px 8px rgba(0,0,0,.30));
}

.vtx-wc-banner__content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 0 10px 0 128px;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) 150px;
    align-items: center;
    justify-content: center;
    column-gap: 14px;
}

.vtx-wc-banner__bookmaker,
.vtx-wc-banner__bonus {
    min-width: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    text-shadow: 0 2px 2px rgba(0,0,0,.25);
}

.vtx-wc-banner__bookmaker {
    color: #ffda45;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .2px;
}

.vtx-wc-banner__bonus {
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .1px;
}

.vtx-wc-banner__button {
    height: 52px;
    min-width: 0;
    padding: 0 22px;
    border-radius: 999px !important;
    background: linear-gradient(to bottom, #FFDA45, #E5AD1C) !important;
    border: 1px solid rgba(255,255,255,.48);
    box-shadow: inset 0 2px 0 rgba(255,255,255,.36), 0 4px 10px rgba(0,0,0,.24);
    color: #06122e !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

.vtx-wc-banner__button:hover,
.vtx-wc-banner__button:focus {
    color: #06122e !important;
    transform: translateY(-1px);
}

.vtx-wc-banner__button b {
    font-size: 28px;
    line-height: .8;
}

.vtx-wc-banner__close {
    position: absolute;
    top: -10px;
    right: -9px;
    z-index: 5;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 2px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: #0d1730;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.35);
}

@media (max-width: 700px) {
    .vtx-wc-banner {
        left: 6px;
        right: 6px;
        width: auto;
        max-width: none;
        transform: none;
        height: 75px;
        border-radius: 12px;
    }

    .vtx-wc-banner__ball {
        width: 128px;
        height: 128px;
        left: -8px;
        bottom: -2px;
    }

    .vtx-wc-banner__content {
        padding: 0 36px 0 118px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 142px;
        column-gap: 8px;
    }

    .vtx-wc-banner__bookmaker,
    .vtx-wc-banner__bonus {
        font-size: 20px;
    }

    .vtx-wc-banner__button {
        height: 48px;
        padding: 0 14px;
        font-size: 15px;
        gap: 6px;
    }
}

@media (max-width: 470px) {
    .vtx-wc-banner__content {
        padding-left: 104px;
        grid-template-columns: minmax(0, 1fr) 125px;
        column-gap: 7px;
    }

    .vtx-wc-banner__bookmaker {
        display: none;
    }

    .vtx-wc-banner__bonus {
        font-size: 19px;
        text-align: center;
    }

    .vtx-wc-banner__button {
        font-size: 14px;
        padding: 0 12px;
    }

    .vtx-wc-banner__ball {
        width: 116px;
        height: 116px;
    }
}
