
    .now a.button {
    background: red !important;
}
        img.wp-smiley,
        img.emoji {
            display: inline !important;
            border: none !important;
            box-shadow: none !important;
            height: 1em !important;
            width: 1em !important;
            margin: 0 .07em !important;
            vertical-align: -0.1em !important;
            background: none !important;
            padding: 0 !important;
        }
    

.promo-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    transform: translateY(100%);
    z-index: 500;
    background: #000;
    transition: all linear 0.5s;
}

.promo-sticky-banner.is-visible {
    transform: translateY(0%);
}

.promo-sticky-banner .promo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.promo-logo-block {
    max-width: 200px;
    width: 100%;
    transition: all linear 0.3s;
    background-color: #000;
    border-radius: 10px;
}

.promo-logo-block img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-rating-box {
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 26px;
    background-color: #ba2011;
    white-space: nowrap;
    
}

.promo-cta-button {
color:#fff!important;
    background: red!important;
}
.promo-info-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.promo-title-text {
    font-size: 35px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-bonus-text {
    font-size: 20px;
    font-weight: 500;
}

.promo-bonus-text span {
    color: #ffa563;
}

.promo-cta-button {
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    background-color: #000;
    color: white;
    text-decoration: none;
    transition: all linear 0.3s;
    white-space: nowrap;
}

.promo-cta-button:hover {
    opacity: 0.85;
}

@media screen and (max-width: 1200px) {
    .promo-sticky-banner .promo-wrapper {
        max-width: 960px;
    }
    
    .promo-title-text {
        font-size: 30px;
    }
    
    .promo-bonus-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .promo-sticky-banner .promo-wrapper {
        max-width: 720px;
        gap: 15px;
    }
    
    .promo-logo-block {
        max-width: 180px;
    }
    
    .promo-title-text {
        font-size: 26px;
    }
    
    .promo-bonus-text {
        font-size: 16px;
    }
    
    .promo-cta-button {
        padding: 12px 20px;
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .promo-sticky-banner {
        padding: 15px 0;
    }

    .promo-sticky-banner .promo-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 10px;
    }

    .promo-logo-block {
        grid-area: 1 / 1 / 3 / 2;
        max-width: 200px;
        justify-self: center;
    }

    .promo-rating-box {
        grid-area: 1 / 2 / 2 / 3;
        background-color: transparent;
        padding: 0;
        justify-content: flex-start;
        font-size: 20px;
    }

    .promo-info-block {
        grid-area: 2 / 2 / 3 / 3;
    }

    .promo-cta-button {
        grid-area: 3 / 1 / 4 / 3;
        margin-top: 5px;
    }
}

@media screen and (max-width: 576px) {
    .promo-sticky-banner {
        padding: 10px 0;
    }

    .promo-sticky-banner .promo-wrapper {
        gap: 8px;
    }

    .promo-logo-block {
        max-width: 140px;
    }

    .promo-title-text {
        font-size: 20px;
    }

    .promo-bonus-text {
        font-size: 14px;
    }

    .promo-rating-box {
        font-size: 16px;
    }

    .promo-rating-box svg {
        width: 16px;
        height: 16px;
    }

    .promo-cta-button {
        padding: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .promo-logo-block {
        max-width: 120px;
    }

    .promo-title-text {
        font-size: 18px;
    }

    .promo-bonus-text {
        font-size: 12px;
    }

    .promo-cta-button {
        padding: 8px;
        font-size: 14px;
    }
}


    #pinup-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        z-index: 100000;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(4px);
    }

    .pinup-modal-content {
        background-color: #3e3e3e;
        width: 90%;
        max-width: 420px;
        padding: 30px 20px;
        border-radius: 12px;
        border: 1px solid #555;
        text-align: center;
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        font-family: 'Arial', sans-serif;
        box-sizing: border-box;
        animation: pinupFadeIn 0.5s ease-out;
    }

    .pinup-close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        color: #aaa;
        cursor: pointer;
        line-height: 1;
        transition: 0.3s;
    }

    .pinup-close-btn:hover {
        color: #fff;
    }

    .pinup-logo {
        max-width: 160px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .pinup-title {
        color: #fff;
        font-size: 22px;
        margin: 0 0 10px 0;
        font-weight: bold;
        text-transform: uppercase;
    }

    .pinup-bonus {
        color: #ff0000;
        font-size: 36px;
        font-weight: 900;
        margin: 5px 0 25px 0;
        line-height: 1.1;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .pinup-cta-btn {
        display: inline-block;
        background-color: #ff0000;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        padding: 15px 40px;
        border-radius: 6px;
        text-transform: uppercase;
        transition: transform 0.2s, background-color 0.2s;
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        border: none;
        cursor: pointer;
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }

    .pinup-cta-btn:hover {
        background-color: #d60000;
        transform: translateY(-2px);
    }

    @keyframes pinupFadeIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

