.site-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10vh;
}

.store-featured {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-image: url(https://store.fastly.steamstatic.com/public/images/v6/home/cluster_bg.png?v=1);
}

.store-toptext {
    justify-content: center;
    display: flex;
    color: white;
}

.store-scroll {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.store-scroll-left {
    width: 40px;
    height: 80px;
    background-image: 
        url("https://cdn.fastly.steamstatic.com/store/icons/arrow_left.svg"),
        linear-gradient(to right, #112432, transparent);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.store-scroll-left:hover {
    background-image: 
        url("https://cdn.fastly.steamstatic.com/store/icons/arrow_left.svg"),
        linear-gradient(to right, #5ea0cc, transparent);
}

.store-scroll-right {
    width: 40px;
    height: 80px;
    background-image: 
        url("https://cdn.fastly.steamstatic.com/store/icons/arrow_right.svg"),
        linear-gradient(to left, #112432, transparent);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.store-scroll-right:hover {
    background-image: 
        url("https://cdn.fastly.steamstatic.com/store/icons/arrow_right.svg"),
        linear-gradient(to left, #5ea0cc, transparent);
}

.store-scroll-content {
    display: flex;
    flex-direction: row;
    flex: 1;
    height: 400px;
    max-width: 900px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.store-scroll-content-left {
    width: 60%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.store-scroll-content-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-scroll-content-right {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 100%;
    background-color: #0C161F;
    padding: 16px;
    box-sizing: border-box;
    gap: 10px;
    color: white;
}

.store-scroll-game-title {
    font-size: 18px;
    font-weight: bold;
    color: #c6d4df;
}

.store-scroll-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    flex: 1;
    max-height: 160px;
}

.store-scroll-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-scroll-availability {
    font-size: 16px;
    color: #c6d4df;
    font-weight: bold;
}

.store-scroll-tag {
    display: inline-block;
    background-color: #4d6a80;
    color: #c6d4df;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    width: fit-content;
}

.store-scroll-price {
    font-size: 12px;
    color: white;
    margin-top: auto;
}
