 /* Стили для кастомного скроллбара */
 ::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #020c22;
}

::-webkit-scrollbar-thumb {
    background-color: #FF7C1E;
    border-radius: 6px;
    border: 3px solid #020c22;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FF7C1E #020c22;
}

a {
    text-decoration: none;
}

body {
    background-color: #020C22;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    height: 80px;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: #020C22;
}

.container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
    box-sizing: border-box;
}

.container2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 90px;
    box-sizing: border-box;
}

.logo {
    width: 100px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust the gap between items */
}

.join-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 24px;
    gap: 4px;
    width: 160px;
    height: 48px;
    background: #FF7C1E;
    box-shadow: inset 0px -4px 4px rgba(0, 0, 0, 0.13), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.join-btn:hover {
    background: #e36a14;
}

.hero {
    height: 522px;
    background-color: #020C22;
    background-image: url('../img/headbg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}


.heromob {
    display: none;
    background-color: #020C22;
    padding: 20px;
    text-align: center;
}

.heromob .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 36px;
}

.heromob .parilogo {
    width: 82px;
    margin-bottom: 20px;
}

.heromob .highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    rotate: -6deg;
}

.heromob .highlight-text .line1,
.heromob .highlight-text .line2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    margin: 0px 0;
}

.heromob h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    margin: 20px 0;
}

.heromob .join-btn-large {
    width: 288px;
    height: 56px;
    background: #FF7C1E;
    box-shadow: inset 0px -4px 4px rgba(0, 0, 0, 0.13), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.heromob .join-btn-large:hover {
    background-color: #e36a14;
}



.left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 100px;
    margin-top: 80px;
}

.parilogo {
    width: 244px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.join-btn-large {
    width: 244px;
    height: 56px;
    background: #FF7C1E;
    box-shadow: inset 0px -4px 4px rgba(0, 0, 0, 0.13), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.join-btn-large:hover {
    background: #e36a14;
}

.right-content {
    text-align: center;
    transform: rotate(-6deg);
    margin-right: 81px;
    margin-top: 92px;
}

.right-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 90px;
    line-height: 90px;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.highlight-text .line1, .highlight-text .line2 {
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 36px;
    text-transform: uppercase;
    transform: rotate(0deg);
    margin-bottom: 10px;
}

.highlight-text .line1::before, .highlight-text .line2::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 84%;
    background-color: #F85A00;
    z-index: -1;
    transform: skewX(-20deg);
    border-radius: 4px;
}

.highlight-text .line2 {
    transform: rotate(0deg);
}

.highlight-text p {
    margin: 0;
}

.divider {
    width: 100%;
    text-align: center;
    margin-top: 0px;
}

.divider img {
    width: 100%;
    max-height: 60px;
}


/* CSS для новой секции */
.bonus-section {
    background-color: #020C22;
    background-image: url('../img/bg2.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
}

.bonus-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.bonus-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bonus-card {
    background-color: #1C2539;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    color: white;
}

.bonus-card img {
    margin-bottom: 20px;
}

.bonus-card .icon1 {
    width: 257px;
    height: auto;
    margin-left: 85px;
    margin-top: -76px;
}

.bonus-card .icon2 {
    width: 296px;
    height: auto;
    margin-left: 54px;
    margin-top: 33px;
}

.bonus-card .icon3 {
    width: 260px;
    height: auto;
    margin-left: 70px;
    margin-top: -46px;
}

.bonus-card .icon4 {
    width: 245px;
    height: auto;
    margin-left: 90px;
    margin-top: -55px;
}

.bonus-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    text-align: left;
    margin: 37px 0 0 0;
}

.bonus-card p1 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    text-align: left;
    margin: 16px 0 0 0;
}

.bonus-card p2 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    text-align: left;
    margin: 10px 0 0 0;
}

.bonus-card p3 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    text-align: left;
    margin: 22px 0 0 0;
}

.bonus-number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 58px;
    height: 58px;
    left: 20px;
    top: -20px;
    background: #9948FF;
    border: 4px solid #020C22;
    border-radius: 12px 12px 24px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.learn-more-btn {
    width: 200px;
    height: 56px;
    background: #FF7C1E;
    box-shadow: inset 0px -4px 4px rgba(0, 0, 0, 0.13), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 40px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e36a14;
}





