:root{
    --bg-color: #111111;
    --text-color: #f0f0f0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

h1, h2, h3, p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}


@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

.site-logo{
    width: 100px;
}

.div_product{
    margin: 10px;
    padding: 0;
    background-color: #333333;
    text-align: center;
    border-radius: 12px;
}

.link-game{
    font-family: Open Sans, Cantarell, Ubuntu, Oxygen, Roboto, Segoe UI, BlinkMacSystemFont, -apple-system, "Arial Black", "Impact", sens-serif;
    color: #ffffff;
}

.product_card img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.game-rating{
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars{
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 28px;
    font-family: Times, serif;
    line-height: 1;
}

.stars::before{
    content: '★★★★★';
    letter-spacing: 2px;

    background: linear-gradient(
    90deg,
    #ffc107 var(--percent),
    #e4e5e9 var(--percent)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.main-layout{
    display: flex;
    margin-top: 2%;
    width: 100%;
    min-height: 0;
    gap: 0;
    align-items: flex-start;
}

.sidebar{
    position: sticky;
    max-height: 100vh;
    padding-left: 20px;
    width: 250px;
    flex-shrink: 0;
    top: 0;
    overflow-y: auto;
}

.content{
    flex: 1;
    min-width: 0;
}

.sidebar-ads{
    width: 250px;
    flex-shrink: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-search{
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-button{
    display: none;
}

.search-form{
    flex-grow: 1;
    margin-left: 150px;
    display: flex;
}

.search-form input[type="text"]{
    width: 80%;
    border-radius: 30px;
    padding: 12px;
    background: rgba(67, 67, 67, 0.7);
    color: white;
}

.game-header{
    min-width: 0;
    min-height: 100vh;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    white-space: normal;

}

.screenshots-gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.screenshots-gallery img{
    flex: 0 0 100%;
    height: 450px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    scroll-snap-align: center;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 30px;
    z-index: 10;
    padding: 20px 20px;
    transition: background 0.3s;
    border: none;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.gallery-stores {
    display: flex;
    gap: 10px;
    justify-content: space-between;

}

.stores-price {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 8px;
}

.stores-price a{
    color: white;
    text-decoration: none;
}

.stores-price a:hover {
    color: #f39c12;
    transition: color 0.3s;
}

.platforms {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.platform{
    border-radius: 8px;
    background: #333333;
    margin: 8px;
    padding: 8px;
    text-align: center;
}

.best-deal-offer{
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.best-deal-offer .store{
    display: flex;
    margin: 10px 0;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.best-deal-offer .store-price{
    display: flex;
    align-items: center;
}

.other-deals{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deal-item{
    display: flex;
    justify-content: space-between;
}

.other-deals-title{
    margin-bottom: 5px;
    text-align: center;
}

.best-deal-offer .store-price:hover{
    color: #f39c12;
    transition: color 0.3s;
}

.deal-item .store:hover{
    color: #f39c12;
    transition: color 0.3s;
}

.store-img{
    flex: 2;
    min-width: 0;
}

.info-container{
    display: flex;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 10px;
    padding: 10px;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.rating-container{
    width: 100%;
}

.rating-container p{
    text-align: right;
}

.rating-container p span{
    display: inline-block;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.rating-row{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


.rating-info{
    display: flex;
    justify-content: space-between;
}

.rating-bar{
    width: 100%;
    border-radius: 5px;
    height: 10px;
    background-color: #3f3f46;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 10px;
}

.rating-bar-fill{
    height: 100%;
    background: #d4d4d8;
}

.detail-info{

    margin-top: 0;
}

.description{
    background: rgba(51, 51, 51, 0.4);
    line-height: 1.5;
    border-radius: 20px;
    padding: 5px 20px;
}

.store-grid{
    background: rgba(51, 51, 51, 0.4);
    border-radius: 20px;
    padding: 8px;
}

.info-genres{
    margin-bottom: 20px;
}

.info-released{
    margin-bottom: 20px;
}

.info-platforms{
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.genre{
    padding: 2px;
}

.info-platforms-name{
    display: flex;
    align-items: center;
    gap: 5px;
}
.info-platforms-name img{
    filter: invert(1) drop-shadow(0px 0px 9px rgba(0, 0, 0, 1));
}

.rq-min-max{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.requirements{
    margin-top: 20px;
}

.requirement-card{
    background: rgba(51, 51, 51, 0.4);
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.breadcrumbs-nav{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs-list{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding-inline-start: 0;
}

.breadcrumbs-item{
    display: flex;
    align-items: center;
}

.breadcrumbs-item a{
    color: rgba(140, 140, 140);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs-item a:hover{
    color: #f39c12;
}

.breadcrumbs-item + .breadcrumbs-item::before{
    content: "/";
    margin: 0 10px;
}

.breadcrumbs-list .breadcrumbs-item:last-child {
    color: #ffffff;
    pointer-events: none;
}

.stores{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 10px 0;
}

.img-title{
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-price{
    display: flex;
    justify-content: center;
    gap: 7px;
}

.store-price s{
    font-size: 14px;
}

.store-card a{
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    gap: 2px;
}

.store-card a:hover{
    color: #f39c12;
    transition: color 0.3s;
}


.store-card img{
    width: 20px;
    height: 20px;
    filter: invert(1) drop-shadow(0px 0px 9px rgba(0, 0, 0, 1));
}

.view-store{
    background: #06141B;
    border-radius: 8px;
    padding: 10px;
}

.back-to-results{
    color: white;
    text-decoration: none;
}

.back-to-results:hover{
    color: #f39c12;
    transition: color 0.3s;
}


.ul-catalog{
    padding-inline-start: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    list-style: none;
}

.all-games{
    margin-left: 40px;
}

.carousel-track{
     display: flex;
     scroll-snap-type: x;
     overflow-x: auto;
     gap: 15px;
     padding: 15px;
     scrollbar-width: none;
     background: rgba(0, 0, 0, 0.7);
     border-radius: 8px;
     border: 4px solid rgba(0, 0, 0, 0.3);
}

.carousel-track::webkit-scrollbar{
    display: none;
}

.offers{
    position: relative;
}

.recommended{
    position: relative;
}

.carousel-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 30px;
    z-index: 10;
    padding: 20px 20px;
    transition: background 0.3s;
    border: none;
}

.carousel-left-btn{
    left: 10px;
}

.carousel-right-btn{
    right: 10px;
}

.all-games-name{
    color: inherit;
    text-decoration: none;
}

.all-games-name:hover{
    color: #f39c12;
    transition: color 0.3s ease;
}

.sidebar-items{
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.sidebar-items:hover{
    color: #f39c12;
    transition: color 0.3s ease;
}

.product-card{
    flex: 0 0 calc(30% - 30px);
    max-width: calc(30% - 30px);
    scroll-snap-align: center;
    background: rgba(51, 51, 51, 0.4);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.c-image{
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.select-filters{
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid rgba(225, 255, 255, 0.3);
    background: rgba(51, 51, 51, 0.4);
    cursor: pointer;
}

.select-filters option{
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 8px;
}


.filters{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.reset-filters-btn{
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid rgba(225, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.paginator{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.paginator a{
    color: inherit;
    text-decoration: none;
}

.paginator a:hover{
    color: #f39c12;
}

.page-main{
    display: inline-block;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.3);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s;
}

.page-main:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.02);
}

.page-another{
    display: inline-block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s;
}

.page-another:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.02);
}

.page-link{
    display: inline-block;
    will-change: transform;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s;
}

.page-link:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.02);
}

.genres-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}


.offer-name{
    color: inherit;
    text-decoration: none;
}

.offer-name:hover{
    color: #f39c12;
    transition: color 0.3s ease;
}

.genre-item{
    display: flex;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 8px;
    justify-content: center;
    padding: 10px;
}

.stores-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.store-item{
    display: flex;
    background: rgba(51, 51, 51, 0.4);
    border-radius: 8px;
    justify-content: center;
    padding: 10px;
}

.tag-item{
    padding: 2px;
}

.info-tags{
    margin-bottom: 20px;
    line-height: 1.5;
}

.c-image-wrapper{
    position: relative;
    width: 100%;
}

.c-rating{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    backdrop-filter: blur(4px);
    font-weight: bold;
    color: #f39c12;
    font-size: 14px;
}


.div_catalog{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.c-image{
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.c-link{
    background-color: #202020;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-link:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.c-content{
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
}

.c-title{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.c-meta{
    display: flex;
    justify-content: space-between;
    color: #aaaaaa;
    font-size: 13px;
}

.c-genres{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.c-developer{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.c-price{
    color: white;
}

.c-badge{
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    border-radius: 4px;
    padding: 4px 8px;
    color: #cccccc;
}

.c-footer{
    display: flex;
    margin-top: 5px;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.c-platforms{
    filter: invert(1) drop-shadow(0px 0px 9px rgba(0, 0, 0, 1));
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-right: 10px;
}

.c-review{
    display: flex;
    flex: 1;
    color: #888888;
}

.store-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: white;
    transition: all 0.2 ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.store-card: hover{
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-icon{
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.store-name{
    font-weight: 600;
    font-size: 1rem;
}

.price-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

.discount-badge{
    background: #4ade80;
    color: #064e3b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.price-column{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.retail-price{
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1;
}

.current-price{
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.action-btn{
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.store-card:hover .action-btn{
    background: white;
    color: black;
}


.modal-overlay{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.modal-overlay.active{
    display: flex;
}

.modal-img{
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.footer{
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding: 40px 20px 20px;
}

.footer-container{
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns{
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-columns ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a{
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.where-to-buy{
    background: rgba(51, 51, 51, 0.4);
    border-radius: 10px;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.list-toggle{
    padding: 15px 0;
}

.items-block{
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 175px;
}

@keyframes bounce{
    0%, 100% {transform: translateY(0); }
    50%      {transform: translateY(-5px);}
}

.scrolled-end::after{
    display: none;
}

.stores-children{
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    padding-bottom: 15px;
}

.stores-children button{
    padding: 8px;
    font-size: 14px;
}

.stores-children a{
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 8px;
    font-size: 14px;
}

.stores-children a:hover{
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

button.expand-btn{
    cursor: pointer;
    background: rgba(51, 51, 51, 0.7);
    border-radius: 6px;
    border: none;
    color: white;
    padding: 10px;
    margin-bottom: 20px;
}

.sidebar-close-btn{
    display: none;
}

.burger-btn{
    display: none;
}


@media (max-width: 768px){

    .content{
        width: 100%;
        margin: 0 10px;
    }

    .site-logo{
        width: 50px;
    }

    .burger-btn{
        display: block;
        background: rgba(51, 51, 51, 0.4);
        border: 1px solid rgba(225, 255, 255, 0.3);
        border-radius: 8px;
        color: white;
        padding: 10px;
        margin-right: 20px;
    }

    .sidebar{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 230px;
        height: 100vh;
        background: #111111;
        z-index: 1000;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close-btn{
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .sidebar-overlay{
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sidebar-overlay.open{
        display: block;
        opacity: 1;
    }

    .sidebar-ads{
        display: none;
    }

    .div_catalog{
        grid-template-columns: 1fr;
    }

    .all-games{
        margin: 0;
    }

    .search-form{
        margin: 0;

    }

    .search-form input[type="text"]{
        width: 100%;
    }

    .slider-btn,
    .carousel-btn{
        display: none;
    }

    .product-card{
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .carousel-track{
        scroll-snap-type: x mandatory;
    }

    .breadcrumbs-item:last-child {
        max-width: calc(100vw - 250px);
        overflow: hidden;

    }

    .breadcrumbs-item:last-child span{
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        display: block;
    }

    .breadcrumbs-item {
        font-size: 13px;
    }

    .back-to-results{
        font-size: 13px;
    }

    .gallery-stores{
        flex-direction: column;
    }

    .stores{
        grid-template-columns: 1fr;
    }

    .store-card{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .screenshots-gallery img{
        flex: 0 0 80%;
        height: 180px;
        object-fit: cover;
        display: block;
        overflow-clip-margin: content-box;
        overflow: clip;
    }

}

@media (min-width: 769px) and (max-width: 1024px){

    .content{
        margin: 20px;
    }

    .site-logo{
        width: 75px;
    }

    .burger-btn{
        display: block;
        background: rgba(51, 51, 51, 0.4);
        border: 1px solid rgba(225, 255, 255, 0.3);
        border-radius: 8px;
        color: white;
        padding: 10px;
        margin-right: 20px;
    }

     .sidebar{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 230px;
        height: 100vh;
        background: #111111;
        z-index: 1000;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close-btn{
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .sidebar-overlay{
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sidebar-overlay.open{
        display: block;
        opacity: 1;
    }

    .div_catalog{
        grid-template-columns: 1fr 1fr;
    }

    .search-form{
        margin: 0;
    }

    .search-form input[type="text"]{
        width: 100%;
    }

    .sidebar-ads{
        display: none;
    }

    .all-games{
        margin-right: 40px;
    }

    .slider-btn,
    .carousel-btn{
        display: none;
    }

    .product-card{
        flex: 0 0 45%;
        max-width: 45%;
        scroll-snap-align: center;
    }

    .carousel-track{
        scroll-snap-type: x mandatory;
    }

    .store-card{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .screenshots-gallery img{
        flex: 0 0 50%;
        height: 350px;
        object-fit: cover;
        display: block;
        overflow-clip-margin: content-box;
        overflow: clip;
    }

    .gallery-stores{
        flex-direction: column;
    }

    .stores{
        grid-template-columns: 1fr;
    }

}