  .free-asset-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    @media (min-width: 768px) {
        .free-asset-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .free-asset-container {
		width:420px;
        display: flex;
        flex-direction: column;
        background: #000129;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .game-iconStyle-free img {
        width: 100%;
        height: auto;   
        border-radius: 8px;
    }
    
    .game-infoStyle2 {
        margin-top: 10px;
    }
    
     .button-container-purchases {
        display: flex;
        gap: 5px;
        margin-top: 5px;
        
    }
   .button-container-purchases a,
.button-container-purchases form {
    flex: 1; /* Makes each button take up equal width */
}

.button-container-purchases .btn {
    width: 100%; /* Ensures buttons stretch to fit their containers */
}
.ssg-btn-primary  {
       font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 18px 23px;
    margin-bottom: 16px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border: 2px solid var(--e-global-color-accent);
    border-radius: 0;

    }
.ssg-btn-primary :hover {
    background-color: transparent;
    border: 2px solid var(--e-global-color-accent);
}
.ssg-btn-primary :focus{
    outline: none;
    box-shadow: none;
}

    
.ssg-btn-secondary  {
       font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 18px 23px;
    margin-bottom: 16px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-grayish-blue);
    border: 2px solid var(--e-global-color-grayish-blue);
    border-radius: 0;

    }
.ssg-btn-secondary :hover {
    background-color: transparent;
    border: 2px solid var(--e-global-color-grayish-blue);
}
.ssg-btn-secondary :focus{
    outline: none;
    box-shadow: none;
}

    .download-btn, .details-btn {
        flex: 1; /* Make both buttons take 50% width */
        display: inline-block;
        padding: 6px 10px; /* Smaller button */
        font-size: 12px; /* Reduced font size */
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
    }
    
    .download-btn {
        background-color: #FF8C00;
        color: white;
    }
    
    .details-btn {
        background-color: #4CAF50;
        color: white;
    }
 
/* Ensure the parent is positioned correctly */
.offer-btn-wrapper {
    position: relative !important;
    display: inline-block;
}

.offer-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 88px; /* Adjust based on your image size */
    height: 30px; /* Adjust based on your image size */
    background: url("/assets/images/offer-tag-02.png") no-repeat center center;
    background-size: contain;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	 z-index: 100 !important;
	   padding-left: 10px;  /* Add space on the left */
    padding-right: 10px; /* Add space on the right */
	
}
  /* Gallery Styles */
   game-image-upcoming {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
}

.game-image-upcoming img {
    flex: 0 0 auto;
    width: 300px; /* Adjust width as needed */
    height: auto;
    border-radius: 10px;
    scroll-snap-align: start;
}

/* Hide scrollbar */
.game-image-upcoming::-webkit-scrollbar {
    display: none;
}



