/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 04 2026 | 10:06:33 */
:root {
    --primary-color: #00a0ff; /* Фирменный синий 1xBet */
    --accent-color: #ffcc00;  /* Золотой акцент */
    --bg-dark: #0f1215;
    --text-light: #ffffff;
}

.bet-banner-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #0f1215 0%, #1e252b 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bet-banner-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.3;
}

.bet-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.badge {
    background: var(--accent-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.banner-text h1 {
    color: var(--text-light);
    font-size: 32px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.banner-text h1 b {
    color: var(--primary-color);
}

.banner-text p {
    color: #a0aaba;
    max-width: 500px;
    font-size: 16px;
    margin-top: 10px;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.btn-main {
    background: linear-gradient(to right, #0072ff, #00a0ff);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 160, 255, 0.4);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 160, 255, 0.6);
}

.promo-code {
    color: #fff;
    font-size: 14px;
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 20px;
}

.promo-code span {
    display: block;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .bet-banner-container {
        text-align: center;
    }
    
    .bet-banner-content {
        align-items: center;
        padding: 30px 20px;
    }

    .banner-text h1 {
        font-size: 24px;
    }

    .banner-actions {
        flex-direction: column;
        gap: 15px;
    }

    .promo-code {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-left: 0;
        padding-top: 10px;
    }
}
