/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ===== VARIABLES & GLOBAL SETTINGS ===== */
@import url('https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    /* Color Variables */
    --title-color: #ff7600;
    --subtitle-color: #ff7600;
    --button-color: #ff7600;
    --button-color-hover: #ff0000;
    --white-color: #FFFFFF;
    --light-grey: #ededed;
    --middle-grey: #555555;
    --dark-grey: #111111;
    --black-color: #000000;
    
    /* Spacing Variables */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 80px;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 40px;
}

/* ===== BASE STYLES ===== */
html, body {
    font-family: "Almendra", serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-color);
}

.wco-container {
    width: 100%;
    margin: auto;
    padding: 0 40px;
}

.flex {
    display: flex;
}

.padding-big {
    padding: var(--spacing-md) 0;
}

.anchor {
    position: relative;
    bottom: 100px;
}

/* ===== TYPOGRAPHY STYLES ===== */
.title-style {
    padding: var(--spacing-md) 0;
}

.title-style h1 {
    font-size: 48px;
}

.title-style h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    text-align: left;
    text-shadow: 0 0 10px rgb(255 118 0);
}

.subtitle-style {
    padding: var(--spacing-sm) 0;
}

.subtitle-style h3 {
    font-size: 18px;
    line-height: 30px;
}

.subtitle-style p {
    font-size: 14px;
    line-height: 24px;
    color: var(--white-color);
}

h3 {
    font-size: 24px;
}

/* ===== FORM STYLES ===== */
.form-item {
    margin-bottom: var(--spacing-sm);
}

.form-item input {
    height: 50px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--button-color-hover);
    color: var(--black-color);
    outline: none;
    width: 100%;
    text-indent: 15px;
    background-color: var(--white-color);
}

.form-item button {
    width: 100%;
    background: var(--button-color);
    color: var(--white-color);
    height: 50px;
    border-radius: var(--radius-sm);
    border: none;
    margin-top: var(--spacing-xs);
    cursor: pointer;
    transition: ease-in-out 0.4s;
}

.form-item button:hover {
    background: var(--button-color-hover);
    box-shadow: 0 0 30px 0 var(--button-color);
}

.form-item p {
    font-size: 12px;
    color: #333;
    padding-bottom: var(--spacing-xs);
}

/* ===== NAVIGATION ===== */
.navigation {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: var(--spacing-sm) 0;
    z-index: 100;
    backdrop-filter: blur(30px);
    background: rgba(0, 0, 0, 20%);
}

.navigation .items .item {
    padding: 0 var(--spacing-xs);
}

.navigation a {
    color: var(--white-color);
    font-size: 14px;
}

.navigation .hamburger {
    display: none;
}

.navigation .nav-parts {
    justify-content: space-between;
}

/* Navigation Variations */
.navigation-one .nav-parts .logo-cont {
    width: 100px;
    margin-left: 0;
    margin-right: auto;
}

.navigation-two .nav-parts .logo-cont {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.navigation-tree .nav-parts .logo-cont {
    padding-top: var(--spacing-sm);
}

.navigation-one .items {
    margin: auto 0;
    width: fit-content;
}

.navigation-two .items {
    margin: 0 auto;
    width: fit-content;
    padding-top: var(--spacing-sm);
}

.navigation .nav-parts .logo-cont img {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu.open {
    left: 0;
    transition: ease-in-out 0.4s;
}

.mobile-menu .items .item {
    padding-bottom: var(--spacing-sm);
}

.mobile-menu .items .item a {
    color: var(--white-color);
}

.mobile-menu .close {
    width: 20px;
    position: absolute;
    right: 20px;
    top: var(--spacing-md);
}

.mobile-menu .close img {
    width: 100%;
    display: block;
}

/* ===== HERO SECTION ===== */
.block-1 {
    padding-top: 100px;
    min-height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-block-bg.webp);
    background-attachment: fixed;
    overflow: hidden;
}

.block-1 .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(53 171 247 / 0%);
}

.block-1 .title-style {
    padding-bottom: var(--spacing-sm);
}

.block-1 .subtitle-style h3 {
    text-align: center;
}

.block-1 .title-style h1 {
    color: var(--white-color);
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    text-shadow: 0 0px 10px black;
}

.block-1 .parts {
    padding-top: 0;
    position: relative;
    z-index: 2;
    /*backdrop-filter: blur(20px);*/
}

.block-1 .parts .part {
    width: 100%;
    position: relative;
    margin: auto;
    padding: 0;
    border-radius: 0;
}

