


.country-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(19, 17, 17, 0.6);
    display: none;
    z-index: 1049;
    overflow-x: hidden;
}

.country-overlay.scrolled {
    background: linear-gradient(180deg, rgba(255, 150, 45, 0.5) 0%, rgba(255, 150, 45, 0) 90%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* for Safari support */
    background-color: rgba(0, 0, 0, 0.6);
    /* semi-transparent black */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

#mypopup {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  display: flex;
}

#mypopup.show {
    visibility: visible;
    opacity: 1;
}

.country-title {
    font-size: 22px;
    padding-bottom: 20px;
}

.country-container {
    background: linear-gradient(0deg, rgba(45, 150, 255, .2), rgba(45, 150, 255, .2)), rgba(47, 46, 60, .6);
    gap: 10px;
    font-weight: 400;
    padding: 15px;
    border-radius: 4px;
}


/* image slider */




.slider-container {
    overflow: hidden;
    flex: 1;
}

.swiper-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 0;
}

.inner-container {
    background-color: #252F45;
    padding: 10px;
}

.slider-title {
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.slider-btn {
    display: inline-block;
    padding: 8px 50px;
    border: 1px solid #60d66a;
    color: #20B038;
    font-weight: 500;
    font-size: 14px;
    width: 90%;
    transition: 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
}

.slider-btn:hover {
    background-color: #20B038;
    color: #fff;
}

.bi-share-fill {
    font-size: 20px;
    margin-top: 15px;
    color: #fff;
    margin-left: 6px;
}

.swiper-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
}

.swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    background-color: #092d16;
    border-radius: 2px;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #1cbc2d;
}


/* Exclusive Offer */

.offer-card {
	background-color: #000;
	padding: 30px 15px;
	margin-bottom: 0;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.offer-title {
    font-size: 2rem;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
}

.offer-more-btn {
	background-color: #3C2A21;
	color: #D5CEA3;
	border-radius: 8px;
	padding: 4px 10px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
    width: 80px;
    text-align: center;
}

.bi-chevron-right {
    font-size: 10px;

}

.select_game_plan.selected {
    border: 2px solid #D5CEA3;
}

.single-offer {
	margin-bottom: 10px;
	background: #3C2A21;
	padding: 15px;
	border-radius: 8px;
}

.offer-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.offer-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #FFF;
}

.title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.company-name {
    color: rgba(235, 235, 245, 0.6);
    font-size: 10px;
}

.price-container {
	display: flex;
	border: 2px solid rgba(32, 176, 56, 0.4);
	border-radius: 10px;
	background-color: #202125;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	height: 44px;
}

.price-details {
    flex: 1;
    padding-left: 10px;
}

.price-label {
    gap: 5px;
    display: flex;
    align-items: flex-end;
    font-weight: 500;
}

.label {
    font-size: 14px;
}

.price {
    font-size: 14px;
}

.original-price {
    font-size: 10px;
    color: rgba(235, 235, 245, 0.6);
    text-decoration: line-through;
    text-align: left;
}

.svg-divider {
    display: none;
    align-items: center;
    height: 0px;
}

.savings {
	flex: 1;
	background: rgba(32, 176, 56, 0.4);
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	justify-items: left;
	height: 40px;
	align-items: center;
	padding-left: 10px;
}

.saving-label {
    font-size: 10px;
    font-weight: 500;
    /* margin-top: 5px; */
}

.saving-value {
    font-size: 14px;
    font-weight: 500;
}


/* Popular Games */

.trending-container {
    flex: 1;
}

.trending-card-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px;
}

.trending-card-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari */
}

