
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #0C0C0C;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

.Lending_Page {
    background-color: #0C0C0C;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Общие стили для лендинга и шрифты */


/* Ниже идут стили для Header */

.Header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
}

.Variants {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.Logo img {
    background-size: auto;
    background-repeat: no-repeat;
}

.iFantasy_Manager img {
    height: 30px;
}

.Games {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 25px;
}

.Dota {
    color: white;
    font-weight: 600;
}

.Counter-Strike, .PUBG {
    color: #494949;
    font-weight: 600;
}

.Nav_Links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-link {
    color: #494949;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.game-link::after {
    content: "Скоро";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #494949;
}

.game-link:hover {
    color: transparent;
}

.game-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.language-wrapper {
    position: relative;
}

.language-button {
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-button img {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.language-wrapper:hover .language-button img {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
}

.language-wrapper:hover .dropdown {
    display: flex;
}

.language-option {
    background: none;
    border: none;
    padding: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-Registration_Style,
.login-button_Style {
    padding: 8px 16px;
    border: 1px solid #636363;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 1s ease
}

.login-Registration_Style:hover,
.login-button_Style:hover {
    border-color: white;
}

/* Стили для Header кончились, далее идут стили для Main */

.Main {
    position: relative;
    height: 800px;
    margin-top: 80px;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 800px;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.carousel {
    position: absolute;
    width: 200%;
    height: 50%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.carousel-left {
    top: -5px;
    animation: move-left 40s linear infinite;
}

.carousel-right {
    bottom: -5px;
    animation: move-right 40s linear infinite;
}

@keyframes move-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes move-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.Main_Frame {
    position: relative;
    z-index: 2;
}

.Champion_Text .champion-line {
    font-family: 'Unbounded', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
}
.Champion_Text .predregistration_text {
    margin-top: 25px;
}

.Club_GenDir {
    margin-top: 30px;
    font-weight: 700;
    font-size: 20px;
}

.Button_Registration_Second {
    margin-top: 40px;
}

.register-button {
    background-color: #781BEE;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 12px 30px;
    border-radius: 25px;
    transition: 1s;
}

.register-button:hover {
    background-color: #8F3FF4;
}

/*Стили для Title_Prizes*/

.Title_Prizes {
    margin-top: 60px;
    text-align: center;
}

.Title_Prizes_Text {
    font-size: 35px;
    font-weight: bold;
}

/*Стили для More*/

.More {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.Cardholder {
    display: flex;
    justify-content: space-between;
    width: 90%;
    gap: 2%;
}

.Card {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.5s;
}

.Card:hover {
    box-shadow: 0 0 30px 10px #42305A;
}

.Card01 {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 90%), url('/images/Card01.png');
}

.Card02 {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 90%), url('/images/Card02.png');
}

.Card03 {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 90%), url('/images/Card03.png');
}

.Card04 {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 90%), url('/images/Card04.png');
}

.Number {
    position: relative;
    top: 5%;
    left: 5%;
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: auto;
}

.Text {
    position: relative;
    left: 5%;
    bottom: 15%;
}

.Caps {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.Small_Text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/*Стили для More кончились начинаются стили для Prizes */

.Prizes {
    height: 282px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Card_Prizes {
    width: 90%;
    height: 83%;
    display: flex;
    justify-content: space-between;
}

.Card_Kibersportsmen,
.Money_Prizes,
.Future {
    width: 29%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column-reverse;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.Card_Kibersportsmen {
    background-image: url('/images/Card_Prizes_Sportsments.png');
}

.Money_Prizes {
    background-image: url('/images/Card_Prizes_Money.png');
}

.Future {
    color: #494949;
    background-color: black;
}

/*Стили для Prizes кончились начинаются стили для Ready_now */

.Ready_now {
    position: relative;
    z-index: 0;
    height: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Ready_now::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 73%;
    background-image: url('/images/Elipse.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 45% center;
    z-index: 0;
    pointer-events: none;
    z-index: -1;
}

.Ready_yes {
    width: 100%;
    height: 89%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
}

.Star_Center {
    width: 6%;
    height: 14%;
    background-image: url('/images/Star_Center.png');
    position: relative;
    top: 6%;
    left: 47%;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out;
}

.Star_Left {
    width: 12%;
    height: 31%;
    background-image: url('/images/Star_Left.png');
    position: relative;
    top: 32%;
    left: 8%;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out;
}

.Star_Right {
    width: 16%;
    height: 41%;
    background-image: url('/images/Star_Right.png');
    position: relative;
    top: 42%;
    left: 64%;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out;
}

.Reg_Gift {
    width: 62%;
    position: absolute;
    left: 53%;
    transform: translateX(-50%);
    top: 25%;
}

.Gift-line {
    font-family: 'Unbounded', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.Registration_now_and {
    position: relative;
    left: 15%;
}

.Get_Starter_Kit {
    position: relative;
    left: 10%;
}

.Free_Cards {
    position: relative;
    left: 20%;
}


.Pos_Holder {
    width: 45%;
    height: 30%;
    position: relative;
    top: 56%;
    left: -5%;
    display: flex;
    justify-content: space-between;
    gap: 2%;
}


.Carry {
    width: 18%;
    height: 100%;
    background: radial-gradient( circle, #D4BFE3 0%, #220859 100% ), #9159EE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.Midlane {
    width: 18%;
    height: 100%;
    background: radial-gradient( circle, #D4BFE3 0%, #220859 100% ), #9159EE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.Offlane {
    width: 18%;
    height: 100%;
    background: radial-gradient( circle, #D4BFE3 0%, #220859 100% ), #9159EE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.SoftSupport {
    width: 18%;
    height: 100%;
    background: radial-gradient( circle, #D4BFE3 0%, #220859 100% ), #9159EE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.HardSupport {
    width: 18%;
    height: 100%;
    background: radial-gradient( circle, #D4BFE3 0%, #220859 100% ), #9159EE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.Pos_Label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.Extra_Button {
    position: relative;
    top: 60%;
    left: 5%;
    margin-top: 20px;
}

.extra-register-button {
    position: relative;
    top: 87%;
    left: -35%;
}

.Card_Position {
    width: 18%;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.Card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.Card_Position.flipped .Card-inner {
    transform: rotateY(180deg);
}

.Card-front, .Card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Card-front {
    background: radial-gradient(circle, #D4BFE3 0%, #220859 100%), #9159EE;
}

.Card-back {
    background-image: url('/images/icons/increment.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotateY(180deg);
}

/*Стили для Ready_now кончились, еачались стили для Title_FM */

.Title_FM {
    height: 559px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
}

.Button_Updates_Holder {
    width: 24%;
    height: 67%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.In_need_updating_Block {
    width: 63.125%;
    height: 83%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.Image_Updates_Holder {
    width: 56%;
    height: 100%;
    background-size: auto;
    background-repeat: no-repeat;
}

.Auction_Text_Info {
    width: 39%;
    height: 53%;
}

.Auction_Text_Info_Position {
    width: 85%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.Span_Top {
    position: relative;
    margin-bottom: auto;
}

.Span_Bottom {
    position: relative;
    margin-top: auto;
}

.Button_Updates_Holder_Element {
    width: 100%;
    height: 12.5%;
    border-radius: 86px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 1s;
}

.Button_Updates_Holder_Element:hover .Image_Container img.first {
    opacity: 0;
}

.Button_Updates_Holder_Element:hover .Image_Container img.second {
    opacity: 1;
}

.Button_Updates_Holder_Element:hover {
    background-color: #000000;
}

.Image_Container {
    width: 10%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    overflow: hidden;
}

.Image_Container img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    transition: opacity 1s ease;
}

.Image_Container img.second {
    opacity: 0;
}

.Image_Container:hover img.first {
    opacity: 0;
}

.Image_Container:hover img.second {
    opacity: 1;
}

.Name_Block_Container {
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    top: 8px;
}

.In_need_updating_Block.Active {
    display: flex;
}

.Button_Updates_Holder_Element.active-button {
    background-color: #000000;
}

.Button_Updates_Holder_Element.active-button .Image_Container img.first {
    opacity: 0;
}

.Button_Updates_Holder_Element.active-button .Image_Container img.second {
    opacity: 1;
}

/*Стили для Title_FM кончились начинаются стили для Footer */

.Footer {
    height: 243px;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
}

.Footer_Links {
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}


.All_Rights_Reserved {
    width: 14%;
    height: 72%;
    position: relative;
    top: 0px;
    left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Invation_Social_Networks {
    width: 100%;
    height: 27%;
    position: relative;
    top: 0px;
    left: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.Rights_iFantasy_Manager {
    width: 81%;
    height: 18%;
    position: relative;
    top: 0px;
    left: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
}


.Usefull_Links {
    display: flex;
    gap: 16px;
    padding: 10px;
}

.Discord,
.Telegram {
    width: 37px;
    height: 37px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.Discord {
    background-image: url('/images/icons/Discord_icon.png');
}

.Telegram {
    background-image: url('/images/icons/Telegram_icon.png');
}

.Capital_Links {
    width: 56%;
    height: 45%;
    position: relative;
    top: 0px;
    left: 10%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.Politics {
    width: 33%;
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.politics-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #494949;
    text-decoration: none;
    transition: color 0.5s ease;
    margin: 5px 0px;
}

.Press {
    width: 9%;
    height: 76%;
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.press-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #494949;
    text-decoration: none;
    transition: color 0.5s ease;
    margin: 5px 0px;
}

.Refferal {
    width: 25%;
    height: 76%;
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.refferal-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #494949;
    text-decoration: none;
    transition: color 0.5s ease;
    margin: 5px 0px;
}

.politics-link:hover,
.press-link:hover,
.refferal-link:hover {
    color: #969696;
}


.questions_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.questions_container .content_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.predregistration_hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    width: 100%;
}
.predregistration_hero h1 {
    font-size: 40px;
    text-transform: uppercase;
    margin-top: 20px;
}
.predregistration_hero p {
    margin-top: 25px;
    text-align: center;
    max-width: 720px;
}
.predregistration_hero img {
    margin-top: 25px;
}
.navigation_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 65px;
    width: 100%;
    max-width: 720px;
}
.navigation_menu span {
    font-weight: bolder;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 3px;
    transition: all 0.5s ease;
}
.navigation_menu span:hover {
    opacity: 60%;
}
.navigation_menu .focused {
    border-bottom: 2px solid #781BEE;
}

.user_balance_container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    margin-top: 65px;
}
.user_balance_container .b_content {
    font-size: 50px;
}
.user_balance_container .b_content span {
    color: #781BEE;
}

.timer_action_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
}
.timer_action_container .timer_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 35px 0px;
}
.timer_action_container .timer_block span {
    font-size: 18px;
    margin-bottom: 15px;
}
.question_items {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1024px;
}
.question_items .question_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 370px;
    min-height: 200px;
    padding: 10px;
    margin: 10px;
    background-position: center 50px;
    background-size: 100px;
    background-clip: inherit;
    background-repeat: no-repeat;
    background-color: #080808;
    border-radius: 25px;
    border: 1px solid #ffffff29;
}
.questions_container .question_item .q_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 30px);
    padding: 0px 15px;
}
.questions_container .question_item .q_header img {
    width: 25px;
    cursor: pointer;
}
.questions_container .question_item .q_header img:hover .question_item p {
    display: block;
}
.questions_container .question_item .q_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}
.questions_container .question_item .q_body strong {
    margin-bottom: 10px;
}
.questions_container .question_item .q_body strong span {
    color: #781BEE;
}
.questions_container .question_item .q_body button {
    width: 90%;
}