
/* reboot */

* {
    box-sizing: border-box;
 }
 
 body,
 ol,
 ul {
    margin: 0;
    padding: 0;
 }
 
 ul,
 ol {
    list-style: none;
 }
 
 a {
    color: inherit;
    text-decoration: none;
    display: block;
 }
 
 span {
    display: inline-block;
 }
 
 a,
 button,
 input {
    font-family: inherit;
    outline: none;
    transition: 0.5s ease;
    border: none;
    background-color: transparent;
 }
 
 a,
 button {
    cursor: pointer;
 }
 
 /* styles */
 
 body {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: #ffffff;
    background: #0E0D0D;
}
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p {
    padding: 0;
    margin: 0;
 }
 
 .container {
    margin: 0 auto;
 }
 

/* header */

.header {
    z-index: 3;
    width: 100%;
}
.container {
    width: 945px;
}
.nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 28px 0px;
}

.img_logo {
    width: 153px;
    height: auto;
}

.menu__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 372px;
    font-size: 16px;
    color: #4B4337;
    font-weight: 500;
}

.active{
    color: #FF9500;
}

/* offer */

.offer {
    margin: 25px 0 55px;
}

.offer__container {
    display: flex;
    justify-content: space-between;
}

.purchase{
    width: 557px;
}

.additionally{
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
    width:372px ;
    gap: 17px;
}

.additionally .additionally__general{
    width:372px ;
    background: rgba(35, 30, 22, 20%);
    border-radius: 8px;
}

.choice-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* form */

.donate_text{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 24px;
}

.form-container {
    background: rgba(35, 30, 22, 20%);
    border-radius: 8px;
    padding: 32px 63px 32px 64px;  
}

.donate_text h2 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.form-container input[type="text"] {
    margin-top: 24px;
    width: 100%;
    padding: 15.5px 17px;
    font-size: 16px;
    font-weight: normal;
    border-radius: 16px;
    outline: none;
    transition: background 0.3s ease;
    background:rgba(35, 30, 22, 20%) ;
    color: rgba(255, 255, 255, 40%);
}

.form-container input[type="text"].error {
    background: rgba(255, 0, 4, 20%);
}

.form-container .error-message {
    color: rgba(255, 255, 255, 40%);
    font-size: 16px;
    font-weight: normal;
    margin-top: 8px;
    display: none;
}

.form-input:-webkit-autofill {
    background-color: rgba(255, 0, 4, 20%) !important;
    color: rgba(255, 255, 255, 40%) !important; 
    transition: background-color 5000s ease-in-out 0s; 
} 

.privilege-button {
    margin-top: 24px;
    text-align: center;
    padding: 15.5px 0px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #FF9500;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-shadow: 
    0 15px 29.8px rgba(255, 149, 0, 20%),  
    inset -2px -2px 4px rgba(0, 0, 0, 25%),
    inset 5px 5px 4px rgba(255, 255, 255, 25%); 
}

/* manual */

.manual{
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 32px 0px 32px 64px;
}
.adaptiv-block{
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 32px 0px 32px 29px;
}

.manual_text{
    width: 175px;
    text-align: left;
}

.manual_text h1{
    font-size: 32px;
    font-weight:500;
    line-height: 1em;
}

.manual_text span{
    margin-top: 4px;
    color: rgba(255, 255, 255, 40%);
    font-size: 16px;
    font-weight: normal;
}

.link_info{
    margin-top: 24px;
    line-height: 1em;
    width: 145px;
    padding: 10px 26.5px 10.5px;
    text-align: center;
    color: #FF9500;
    background-color: rgba(255, 149, 0, 20%);
    border-radius: 9px;
}

.manual_img{
    width: 218px;
    height: 144px;
    margin-right: -30%;
    margin-top: 5%;
}

/* monitoring */

.monitoring{
    height: auto;
    padding: 32px 64px;
}

