*
{
    margin: 0;
    padding: 0;

    text-decoration: none;
}

body
{
    background: #090816;
}

section
{
    margin-bottom: 60px;
}

.container
{
    width: 1200px;

    margin: 0 auto;
}

/* main section */

.main_section
{
    padding-top: 103px;

    background: none !important;
    border: none !important;
}

.main_section .title-block
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* main section end */

/* list section */

.list_section .header
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.list_section .header
{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 60px;
}

.list_section .header .title
{
    font-family: 'Neue Machina';
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    color: white;
}

.list_section .header .title span
{
    background: linear-gradient(178deg, #A448FF 4.34%, #1E57C6 118%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.list_section .header .desc
{
    font-family: 'SF Pro Display';
    font-size: 24px;
    font-weight: 300;
    line-height: 140%;
    color: white;

    width: 50%;
}

.list_section .cheat_list
{
    display: grid;
    grid-template-columns: repeat(2, 590px);
    justify-content: space-between;
    gap: 20px;
}

.list_section .cheat_list .item
{
    width: 590px;
    border-radius: 15px;

    background: radial-gradient(72.65% 68.55% at 50.00% 33.16%, rgba(243, 246, 255, 0.05) 0%, rgba(243, 246, 255, 0.00) 100%), #100F26;
    box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.08) inset;
}

.list_section .cheat_list .item a img
{
    border-radius: 15px 15px 0 0;
}

.list_section .cheat_list .item .item_info
{
    padding: 20px 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_section .cheat_list .item .item_info .item_content .item_name
{
    font-size: 21px;
    font-weight: 400;
    font-family: 'SF Pro Display';
    line-height: 100%;
    color: white;

    margin-bottom: 20px;
}

.list_section .cheat_list .item .item_info .item_content .item_tags
{
    display: flex;
    align-items: center;
}

.list_section .cheat_list .item .item_info .item_content .item_tags .tag
{
    font-size: 15px;
    font-family: 'SF Pro Display';
    font-weight: 200;

    padding: 5px 15px;
    margin-right: 8px;
    margin-bottom: 8px;

    border-radius: 5px;
}

.list_section .cheat_list .item .item_info .item_content .item_tags .tag:last-child
{
    margin-right: 0;
}

.list_section .cheat_list .item .item_info .item_content .item_tags .undetected
{
    border: 1px solid #7EFF7B;
    color: #7EFF7B;
}

.list_section .cheat_list .item .item_info .item_content .item_tags .safest
{
    border: 1px solid white;
    color: white;
}

.list_section .cheat_list .item .item_info .item_content .item_tags .on_update
{
    border: 1px solid #FFF84F;
    color: #FFF84F;
}

.list_section .cheat_list .item .item_info .item_content .item_tags .undetected
{
    border: 1px solid #7EFF7B;
    color: #7EFF7B;
}

.list_section .cheat_list .item .item_info .favorite_button-block button
{
    background: transparent;
    border: transparent;

    font-size: 15px;
    font-weight: 300;
    font-family: 'SF Pro Display';
    line-height: 100%;
    color: white;

    cursor: pointer;
}

.list_section .cheat_list .item .item_info .favorite_button-block button svg
{
    margin-bottom: 10px;
    
    transition: 0.2s ease all;
}

.list_section .cheat_list .item .item_info .favorite_button-block button:hover svg
{
    transform: scale(0.9);
}

.list_section .cheat_list .item .item_info .favorite_button-block.fav_active path
{
    fill: #FF4A4A;
    stroke: #FF4A4A;
}

/* Анимации */
.fadeOut::after {
    opacity: 0;
}

.fadeIn::after {
    opacity: 1;
    transform: translateY(0);
}

.fade {
    transition: opacity 0.7s ease-in;
    transform: translateY(150px);
}
  
.fadeOut { opacity: 0;  }
.fadeIn { opacity: 1; animation: come-in 0.8s ease forwards; }

@keyframes come-in {
    to { transform: translateY(0); }
}


.item .img-block a img{
width: 100% !important;
}



/* list section end */