.bonuses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    
    color: #1a2a3a;
}

.bonuses-list p {
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.bonuses-list a {
    text-decoration: none;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    
    width: 100%;
    min-height: 100px;
    padding: 16px 0;
    
    border-radius: 12px;
    
    background: linear-gradient(to bottom, #a8d8f7, #d1e4e4);
    opacity: 0.80;
    
    overflow: hidden;
    transition: opacity 0.3s;
}

.bonus-item:is(:hover, :focus-within) {
    opacity: 1;
}

.bonus-item-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    
    padding: 0 12px;
}

.bonus-item-block:nth-child(2) {
    flex-direction: column;
}

.bonus-casino-name {
    font-size: 24px;
    font-weight: 600;
}

.bonus-name {
    font-weight: 600;
    height: 58px;
}

.bonus-item-play-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    
    border-radius: 8px;
    background-color: #ff0000;
    text-align: center;
    line-height: 1;
    color: #E6E6FA;
    
    transition: background-color, transform 0.2s;
}

.bonus-item-play-btn:is(:hover, :focus) {
    color: #E6E6FA;
    background-color: #e60000;
    transform: scale(1.05);
}

.bonus-item-play-btn:focus {
    outline: 1px solid #3498db;
}

@media screen and (min-width: 512px) and (max-width:767.9px), screen and (min-width: 992px) {
    .bonus-item {
        width: 232px;
    }
}

@media screen and (min-width:768px) and (max-width: 991.9px) {
    .bonus-item {
        width: 200px;
    }
}