.monitoring_text{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.monitoring_text h2{
    font-size: 20px;
    color: #ffffff;
    font-weight: normal;
}

.monitoring_text img{
    width: 24px;
    height: 24px;
}

.monitoring_info{
    margin-top: 24px;   
}

.monitoring_info h1{
    font-size: 32px;
    font-weight:500;
}

.monitoring_players{
    display: flex;
    justify-content: start;
    align-items: flex-end;
    gap: 8px;
    margin-top: 5px;
}
.lang{
    display: flex;
    justify-content: center;
    width: 100%;
}
.lang button{
    color: white;
}
.monitoring_players span{
    font-size: 24px;
    font-weight: normal;
}

.players_img {
    margin-bottom: -2px;
    width: 40px;
    height: 40px;
}

/* version */

.version {
    height: auto;
    padding: 32px 64px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.version_text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.span_vers{
    color: #4B4337;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 3.2px;
}

.span_ru{
    font-size: 26px;
    color: #ffffff;
    font-weight: 500;
}

.colon{
    color:#4B4337 ;
    font-size: 26px;
    font-weight: 500;
}

.version_button{
    display: flex;
    justify-content: space-between;
}
.button_game{
    text-align: center;
    padding: 16px 27px 17.5px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #FF9500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 
    0 15px 29.8px rgba(255, 149, 0, 20%),   
    inset -2px -2px 4px rgba(0, 0, 0, 25%), 
    inset 5px 5px 4px rgba(255, 255, 255, 25%);
}
.button_vers{
    padding: 17px 16px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    background-color:  rgba(255, 149, 0, 3%);
    transition: background-color 0.3s ease;
    box-shadow: 
    0 15px 29.8px rgba(255, 149, 0, 20%),   
    inset -2px -2px 4px rgba(0, 0, 0, 8%), 
    inset 2px 2px 4px rgba(255, 255, 255, 8%); 
}

/* last */

.last{
    height: auto;
    padding: 32px 0 31px 64px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 24px;
}
.last {
    position: relative; 
  }
  
  .last::after {
    content: ''; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 182px; 
    background: linear-gradient(to bottom, rgba(18, 16, 14,0%), rgba(18, 16, 14, 100%)); 
    border-radius: 0px 0px 8px 8px;
  }

.last_text {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.last_text h2{
    font-size: 20px;
    color: #ffffff;
    font-weight: normal;
}

.last_text img{
    width: 24px;
    height: 24px;
}

.last_players{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 17px;
}

.players{
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.players_img{
    width: 48px;
    height: 48px;
}

.players_text{
    margin-left: 10px;
}

.players_text h2{
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.players_text_time{
    margin-top: 4px;
    display: flex;
    justify-content: start;
    gap: 8px;
}

.players_text_time span{
    font-size: 16px;
    color: rgba(255, 255, 255, 40%);
    font-weight:  normal;
}

.last-button{
    padding: 3px 10px 4px;
    color: #FF9500;
    border-radius: 2px;
    font-weight: 500;
    font-size: 13px;
    background-color: rgba(255, 149, 0, 3%);
}

/* Product selection */
.product-selection {
    display: none;
}

.product-selection.active{
    position: relative;
    background: rgba(35, 30, 22, 20%);
    border-radius: 8px;
    padding: 32px 63px 32px 64px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 18px;
}

.discount{
    position: absolute;
    top: 5px;
    right: -13px;
    padding: 6px 11px 8px 11px;
    background-color: #FF9500;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    border-radius: 12px;
    transform: rotate(12.8deg);
    box-shadow: 0px 9px 25.8px rgba(255, 149, 0, 21%); 
}

.signature{
    width: 430px;
    padding: 4px 0px 4px 17px;
}

.signature-title{
    color: #4B4337;
    font-weight: normal;
    font-size: 16px;
}

.product-block{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 6px;
    margin-top: 6px;
}

.product-content{
    height: auto;
    width: 430px;
    background-color:rgba(35, 30, 22, 20%) ;
    padding: 15.5px 17px 16px;
    border-radius: 16px;
}

.content-visible {
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.content-visible-main{
    display: flex;
    justify-content:start;
    align-items: center;
    gap: 10px;
}

.content-title {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.content-price{
    font-size: 16px;
    color: #FF9500;
    font-weight: normal;
}

.arrow-cont{
    transform: rotate(135deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255, 255, 255, 40%);
    border-left: 2px solid rgba(255, 255, 255, 40%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-cont.rotated {
    transform: rotate(225deg);
}


.content-hidden{
    display: none;
    margin-top: 10px;
}

.content-hidden.active{
    display: block;
}

.content-main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.content-limit{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 8px 18px;
    background-color: rgba(35, 30, 22, 20%);
    border-radius: 16px;
    font-size: 14px;
    font-weight: normal;
}

.choose-time{
    display: flex;
    justify-content: start;
    gap: 16px;
}
.choose-date{
    color: #ffffff;
}
.time{
    color: #4B4337;
    border: none;
}

.active-time{
    color: #FF9500;
}

.content-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-main{
    font-size: 14px;
    color: rgba(255, 255, 255, 65%);
    line-height: 1.2em;
}

.text-info{
    font-size: 10px;
    color: rgba(255, 255, 255, 65%);
    line-height: 1.2em;
}

.content-cost{
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgba(35, 30, 22, 20%);
    padding: 6.5px 18px;
    border-radius: 16px;
}

.cost-result{
    display: flex;
    justify-content: start;
    gap: 5px;
    font-size: 14px;
    font-weight: normal;
}
.price-title{
    color: #ffffff;
}
.cost-price{
    color: #FF9500;
}

.percent{
    color: rgba(255, 255, 255, 40%);
}

.cost{
    padding: 2.5px 11.5px 4px 11.5px;
    background-color: #FF9500;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 
    0 15px 29.8px rgba(255, 149, 0, 20%),  
    inset -2px -2px 4px rgba(0, 0, 0, 25%), 
    inset 5px 5px 4px rgba(255, 255, 255, 25%); 
}
.cost:disabled{
    background-color: #0E0D0D;
}

#selected-product{
    display: none;
}

.selected-product {
    margin-top: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px 0px 15px 17px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 16px;
    transition: background 0.3s ease;
    background:rgba(35, 30, 22, 20%) ;
    color: #ffffff;
}

.choice-png {
    width: 16px;
    height: 16px;
}

/* Support dropdown */
.support-dropdown {
    position: relative;
}

.support-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(35, 30, 22, 95%);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.support-dropdown:hover .support-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.support-option:hover {
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
}

.support-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Arrow indicator */
.support-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(35, 30, 22, 95%);
}

/* footer */

.footer {
    margin-bottom: 32px;
}

.bak-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main_footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.logo_footer{
    position: relative;
    text-transform: uppercase;
    background: linear-gradient(to bottom, white, rgba(255, 149, 0, 0)); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.logo_footer::before{
    content: '';
    position: absolute;
    top: 10%; 
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.5), rgba(255, 149, 0, 0) 70%);
    z-index: -1; 
    filter: blur(17px); 
    border-radius: 20%;
}

.main_footer_link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 315px;
}

.techsupport{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    color: #FF9500;
}

.group_vk{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    color: #4B4337;
}

.footer-line{
    display: block;
    width: 100%;
    height: 1px;
    background: #4B4337;
    margin: 14px 0px;
    opacity: 40%;
}

.contact-list{
    display: flex;
    justify-content: space-between;
}

.contact-list__cont{
    color: #4B4337;
    font-size: 13px;
}

.cont_link{
    text-decoration: underline;
}

.paymant-list{
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

/* адаптив */

.manual-adaptiv{
    display: none;
}
.logo-adaptiv{
    display: none;
    font-size: 32px;
}

.span-adaptiv{
    color: #FF9500;
    position: relative;
    z-index: 1;
}
.span-adaptiv::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 149, 0, 0.35);
    top: 10%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    filter: blur(20px);
    border-radius: 10px;
    z-index: -1;
}
.logo_footer_adaptiv{
    font-size: 16px;
}
.logo_footer_adaptiv span::before{
    filter: blur(10px);
}

@media(max-width:1024px){
  .container{
    overflow: hidden;
    width: 900px;
  }
  .manual_img{
    overflow: hidden;
    width: 200px;
    margin-right: -20%;
}
  .nav {
    padding: 28px 20px;
  }
  .offer__container {
    justify-content: space-around;
  }
  .purchase{
    width: 500px;
  }
  .main_footer{
    justify-content: space-around;
  }
  .contact-list{
    justify-content: space-around;
  }
  .paymant-list{
    justify-content: space-around;
  }
  .main_footer{
    padding-top: 55px;
  }
  .offer{
    margin: 25px 0px 0px;
  }
 
}
@media(max-width:945px){
    .container{
        width: 768px;
        overflow: hidden;
    }
    .offer{
        padding: 0px 5px;
    }
    .offer__container {
        justify-content: start;
        gap: 5px;
    }
    .contact-list {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .purchase{
        width: 407px;
      }
      .form-container {
        padding: 32px 0px 32px 29px;
      }
      #registration-form{
        width: 303px;
      }
      .manual{
        padding:32px 0px 32px 29px ;
      }
      .additionally{
        width: 342px;
      }
      .additionally .additionally__general{
        width: 342px;
      }
      .monitoring {
        padding: 32px 29px;
      }
      .version{
        padding: 32px 29px;
      }
      .version_text{
        display: block;
      }
      .span_ru {
        margin: 12px 0px;
      }
      .last{
        padding: 32px 29px;
      }
      .version_button {
        justify-content: start;
        gap: 7px;
      }
      .product-selection.active{
        padding: 32px 29px;
      }
      .signature{
        width: auto;
      }
      .product-content{
        width: 350px;
      }
      .content-limit{
        flex-direction: column;
        align-items: start;
        justify-content: start;
      }
      .choose-date{
        margin-left: 5px;
      }
}

@media(max-width:768px){
    .container{
      width: 460px;
    }
    .logo{
        display: none;
    }
    .logo-adaptiv{
        display: block;
        text-align: center;
        padding-top: 54px;
        padding-bottom: 54px;
    }
    .img_logo{
        height: auto;
        width: 306px;
    }
    .nav{
        background-color: rgba(35, 30, 22, 20%);
        justify-content: center;
        border-radius: 16px;
    }
    .nav {
        margin:20px 15px 0px;
        backdrop-filter: blur(7px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000; /* Чтобы он был поверх остальных элементов */
        padding: 28px 20px;
    }
    .logo_footer_adaptiv{
       padding: 68px 0px 0px;
    }
    .main_footer{
        padding-top:14px ;
    }
    .offer{
        margin: 0;
    }
    .manual-adaptiv{
        display: block;
        background: rgba(35, 30, 22, 20%);
        border-radius: 8px;
    }
    .manual_img{
        width: 218px;
        margin-right: 0;
    }
    .manual{
        display: none;
    }
    body{
        margin-top: 80px;
    }
    .offer__container{
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .purchase{
        width: 437px;
    }
    #registration-form {
        width: 383px;
    }
    .product-content {
        width: 383px;
    }
    .additionally .additionally__general{
        width: 437px;
    }
    .additionally{
        width: 437px;
    }
    .choice-container{
        gap: 14px;
    }
    .button_game{
        width: 242px;
    }
}
@media(max-width:460px){
    .container{
        width:425px ;
    }
    .menu__list{
        font-size: 13px;
        justify-content: center;
        gap: 14px;
        width: 100%;
    }
    .nav{
        padding: 19px 29px;
    }
    .purchase{
        width: 400px;
    }
    #registration-form {
        width: 350px;
    }
    .product-content {
        width: 350px;
    }
    .additionally .additionally__general{
        width: 400px;
    }
    .additionally{
        width: 400px;
    }
    .manual_img{
        width: 218px;
        margin-right: -10%;
    }
    body{
        margin-top: 60px;
    }
    .discount{
        display: none;
    }
    .support-dropdown-menu {
        min-width: 180px;
        padding: 6px;
    }
    .support-option {
        padding: 10px 12px;
        font-size: 13px;
    }
}
@media(max-width:425px){
    .container{
        width: 375px;
    }
    .purchase{
        width: 363px;
    }
    #registration-form {
        width: 303px;
    }
    .product-content {
        width: 303px;
    }
    .additionally .additionally__general{
        width: 363px;
    }
    .additionally{
        width: 363px;
    }
    .manual_img{
        margin-right: -20%;
    }
    .content-cost{
        padding: 6.5px 13px;
    }
    .support-dropdown-menu {
        min-width: 160px;
        padding: 4px;
    }
    .support-option {
        padding: 8px 10px;
        font-size: 12px;
        gap: 8px;
    }
    .support-option svg {
        width: 16px;
        height: 16px;
    }

}