.blob {
    width: 100%;
    box-shadow: 0 0 0 0 #000;
    transform: scale(1);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .7)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent
    }
    to {
        transform: scale(.95);
        box-shadow: 0 0 0 0 transparent
    }
}

.promocode {
    border-style: dashed;
    font-size: 2em;
    margin: auto;
    width: 50%;
    padding: 10px;
    text-align: center;
    display: block
}

.cta-button {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: #07c;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color .3s
}

.cta-button:hover {
    background-color: #005fa3;
    text-decoration: none
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none
    }
}

.casino-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Карточка казино */
.casino-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #19b01d, #047507);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Логотип казино */
.casino-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Название казино */
.casino-name {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
    color: #FFFFFF;
    margin: 0 20px;
}

/* Действия (кнопки) */
.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Кнопка "Играть" */
.play-button {
    background-color: #ffffff;
    color: #047507;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.05);
    background-color: #047507;
    color: #ffffff;
}

/* Промокод */
.promo-code {
    background-color: #026b04;
    color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.promo-code:hover {
    background-color: #047507;
    color: #FFFFFF;
}

/* Адаптивность */
@media (max-width: 600px) {
    .casino-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .casino-logo img {
        margin-bottom: 10px;
    }

    .casino-actions {
        align-items: center;
        margin-top: 10px;
    }
}
