/* Кастомный скроллбар для Webkit-браузеров (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Ширина скроллбара */
  }
  
  ::-webkit-scrollbar-track {
    background: #1c1c1c; /* Цвет трека (фона) скроллбара */
    border-radius: 10px; /* Радиус скругления */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #7b3eef; /* Цвет ползунка (thumb) */
    border-radius: 10px; /* Радиус скругления */
    border: 3px solid #1c1c1c; /* Внутренний отступ для лучшего визуального эффекта */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #7b3eef ; /* Цвет ползунка при наведении */
  }
  
  /* Кастомный скроллбар для Firefox */
  * {
    scrollbar-width: thin; /* Толщина скроллбара */
    scrollbar-color: #7b3eef #1c1c1c; /* Цвет ползунка и фона */
  }
  
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #020C22;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    transition: background-color 0.3s;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

.header .logo {
    height: 32px;
}

.header .olimp-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 48px;
}

.header .header-right {
    display: flex;
    align-items: center;
    gap:10px
}

.header .language-panel {
    color: #333B4C;
    margin-right: 20px;
}

.header .join-btn {
    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;
}

.header .join-btn:hover {
    background-color: #e36a14
}

.scrolled {
    background-color: #020c21;
}

.hero {
    background: linear-gradient(246.4deg, #4B08E7 0%, #8847F5 23.45%, #671CE6 42.48%, #5A17C8 84.96%);
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: left;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/xh.png');
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.3;
}

.hero::after {
    content: url('../img/img.png');
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
    z-index: 3;
    margin-right: 200px;
    margin-bottom: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1920px;
    margin: auto;
}

.hero .hero-content {
    max-width: 50%;
    margin-left: 170px;
    z-index: 1;
}

.hero h1 {
    font-size: 200px;
    line-height: 180px;
    margin: 0;
    font-weight: 900;
}

.hero .hero-btn {
    width: 340px;
    height: 102px;
    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: 17px;
    border: none;
    color: white;
    font-size: 34px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}
.hero .hero-btn:hover {
    background-color: #e36a14;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 270px;
    rotate: -7deg;
    margin-right: 80px;
    z-index: 4; /* Обновлено для текста */
}

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

.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;
}