.block-1 .subtitle-style h3 {
    color: var(--white-color);
    text-align: center;
    padding: 0;
}

.block-1 .parts .part-1 {
    display: block;
}

.block-1 .parts .part-1 .subcont {
    margin: auto 0;
}

/* ===== CONTENT BLOCKS ===== */
/* Block 2 - Image/Text Items */
.block-2 .items {
    justify-content: space-between;
}

.block-2 .items .item {
    width: 100%;
    min-height: 200px;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    background: var(--light-grey);
    border-radius: 0;
}

.block-2 .items .item img {
    width: 30%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: ease-in-out 0.2s;
}

.block-2 .items .item:hover img {
    transition: ease-in-out 0.2s;
}

.imgs_block_one .items .item {
    background: none;
}

.imgs_block_one .items .item img {
    border-radius: var(--radius-lg);
    transform: rotate(2deg) !important;
    box-shadow: -10px 10px 30px 0 rgba(0, 0, 0, 20%);
}

.block-2 .items .item .text {
    width: 68%;
    height: fit-content;
    margin: auto 0;
}

.block-2 .items .item h4 {
    font-size: 24px;
    text-align: left;
    padding-bottom: var(--spacing-xs);
    color: var(--subtitle-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgb(255 0 0);
}

.block-2 .items .item h5 {
    font-size: 14px;
    text-align: left;
    color: var(--white-color);
    padding-bottom: var(--spacing-sm);
}

/* Reversed items */
.block-2 .items .item.revers {
    flex-direction: row-reverse;
}

.block-2 .items .item.revers h4,
.block-2 .items .item.revers h5 {
    text-align: right;
}

/*img_block_four*/

.img_block_four .items{
    flex-wrap: wrap;
}

.img_block_four .items .item{
    position: relative;
}

.img_block_four .items .item img {
    width: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 0;
    transition: ease-in-out 0.2s;
}

.img_block_four .items .item .text {
    width: 95%;
    position: absolute;
    z-index: 2;
    left: var(--spacing-sm);
    bottom: var(--spacing-sm);
    backdrop-filter: blur(30px);
    padding: var(--spacing-sm);
    background-color: rgba(0, 0, 0, 20%);
}

/* ===== CONTACT SECTION ===== */
.block-3 .title-style {
    padding-bottom: var(--spacing-sm);
}

.contact-cont .block-3 .subtitle-style p {
    color: var(--light-grey);
}

.block-3 .parts .part {
    width: 50%;
}

.block-3 .parts .part-1 {
    display: flex;
    padding-right: var(--spacing-md);
}

.block-3 .parts .part-1 .subcont {
    margin: auto 0;
}

.block-3 .parts .part-2 {
    padding-left: var(--spacing-md);
}

/* ===== BANNER SECTION ===== */
.block-4 .title-style h2 {
    text-align: left;
}

.block-4 .banner-cont {
    margin-bottom: var(--spacing-md);
}

.block-4 .banner-cont img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.block-4 .content p {
    text-align: center;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
}

/* ===== ICONS SECTIONS ===== */
.icons-block .items {
    justify-content: space-between;
}

.icons-block .items .item {
    width: 24%;
    background: var(--dark-grey);
    padding: var(--spacing-sm);
    transition: ease-in-out 0.4s;
    border-radius: 0;
}

.icons-block .items .item:hover {
    transition: ease-in-out 0.4s;
    transform: scale(0.95);
    box-shadow: 0 0 30px 0 var(--title-color);
}

.icons-block .items .item i {
    text-align: center;
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 30px;
    color: var(--button-color);
}

.icons-block .items .item img {
    width: 40px;
    display: block;
    margin: auto;
    margin-bottom: var(--spacing-md);
    filter: invert(1);
}

.icons-block .items .item h4 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: var(--spacing-xs);
    text-align: center;
    color: var(--button-color);
}

.icons-block .items .item p {
    text-align: center;
    font-size: 12px;
    color: var(--white-color);
}

/* Icons Block Variations */
.icons_block_tree .items {
    flex-wrap: wrap;
    justify-content: space-between;
}

.icons_block_tree .items .item {
    width: 48%;
    margin-bottom: var(--spacing-md);
}

.icons_block_two .items {
    flex-wrap: wrap;
}

