  .lottery-bonus-tab-content .bonus-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.lottery-bonus-tab-content .lottery-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}
.lottery-bonus-tab-content .lottery-bonus-item strong {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    color: #333;
}

.lottery-bonus-tab-content .lottery-bonus-item span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 4px;
}
.lottery-bonus-tab-content .lottery-bonus-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 5px;
}

.lottery-bonus-tab-content .bonus-item-content {
    position: relative;
    z-index: 3;
}
.lottery-bonus-tab-content .bonus-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.lottery-bonus-tab-content .bonus-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    z-index: 3;
    position: relative;
}
.lottery-bonus-tab-content .won-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    align-items: center;
    display:flex;
    justify-content: center;
    background-color: #1c1b21;
    opacity: .7;
    z-index: 4;
    width: 100%;
}

.lottery-bonus-tab-content .lottery-bonus-item.has-winner .won-overlay {
    opacity: 1;
}

.lottery-bonus-tab-content .won-text {
    color: rgb(255, 255, 255);
    font-size: 32px;
    line-height: 42px;
    font-family: Staatliches, Staatliches Fallback;
    font-weight: 400;
    font-style: normal;
}

.lottery-bonus-tab-content .bonus-item-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: 8px;
}


@keyframes BonusDrawCard_flash_animation {
    0% {
        opacity: 0;
        background-color: #f2a7c9
    }

    50% {
        opacity: 1;
        background-color: #f2a7c9
    }

    to {
        opacity: 0;
        background-color: #f2a7c9
    }
}
.lottery-bonus-tab-content .bonus-item-highlight-overlay.highlighted {
    animation: BonusDrawCard_flash_animation 2s ease-out;
}
.lottery-bonus-tab-content .lottery-bonus-item:not(:last-child)::after {
    display: none;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}
/* Mobile styles */
@media (max-width: 768px) {
    .lottery-bonus-tab-content .bonus-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    /* Change grid to list layout for mobile */
    .lottery-bonus-tab-content .lottery-bonus-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobile bonus item layout - image on left, text on right */
    .lottery-bonus-tab-content .lottery-bonus-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item:last-child {
        border-bottom: none;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 0;
        flex-shrink: 0;
        z-index: 3;
        position: relative;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item .bonus-item-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-width: 0; /* Prevent text overflow */
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item strong {
        font-size: 16px;
        margin-top: 0;
        color: #1a1a1a;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item span {
        font-size: 14px;
        color: #666;
        margin-top: 4px;
        line-height: 1.4;
    }
    
    /* Adjust highlight overlay for mobile layout */
    .lottery-bonus-tab-content .bonus-item-highlight-overlay {
        border-radius: 8px;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .lottery-bonus-tab-content .lottery-bonus-item {
        gap: 12px;
        padding: 12px 5px;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item img {
        width: 70px;
        height: 70px;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item strong {
        font-size: 15px;
    }
    
    .lottery-bonus-tab-content .lottery-bonus-item span {
        font-size: 13px;
    }
}
.single-product-progress-section .lty-lottery-progress-bar{
    margin-top:30px;
}
.single-product-progress-section .progressbar-bubble {
    position: relative;
    height: 22px;
}

.single-product-progress-section .lty-bubble {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: #e22686;
    color: #fff;
    border-radius: 50%;
    min-width: 42px;
    line-height: 1;
    height: 42px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Percentage */
.single-product-progress-section .lty-bubble-percent {
    display: block;
    font-size: 12px;
    font-weight: 400;
    font-family: Staatliches, Staatliches Fallback;
}

/* Sold text */
.single-product-progress-section .lty-bubble-sold {
    display: block;
    font-size: 11px;
    font-weight: 400;
    font-family: Staatliches, Staatliches Fallback;
    color: #000;
}

/* Arrow */
.single-product-progress-section .lty-bubble::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #e22686;
}
.single-product-progress-section .tickets-stats{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #717171;
}
.single-product-progress-section .lty-progress-bar {
    position: relative;
}

.single-product-progress-section .lty-bonus-stars {
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 24px;
    pointer-events: none;
}

.single-product-progress-section .lty-bonus-star {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-product-progress-section .lty-bonus-star:hover {
    transform: translateX(-50%) scale(1.2);
    z-index: 11;
}

.single-product-progress-section .lty-bonus-star .lty-star-percentage {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1px 4px;
    border-radius: 3px;
    white-space: nowrap;
}

.single-product-progress-section .lty-bonus-star svg {
    width: 25px;
    height: 25px;
}
.single-product-progress-section .lty-bonus-progress-notice .lty-bonus-progress-help{
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}
.single-product-progress-section .lty-bonus-progress-notice .to-go-text{
  background-color: #e22686;
  border-radius: 4px;
  padding: 0 10px 0 10px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin-right: 8px;
  font-family: Staatliches, Staatliches Fallback;
}