/* CSS для новой секции */
.bet-section {
    background: linear-gradient(246.4deg, #4B08E7 0%, #8847F5 53.95%, #671CE6 70.94%, #5A17C8 84.96%);
    position: relative;
    padding: 60px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.bet-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    z-index: 2;
}

.bet-section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.bet-section table {
    width: 80%;
    max-width: 880px;
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0; /* Убирает промежутки между ячейками */
    position: relative;
    z-index: 2;
    border-radius: 12px; /* Закругленные углы */
    overflow: hidden; /* Чтобы закругление углов применялось корректно */
}

.bet-section th, .bet-section td {
    border: none;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    width: 50%; /* Одинаковая ширина колонок */
}

.bet-section th {
    background-color: #F85A00;
    font-weight: 500;
    height: 28px;
}

.bet-section td {
    background-color: #1C2539;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Белые разделительные линии с прозрачностью 20% */
}

.bet-section tr:last-child td {
    border-bottom: none; /* Убираем линию у последней строки */
}

.bet-section td + td, .bet-section th + th {
    border-left: 1px solid rgba(255, 255, 255, 0.2); /* Вертикальная разделительная линия */
}

.bet-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

/* Декоративные изображения */
.top-decoration {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1820px;
    height: auto;
    z-index: 1;
}

.bottom-decoration-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 620px;
    height: auto;
    z-index: 1;
}

.bottom-decoration-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 477px;
    height: auto;
    z-index: 1;
}



/* CSS для последней секции */
.participation-section {
    background-color: #020C22;
    padding: 20px 70px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.participation-card {
    background-color: #1C2539;
    width: 136px;
    height: 136px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.participation-card img {
    width: 100%; /* QR код занимает весь блок */
    height: auto;
}

.participation-card.android img {
    width: 65px;
    height: 86px;
}

.participation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    background-color: #1C2539;
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-align: left;
    min-width: 1115px;
}

.participation-content-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.participation-content p {
    margin: 0;
    font-size: 32px;
    text-transform: uppercase; /* Заглавные буквы */
}

.participation-content .highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #9948FF;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 32px;
    text-transform: uppercase;
    vertical-align: middle;
}

.participation-content .highlight img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.participation-buttons {
    display: flex;
    gap: 20px;
}

.participation-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 0px -4px 4px rgba(0, 0, 0, 0.13), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    min-height: 48px;
    transition: background-color 0.3s ease;
}

.participation-buttons .join-btn {
    background-color: #FF7C1E;
    color: white;
}

.participation-buttons .bet-btn {
    background-color: #7E57FF;
    color: white;
    min-width: 220px;
}

.participation-buttons .join-btn:hover {
    background-color: #e36a14;
}

.participation-buttons .bet-btn:hover {
    background-color: #6a47cc;
}
.bonus-section-mobile {
    display: none;
}




.participation-section-mobile {
    display: none;
    background-color: #020C22;
    padding: 20px 20px 60px;
    text-align: center;
}

.participation-section-mobile .participation-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.participation-section-mobile .participation-card {
    background-color: #1C2539;
    width: 136px;
    height: 136px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.participation-card1 {
    background-color: #1C2539;
    width: 195px;
    height: 136px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.participation-section-mobile .participation-card img {
    width: 100%;
    height: auto;
}

.participation-section-mobile .participation-card1.android img {
    width: 65px;
    height: 86px;
}

.participation-section-mobile .participation-content {
    background-color: #1C2539;
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-align: left;
}

.participation-section-mobile .participation-content-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: -7px;
}

.participation-section-mobile .participation-content-text p {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
}

.participation-section-mobile .participation-content .highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #9948FF;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 20px;
    text-transform: uppercase;
    vertical-align: middle;
}

.participation-section-mobile .participation-content .highlight img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.participation-section-mobile .participation-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.participation-section-mobile .participation-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 0px -4px 4px rgba(0, 0, 0, 0.13), inset 0px 4px 4px rgba(255, 255, 255, 0.25);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.participation-section-mobile .participation-buttons .join-btn {
    background-color: #FF7C1E;
    color: white;
    width: 320px;
    height: 48px;
}

.participation-section-mobile .participation-buttons .bet-btn {
    background-color: #7E57FF;
    color: white;
    width: 320px;
    height: 48px;
}

.participation-section-mobile .participation-buttons .join-btn:hover {
    background-color: #e36a14;
}