.icons_block_two .items .item {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

/* ===== IMAGE BLOCKS ===== */
/* Image Block 2 */
.img-block2 .items {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.img-block2 .items .item {
    width: 48%;
    padding: var(--spacing-sm);
    background-color: var(--white-color);
    transition: ease-in-out 0.4s;
    transform: rotate(-2deg);
    border-radius: var(--radius-md);
}

.img-block2 .items .item:hover {
    transition: ease-in-out 0.4s;
    transform: rotate(0deg);
}

.img-block2 .items .item img {
    width: 100%;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-md);
}

.img-block2 .items .item .text {
    width: 100%;
}

.img-block2 .items .item h5 {
    color: var(--black-color);
}

/* Image Block 3 */
.img-block3 .items .item {
    width: 24%;
    background-color: var(--button-color);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.img-block3 .items .item img {
    width: 100%;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-sm);
}

/* ===== MAIN BLOCK VARIATIONS ===== */
.main-block-two {
    overflow: hidden;
}

.main-block-two.revers .parts {
    flex-direction: row-reverse;
}

.main-block-two .parts {
    padding-top: 100px;
}

.main-block-two .parts .part {
    width: 50%;
}

.main-block-tree {
    overflow: hidden;
}

.main-block-tree .parts {
    padding-top: 0;
}

/* ===== ABOUT GAME BLOCK ===== */
.about_game_block_two .parts .banner-cont {
    width: 50%;
    padding-right: var(--spacing-md);
}

.about_game_block_two .parts .banner-cont img {
    position: sticky;
    top: 100px;
    border-radius: 0;
}

.about_game_block_two .parts .content {
    width: 50%;
    padding-left: var(--spacing-md);
}

.about_game_block_two .parts .content p {
    text-align: left;
    color: var(--white-color);
    font-size: 18px;
    line-height: 30px;
}

.about_game_block_two .parts {
    position: relative;
}

/* ===== CONTACTS BLOCK ===== */
.contacts_block_two {
    background-color: var(--white-color);
}

.contact-cont .contacts_block_two .subtitle-style p {
    color: var(--black-color);
}

.contacts_block_two .parts {
    flex-wrap: wrap;
}

.contacts_block_two .parts .part {
    width: 100%;
    padding: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-grey);
}

.footer .items .item {
    padding: 0 var(--spacing-xs);
}

.footer .items .item a {
    color: var(--white-color);
}

/* ===== SPECIAL PAGES ===== */
/* Success Page */
.success-page {
    height: 100vh;
    background-color: var(--white-color);
}