.trending-card {
	width: 100%;
	height: 360px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	border-radius: 0;
	border: solid 10px #3C2A21;
}
.trending-card img {
	object-fit: cover;
}
/* .trending-card:hover {
    box-shadow: 0px 0px 1.73px 0px #FFFFC8,
        0px 0px 3.46px 0px #FFFFC8,
        0px 0px 12.1px 0px #FFFFC8,
        0px 0px 14.19px 0px #20B038,
        0px 0px 18.47px 0px #20B038;
} */
.trending-detail {
	position: absolute;
	bottom: 0;
	padding: 10px;
	align-items: center;
	text-decoration: none;
	o-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	/* background: rgba(0, 0, 0, 0.8); */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 40%, #000 90%, #000 90%, #000 96%, #000 10%);
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: end;
}
.trending-detail:hover {
    background-color: rgba(32, 176, 56, 0.4);
}

.trending-label {
	color: #fff;
	font-weight: 500;
	margin-bottom: 15px;
	text-transform: capitalize;
	text-align: center;
	font-size: 14px;
}

.top-up-btn {
	background-color: transparent;
	border: 1px solid #20B038;
	width: 100px;
	color: #fff;
	border-radius: 4px;
	text-transform: capitalize;
	padding: 5px;
	font-size: 15px;
}
.trending-card:hover .top-up-btn {
    color: rgb(255, 255, 255);
    background-color: rgba(96, 214, 106, 0.5);
    border-color: #20B038;
}

/* ads */

.ads-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background-color: #000;
}
.ads-container {
    background-color: rgba(32, 176, 56, 0.4);
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
}
.ads-grid .ads-container:first-child, .ads-grid .ads-container:last-child {
    background: #18230F;
}

.ads-details {
    margin-left: 10px;
    font-weight: 500;
}

.ads-title {
	text-transform: capitalize;
	font-size: 16px;
	white-space: nowrap;
	font-weight: 400;
}

.ads-label {
    font-size: 12px;
    white-space: nowrap;
    font-weight: 300;
}


/* Mobile Games */


.mobilegames-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tag-card {
    position: absolute;
    right: -6px;
    top: 0px;
    z-index: 10;
    background-color: #20B038;
    box-shadow: rgba(96, 214, 106, 0.3) 0px 3px 4px;
    color: rgb(255, 255, 255);
    font-size: 11px;
    padding: 3px 13px;
    border-radius: 3px 3px 0px;

}
.card_Games {
    margin-bottom: 20px;
  background: #3C2A21;
  padding: 15px;
  border-radius: 8px;
  min-height: 280px;
}
.mobile-container {
	padding-top: 30px;
}
.tag-card::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 2px;
    height: 5px;
    width: 5px;
    border-left: 5px solid #20B038;
    border-bottom: 5px solid #20B038;
    border-top: 5px solid #20B038;
    transform: rotate(45deg);
    border-color: transparent #20B038 transparent transparent;
    border-style: solid;
    border-width: 4px 5px 5px 4px;
}

.mobile-title {
	color: #fff;
	font-weight: 600;
	padding-top: 5px;
	font-size: 14px;
}

.mobile-companyname {
    font-size: 10px;
    color: rgba(235, 235, 245, 0.6);
}

.mobile-label {
	color: #D5CEA3;
	font-size: 12px;
	margin-top: 5px;
}

.mobile-price {
    font-size: 16px;
    font-weight: 500;
    color: #D5CEA3;
}

.mobile-original {
    text-decoration: line-through;
    color: rgba(235, 235, 245, 0.6);
    font-weight: 500;
}

.special-offers {
    background-color: #20B038;
    border-radius: 3px;
    font-size: 10px;
    padding-left: 3px;
    padding-right: 3px;
    color: #000;
    width: fit-content;
    font-weight: 500;
    margin-top: 5px;
}

.load-btn-container {
    text-align: center;
    margin-top: 15px;
}

.load-btn {
    background-color: transparent;
    border: 1px solid #20B038;
    color: #20B038;
    border-radius: 4px;
    text-transform: capitalize;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
}

.load-btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgba(96, 214, 106, 0.5);
    border-color: #20B038;
}

.advantage-box {
	background-color: #121212;
	border-radius: 10px;
	gap: 10px;
	cursor: pointer;
	margin-bottom: 7px;
	margin-top: 7px;
	border: solid 1px #333;
}