.participation-section-mobile .participation-buttons .bet-btn:hover {
    background-color: #6a47cc;
}



footer {
    background-color: #020C22;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px;
    color: #79849B;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

footer .logo {
    width: 100px;
}

/* Media Queries */
@media (max-width: 1850px) {
    .right-content {  
        margin-right: 270px;
    }
}

@media (max-width: 1840px) {
    .right-content {  
        margin-right: 170px;
    }
    .bonus-section h2 {
        margin-bottom: 60px;
    }
    .bonus-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bonus-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        justify-content: center;
        justify-items: center; /* Центрирование самих карточек внутри грид */
    }
}

@media (max-width: 1490px) {
    .hero {
        background-image: url('../img/headbg1.jpg');
    }
    .right-content {
        margin-right: 30px;
    }
    .left-content {
        margin-left: 40px;   
    }
}
@media (max-width: 1200px) {
    .participation-content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        flex: 1;
        background-color: #1C2539;
        border-radius: 12px;
        padding: 20px;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        font-weight: 900;
        text-align: left;
        min-width: 830px;
        flex-direction: column;
    }
    .right-content h1 {
        font-size: 72px;
        line-height: 72px;   
    }
    .highlight-text .line1, .highlight-text .line2 {
        font-size: 28px;   
    }
}
@media (max-width: 1020px) {
    .participation-content {
        min-width: 620px;
    }
    .bonus-section h2 {
        font-size: 42px;  
    }
    .bonus-card p {
        font-size: 26px;
        margin: 51px 0 0 0;
    }
    .bonus-card p1 {
        font-size: 26px;
        margin: 5px 0 0 0;
    }
    .bonus-card p2 {
        font-size: 26px;
        margin: -9px 0 0 0;
    }
    .bonus-card p3 {
        font-size: 26px;
        margin: 32px 0 0 0;
    }
    .bet-section {
        padding: 20px 0;
    }
    .bet-section h2 {
        font-size: 40px;
    }
    .bet-section h3 {
        font-size: 18px;
    }
    .bet-section p {
        font-size: 16px;
        font-weight: 500; 
    }
}
@media (max-width: 900px) {
    .bonus-card .icon1 {
        width: 175px;
        height: auto;
        margin-left: 85px;
        margin-top: -76px;
    }
    .bonus-card .icon2 {
        width: 190px;
        height: auto;
        margin-left: 54px;
        margin-top: 33px;
    }
    .bonus-card .icon3 {
        width: 158px;
        height: auto;
        margin-left: 70px;
        margin-top: -46px;
    }
    .bonus-card .icon4 {
        width: 170px;
        height: auto;
        margin-left: 90px;
        margin-top: -55px;
    }
    .bonus-card {
        height: 273px;
    }
    .bonus-card p1 {
        font-size: 26px;
        margin: 11px 0 0 0;
    }
    .bonus-card p2 {
        font-size: 26px;
        margin: -7px 0 0 0;
    }
    .left-content {
        margin-left: 5px;
    }
    .parilogo {
        width: 200px;
        margin-bottom: 20px;
    }
    .right-content h1 {
        font-size: 60px;
        line-height: 60px;
    }
    .highlight-text .line1, .highlight-text .line2 {
        font-size: 20px;
    }
}


