@font-face {font-family: "Mont-Bold"; src: url("../fonts/Montserrat-Bold.ttf") format("truetype");}
@font-face {font-family: "Mont-Regular"; src: url("../fonts/Montserrat-Regular.ttf") format("truetype");}
@font-face {font-family: "Mont-Medium"; src: url("../fonts/Montserrat-Medium.ttf") format("truetype");}
@font-face {font-family: "Mont-Semi-Bold"; src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");}
@font-face {font-family: "Mont-light"; src: url("../fonts/Montserrat-light.ttf") format("truetype");}
@font-face {font-family: "Mont-thin"; src: url("../fonts/Montserrat-Thin.ttf") format("truetype");}
@font-face {font-family: "Poppins-Medium"; src: url("../fonts/Poppins-Medium.ttf") format("truetype");}

section{overflow: hidden;}

body{width: 100%;display: flex; flex-direction: column; 
    /* background: linear-gradient(to bottom, #202020 0%, #000000 100%); */
    background: #0F0F0F;
    align-items: center;}
*{margin: 0; padding: 0;}
a { text-decoration: none; } 

input{border: none;}
textarea{border: none;}

header{
    width: 60%;
    /* border: 1px solid red; */
    height: fit-content;
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    min-width: 1160px;
    z-index: 1000;
}

.burger{
    display: none;
    display: flex;
    height: fit-content;
    flex-direction: column;
    align-items: end;
    width: fit-content;
    gap: 10px;
    /* background: red; */
    margin-left: auto;
    display: none;
}

.burger-big{
    width: 53px;
    height: 4px;
    background: white;
    border-radius: 20px;
}

.burger-small{
    width: 38px;
    height: 4px;
    background: white;
    border-radius: 20px;
}

.header-logo{
    width: 6%;
    aspect-ratio: 77/86;
}

.header-logo-text{
    width: fit-content;
    font-family: "Mont-Light";
    font-size: 16px;
    color: white;
    margin-left: 3%;
    display: none;
}

.nav-menu{
    /* width: 70%; */
    width: 60%;
    aspect-ratio: 697/50;
    background: linear-gradient(-45deg, #000000 10%, rgba(96, 96, 96, 0.21) 100%);
    border-radius: 318px;
    border: 1px solid rgba(113, 113, 113, 0.5);
    margin-left: auto;
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 4%;
    /* gap: 1%; */
}

.nav-btn{
    width: fit-content;
    font-family: "Mont-Regular";
    font-size: 16px;
    text-decoration: none;
    color: white;
    /* border: 1px solid red; */
    padding: 1% 3%;
    border-radius: 20px;
    background: transparent;
    transition: color 0.5s ease, background 10s ease;
}

.nav-btn.active, .nav-btn:hover{
    background: linear-gradient(135deg, #FF5D04 0%, #FF9E68 100%);
    color: black;
}

.hide-menu{
    width: 60%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hide-menu.show{
    transform: translateX(0%);
}

.close-menu-btn{
    width: fit-content;
    height: fit-content;
    /* aspect-ratio: 1/1; */
    margin-left: auto;
    margin-right: 5%;
    color: white;
    background: transparent;
    border: none;
    font-size: 5vw;
}

.menu-text{
    margin-left: 10%;
    margin-top: 15%;
    margin-bottom: 10%;
    font-family: "Mont-Bold";
    font-size: 10vw;
}

.hide-menu a{
    margin-left: 10%;
    color: white;
    font-family: "Mont-Medium";
    font-size: 5vw;
    margin-bottom: 5%;
}

.first-screen{
    width: 100%;
    height: 100vh;
    /* background: green; */
    overflow: hidden;
    position: relative;
}

.field-img.mobile{display: none;}
.field-img{position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);}

.mobile{
    display: none;
}

.adv-1{
    width: 49%;
    aspect-ratio: 941/127;
    position: absolute;
    right: 0;
    top: 10%;
    background: #484848;
    border-radius: 56px 0 0 56px;
}

.adv-2{
    width: 17%;
    aspect-ratio: 336/505;
    position: absolute;
    left: 0;
    bottom: 5%;
    border-radius: 0px 40px 40px 0;
    background: #484848;
    min-width: 300px;
}

.main-content{
    width: 65%;
    /* border: 1px solid red; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1196px;
    aspect-ratio: 1136/711;
}

.proft-text{
    color: white;
    font-family: "Mont-Bold";
    font-size: clamp(138px, calc(9.2vw - 0.5rem), 140px);
    position: absolute;
    bottom: 65%;
    /* top: 0; */
    left: 0%;
    width: 100%;
    display: flex;
    justify-content: center;
    word-spacing: 10vw;
    background: linear-gradient(to right, #FFFFFF 0%, #C9C9C9 20%, #FFFFFF 30%, #C9C9C9 100%); /* Градиент от красного к синему */
    -webkit-background-clip: text; /* Обрезаем фон по тексту */
    -webkit-text-fill-color: transparent; /* Делаем текст "прозрачным", показывается фон */
}

.big-bear{
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(15%);
    z-index: 10;
}

.main-text-container{
    width: 38%;
    /* border: 1px solid yellow; */
    position: absolute;
    right: 0;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    color: white;
    z-index: 15;
    gap: 21px;
}

.main-big-text{
    font-size: 38px;
    font-family: "Mont-Semi-Bold";
}

.main-small-text{
    font-size: 22px;
    font-family: "Mont-Light";
}

.main-open-bot{
    width: 30%;
    aspect-ratio: 242/61;
    border: none;
    border-radius: 10px 30px 30px 10px;
    background: #FF5D04;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    font-family: "Mont-Medium";
    min-width: 200px;
}

.second-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 900px; */
    position: relative;
    overflow: hidden;
    background: #0F0F0F;
}

.news-day-text{
    width: 60%;
    color: white;
    font-size: 30px;
    font-family: "Mont-Bold";
    position: relative;
    margin-top: 120px;
    min-width: 1160px;
    /* background: #0F0F0F; */
}

.orange-background{
    width: 50%;
    aspect-ratio: 630/737;
    background: radial-gradient(circle at center, #FF5D04, transparent);
    border-radius: 50%;
    filter: blur(20px);
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-45deg) translate(0, -60%);
}

.orange{
    width: 50%; 
    /* height: 865.97px; */
    aspect-ratio: 923/865; 
    transform: rotate(-67deg); 
    transform-origin: top left; 
    background: #FF5D04; 
    box-shadow: 500px 500px 500px; 
    border-radius: 9999px; 
    filter: blur(250px);
    position: absolute;
    top: 10%;
    left: -40%;
}

.statistic-line{
    width: 60%;
    min-width: 1160px;
    display: flex;
    justify-content: center;
    /* border: 1px solid red; */
    gap: 40px;
    margin-top: 100px;
}

.statistic-line-mobile{
    width: 100%;
    /* min-width: 1160px; */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
    gap: 40px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.statistic-content-string{
    display: flex;
    gap: 40px;
    justify-content: center;
}


.statistic-content{
    /* border: 1px solid green; */
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
}

.statistic-content-name{
    color: #FFFFFF;
    font-family: "Mont-Semi-Bold";
    font-size: 92px;
}

.statistic-content-text{
    color: #FF5D04;
    font-family: "Mont-Light";
    font-size: 26px;
}

.gray-line{
    width: 80%;
    min-width: 1160px;
    border: 1px solid rgba(255,255,255, 0.2);
    margin-top: 80px;
    margin-bottom: 80px;
}

.last-article{
    width: 80%;
    min-width: 1440px;
    /* background: red; */
    aspect-ratio: 1920/500;
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 500px;
    /* border: 1px solid green; */
    position: relative;
    overflow: hidden;
    
}

.last-article-img{
    /* width: 1920px; */
    /* height: 500px; */
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.last-article-img-mobile{
    width: 100%;
    height: auto;
}

.last-article-img-mobile-container{
    width: 100%;
    height: fit-content;
    display: none;
}

.article-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 1) 100%);
    display: none;
    z-index: 1;
}

.last-article-mask{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.last-article-content{
    width: 60%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    position: relative;
    color: white;
    gap: 30px;
    padding-bottom: 2%;
    min-width: 1160px;
    z-index: 2;
}

.last-article-content-name, .last-article-content-text{
    width: 70%;
}

.last-article-content-name{
    font-family: "Mont-Semi-Bold";
    font-size: 52px;
}

.last-article-content-text{
    font-family: "Mont-Light";
    font-size: 22px;
}



.last-article-content-btn-div{
    width: 100%;
    display: flex;
    
}

.last-article-content-btn-div-author{
    width: 70%;
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 30px;
}

.last-article-content-btn-div-btn{
    width: 25%;
    aspect-ratio: 286/61;
    display: none;
    background: rgba(255, 93, 4, 1);
    border-radius: 10px 30px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    font-size: 16px;
    font-family: "Mont-Regular";
    max-width: 286px;
    margin-left: auto;
}

.author-content{display: flex; flex-direction: column; gap: 7px;}

.article-category{
    color: rgba(104, 104, 104, 1);
    font-family: "Mont-Light";
}

.article-category-content{
    font-family: "Mont-Light";
}


.article-grid{
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 28px;
    margin-top: 70px;
    min-width: 1160px;
    position: relative;
    margin-bottom: 100px;
}

.article-grid-item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}

.article-grid-item img{
    width: 100%;
    aspect-ratio: 360/233;
}

.article-grid-item-name{
    color: white;
    font-family: "Mont-Semi-Bold";
    font-size: clamp(15px, calc(1.25vw + 5px), 16px);
    /* font-size: 16px; */
}

.article-grid-item-theme{
    font-family: "Mont-thin";
    color: white;
    font-size: clamp(15px, calc(1.25vw + 5px), 16px);
    /* font-size: 16px; */
}

.article-grid-item-btn{
    width: 80%;
    aspect-ratio: 286/61;
    border: none;
    background: rgba(255, 93, 4, 1);
    border-radius: 10px 30px 30px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Mont-Regular";
    font-size: clamp(11px, calc(1.25vw + 5px), 16px);
    /* font-size: 16px; */
    max-width: 251px;
}

.form-screen{
    width: 100%;
    aspect-ratio: 1920/750;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 740px;
}

.form-screen-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.form-screen-content{
    width: 60%;
    aspect-ratio: 1142/622;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    position: relative;
    text-align: start;
    gap: 5%;
    z-index: 1;
    min-width: 1160px;
}

.form-screen-content-text{
    width: 48%;
    display: flex;
    flex-direction: column;
    /* border: 1px solid blue; */
    color: white;
    font-size: 22px;
    /* gap: 10px; */
}

.form-screen-content-text-string{
    display: flex;
    /* margin-left:5%; */
    font-family: "Mont-Regular";
    color: #A2A2A2;
    width: 80%;
}

.input-string{
    display: flex;
    justify-content: space-between;
    width: 88%;
    aspect-ratio: 449/50;
    border-radius: 30px;
    margin-bottom: 20px;
}

.input-string-input{
    width: 45%;
    height: 100%;
    border: none;
    border-radius: 30px;
    background: rgba(240, 240, 240, 1);
    margin-top: 20px;
    text-indent: 18px;
}

.form-screen-content-form{
    width: 44%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid rgb(211, 209, 212); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(101.75, 101.75, 101.75, 0.24) 25%, #FF5D04 80%);
    border-radius: 30px;
    color: white;
    
}

.form-screen-content-text-main{
    font-size: 30px;
    font-family: "Mont-Bold";
    margin-bottom: 10%;
    margin-top: 10%;
}

.form-screen-content-text-name{
    font-family: "Mont-Bold";
}

.form-screen-content-form-name{
    font-family: "Mont-Bold";
    font-size: 30px;
    text-align: center;
    margin-top: 10%;
}

.small-input{
    width: 88%;
    aspect-ratio: 449/50;
    border-radius: 30px;
    background: rgba(240, 240, 240, 1);
    margin-top: 20px;
    text-indent: 18px;
    border: none;
}

.big-input {
    width: 80%;
    aspect-ratio: 449/136;
    border-radius: 30px;
    background: rgba(240, 240, 240, 1);
    padding: 15px 18px; /* лучше использовать padding вместо text-indent */
    text-align: left;
    resize: none; /* если это textarea */
    overflow: hidden; /* скрыть scroll, если текст выходит за границы */
    margin-top: 20px;
}

.big-input::placeholder {
    white-space: normal;
    word-wrap: break-word;
    color: #999; /* если нужно изменить цвет плейсхолдера */
    opacity: 1; /* для Firefox */
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
}

.confirm-access{
    display: flex;
    margin-top: 20px;
}

.confirm-btn{
    width: 40%;
    aspect-ratio: 286/61;
    background: #FF5D04;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    font-family: "Mont-Regular";
    border: none;
    border-radius: 10px 30px 30px 10px;
    margin-top: 20px;
}

.confirm-btn:hover{background: #E65200;}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 10px;
  /* border: 1px solid green; */
}

.real-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  appearance: none;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 5%;
  aspect-ratio: 1/1;
  min-width: 20px;
  /* height: 20px; */
  background: #fff;
  /* border: 2px solid #ccc; */
  border-radius: 4px;
  transition: all 0.3s;
}

.real-checkbox:checked + .custom-checkbox {
  background: #FF5D04;
  border-color: #FF5D04;
}

.real-checkbox:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 15px;
  color: white;
  font-family: "Mont-Light";
}