.bg-adv-grey {
    background-color: #252F45;
}

.rounded-lg {
    border-radius: 10px;
}

.adv-scroll-container {
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.adv-scroll-container::-webkit-scrollbar {
    display: none;
}

.adv-content {
    height: auto;
    min-width: 327px;
    scroll-snap-align: center;
}

.adv-indicator {
    width: 35px;
    height: 4px;
    border-radius: 1px;
    border-radius: 2px;
    background: #092d16;
    transition: background 0.3s ease-in-out;
}

.adv-indicator.bg-primary {
    transform: scale(1.2);
}

.bg-primary {
    background-color: #20B038 !important;
}
#faq-container .container {
	max-width: 900px;
}
#faq-container {
	padding: 50px 0;
	background: #000;
	margin-top: 50px;
}
.trending_Section {
	padding: 50px 0;
	background: #000;
	margin-top: 50px;
}
.container_Advantage {
	background: #000;
	padding: 30px 0 0;
	margin-top: 50px;
	background-image: linear-gradient(to bottom, #000, #1A120B);
}
.mobile-container.mid_Row {
	background: #000;
	margin: 50px 0;
	padding: 40px 0;
}












@media (max-width: 991px) {
.drawer-links li {
	width: 100%;
}
.header__list-item{
    border-bottom: solid 1px #888;
}
}


@media (max-width: 576px) {

    .country {
        width: 100%;
        height: 90%;
        background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6);
        border-radius: 8px;
    }

    .country-container {
        width: 46%;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .inner-container {
        background-color: #252F45;
        padding: 10px;
    }

    .slider-title {
        font-size: 16px;
        color: #fff;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .slider-btn {
        display: inline-block;
        padding: 8px 50px;
        border: 1px solid #60d66a;
        color: #20B038;
        font-weight: 500;
        font-size: 14px;
        width: 88%;
        transition: 0.3s ease;
        text-transform: uppercase;
        border-radius: 4px;
        margin-bottom: 30px;
        text-align: center;
    }

    .mobilegames-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .h6{
    font-size: 14px;
}

}

@media (min-width: 768px) {
    .country {
        width: 100%;
        height: 90%;
        background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6);
        border-radius: 8px;
    }

    .country-container {
        width: 30%;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .inner-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border-radius: 0 0 15px 15px;
    }

    .slider-title {
        font-size: 28px;
        color: #fff;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .slider-btn {
        display: inline-block;
        padding: 8px 50px;
        border: 1px solid #60d66a;
        color: #20B038;
        font-weight: 500;
        font-size: 14px;
        width: fit-content;
        transition: 0.3s ease;
        text-transform: uppercase;
        border-radius: 4px;
    }

    .swiper-pagination {
        display: flex;
        gap: 6px;
        z-index: 10;
        justify-content: flex-end;
        padding-right: 10px;
        padding-bottom: 15px;
    }

    .mobilegames-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}



@media (min-width: 992px) {
    .country {
        width: 70%;
        height: 70%;
        background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6);
        border-radius: 8px;
    }
    .country-container {
        width: 32%;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .inner-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        border-radius: 0 0 15px 15px;
    }

    .slider-title {
        font-size: 28px;
        color: #fff;
        font-weight: 800;
        margin-bottom: 10px;
    }

.slider-btn {
	display: inline-block;
	padding: 8px 50px;
	border: 1px solid #D5CEA3;
	color: #D5CEA3;
	font-weight: 500;
	font-size: 14px;
	width: fit-content;
	transition: 0.3s ease;
	text-transform: uppercase;
	border-radius: 4px;
	background: linear-gradient(#180000, #170000, #150000, #120000, #000000);
}

    .swiper-pagination {
        display: flex;
        gap: 6px;
        z-index: 10;
        justify-content: flex-end;
        padding-right: 10px;
        padding-bottom: 15px;
    }

    .mobilegames-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }



    .caption-group .text-white-50 {
        font-size: 16px;
    }
}