@media (max-width: 768px) {
    .bonus-section {
        display: none; /* Скрываем основную секцию на мобильных устройствах */
    }
    .bonus-section-mobile {
        display: block; /* Показываем мобильную секцию на мобильных устройствах */
        margin-bottom: 20px;
    }

    .bonus-section-mobile .container {
        display: flex;
        background-image: url('../img/bg3.png');
        background-position: top;
        background-repeat: no-repeat;
        flex-direction: column;
        align-items: center;
        text-align: left;
        color: white;
    }
    .container {
        padding: 0 20px;       
    }

    .bonus-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .bonus-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 768px;
        padding: 20px;
    }

    .bonus-card-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .bonus-card img {
        width: 100px;
        height: auto;
    }

    .bonus-card p {
        font-size: 16px;
        line-height: 1.4;
        margin: 35px 0 0 0;
        flex-grow: 1;
    }
    .bonus-card p2 {
        font-size: 16px;
        line-height: 1.4;
        margin: 24px 0 0 0;
        flex-grow: 1;
    }
    .bonus-card {
        height: 116px;
    }

    .bonus-number {
        position: static;
        font-family: 'roboto';
        margin-right: 20px;
        max-width: 41px;
        min-height: 38px;
        font-size: 18px;
        font-weight: 500;
        margin-top: -35px;
    }
    .bonus-card .icon1 {
        width: 120px;
        height: auto;
        margin-left: 68px;
        margin-top: -45px;
    }
    .bonus-card .icon2 {
        width: 150px;
        height: auto;
        margin-left: 54px;
        margin-top: -14px;
        rotate: 20deg;
    }
    .bonus-card .icon3 {
        width: 129px;
        height: auto;
        margin-left: 70px;
        margin-top: -40px;
    }
    .bonus-card .icon4 {
        width: 121px;
        height: auto;
        margin-left: 90px;
        margin-top: -45px;
    }
    .learn-more-btn {
        display: none;
    } 
    .bet-section h2 {
        font-size: 24px;
    }
    .bet-section h3 {
        font-size: 14px;
    }
    .bet-section th, .bet-section td {
        font-size: 16px;   
    } 
    .bottom-decoration-left {
        width: 262px;  
    }
    .bottom-decoration-right {
        width: 177px;
    }
    .top-decoration {
        content: url('../img/mobx.png');
        max-width: 555px;
        left: 35%;
    }
    .divider {
        display: none;
    }
    .hero {
        display: none;
    }
    
    .heromob {
        display: block;
        background-image: url('../img/mobh.jpg');
        background-position: center;
        margin-top: 30px;
    }
    .participation-section {
        display: none;
    }
    
    .participation-section-mobile {
        display: block;
    }
    .participation-content {
        min-width: 320px;
        width: 320px;
        margin: auto;
    }
}

@media (max-width: 520px) {
    .heromob {
        display: block;
        background-image: url('../img/mobhh.jpg');
        background-size: cover;
        background-position: center;
        
        margin-top: 30px;
    }
    .container  {
        padding: 0 10px;
    }
    .bonus-card .icon1 {
        width: 120px;
        height: auto;
        margin-left: 15px;
        margin-top: -45px;
    }
    .bonus-card p {
        font-size: 16px;
        line-height: 1.4;
        margin: 18px 0 0 0;
        flex-grow: 1;
    }
    .bonus-card .icon2 {
        width: 150px;
        height: auto;
        margin-left: 8px;
        margin-top: -14px;
        rotate: 20deg;
    }
    .bonus-card .icon3 {
        width: 129px;
        height: auto;
        margin-left: 0px;
        margin-top: -40px;
    }
    .bonus-card .icon4 {
        width: 121px;
        height: auto;
        margin-left: 29px;
        margin-top: -45px;
    }
    .participation-section-mobile .participation-buttons .bet-btn {
        background-color: #7E57FF;
        color: white;
        width: 290px;
        height: 48px;
    }
    .participation-section-mobile .participation-buttons .join-btn {
        background-color: #FF7C1E;
        color: white;
        width: 290px;
        height: 48px;
    }
    .participation-content {
        min-width: 290px;
        width: 290px;
        margin: auto;
    }
    footer {
        padding: 0 10px;   
    }
    .bet-section {
        padding: 20px 0;
        height: 675px;
    }
    .top-decoration {
        content: url('../img/mobxx.png');
        max-width: 364px;
        left: 35%;
    }
    .bet-section table {
        width: 92%;
    }
    .bet-section th, .bet-section td {
        padding: 13px;    
    }
    .bet-section h3 {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bet-section p {
        font-size: 16px;
        font-weight: 500;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bonus-card p2 {
        font-size: 16px;
        line-height: 1.4;
        margin: 0px 0 0 0;
        flex-grow: 1;
    }
    .participation-card1 {
        width: 175px; 
    }
}
@media (max-width: 375px) {
    .join-btn {
        width: 128px;
        height: 48px;
    }
    .participation-content {
        min-width: 260px;
        width: 275px;
        margin: auto;
    }
    .participation-section-mobile .participation-buttons .join-btn {
            background-color: #FF7C1E;
            color: white;
            width: 275px;
            height: 48px;
        }
    .participation-section-mobile .participation-buttons .bet-btn {
            background-color: #7E57FF;
            color: white;
            width: 275px;
            height: 48px;
        }
}