* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    color: #f2ffff;
    background: linear-gradient(to bottom, transparent, #40505c), #262a2e;
    font-family: "Roboto", sans-serif;
}
.hidden{
    display: none;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.button {
    color: #fff;
    text-decoration: none;
    padding: 13px;
    border-radius: 25px;
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px;
    width: 100%;
    font-size: clamp(0.75rem, 1.2vw, 1rem); 
}

.login-btn {
    background: #79C003;
    transition: 0.3s ease;
    border: 1px solid #0d0d0d;
}

.register-btn {
background: #0d0d0d;
 border: 1px solid #b3ff7a;
 color:#b3ff7a ;
 transition: 0.3s ease;
 
}

.hero-section {
    position: relative;
    width: 100%;
}

.hero-img img {
   width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    left: 3.5%;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hero-content .register-btn {
    background: #0d0d0d;
    min-width: 30%;
    text-align: center;
    padding: 16px 40px;
    border-radius: 9px;
    border: 1px solid #fff;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow:
        0 0 15px rgba(212, 216, 209, 0.4),
        0 0 30px rgba(179,255,122,.25),
        0 0 50px rgba(179,255,122,.15);

}
.hero-content .register-btn:hover,
.login-btn:hover,
.register-btn:hover{
    box-shadow:
        0 0 35px rgba(212, 216, 209, 0.4),
        0 0 50px rgba(179,255,122,.25),
        0 0 70px rgba(179,255,122,.15);

    transform: translateY(-2px);
}


.hero-content p {
    margin-top: 12px;
    font-size: clamp(0.625rem, 1vw, 0.6875rem); 
    text-align: center;
    color: #fff;
    max-width: 380px;
}



@media (max-width: 768px) {
    .hero-content {
        left: 50%;
        top: auto;
        bottom: 5%;
        transform: translateX(-75%);
        width: 100%;
        padding: 0 20px;
    }

    .hero-content .register-btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-content p {
        max-width: 320px;
        font-size: clamp(0.5rem, 1vw, 0.625rem); 
    }

}

.steps-section {
    padding: 40px 20px;
}

.steps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 260px;
    width: 100%;
}

.step-number {
    font-size: clamp(2.5rem, 6vw, 4.375rem); 
    line-height: 1;
    font-weight: 700;
    color: #b3ff7a;
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem); 
    margin-bottom: 8px;
}

.step-content p {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem); 
    line-height: 1.5;
    color: #d7d7d7;
}
.step-content a{
    text-decoration: none;
    color: #b3ff7a;
}

.step-arrow {
    font-size: clamp(2rem, 5vw, 3.75rem); 
    color: #ffffff;
    opacity: 0.8;
}

.terms-link {
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 35px;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
}
.terms-modal{
    display: none;
}
.terms-modal.open{
    display: block;
}
.terms-modal{
    max-width: 1200px;
    padding: 15px;
    margin: 25px auto;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;

}
.bonus-table-section{
    padding: 40px 20px;
}

.table-wrapper{
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.bonus-table{
    width: 80%;
    margin:25px auto;
    border-collapse: collapse;
    background: #fff;
    color: #000;
}

.bonus-table th{
    background: #b3ff7a;
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding: 30px 10px;
    border: 1px solid #92d400;
    border-bottom: 4px solid #92d400;
}

.bonus-table td{
    padding: 10px 25px;
    font-size: 1.5rem;
    font-weight: 700;
    border: 1px solid #d9d9d9;
}

.bonus-title{
    width: 40%;
    line-height: 1.4;
    vertical-align: middle;
}

.bonus-table td:nth-child(2),
.bonus-table td:nth-child(3){
    width: 30%;
}
ul{
    padding-left: 20px;
}
.decimal li{
    list-style-type: decimal;
    
}
.list-style-none li{
    list-style: none;
}
@media (max-width: 768px){

    .bonus-table th{
        font-size: 1.2rem;
        padding: 25px 10px;
    }

    .bonus-table td{
        font-size: 1.1rem;
        padding: 20px 12px;
    }

    .bonus-title{
        min-width: 220px;
    }
    .steps-section .container {
        flex-direction: column;
        gap: 5px;
    }
.steps-section{
    padding: 20px 0;
}
    .step-arrow {
        display: none;
    }

    .step-item {
        background: #40464f;
        width: 90%;
        max-width: 768px;
        align-items: center;
        padding: 20px;
    }

    .step-number {
        font-size: clamp(2rem, 5vw, 3.125rem);
    }
}

.slide-title {
    text-align: center;
    padding-bottom: 0.75rem;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.slide-track img {
    width: 120px;
    height: auto;
    padding: 13px 26px;
    background: #fff;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 45px));
    }
}


.second-banner{
    padding: 3rem 0;
}

.second-banner .hero-content{
    left: 8.5%;
    top: 65%;
}
.second-banner .hero-content .register-btn{

    display: flex;
    align-items:center;
    gap: 15px;
}
.second-banner .hero-content a{
    text-decoration: none;
}
.footer {
    color: #fff;
    text-align: center;
    padding: 40px 20px 60px;
}

.footer-contact h2 {
    font-size: clamp(1rem, 2vw, .5rem); 
    margin-bottom: 30px;
}

.footer-contact a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.45rem, 1.8vw, 0.7rem);
    margin: 10px 0;
}



.footer-text {
    max-width: 1500px;
    margin: 20px auto;
    font-size: clamp(0.45rem, 1.8vw, 0.7rem); 
    line-height: 1.8;
}

.responsible-game {
    margin-top: 20px;
}

.responsible-game img {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: cover;
}


@media (max-width: 768px) {
    .footer {
        padding: 50px 20px;
    }

    .footer-contact h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .footer-contact a {
        font-size: clamp(0.875rem, 2vw, 1.125rem); 
    }

    .footer-text {
        font-size: clamp(0.75rem, 1.5vw, 0.9rem);
        line-height: 1.6;
    }

  
    .footer-partners img {
        max-width: 250px;
    }
     .second-banner .hero-content {
       top: 90%;
        left: 75%;
     }
     .second-banner .hero-content .register-btn{
        max-width: 1200px;
        justify-content: center;
     }
}
@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
    }
    .buttons{
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .button{
        width: 100%;
    }
     .hero-content{
        display: none;
     }
     .second-banner .hero-content{
        display: block;
     }

     
}
@media (min-width:1940px){
    .hero-content .register-btn{
        padding: 22px 60px;
    }
}