/* Sticky CTA */
#sticky-cta-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    right: 0;
    background: #2C2C2C;
    border-top: 2px solid #d63e2d;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: bottom 0.4s ease;
    color: #fff;
}
#sticky-cta-bar .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
	flex-direction: row;
}
#sticky-cta-bar.show { bottom: 0; }
#sticky-cta-bar .casino-logo { max-height: 80px; margin-right: 15px; }
.name-rate > span { display: flex; }
#sticky-cta-bar .cta-button {
    background: #d63e2d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
#sticky-cta-bar .cta-button:hover { opacity: 0.8; }
.star {
    color: #ccc;
    font-size: 18px;
    position: relative;
    display: inline-block;
    margin-right: 2px;
    width: 18px;
    overflow: hidden;
}
.star.filled { color: #f5a623; }
.star.half::before {
    content: "★";
    color: #f5a623;
    position: absolute;
    width: 50%;
    overflow: hidden;
    left: 0;
    top: 0;
}
#sticky-cta-bar .star::before {
    content: " ";
}
@media (max-width: 768px) {
    #sticky-cta-bar .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        float: none !important;
    }
    #sticky-cta-bar .cta-content {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        row-gap: 0;
    }
    #sticky-cta-bar .casino-logo {
        max-width: 130px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    .casino-bonus {
        flex: 1;
        text-align: left;
        width: auto;
        font-size: 15px;
    }
    #sticky-cta-bar .cta-button {
        flex: 1 1 100%;
        text-align: center;
        margin-top: 5px;
        padding: 12px 20px;
    }
    #sticky-cta-bar {
        padding: 10px 15px 15px;
        bottom: -200px;
    }
    .name-rate {
        display: none;
    }
    .cta-close-btn {
        display: block;
    }
}