.form-screen-white-head{
    width: 45%;
    aspect-ratio: 857/440;
    position: absolute;
    bottom: 0;
    /* right: 0%; */
    /* min-width: 879px; */
    transform: translateY(15%);
    z-index: -1;
}

.form-screen-container{
    width: 60%;
    min-width: 1160px;
    /* border: 2px solid red; */
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.form-screen-white-head-new{
    width: 45%;
    aspect-ratio: 857/440;
    position: absolute;
    bottom: 0;
    /* right: 0%; */
    min-width: 879px;
    z-index: 1;
    right: -12%;
}

.form-screen-content-text-new{
    width: 47.5%;
    /* border: 1px solid green; */
    height: 100%;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-screen-content-form-container{
    width: 47.5%;
    /* border: 1px solid green; */
    height: 100%;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-screen-content-form-content{
    width: 100%;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(101.75, 101.75, 101.75, 0.24) 15%, #FF5D04 40%); */
    border-radius: 30px;
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    color: white;
    z-index: 1;
    position: relative;
}

.form-screen-content-text-new-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.form-screen-white{
    /* width: 100%; */
    min-width: 879px;
    position: absolute;
    bottom: 0px;
}

.section-2{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    background: #0F0F0F;
}


.main-content-bet{
    width: 60%;
    min-width: 824px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid blue; */
    gap: 5px;
}

.all-bet-div{
    width: 100%;
    min-width: 1160px;
}

.bet-diller-div{
    width: 100%;
    aspect-ratio: 1160/121;
    display: grid;
    grid-template-columns: 12% 8% 15% 17% 8% 17% 10%;
    justify-content: center;
    align-items: center;
    /* background: rgba(33, 33, 33, 1); */
    background: rgba(33, 33, 33, 1);
    border-radius: 12px;
    position: relative;
    z-index: 10;
    justify-content: center;
    gap: clamp(10px, calc(1.8vw - 8px), 20px);
}

.bet-logo{
    width: 100%;
    aspect-ratio: 138/32;
}

.raiting-bet-div{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;

}

.raiting-bet-div img{
    width: 25%;
    aspect-ratio: 24/21;
}

.bonus-bet-div{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;
}

.bonus-bet-div img{
    width: 33%;
    aspect-ratio: 1/1;
}

.depozit-bet-div{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;
}

.depozit-bet-div img{
    width: 16%;
    aspect-ratio: 1/1;
}
.message-bet-div{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;
}

.message-bet-div img{
    width: 30%;
    aspect-ratio: 24/23;
}

.start-bet-game{
    width: 100%;
    aspect-ratio: 194/55;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 12px 36px 36px 12px;
    background: #FF5D04;
    color: white;
    font-family: "Mont-Bold";
    font-size: clamp(15px, calc(1.25vw + 5px), 21px);
    font-size: 21px;
}

.open-bet-info{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* gap: 5px; */
    /* border: 1px solid red; */
    /* width: fit-content; */
    /* width: 30%; */
}

.open-bet-info-btn{
    width: 36%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    min-width: 30px;
    border: 1px solid #FF5D04;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin-left: 10px;
}

.open-bet-info-btn img{
    width: 29%;
    aspect-ratio: 8/13;
}

.raiting-bet-div-name{
    color: white;
    font-family: "Mont-Regular";
    font-size: clamp(10px, calc(1.25vw + 5px), 14px);
    /* font-size: 14px; */
}

.raiting-bet-div-text{
    color: white;
    font-family: "Mont-Bold";
    font-size: clamp(10px, calc(1.25vw + 5px), 14px);
    /* font-size: 14px; */
}

.open-bet-info-btn:hover{background: transparent; border: 1px solid #E65200; cursor: pointer;}

.bet-info-div{
    width: 100%;
    background: #2C2C2C;
    margin-top: -2%;
    border-radius: 0 0 8px 8px;
    position: relative;
    z-index: 9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s ease;
    margin-bottom: 3vh;
    /* border: 1px solid red; */
}

.main-info{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* gap: 10px; */
}

.info-string{
    border-bottom: 1px solid rgba(152, 152, 154, 1);
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding-bottom: 5px;
}

.low-text{
    color: rgba(152, 152, 154, 1);
    font-family: "Mont-Regular";
    font-size: clamp(11px, calc(1.25vw + 5px), 16px);
    /* font-size: 16px; */
}

.info-data{
    margin-left: auto;
    color: white;
    font-family: "Mont-Semi-Bold";
    font-size: clamp(11px, calc(1.25vw + 5px), 16px);
    /* font-size: 16px; */
}

.info-data img{
    width: 100%;
}

.main-info-yes, .main-info-no{
    display: flex;
    flex-direction: column;
    gap: 5%;
}

.main-info-text{
    display: flex;
    align-items: center;
}

.main-info-text-big{
    margin-left: 10px;
    color: white;
    font-family: "Mont-Bold";
    font-size: clamp(15px, calc(1.25vw + 5px), 22px);
    /* font-size: 22px; */
}

.info-grid{
    width: 100%;
    display: grid;
    grid-template-columns: 36% 22% 22%;
    gap: 5%;
    justify-content: center;
    padding-top: 5%;
}

.info-grid-string{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5%;
    padding-bottom: 10px;
    /* border: 1px solid red; */
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
}

.info-grid-string-div{
    display: flex;
    align-items: center;
}

.mark-bar{
    width: 70%;
    aspect-ratio: 742/6;
    border-radius: 24px;
    background: #5B5B5B;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    margin-left: auto;
}

.mark{
    height: 100%;
    background: #FF5D04;

}

.mark-text{
    margin-left: 3%;
}

.bet-info-div.open {
  max-height: 1200px; /* выбрать значение с запасом */
}

.open-bet-info-btn img {
  transition: transform 0.3s ease;
}

.open-bet-info-btn.rotated img {
  transform: rotate(180deg);
}

.end-bet-info{
    width: 90%;
    /* border: 1px solid red; */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.end-bet-info-app{
    /* width: 30%; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.end-bet-info-app-content{display: flex; align-items: center; color: white;}

.end-bet-info-app-content-phone{font-size: 24px; font-family: "Mont-Bold";}

.end-bet-info-app-content-error{font-size: 16px; font-family: "Mont-Regular"; margin-left: 20%;}

.end-bet-info-app-content-error-count{font-size: 16px; font-family: "Mont-Bold";}

.end-bet-info-promo{display: flex; flex-direction: column; position: relative; color: white; margin-left: auto; margin-right: 10%;}

.end-bet-info-promo-title{font-size: 32px; font-family: "Mont-Regular";}
.end-bet-info-promo-content{font-size: 32px; font-family: "Mont-Bold";}

.end-bet-info-promo img{width: 10%; position: absolute; top: 0; right: 0;}

.end-bet-info-btn{width: 23%; aspect-ratio: 228/56; background: transparent; border: 1px solid #FF5D04; border-radius: 12px 36px 36px 12px; 
    display: flex; justify-content: center; align-items: center; font-size: 21px; font-family: "Mont-Regular"; color: white;}

.end-bet-info-btn:hover{background: transparent;}

.end-bet-info-app-line{height: 100px; border: 1px solid white; margin-left: auto;}

.end-bet-info-app-content-phone{font-size: 24px;}
.end-bet-info-app-content-error{font-size: 16px;}
.end-bet-info-app-content-error-count{font-size: 16px;}
.end-bet-info-promo-title{font-size: 32px;}
.end-bet-info-promo-content{font-size: 32px;}
.end-bet-info-btn{font-size: 21px;}

.end-bet-info-app-content-line{display: none;}




.plus-minus-div{
    width: 90%;
    border-radius: 24px;
    background: #464646;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    margin-top: 75px;
    /* margin-bottom: 35px; */
}

.plus-div{
    display: flex;
    
    /* border: 1px solid red; */
    width: 45%;
}

.plus-div.content{
    flex: 1;
    /* background: orange; */
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    gap: 15px;
}

.plus-div.string{
    width: 100%;
    display: flex;

}

.plus-div.point{
    color: white;
    font-family: "Mont-Regular";
    /* font-size: clamp(15px, 1.6vw + 1px, 22px); */
    width: fit-content;
    
}

.plus-div.name{
    width: fit-content;
    color: white;
    font-family: "Mont-Bold";
    font-size: clamp(15px, 1.6vw + 1px, 22px);
    /* font-size: 22px; */
    margin-left: 0px;
}

.plus-div.text{
    flex: 1;
    color: white;
    font-family: "Mont-Regular";
    font-size: clamp(11px, 1.2vw + 0.5px, 16px);
    margin-left: 10px;
    
}

.plus-div.line{
    width: 0px;
    border: 1px solid #BABABA;
}

.total-div{
    width: 90%;
    height: fit-content;
    margin: 0 auto;
    /* border: 1px solid red; */
    /* margin-bottom: 35px; */
    display: flex;
    justify-content: center;
    /* border: 1px solid red; */
}

.total-div-content{
    /* border: 1px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.total-div-content.big-text{
    color: white;
    font-family: "Mont-Bold";
    font-size: clamp(17px, calc(1.25vw + 5px), 24px);
    gap: 10%;
    display: flex;
    /* border: 1px solid red; */
    width: fit-content;
}

.total-div-content.big-text img{
    width: 15%;
    aspect-ratio: 1/1;
}

.total-div-content.small-text{
    color: white;
    font-family: "Mont-Regular";
    font-size: clamp(11px, calc(1.25vw + 5px), 16px);
    display: flex;
}

.big-text-volume{
    font-family: "Mont-Bold";
    
}

.total-div-content-line{
    height: 100px;
    border: 1px solid #BABABA;
}

.total-div-app{
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid green; */
    gap: 4.5vw;
}

.total-div-app.up{
    flex: 1;
    display: flex;
    justify-content: center;
}

.total-div-app.down{
    width: fit-content;

}

.total-div-content.promo{
    flex-direction: column;
    position: relative;
    text-align: left;
    align-items: start;
    color: white;
    font-size: clamp(22px, calc(1.25vw + 5px), 32px);
}

.total-div-content.promo img{
    position: absolute;
    top: 0;
    right: 0;
}

.promo-name{
    font-family: "Mont-Regular";
}

.promo-text{
    font-family: "Mont-Bold";
}

.end-bet-info-block{display: none;}







.end-screen{
    width: 100%;
    background: linear-gradient(to bottom, #E6E6E6 0%, #E6E6E6 40%, #0F0F0F 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid red; */
    overflow: hidden;
}

.end-screen-main-name{
    font-size: 52px;
    font-family: "Mont-Bold";
    width: 50%;
    text-align: center;
    min-width: 1000px;
    margin-top: 60px;
    z-index: 1;
}

.end-screen-main-content.mobile{display: none;}

.end-screen-main-content{
    width: 60%;
    min-width: 1160px;
    /* border: 1px solid red; */
    aspect-ratio: 1160/672;
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
    z-index: 4;
    position: relative;
}

.phone-and-text-photo{height: 100%; position: relative; z-index: 5;}
.phone-and-text{position: relative; z-index: 5;}



.phone-and-text-text{
    display: flex;
    flex-direction: column;
    color: black;
    width: 80%;
    margin-left: auto;
    /* border: 1px solid red; */
    z-index: 10;
    position: relative;
}

.phone-and-text-text-name{
    font-family: "Mont-Bold";
    font-size: 32px;
}

.phone-and-text-text-string{
    display: flex;
    margin-left:5%;
    font-family: "Mont-Regular";
    font-size: 22px;
    margin-bottom: 5px;
}

.phone-and-text-text-sub{
    font-family: "Mont-Regular";
    font-size: 22px;
}

.phone-and-text-text-sub-end{
    font-family: "Mont-Bold";
    font-size: 25px;
}

.bot-btn{
    width: 38%;
    aspect-ratio: 286/61;
    background: #FF5D04;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: "Mont-Regular";
    border: none;
    border-radius: 10px 30px 30px 10px;
    color: white;
    box-shadow: 18px 37px 44px rgba(0, 0, 0, 0.61);
}

button:hover{background: #E65200;cursor: pointer;}

.form-screen-content-form-ls{display: none;}

.end-text-block{
    width: 80%;
    background: linear-gradient(135deg, #393939 5%, #000000 100%);
    position: relative;
    z-index: 1;
    border-radius: 13px;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-bottom: 50px;
    padding-top: 50px;
    min-width: 1160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 10;
    height: fit-content;
}

.mobile-empty{display: none;}

.end-text-block-name{
    width: 100%;
    text-align: center;
    font-family: "Mont-Bold";
    font-size: 58px;
}

.end-text-block-sub{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Mont-Regular";
    font-size: 28px;
    text-align: center;
    position: relative;
    gap: 5%;
}

.end-text-block-sub-text{
    width: 60%;
    height: fit-content;
}

.end-text-block-sub-img{
    width: 5%;
    aspect-ratio: 1/1;
    position: relative;
    /* border: 1px solid red; */
}

.end-text-block-sub-img img{
    width: 100%;
    height: 100%;
}

.form-mobile{
    display: none;
}

.circle-div{
    width: 886px;
    aspect-ratio: 886/1070;
    /* border: 1px solid red; */
    position: absolute;
    top: 0;
    left: 0;
    /* bottom: 0; */
    min-width: 886px;
    transform: translate(-55%, -10%);
    z-index: 1;
}

.circle{
     background: linear-gradient(151deg, #FF5D04 0%, #451710 100%);
     width: 100%;
     aspect-ratio: 1/1;
     border-radius: 60%;
     position: absolute;
     bottom: 0;
}

.circle-text{
    font-size: 113px;
    font-family: "Mont-Bold";
    color: rgba(0, 0, 0, 0.05);
    transform: rotate(-90deg) translateX(-45%);
    position: absolute;
    top: 0;
    left: 0;
}

.end-bet-info-promo{
    cursor: pointer;
}













footer{
    /* margin-top: 60px; */
    width: 100%;
    display: flex;
    /* height: 400px; */
    justify-content: center;
}

.footer-div{
    /* border: 1px solid green; */
    width: 60%;
    min-width: 1160px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.footer-menu {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-bottom: 31px;
}

.footer-menu-row {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-menu a {
    color: rgba(239, 239, 239, 1);
    font-size: 15px;
    font-family: "Mont-Regular";
    text-decoration: none;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 10% 1fr;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 125px;
    /* border: 1px solid red; */
    margin-top: 31px;
    margin-bottom: 31px;
}

.footer-info-mobile{
    display: none;
}

.footer-info-content{
    /* border: 1px solid orange; */
    position: absolute;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-family: "Mont-Regular";
    color: white;
    height: fit-content;
}

.footer-info-content.start{left: 0;opacity: 0.75;}
.footer-info-content.center{left: 50%;transform: translateX(-50%);width: 9%;}
.footer-info-content.end{right: 0;}

.end-text-block-name.mbl{display: none;}


@media (max-width: 1440px){
    header{width: 80%;min-width: 824px;}
    .nav-btn{font-size: clamp(11px, 1.0vw + 0.01px, 16px);}
    .header-logo-text{font-size: clamp(11px, 1.0vw + 0.01px, 16px);}

    .adv-2{min-width: 213px; width: 20%;}
    .main-content{min-width: 850px; width: 83%;}
    .proft-text{font-size: clamp(95px, calc(9.2vw - 0.5rem), 138px);}

    .main-big-text{font-size: clamp(28px, calc(2.2vw - 0.5rem), 38px);}

    .main-small-text{font-size: clamp(16px, calc(1.2vw - 0.5rem), 22px);}

    .main-text-container{gap: 10px; bottom: 5%;}
    .main-open-bot{margin-top: 0px;}

    .last-article{width: 100%; min-width: auto;}
    .last-article-content-name{font-size: clamp(37px, 2.5vw + 10px, 52px);  width: 80%;}
    .last-article-content-text{font-size: clamp(16px, 1.4vw + 5px, 22px);  width: 80%;}
    .last-article-content{width: 80%; min-width: 824px;}
    .last-article-content-btn-div-btn{min-width: 200px;}

    .statistic-content-name{font-size: clamp(65px, 2vw + 1px, 92px);}
    .statistic-content-text{font-size: clamp(18px, 2vw + 1px, 26px);}
    .statistic-line{gap: 10%;}
    .statistic-content{width: fit-content;}

    .article-grid{width: 80%; min-width: 824px; font-size: clamp(15px, 1vw + 1px, 16px);}
    .news-day-text{width: 80%; min-width: 824px;}

    .all-bet-div{width: 80%; min-width: 824px; width: 100%;}
    .main-content-bet{width: 80%; min-width: 824px;}

    .form-screen{align-items: start;}
    .form-screen-content{min-width: 812px; width: 85%; align-items: center;}
    .form-screen-content-text-main{font-size: clamp(22px, 2vw + 1px, 30px);}
    /* .form-screen-content-text-name{font-size: clamp(16px, 2vw + 1px, 22px);} */
    /* .form-screen-content-text-string{font-size: clamp(16px, 2vw + 1px, 22px);} */
    .form-screen-content-form{height: 100%; padding-bottom: 20px;}
    .form-screen-content-form-name{font-size: clamp(22px, 2vw + 1px, 30px);}
    .checkbox-text{font-size: clamp(10px, 1vw + 1px, 15px);}
    
    .end-text-block-sub{gap: 1%;}
    .end-text-block-name{font-size: clamp(34px, calc(4.58vw - 22px), 58px);}
    .end-text-block-sub{font-size: clamp(22px, calc(1.25vw + 5px), 28px);}
    .end-text-block{min-width: 750px; width: 80%;}

    .end-screen-main-content{min-width: 834px;width: 80%;}
    .end-screen-main-name{font-size: clamp(37px, 2vw + 1px, 52px); min-width: 700px;}
    .phone-and-text-text-name{font-size: clamp(23px, 2vw + 1px, 32px);}
    .phone-and-text-text-string{font-size: clamp(16px, 1.5vw + 1px, 22px);}
    .phone-and-text-text-sub{font-size: clamp(16px, 1.5vw + 1px, 22px);}
    .phone-and-text-text-sub-end{font-size: clamp(18px, 1.6vw + 1px, 25px);}

    .circle-div{width: 630px; min-width: 630px;}
    .circle-text{font-size: 80px;}

    .form-screen-white-head{min-width: auto; transform: translateX(50%);}

    .form-screen-container{min-width: 812px; width: 80%;}
    .form-screen-content-text-new{font-size: 16px;}

    .end-bet-info-app-content-phone{font-size: 17px;}
    .end-bet-info-app-content-error{font-size: 11px;}
    .end-bet-info-app-content-error-count{font-size: 11px;}
    .end-bet-info-promo-title{font-size: 22px;}
    .end-bet-info-promo-content{font-size: 22px;}
    .end-bet-info-btn{font-size: 15px;}

    .footer-div{width: 80%;min-width: 824px;}
    .footer-info{font-size: clamp(9px, 1.2vw + 0.5px, 14px);}
    .footer-menu{font-size: clamp(11px, 1vw + 3px, 15px);}


    .footer-div{width: 80%;min-width: 824px;}
    .footer-info{font-size: clamp(9px, 1.2vw + 0.5px, 14px);}
    .footer-menu{font-size: clamp(11px, 1vw + 3px, 15px);}
}

@media (max-width: 1100px){
    .form-screen{align-items: center;}
    
}

@media (max-width: 900px){
    header{margin-top: 30px; min-width: 320px;}
    .header-logo{width: 21%;}
    .header-logo-text{display: none;}
    .nav-menu{display: none;}
    .burger{display: flex;}

    .first-screen{aspect-ratio: 768/805;}
    .field-img.mobile{display: flex; transform: translateX(-30%);}
    .comp{display: none;}

    .mobile{display: flex;}
    .main{width: 80%; position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; color: white; gap: 40px;}

    .main-big-text{font-size: 38px;}

    .main-small-text{font-size: 22px;}
    .main-open-bot{width: 50%; min-width: 350px; aspect-ratio: 350/60;}

    .last-article{width: 100%; aspect-ratio: 768/990;}
    .last-article-img{width: 100%; height: 100%;}
    .last-article-content-btn-div{flex-direction: column; gap: 30px;}
    .last-article-content-btn-div-btn{margin-left: 0; width: 42%;}
    .last-article-content{width: 85%;margin-left: 5%; min-width: 356px; gap: 41px; padding-bottom: 10%;}
    .last-article-content-name{font-size: 48px;}
    .last-article-content-text{font-size: 20px;}
    .article-category{font-size: 14px; color: white;}
    .article-category-content{font-size: 14px;}
    .last-article-mask{display: none;}
    .article-overlay{display: flex;}

    .orange{display: none;}
    /* .statistic-line{flex-direction: column; align-items: center; gap: 20px; padding-bottom: 40px;} */
    .statistic-line{display: none;}
    .statistic-line-mobile{display: flex;}
    .gray-line{display: none;}
    .statistic-content-name{font-size: 92px;}
    .statistic-content-text{font-size: 30px;}

    .article-grid{grid-template-columns: repeat(2, 1fr);min-width: 640px;}
    .article-grid-item-name{font-size: 18px;}
    .article-grid-item-theme{font-size: 12px;}
    .article-grid-item-btn{font-size: 16px;}

    .all-bet-div{width: 80%; min-width: 640px; width: 100%;}
    .main-content-bet{width: 80%; min-width: 640px;}

    .news-day-text{width: 80%; min-width: 640px;}

    .bet-logo{
        margin-left: 5%;
    }

    .main-content-bet{width: 80%; min-width: 310px;}
    .info-grid {grid-template-columns: 1fr 1fr;width: 80%;}
    .main-info {grid-column: 1 / -1;}
    .main-info-yes {grid-column: 1;}
    .main-info-no {grid-column: 2;}
    .bet-info-div{display: flex;flex-direction: column;align-items: center;}
    .info-grid-string{width: 80%;}
    .mark-bar{width: 51%;}
    .message-bet-div{display: none;}
    .bet-diller-div{grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));}
    .article-grid-item-btn{background: rgba(255, 93, 4, 1); width: 90%; font-size: clamp(11px, calc(-2.1vw + 32px), 16px);}
    .plus-minus-div{width: 100%;border-radius: 0%; flex-direction: column;}
    .plus-div{ width: 100%; flex-direction: column;}
    .plus-div.string{flex-direction: row;}
    .plus-div.point{margin-left: 0px;}
    .plus-div.line{width: 85%; margin-left: auto; margin-right: auto;}
    .plus-div{width: 85%; margin-left: auto; margin-right: auto;}
    .plus-div.content{gap: 2px;}
    .total-div{flex-direction: column;}
    /* .total-div-app.down{flex-direction: column;} */
    .total-div-content-line{display: none;}
    .total-div-app.up{padding-bottom: 30px; padding-top: 30px;}
    .total-div-app.down{width: 100%; justify-content: end; padding-top: 30px; padding-bottom: 30px; border-top: 1px solid rgba(255, 93, 4, 0.5); height: fit-content;}
    .razdel-line{display: flex; height: 70px;}
    .total-div-content.big-text{width: 50%; gap: 10px;}
    .bonus-bet-div{display: none;}

    .form-screen-img{opacity: 0;}
    .form-screen{aspect-ratio: auto;}
    .form-screen-content{width: 80%;flex-direction: column; aspect-ratio: auto; height: fit-content;}
    .form-screen-content-text{width: 80%;}
    /* .form-screen-content-text-main{font-size: 48px;} */
    /* .form-screen-content-text-name{font-size: 22px;} */
    /* .form-screen-content-text-string{font-size: 22px;} */
    .form-screen-content-form{width: 80%; margin-bottom: 50px;}
    .form-screen-white-head{width: 80%;left: 50%;transform: translateX(-50%);}
    /* .form-screen-content-form-name{font-size: 30px; width: 70%;} */

    .end-text-block{width:85%;}
    .end-text-block-sub{flex-direction: column; gap: 30px;}
    .end-text-block-sub-text{width: 90%;}
    .end-text-block-sub-img{width: 10%; min-width: 51px;}



    .end-screen-main-name{
        width: 76%;
        font-size: clamp(24px, 5vw + 1px, 32px);
        text-align: left;
        min-width: 310px;
    }

    .end-screen-main-content.comp{display: none;}
    .end-screen-main-content.mobile{display: flex; flex-direction: column; justify-content: center; width: 100%; aspect-ratio: auto; min-width: auto; margin-top: 50px;}
    .phone-and-text-text{margin-left: auto; margin-right: auto; min-width: 310px; width: 76%; aspect-ratio: none;}
    .phone-and-text-text-name{font-size: clamp(18px, 2vw + 1px, 24px); font-family: "Mont-Semi-Bold";}
    .phone-and-text-text-string{font-size: 20px; margin-bottom: 30px; font-family: "Mont-Semi-Bold";}
    .phone-and-text-text-sub{font-size: 20px; margin-bottom: 30px; font-family: "Mont-Semi-Bold";}
    .phone-and-text-text-sub-end{font-size: 30px; font-family: "Mont-Bold"; text-align: center;}    
    .phone-and-text-photo{margin-left: auto; margin-right: auto; width: 67%; min-width: 264px; margin-top: 30px; margin-bottom: 30px;}

    .bot-btn{width: 90%; aspect-ratio: 357/60; border-radius: 5px 35px 35px 5px; margin-left: auto; margin-right: auto;}

    .form-mobile{display: flex; width: 100%; justify-content: center;}
    /* .confirm-access{border: 1px solid red;} */
    /* .checkbox-label{border: 1px solid green;} */

    .circle-div{width: 100%; transform: translate(-50%, 0%); min-width: 500px; top: auto; bottom: 130px; left: 50%;}

    .form-screen-container{flex-direction: column; width: 80%; min-width: auto;}
    .form-screen-content-text-new{width: 100%; font-size: 22px; }
    .form-screen-content-form-container{width: 100%;}
    .form-screen-content-form-content{margin-bottom: 100px;}
    .form-screen-content-text-string{margin-bottom: 20px;}

    .circle-text{
        transform: rotate(-90deg) translateX(55%) translateY(200%);
        position: absolute;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
    }

    .end-bet-info-app-line{display: none;}
    .end-bet-info-promo{display: none;}
    .end-bet-info-btn{display: none;}
    .end-bet-info{flex-direction: column;}
    .end-bet-info-app{flex-direction: row;  width: 100%; justify-content: center; gap: 10%; border-bottom: 1px solid #FF5D04; padding-bottom: 30px;}
    .end-bet-info-app-content{gap: 10px;}
    .end-bet-info-app-content-error{margin-left: 0;}
    .end-bet-info-app-content-line{display: flex; height: 50px; border: 1px solid white;}
    .end-bet-info-block{display: flex; width: 100%; margin-top: 30px; display: flex; justify-content: space-between;}

    .end-bet-info-promo-mobile{display: flex; flex-direction: column; position: relative; color: white;}
    .end-bet-info-promo-title-mobile{font-size: 22px; font-family: "Mont-Regular";}
    .end-bet-info-promo-content-mobile{font-size: 22px; font-family: "Mont-Bold";}
    .end-bet-info-promo-mobile img{width: 10%; position: absolute; top: 0; right: 0;}
    .end-bet-info-btn-mobile{width: 40%; aspect-ratio: 228/56; background: transparent; border: 1px solid #FF5D04; border-radius: 12px 36px 36px 12px; 
    display: flex; justify-content: center; align-items: center; font-size: 15px; font-family: "Mont-Regular"; color: white;}

    




    .footer-div{min-width: 640px;}
    .footer-menu{flex-direction: column; font-size: 30px; margin-top: 28px;}
    footer{background: #101010;}
    .footer-info{display: none;}
    .footer-info-mobile{display: flex;height: fit-content;width: 100%;align-items: center;margin-bottom: 100px;margin-top: 21px;gap: 30px;}
    .footer-info-content-img{width: 142px;aspect-ratio: 142/159;}
    .footer-info-content-rekv{flex: 1;display: flex;flex-direction: column;justify-content: end;height: 100%;color: white;font-size: 15px;font-family: "Mont-Regular";margin-left: 20px;}
    .footer-info-content-prav{width: 35%;display: flex;flex-direction: column;justify-content: end;height: 100%;color: white;font-size: 15px;font-family: "Mont-Regular";margin-left: 30px;}
    .footer-info-content-prav span{width: fit-content;}
}

@media (max-width: 768px){
    header{min-width: 310px;}
    .header-logo{min-width: 70px;}
    .burger{min-width: 53px;}

    .first-screen{aspect-ratio: 390/502;}
    .field-img.mobile{display: flex; transform: translateX(-33%);}

    .main{width: 80%; bottom: 5%;}
    .main-open-bot{width: 42%; min-width: 250px; aspect-ratio: 357/60;}


    .last-article{width: 100%; height: fit-content; flex-direction: column;min-height: none; aspect-ratio: auto; min-width: 310px;}
    .last-article-img{display: none;}
    .last-article-content{width: 95%; min-width: 310px; background: rgba(15, 15, 15, 1); align-items: center;}
    .last-article-content-name{font-size: 48px; width: 90%;}
    .last-article-content-text{width: 90%;}

    .last-article{max-height: none; height: fit-content;}
    .last-article-img-mobile-container{display: flex; position: relative;}
    .last-article-content-btn-div-author{display: none;}
    .last-article-content-btn-div{width: 90%;}
    .last-article-content-btn-div-btn{width: 100%; min-width: 100px; aspect-ratio: 357/60;}
    .last-article-img-mobile-mask{position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 1) 70%);}

    .article-grid{grid-template-columns: repeat(1, 1fr); min-width: 310px;}
    .article-grid-item-btn{width: 100%; max-width: none; min-width: 310px; aspect-ratio: 355/65;}

    .all-bet-div{width: 80%; min-width: 310px; width: 100%;}
    .main-content-bet{width: 80%; min-width: 310px;}

    .news-day-text{min-width: 310px; font-size: 5vw;}

    .form-screen{aspect-ratio: auto; min-height: 200px;}
    .form-screen-content-text{display: none;}

    .end-text-block{min-width: 210px; width: 90%; aspect-ratio: none; padding: 20px 0 20px 0;}
    .end-div-content-div{width: 50%; min-width: 210px;}

    .statistic-content-name{font-size: 10vw}
    .statistic-content-text{font-size: 5vw}

    .end-text-block-name.mbl{display: flex; text-align: center; justify-content: center; margin-bottom: 10px;}
    .end-text-block-name.cmp{display: none;}
    

    .end-text-block-name{font-size: 5vw;}
    .end-text-block-sub{font-size: 4vw}
    .end-text-block-sub-img{width: 10vw; min-width: auto;}
    .form-screen-content{width: 100%; min-width: auto;}
    .bs{min-width: 310px;}
    /* .form-screen-content-form-ls{display: flex; width: 67%; flex-direction: column; border: 1px solid red; align-items: center; margin-bottom: 50px;} */

    .form-screen-content-form-name{font-size: 29px;}

    .small-input{width: 87%; aspect-ratio: 312/58; border: none;}

    .big-input{width: 78%; aspect-ratio: 312/158; border: none;}
    /* .checkbox-text{font-size: 14px;} */
    .confirm-btn{width: 93%; aspect-ratio: 334/70; font-size: 20px;}

    .end-screen-main-name{margin-top: 100px;}
    .form-screen-content-text-new{display: none;}

    .end-bet-info-block{flex-direction: column;}
    .end-bet-info-promo-mobile{width: fit-content;}
    .end-bet-info-btn-mobile{margin-top: 20px; width: 40%; min-width: 200px;}

    .input-string{width: 87%; aspect-ratio: 312/58}

    

    
    

    footer{min-width: 310px;}
    .footer-menu{min-width: 310px; width: 100%; font-size: 30px; margin-top: 28px;}
    .footer-menu-row{width: 100%; gap: 30px;}
    .footer-menu-row a {font-size: 25px;}
    .footer-div{min-width: 310px;}
    .footer-info{min-width: 310px; display: none;}
    .footer-menu-row.down{flex-direction: column; align-items: center; gap: 20px;}
    .footer-info-mobile{display: flex;height: fit-content;width: 100%;align-items: center;flex-direction: column;margin-bottom: 100px;margin-top: 21px;gap: 30px;}
    .footer-info-content-img{width: 142px;aspect-ratio: 142/159;}
    .footer-info-content-rekv{width: 100%;display: flex;flex-direction: column;justify-content: center;align-items: center;height: 100%;color: white;font-size: 15px;font-family: "Mont-Regular";}
    .footer-info-content-prav{width: 100%;display: flex;flex-direction: column;justify-content: center;height: 100%;color: white;font-size: 15px;font-family: "Mont-Regular";text-align: center;align-items: center;}
    .footer-info-content-prav span{width: fit-content;}
}

@media (max-width: 600px){
    .first-screen{aspect-ratio: 390/602;}
}
@media (max-width: 530px){
    .first-screen{aspect-ratio: 390/702;}
    .end-bet-info-app{flex-direction: column; gap: 20px;}
    .end-bet-info-app-content-line{display: none;}
}

@media (max-width: 450px){
    .first-screen{aspect-ratio: 390/802;}
}

@media (max-width: 400px){
    .first-screen{aspect-ratio: 390/900;}
    .checkbox-label{width: 70%; margin-left: auto; margin-right: auto;}
}

@media (max-width: 350px){
    .first-screen{aspect-ratio: 390/1000;}
}

@media (max-width: 1000px){
    .depozit-bet-div{display: none;}
    .bet-diller-div{grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));}
    .bet-diller-div{min-height: 82px;}
    .bet-logo{
        margin-left: 10%;
    }
    .open-bet-info-btn{width: 25%;}
    
}

@media (max-width: 550px){
    .raiting-bet-div{display: none;}
    .bet-diller-div{display: flex; gap: 5%;}
    .article-grid-item-btn{font-size: clamp(16px, 1.27vw + 11px, 20px);}
    .ball-article-img{width: 1365px; height: 426px;}
    .bet-logo{margin-right: 0; margin-left: 10px; width: 30%;}
    .start-bet-game{margin-right: 0; margin-left: 0; width: 30%; font-size: 4vw;}
    .open-bet-info{margin-right: 10px; margin-left: 0;}
}

@media (max-width: 500px){
    .article-grid.mobile{display: grid; min-width: 310px; grid-template-columns: repeat(1, 1fr);}
    .info-grid {grid-template-columns: 1fr; width: 90%; gap: 20px;}
    .main-info {grid-column: 1;}
    .main-info-yes {grid-column: 1;}
    .main-info-no {grid-column: 1;}
    .info-grid-string{margin-top: 40px;}
    .article-grid-item-btn{width: 100%;}
    .header-text{font-size: clamp(24px, 6.4vw, 32px);}
    .info-grid-string{width: 90%;}
    
}