.games-split-slider {
    padding: 45px 0 calc(35px + 35px) 0;
}

@media screen and (max-width: 560px) {
    .games-split-slider {
        padding: 10px 0 20px 0;
    }
}

.games-split-slider .container.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

@media screen and (max-width: 768px) {
    .games-split-slider .container.main-container {
        padding: 0;
        max-width: none;
    }
}

.games-split-container {
    display: flex;
    position: relative;
}

@media screen and (max-width: 768px) {
    .games-split-container {
        display: grid;
    }
}

.glide-left-games,
.glide-right-games {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

.glide-left-games .glide__track,
.glide-right-games .glide__track {
    overflow-x: hidden;
    position: relative;
    min-height: fit-content;
}

.left-games-list,
.right-games-list {
    display: flex;
}

.left-games-list li.game,
.right-games-list li.game {
    padding: 10px;
}

.glide__slide {
    padding: 10px;
    width: 400px;
    height: 515px;
}

.glide-left-games {
    position: absolute;
    right: 100%;
    top: 0;
    max-width: 400px;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .glide-left-games {
        right: calc(100% - 35px);
    }
}

@media screen and (max-width: 768px) {
    .glide-left-games {
        display: none;
    }
}

.controls .right-arrow,
.controls .glide__arrow--right {
    transform: rotate(180deg);
}

.controls .glide__arrows {
    display: none;
}

.controls .arrows .arrow {
    cursor: pointer;
}

.games-main-block {
    position: relative;
    width: auto;
    min-height: 400px;
}

@media screen and (max-width: 768px) {
    .games-main-block {
        min-height: auto;
    }
}

.glide-right-games {
    position: absolute !important;
    left: 100%;
    top: 0;
    width: 100%;
    min-width: 820px;
    max-width: 820px;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .glide-right-games {
        position: relative !important;
        left: auto;
        width: 100%;
    }
}

.mobile-games-navigation {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    padding: 0 22px;
}

@media screen and (max-width: 768px) {
    .mobile-games-navigation {
        display: flex;
    }
}

.mobile-games-navigation .arrow {
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 100%;
    border: solid 10px transparent;
    box-sizing: border-box;
}

.mobile-games-navigation .arrow.right-arrow {
    transform: rotate(180deg);
}

.games-content {
    width: 505px;
    padding: 0 70px 0 85px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .games-content {
        padding: 0 15px 28px 15px;
        width: 100%;
        margin: 0 auto 28px;
        max-width: 1280px;
    }
}

.games-split-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.games-split-description p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

.games-split-description p strong {
    font-weight: 700;
}

.games-split-description p a {
    color: #F3BE72;
    text-decoration: underline;
}

.games-split-description ul {
    padding-left: 20px;
}

.games-split-description ul li {
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
}

.games-navigation {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: solid 10px transparent;
    cursor: pointer;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .games-navigation {
        display: none;
    }
}

.games-navigation.right {
    left: -25px;
    transform: rotate(180deg);
}

.games-navigation.left {
    right: -25px;
}

.games-navigation img {
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.link-container {
    margin-top: 20px;
}

.games-controls-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.games-navigation-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
}

.games-navigation-arrows .arrow {
    cursor: pointer;
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.games-navigation-arrows .arrow:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .link-container.desktop-container {
        display: none;
    }
}

.link-container.mobile-container {
    display: none;
}

@media screen and (max-width: 768px) {
    .link-container.mobile-container {
        display: inline-block;
        text-align: center;
    }
}

.games-split-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #F3BE72;
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    box-shadow: 0 0 2px 1px white, 0 0 8px 3px #0406A2, inset 0 0 2px 1px white, inset 0 0 8px 3px #0406A2 !important;
}

.games-split-button:hover {
    background-color: #e0a855;
    transform: translateY(-2px);
    box-shadow: 0 0 7px 1px white, 0 0 13px 3px #0406A2, inset 0 0 2px 1px white, inset 0 0 8px 3px #0406A2 !important;
}

/* Game Card Styles */
.game-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 500px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 0 4px 2px white,
        0 0 8px 5px #0406A2,
        inset 0 0 4px 2px white,
        inset 0 0 50px 5px #0406A2;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 4px 2px white,
        0 0 12px 5px #0406A2,
        inset 0 0 4px 2px white,
        inset 0 0 12px 5px #0406A2;
}

.game-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
}

.game-overlay .game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}