.bonus-section {
    background: url('../img/bg1.png') no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.bonus-section .container {
    max-width: 1620px;
    margin: 0 auto;
}

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

.bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.bonus .line {
    height: 112px;
    
    background-size: cover;
    width: 442px;
    margin-left: -60px;
    margin-right: -60px;
}

.bonus .line.rotated {
    transform: rotate(180deg);
}

.bonus .bonus-amount {
    font-size: 64px;
    margin: 0 20px;
    font-weight: 900;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.step {
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    width: 540px;
    height: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: center;
}

.step.step_banner {
    background-image: url('../img/s1.png');
    z-index: 2;
}

.step.step_banner_center {
    background-image: url('../img/s2.png');
    z-index: 1;
}

.step.step_banner_last {
    background-image: url('../img/s3.png');
    z-index: 0;
}

.step .step-number {
    background: #DDC2FF;
    color: #240D57;
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 25px;
    font-weight: bold;
}

.step .step-text {
    font-size: 32px;
    margin: 60px 20px 0 20px;
    flex-grow: 1;
    width: 257px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.step .step-text2 {
    font-size: 32px;
    margin: 66px 20px 0 20px;
    flex-grow: 1;
    width: 231px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.step .step-text3 {
    font-size: 32px;
    margin: 103px 20px 0 20px;
    flex-grow: 1;
    width: 257px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.step-icon {
    width: 243px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.step-icon2 {
    width: 243px;
    position: absolute;
    right: 10px;
    bottom: 0px;
}


.olympic-bet-section {
    background: linear-gradient(246.4deg, #4B08E7 0%, #8847F5 53.95%, #671CE6 70.94%, #5A17C8 84.96%);
    padding: 40px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.olympic-bet-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/xl.png'), url('../img/tow.png'), url('../img/xr.png'), url('../img/hom.png');
    background-position: top 30px left 60px, bottom 0px left 20px, top 75px right 70px, bottom 0px right 0px;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.5;
}

.olympic-bet-section .container {
    max-width: 1620px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.olympic-bet-section h2 {
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.olympic-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.olympic-step {
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    width: 540px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: center;
}

.olympic-step.olympic-step_banner {
    background-image: url('../img/s4.png');
    z-index: 2;
}

.olympic-step.olympic-step_banner_center {
    background-image: url('../img/s5.png');
    z-index: 1;
}

.olympic-step.olympic-step_banner_last {
    background-image: url('../img/s6.png');
    z-index: 0;
}

.olympic-step .olympic-step-number {
    background: #444E65;
    color: #fff;
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 25px;
    font-weight: bold;
}

.olympic-step .olympic-step-text {
    font-size: 32px;
    margin: 60px 20px 0 20px;
    flex-grow: 1;
    width: 257px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.olympic-step .olympic-step-text2 {
    font-size: 32px;
    margin: 66px 20px 0 20px;
    flex-grow: 1;
    width: 311px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.olympic-step .olympic-step-text3 {
    font-size: 32px;
    margin: 66px 20px 0 20px;
    flex-grow: 1;
    width: 257px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.olympic-step-icon {
    width: 294px;
    position: absolute;
    right: 0px;
    bottom: -15px;
}

.olympic-step-icon2 {
    width: 193px;
    position: absolute;
    right: 30px;
    bottom: 10px;
}

.olympic-step-icon3 {
    width: 190px;
    position: absolute;
    right: 27px;
    bottom: 13px;
}

.olympic-raffle-text {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.olympic-raffle-text p {
    font-size: 50px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 0px;
    margin-top: 20px;
    margin-left: 30px;
}
.olympic-raffle-text p2 {
    font-size: 50px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 0px;
    margin-top: 20px;
}

.olympic-raffle-text p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) skewX(-20deg);
    width: 100%;
    height: 100%;
    background-color: #F85A00;
    border-radius: 6px;
    z-index: -1;
}

.olympic-raffle-text p2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) skewX(-20deg);
    width: 100%;
    height: 100%;
    background-color: #F85A00;
    border-radius: 6px;
    z-index: -1;
}

.learn-more-btn {
    width: 220px;
    height: 72px;
    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: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    margin-top: 50px;
}

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




.bonus-points-section {
    background: url('../img/bg2.png') no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.bonus-points-section .container {
    max-width: 1620px;
    margin: 0 auto;
}

.bonus-points-section h2 {
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}



.bonus-points .line.rotated {
    transform: rotate(180deg);
}

.bonus-points .bonus-amount {
    font-size: 64px;
    margin: 0 20px;
    font-weight: 900;
}

.bonus-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.bonus-step {
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    width: 540px;
    height: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-size: cover;
    background-position: center;
}

.bonus-step.bonus-step_banner {
    background-image: url('../img/s1.png');
    z-index: 2;
}

.bonus-step.bonus-step_banner_center {
    background-image: url('../img/s2.png');
    z-index: 1;
}

.bonus-step.bonus-step_banner_last {
    background-image: url('../img/s3.png');
    z-index: 0;
}

.bonus-step .bonus-step-number {
    background: #DDC2FF;
    color: #240D57;
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 25px;
    font-weight: bold;
}

.bonus-step .bonus-step-text {
    font-size: 32px;
    margin: 104px 20px 0 20px;
    flex-grow: 1;
    width: 257px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.bonus-step .bonus-step-text2 {
    font-size: 32px;
    margin: 104px 20px 0 20px;
    flex-grow: 1;
    width: 311px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.bonus-step .bonus-step-text3 {
    font-size: 32px;
    margin: 66px 20px 0 20px;
    flex-grow: 1;
    width: 257px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.bonus-step-icon {
    width: 294px;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.bonus-step-icon2 {
    width: 246px;
    position: absolute;
    right: 30px;
    bottom: 0px;
}

.bonus-step-icon3 {
    width: 342px;
    position: absolute;
    right: -45px;
    bottom: -46px;
}

.bonus-more-btn {
    width: 220px;
    height: 72px;
    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: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    margin-top: 50px;
}

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


/* 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: 0px;
    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: 1100px;
}

.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 (min-width: 1921px) {
    .hero::after {
        margin-right: 50%;
        transform: translateX(85%);
    }
}
@media (max-width: 1660px) {
    .step {
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        width: 500px;
        height: 145px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background-size: cover;
        background-position: center;
    }
    .step .step-text {
        font-size: 24px;
        margin: 88px 20px 0 20px;
        flex-grow: 1;
        width: 243px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step .step-text2 {
        font-size: 24px;
        margin: 87px 20px 0 20px;
        flex-grow: 1;
        width: 231px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step .step-text3 {
        font-size: 24px;
        margin: 87px 20px 0 20px;
        flex-grow: 1;
        width: 232px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step-icon {
        width: 195px;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    .step-icon2 {
        width: 195px;
        position: absolute;
        right: 10px;
        bottom: 0px;
    }
    .olympic-step {
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        width: 500px;
        height: 145px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background-size: cover;
        background-position: center;
    }
    .olympic-step .olympic-step-text {
        font-size: 24px;
        margin: 60px 20px 0 20px;
        flex-grow: 1;
        width: 250px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon {
        width: 240px;
        position: absolute;
        right: 0px;
        bottom: -15px;
    }
    .olympic-step .olympic-step-text2 {
        font-size: 24px;
        margin: 66px 20px 0 20px;
        flex-grow: 1;
        width: 270px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon2 {
        width: 150px;
        position: absolute;
        right: 30px;
        bottom: 10px;
    }
    .olympic-step .olympic-step-text3 {
        font-size: 24px;
        margin: 87px 20px 0 20px;
        flex-grow: 1;
        width: 257px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step-icon3 {
        width: 160px;
        position: absolute;
        right: 27px;
        bottom: 10px;
    }
    .bonus-step {
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        width: 500px;
        height: 145px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background-size: cover;
        background-position: center;
    }
    .bonus-step .bonus-step-text {
        font-size: 24px;
        margin: 87px 20px 0 20px;
        flex-grow: 1;
        width: 257px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-icon {
        width: 228px;
    }
    .bonus-step .bonus-step-icon2 {
        width: 196px;
        position: absolute;
        right: 14px;
        bottom: 0px;
    }
    .bonus-step .bonus-step-text2 {
        font-size: 24px;
        margin: 87px 20px 0 20px;
        flex-grow: 1;
        width: 244px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-text3 {
        font-size: 24px;
        margin: 87px 20px 0 20px;
        flex-grow: 1;
        width: 257px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .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: 1161px;
        flex-direction: column;
    }
}

@media (max-width: 1400px) {
    .hero .hero-content {
        max-width: 50%;
        margin-left: 100px;
        z-index: 1;
    }
    .hero h1 {
        font-size: 100px;
        line-height: 120px;
        margin: 0;
        font-weight: 900;
    }

    .highlight-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 132px;
        rotate: -7deg;
        margin-right: 91px;
        /* width: 400px; */
        z-index: 4;
    }

    .participation-content {
        min-width: 620px;
    }
    .highlight-text .line1, .highlight-text .line2 {
        position: relative;
        padding: 12px 35px;
        display: inline-block;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 24px;
        text-transform: uppercase;
        transform: rotate(0deg);
        margin-bottom: -1px;
        text-align: center;
    }
    .hero::after {
        content: url('../img/img.png');
        position: absolute;
        right: 0;
        bottom: 0;
        width: 240px;
        max-width: 50%;
        z-index: 3;
        margin-right: 339px;
        margin-bottom: 135px;
    }
    .bonus-section {
        background: url('../img/bg1.png') no-repeat center center;
        background-size: cover;
        padding: 50px 20px;
        text-align: center;
        color: white;
    }
    .bonus-section h2 {
        text-transform: uppercase;
        font-size: 28px;
        margin-bottom: -10px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
    }
    .bonus .bonus-amount {
        font-size: 48px;
        margin: 0 20px;
        font-weight: 900;
    }
    .step .step-number {
        background: #DDC2FF;
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    .step {
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        height: 90px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background-size: cover;
        background-position: center;
    }
    .step-icon {
        width: 130px;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    .step-icon2 {
        width: 125px;
        position: absolute;
        right: 10px;
        bottom: 0px;
    }
    .step .step-text {
        font-size: 18px;
        margin: 46px 20px 0 10px;
        flex-grow: 1;
        width: 160px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step .step-text2 {
        font-size: 18px;
        margin: 46px 20px 0 10px;
        flex-grow: 1;
        width: 163px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step .step-text3 {
        font-size: 18px;
        margin: 46px 20px 0 10px;
        flex-grow: 1;
        width: 157px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step {
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        background-size: cover;
        background-position: center;
    }

    .olympic-step .olympic-step-number {
        background: #444E65;
        color: #fff;
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    .olympic-step .olympic-step-icon {
        width: 174px;
        position: absolute;
        right: -6px;
        bottom: -12px;
    }
    .olympic-step .olympic-step-text {
        font-size: 18px;
        margin: 31px 20px 0 10px;
        flex-grow: 1;
        width: 148px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon {
        width: 174px;
        position: absolute;
        right: -8px;
        bottom: -12px;
    }
    .olympic-step .olympic-step-text2 {
        font-size: 18px;
        margin: 30px 20px 0 10px;
        flex-grow: 1;
        width: 196px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon2 {
        width: 103px;
        position: absolute;
        right: 30px;
        bottom: 10px;
    }
    .olympic-step .olympic-step-text3 {
        font-size: 18px;
        margin: 47px 20px 0 10px;
        flex-grow: 1;
        width: 177px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step-icon3 {
        width: 109px;
        position: absolute;
        right: 8px;
        bottom: 11px;
    }
    .bonus-step .bonus-step-number {
        background: #DDC2FF;
        color: #240D57;
        font-size: 18px;
        width: 32px;
        height: 32px;
    }   
    .bonus-step {
        height: 90px;
    }
    .bonus-step .bonus-step-icon {
        width: 160px;
    }
    .bonus-step .bonus-step-text {
        font-size: 18px;
        margin: 46px 20px 0 10px;
        flex-grow: 1;
        width: 211px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-icon2 {
        width: 140px;
        position: absolute;
        right: 14px;
        bottom: 0px;
    }
    .bonus-step .bonus-step-text2 {
        font-size: 18px;
        margin: 46px 20px 0 10px;
        flex-grow: 1;
        width: 177px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-text3 {
        font-size: 18px;
        margin: 46px 20px 0 10px;
        flex-grow: 1;
        width: 184px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-bet-section h2 {
        font-size: 28px;
    }
    .olympic-raffle-text p {
        font-size: 32px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 8px;
        position: relative;
        z-index: 2;
        color: white;
        margin-bottom: 0px;
        margin-top: 10px;
        margin-left: 30px;
    }
    .olympic-raffle-text p2 {
        font-size: 32px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 8px;
        position: relative;
        z-index: 2;
        color: white;
        margin-bottom: 0px;
        margin-top: 10px;
    }
    .bonus-points-section {
        background: url('../img/bg2.png') no-repeat center center;
        background-size: cover;
        padding: 30px 20px;
        text-align: center;
        color: white;
    }
    .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: 900px;
        flex-direction: column;
    }
}
@media (max-width: 1020px) {
    .participation-content {
        min-width: 620px;
    }
}




@media (max-width: 1000px) {
    .hero .hero-content {
        max-width: 50%;
        margin-left: 60px;
        z-index: 1;
    }
    .hero::after {
        content: url(../img/img.png);
        position: absolute;
        right: 0;
        bottom: 0;
        width: 164px;
        max-width: 26%;
        z-index: 3;
        margin-right: 315px;
        margin-bottom: 21px;
    }
    .hero h1 {
        font-size: 60px;
        line-height: 75px;
        margin: 0;
        font-weight: 900;
    }
    .hero .hero-btn {
        width: 200px;
        height: 68px;
        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: 24px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 20px;
    }
    
   
    .highlight-text .line1, .highlight-text .line2 {
        position: relative;
        padding: 12px 35px;
        display: inline-block;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 18px;
        text-transform: uppercase;
        transform: rotate(0deg);
        margin-bottom: -1px;
        text-align: center;
    }
    .highlight-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 133px;
        rotate: -7deg;
        margin-right: 50px;
        /* width: 400px; */
        z-index: 4;
    } 
    .bonus .line {
        height: 83px;
        
        background-size: cover;
        width: 370px;
        margin-left: -60px;
        margin-right: -60px;
    }
    .bonus-section h2 {
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: -10px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
    }
    .bonus .bonus-amount {
        font-size: 32px;
        margin: 0 20px;
        font-weight: 900;
    }
    .step {
        padding: 10px;
        height: 56px;
    }
    .step .step-number {
        background: #DDC2FF;
        font-size: 14px;
        width: 22px;
        height: 22px;
        left: 15px;
    }
    .step .step-text {
        font-size: 14px;
        margin: 26px 20px 0 10px;
        flex-grow: 1;
        width: 160px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step-icon {
        width: 73px;
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    .step-icon2 {
        width: 77px;
        position: absolute;
        right: 10px;
        bottom: 0px;
    }
    .step .step-text2 {
        font-size: 14px;
        margin: 26px 20px 0 10px;
        flex-grow: 1;
        width: 147px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step .step-text3 {
        font-size: 14px;
        margin: 26px 20px 0 10px;
        flex-grow: 1;
        width: 157px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step {  
        height: 55px;
    }
    .olympic-steps {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    .olympic-step .olympic-step-number {
        background: #444E65;
        color: #fff;
        font-size: 14px;
        width: 22px;
        height: 22px;
        left: 15px;
    }
    .olympic-step .olympic-step-text {
        font-size: 14px;
        margin: 16px 20px 0 0px;
        flex-grow: 1;
        width: 147px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon {
        width: 123px;
        position: absolute;
        right: -8px;
        bottom: -12px;
    }
    .olympic-step .olympic-step-text2 {
        font-size: 14px;
        margin: 15px 20px 0 0px;
        flex-grow: 1;
        width: 146px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon2 {
        width: 75px;
        position: absolute;
        right: 21px;
        bottom: 10px;
    }
    .olympic-step .olympic-step-text3 {
        font-size: 14px;
        margin: 33px 20px 0 0px;
        flex-grow: 1;
        width: 161px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step-icon3 {
        width: 72px;
        position: absolute;
        right: 8px;
        bottom: 11px;
    }

    .olympic-raffle-text p {
        font-size: 22px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 8px;
        position: relative;
        z-index: 2;
        color: white;
        margin-bottom: 0px;
        margin-top: 10px;
        margin-left: 20px;
    }
    .olympic-raffle-text p2 {
        font-size: 22px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        padding: 10px 20px;
        border-radius: 8px;
        position: relative;
        z-index: 2;
        color: white;
        margin-bottom: 0px;
        margin-top: 10px;
    }

    .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: 18px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: 'Roboto', sans-serif;
        margin-top: 20px;
    }
    .bonus-step {
        height: 55px;
    }
    .bonus-step .bonus-step-icon {
        width: 112px;
    }
    .bonus-step .bonus-step-number {
        background: #DDC2FF;
        color: #240D57;
        font-size: 14px;
        width: 22px;
        height: 22px;
        left: 15px;
    }
    .bonus-step .bonus-step-text {
        font-size: 14px;
        margin: 33px 20px 0 0px;
        flex-grow: 1;
        width: 166px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-text2 {
        font-size: 14px;
        margin: 32px 20px 0 0px;
        flex-grow: 1;
        width: 139px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-icon2 {
        width: 109px;
        position: absolute;
        right: 8px;
        bottom: 0px;
    }
    .bonus-step .bonus-step-text3 {
        font-size: 14px;
        margin: 16px 20px 0 0px;
        flex-grow: 1;
        width: 128px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-points-section h2 {
        font-size: 28px; 
    }
    .bonus-more-btn {
        width: 200px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(246.4deg, #4B08E7 0%, #8847F5 23.45%, #671CE6 42.48%, #5A17C8 84.96%);
        padding: 160px 0 100px 0;
        position: relative;
        overflow: hidden;
        color: white;
        text-align: left;
        height: 224px;
    }
    .hero h1 {
        font-size: 56px;
        line-height: 61px;
        font-weight: 900;
        margin-left: -150px;
        margin-top: -55px;
        width: 255px;
    }
    .highlight-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 55px;
        rotate: -7deg;
        margin-right: 0px;
        z-index: 4;
    }
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }
    .hero::after {
        content: url(../img/mobh.png);
        position: absolute;
        right: 0;
        bottom: 0;
        width: 161px;
        max-width: 25%;
        z-index: 3;
        margin-right: 278px;
        margin-bottom: 0px;
    }
    .hero .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        flex-direction: column;
    }
    .hero .hero-btn {
        display: none;
    }
    .participation-section {
        display: none;
    }
    
    .participation-section-mobile {
        display: block;
    }
    .participation-content {
        min-width: 320px;
        width: 320px;
        margin: auto;
    }
    .bonus-section {
        background: url(../img/bg1.png) no-repeat center center;
        background-size: cover;
        padding: 0px 20px 30px;
        text-align: center;
        color: white;
    }
    .step .step-number {
        background: #DDC2FF;
        font-size: 14px;
        width: 32px;
        height: 32px;
        left: 15px;
    }
    .steps {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }
    .step.step_banner {
        background: linear-gradient(260.2deg, #811DFF 21.9%, #6000DA 99.3%);
        width: 320px;
        height: 100px;
        z-index: 2;
    }
    .step.step_banner_center {
        background: linear-gradient(260.2deg, #811DFF 21.9%, #6000DA 99.3%);
        width: 320px;
        height: 100px;
        z-index: 1;
    }
    .step.step_banner_last {
        background: linear-gradient(260.2deg, #811DFF 21.9%, #6000DA 99.3%);
        width: 320px;
        height: 100px;
        z-index: 0;
    }
    .step .step-text {
        font-size: 18px;
        margin: 56px 20px 0 10px;
        flex-grow: 1;
        width: 160px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step-icon {
        width: 150px;
        position: absolute;
        right: 10px;
        bottom: 5px;
    }
    .step .step-text2 {
        font-size: 18px;
        margin: 56px 20px 0 10px;
        flex-grow: 1;
        width: 147px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .step-icon2 {
        width: 145px;
        position: absolute;
        right: 10px;
        bottom: 0px;
    }
    .step .step-text3 {
        font-size: 18px;
        margin: 56px 20px 0 10px;
        flex-grow: 1;
        width: 157px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus .line {
        content: url('../img/linemob.png');
        height: 26px;
        background-size: cover;
        width: 150px;
        margin-left: -30px;
        margin-right: -30px;
    }
    .bonus-section h2 {
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 5px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
    }


    .olympic-steps {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }
    .olympic-step.olympic-step_banner {
        background: linear-gradient(135deg, #1C2539 0%, #141C2F 52.5%, #1C2539 100%);
        width: 320px;
        height: 100px;
        z-index: 2;
    }
    .olympic-step.olympic-step_banner_center {
        background: linear-gradient(135deg, #1C2539 0%, #141C2F 52.5%, #1C2539 100%);
        width: 320px;
        height: 100px;
        z-index: 1;
    }
    .olympic-step.olympic-step_banner_last {
        background: linear-gradient(135deg, #1C2539 0%, #141C2F 52.5%, #1C2539 100%);
        width: 320px;
        height: 100px;
        z-index: 0;
    }
    .olympic-step .olympic-step-number {
        background: #444E65;
        color: #fff;
        font-size: 14px;
        width: 32px;
        height: 32px;
        left: 15px;
    }
    .olympic-step .olympic-step-text {
        font-size: 18px;
        margin: 34px 20px 0 0px;
        flex-grow: 1;
        width: 173px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon {
        width: 188px;
        position: absolute;
        right: -8px;
        bottom: -12px;
    }
    .olympic-step .olympic-step-text2 {
        font-size: 18px;
        margin: 34px 20px 0 0px;
        flex-grow: 1;
        width: 180px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step .olympic-step-icon2 {
        width: 118px;
        position: absolute;
        right: 21px;
        bottom: 10px;
    }
    .olympic-step .olympic-step-text3 {
        font-size: 18px;
        margin: 56px 20px 0 0px;
        flex-grow: 1;
        width: 177px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olympic-step-icon3 {
        width: 120px;
        position: absolute;
        right: 8px;
        bottom: 11px;
    }
    .olympic-raffle-text p {
        font-size: 21px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        padding: 5px 10px;
        border-radius: 8px;
        position: relative;
        z-index: 2;
        color: white;
        margin-bottom: 0px;
        margin-top: 10px;
        margin-left: 22px;
        rotate: -3deg;
    }
    .olympic-bet-section h2 {
        font-size: 24px;
    }
    .olympic-raffle-text p2 {
        font-size: 21px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        padding: 5px 10px;
        border-radius: 8px;
        position: relative;
        z-index: 2;
        color: white;
        margin-bottom: 0px;
        margin-top: 10px;
        rotate: -3deg;
    }
    .olympic-bet-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/xxl.png), url(../img/towm.png), url(../img/xxr.png), url(../img/homm.png);
        background-position: top 30px left 0px, bottom 0px left 20px, top 75px right 70px, bottom 0px right 0px;
        background-repeat: no-repeat;
        z-index: 1;
        opacity: 0.5;
    }
    .bonus-steps {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }

    .bonus-step.bonus-step_banner {
        background: linear-gradient(260.2deg, #811DFF 21.9%, #6000DA 99.3%);
        width: 320px;
        height: 100px;
        z-index: 2;
    }

    .bonus-step.bonus-step_banner_center {
        background: linear-gradient(260.2deg, #811DFF 21.9%, #6000DA 99.3%);
        width: 320px;
        height: 100px;
        z-index: 1;
    }
    .bonus-step.bonus-step_banner_last {
        background: linear-gradient(260.2deg, #811DFF 21.9%, #6000DA 99.3%);
        width: 320px;
        height: 100px;
        z-index: 0;
    }
    .bonus-step .bonus-step-number {
        background: #DDC2FF;
        color: #240D57;
        font-size: 14px;
        width: 32px;
        height: 32px;
        left: 15px;
    }
    .bonus-step .bonus-step-icon {
        width: 210px;
    }
    .bonus-step .bonus-step-icon2 {
        width: 179px;
    }
    .bonus-step .bonus-step-text {
        font-size: 18px;
        margin: 56px 20px 0 0px;
        flex-grow: 1;
        width: 166px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .bonus-step .bonus-step-text2 {
        font-size: 18px;
        margin: 56px 20px 0 0px;
        flex-grow: 1;
        width: 139px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }

    .bonus-step .bonus-step-text3 {
        font-size: 18px;
        margin: 33px 20px 0 0px;
        flex-grow: 1;
        width: 153px;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
    }
    .olimp-logo{
        display: none;
    }
    footer {
        padding: 0 10px;
    }     

}

@media (max-width: 520px) {
    
    .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;
    }
    .participation-card1 {
        width: 175px; 
    }
    .header .container {
        padding: 0 10px;
    }
}

@media (max-width: 375px) {
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 0 10px;
        position: relative;
    }
    .header .join-btn {
        width: 120px;
        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;
    }
    .bonus .line {
        content: url('../img/linemob.png');
        height: 26px;
        background-size: cover;
        width: 130px;
        margin-left: -30px;
        margin-right: -30px;
    }
    .olympic-step {
        padding: 10px;
    }
    .bonus-step {
        padding: 10px;
    }
    .participation-section-mobile .participation-content {
        padding: 10px;  
    }
}