/* Bookie Promo Block Styles */
.bookie-promo {
    width: 100%;
}

.bookie-promo__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 150px;
    background: var(--bookie-promo-card-bg, #ffffff);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    gap: 24px;
}

/* Left Section: Badge and Logo */
.bookie-promo__left-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    flex: 1;
}


/* Logo Section */
.bookie-promo__logo-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
}

.bookie-promo__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.bookie-promo__logo-image {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Rating Section */
.bookie-promo__rating-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 8px 16px;
    border: 1px solid #d6d7db;
    border-radius: 100px;
}

.bookie-promo__stars {
    display: flex;
    gap: 2px;
}

.bookie-promo__star {
    font-size: 20px;
    line-height: 1;
    position: relative;
    display: inline-block;
    color: #d1d5db;
}

.bookie-promo__star--full {
    color: var(--bookie-promo-rating-color, #2563eb);
}


.bookie-promo__star--empty {
    color: #d1d5db;
}

.bookie-promo__rating-text {
    color: #000000;
    font-weight: 600;
}

/* Promotional Text Section */
.bookie-promo__promo-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 2;
    padding: 0 24px;
    text-align: center;
}

.bookie-promo__promo-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

.bookie-promo__promo-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.bookie-promo__promo-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.bookie-promo__promo-offer {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

/* Divider */
.bookie-promo__divider {
    width: 1px;
    height: 80px;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

/* Buttons Section */
.bookie-promo__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    flex: 1;
}

.bookie-promo__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.bookie-promo__button:hover.bookie-promo__button--primary {
    box-shadow: 0 0 15px 0 rgba(98, 146, 248, .55);
    color: #ffffff;
}

.bookie-promo__button:hover.bookie-promo__button--secondary {
    box-shadow: 0 0 10px 0 hsla(184, 6%, 53%, .3);
    color: rgb(55, 65, 81);
}

.bookie-promo__button--primary svg, .bookie-promo__button--secondary svg {
    width: 16px;
    height: 16px;
}

.bookie-promo__button--primary {
    background-color: var(--bookie-promo-play-now-color, #2563eb);
    fill: #ffffff;
    color: #ffffff;
}

.bookie-promo__button--secondary {
    fill: rgb(55, 65, 81);
    background-color: rgb(243, 244, 246);
    color: rgb(55, 65, 81);
}

.bookie-promo__button-icon {
    font-size: 18px;
    line-height: 1;
}

.bookie-promo__button-text {
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bookie-promo__card {
        flex-wrap: wrap;
    }

    .bookie-promo__left-section {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .bookie-promo__logo-section {
        margin-left: 0;
    }

    .bookie-promo__promo-section {
        width: 100%;
    }

    .bookie-promo__divider {
        display: none;
    }

    .bookie-promo__rating-section {
        justify-content: center;
    }

    .bookie-promo__buttons {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .bookie-promo__button {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .bookie-promo__card {
        flex-direction: column;
        gap: 16px;
    }

    .bookie-promo__buttons {
        flex-direction: column;
    }

    .bookie-promo__button {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .bookie-promo__promo-title {
        font-size: 18px;
    }

    .bookie-promo__promo-subtitle {
        font-size: 14px;
    }

    .bookie-promo__promo-label,
    .bookie-promo__promo-offer {
        font-size: 12px;
    }

    .bookie-promo__star {
        font-size: 16px;
    }

    .bookie-promo__button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