.success-page .wco-container {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.success-page .bread-crumbs {
    width: 100%;
    padding-top: 100px;
}

.success-page .title-style {
    display: flex;
    width: 100%;
}

.success-page h1 {
    color: var(--gold-color);
    text-align: center;
    margin: auto;
}

/* Single Page */
.single-page {
    background-color: var(--white-color);
    padding-top: 150px;
}

.single-page h2 {
    font-weight: 700;
    padding-bottom: var(--spacing-sm);
}

.single-page .content p {
    padding-bottom: var(--spacing-xs);
}

.single-page .content .last-updated {
    opacity: 0.3;
}

.single-page .content .contact-info {
    font-weight: 700;
}

.single-page .content strong {
    font-weight: 700;
}

.single-page .title-style {
    padding-bottom: var(--spacing-sm);
}

/* Breadcrumbs */
.bread-crumbs {
    padding-bottom: var(--spacing-sm);
}

.bread-crumbs p {
    margin-left: var(--spacing-xs);
}

.bread-crumbs .rel-link {
    opacity: 0.3;
}

/* 404 Page */
.page404 {
    height: 100vh;
}

.page404 .title-style {
    padding-top: 150px;
}

.page404 .title-style h1 {
    text-align: center;
}

/*contacts_block_tree*/

.contacts_block_tree .img-cont{
    padding-bottom: var(--spacing-lg);
}

/*contacts_block_four*/

.contacts_block_four .parts{
    padding-top: var(--spacing-lg);
}

.contacts_block_four .parts .img-cont img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*contacts_block_five*/

.contacts_block_five .parts{
    flex-wrap: wrap;
}

.contacts_block_five .parts .part {
    width: 100%;
    padding: 0;
}

.contacts_block_five .parts .part-1{
    padding-bottom: var(--spacing-lg);
}

.contacts_block_five .parts .part-1 .img-cont{
    width: 100%;
}

.contacts_block_five .parts .part-1 .img-cont img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/*footer_two*/

.footer_two .parts .logo-cont img{
    width: 100px;
}

.footer_two .parts .items{
    margin-left: auto;
    margin-right: 0;
}

/*footer_tree*/

.footer_tree .logo-cont img{
    width: 100px;
    display: block;
    margin: auto;
}

.footer_tree .items {
    margin: auto;
    width: fit-content;
    padding-top: var(--radius-md);
}

/*cookies_block*/

.cookies_block{
    position: fixed;
    width: 90%;
    padding: var(--spacing-sm);
    background: var(--white-color);
    left: 40px;
    bottom: 40px;
    z-index: 100;
}

.cookies_block .parts{
    justify-content: space-between;
}

.cookies_block .parts .btn_cont button{
    background: var(--button-color);
    color: var(--white-color);
    border-radius: var(--radius-sm);
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
}

.cookies_block .title{
    padding-bottom: var(--spacing-sm);
}

.cookies_block .title h4{
    font-weight: 700;
}

.cookies_block .descr h5{
    font-size: 14px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 980px) {
    .title-style h1 {
        font-size: 30px;
    }

    .block-1 .title-style h1 {
        font-size: 30px;
    }

    .subtitle-style h3 {
        font-size: 14px;
        line-height: 14px;
    }

    .navigation a {
        font-size: 13px;
    }

    .navigation .items .item {
        padding: 0 5px;
    }

    .title-style h2 {
        font-size: 24px;
    }

    /* Block 2 adjustments */
    .block-2 .items {
        flex-wrap: wrap;
    }

    .block-2 .items .item {
        flex-wrap: wrap;
        margin-bottom: var(--spacing-lg);
    }

    .block-2 .items .item img {
        width: 100%;
    }

    .block-2 .items .item h4 {
        font-size: 16px;
        text-align: center;
    }

    .block-2 .items .item h5 {
        text-align: center;
    }

    .block-2 .items .item.revers h4,
    .block-2 .items .item.revers h5 {
        text-align: center;
    }

    .block-2 .items .item .text {
        width: 100%;
        padding: var(--spacing-sm);
    }

    .img_block_four .items .item .text {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    /* Block 3 adjustments */
    .block-3 .parts {
        flex-wrap: wrap;
    }

    .block-3 .parts .part {
        width: 100%;
        padding: 0;
    }

    .block-3 .parts .part-1 {
        padding-bottom: var(--spacing-md);
    }

    /* About game block adjustments */
    .about_game_block_two .parts .content p {
        font-size: 14px;
        line-height: normal;
    }

    /* Footer adjustments */
    .footer .items .item a {
        font-size: 13px;
    }

    /* Single page adjustments */
    .single-page .content p {
        font-size: 14px;
    }

    /* Icons block adjustments */
    .icons-block .items {
        flex-wrap: wrap;
    }

    .icons-block .items .item {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .navigation .nav-parts .logo-cont {
        width: 70px;
        margin-left: 0;
    }

    /* Image block adjustments */
    .img-block2 .items .item {
        width: 100%;
    }

    .about_game_block_two .parts {
        flex-wrap: wrap;
    }

    .about_game_block_two .parts .banner-cont {
        padding: 0;
        width: 100%;
    }

    .about_game_block_two .parts .content {
        padding: 0;
        width: 100%;
    }

    .img-block3 .items .item {
        width: 100%;
    }

    .footer_two .parts{
        flex-wrap: wrap;
    }

    .footer_two .parts .logo-cont{
        padding-bottom: var(--spacing-md);
    }

    .footer_tree .logo-cont img {
        margin: 0;
    }

    .cookies_block {
        left: 20px;
    }

}

@media (max-width: 768px) {
    .wco-container {
        padding: 0 var(--spacing-sm);
    }

    /* Navigation mobile styles */
    .navigation .items {
        display: none;
    }

    .navigation .hamburger {
        display: block;
        width: 40px;
        margin-left: auto;
        margin-right: 0;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .navigation .hamburger div {
        background-color: var(--white-color);
        height: 2px;
        width: 100%;
        margin-bottom: 6px;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        left: -100%;
        top: 0;
        background: var(--button-color-hover);
        backdrop-filter: blur(30px);
        height: 100vh;
        width: 100%;
        z-index: 500;
        padding-top: var(--spacing-md);
        transition: ease-in-out 0.4s;
    }

    /* Block 1 mobile styles */
    .block-1 .parts {
        flex-wrap: wrap;
    }

    .block-1 .parts .part {
        width: 100%;
    }

    .main-block-two .parts .part {
        padding: 0;
    }

    /* Footer mobile styles */
    .footer .items {
        flex-wrap: wrap;
    }

    .footer .items .item {
        width: 100%;
        padding: 0;
        padding-bottom: var(--spacing-sm);
    }
}