@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #f1683a;
    --secondary-color: #0d6efd;
    --third-color: 	#c31628;
    --fourth-color: #37a306;

}

::-webkit-scrollbar {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #ff9977;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

body,html {
    scroll-behavior: smooth;
}

body.overflow{
    overflow: hidden;
}


body{ 
    font-family: 'Poppins';
    background: #212121;
    font-size: 16px;
    overflow-x: hidden;
}

header {
    width: 85vw;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212121;
    border-radius: 50px;
    overflow: hidden;
    z-index: 100;

}

.container-slider{
    width: 85%;
    height: 80vh;
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.container-slider .carousel {
    width: 100%;
    height: 100%;
    overflow: none;
    border: none;
}

.container-slider .carousel .carousel-inner .carousel-item img,
.container-slider .carousel .carousel-inner .carousel-item,
.container-slider .carousel .carousel-inner {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0px;

}


.search-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999999999;
    background: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: 0.3s;
}

.search-box.open {
    transform: scale(1);
    transition: 0.3s;

}

#closeSearchBox {
    position: absolute;
    top: 20px ;
    right: 20px;
    color: #555;
    font-size: 25px;
    cursor: pointer;
}

#closeSearchBox:hover {
    color: var(--main-color);
}

.search-box .search-input-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 80%;
    height: 50px;

}

.search-box .search-input-container input {
    height: 100%;
    width: 50%;
    outline: none;
    border: none;
    border: 1px solid #fdfdfd;
    border-right: none;
    background: #202020;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
    transition: 0.3s;
}

.search-box .search-input-container input:hover,
.search-box .search-input-container input:focus {
    border-color: var(--main-color);
    padding-left: 30px;
}

.search-box .search-input-container button {
    background: var(--main-color);
    border: none;
    border: 1px solid #fdfdfd;
    padding: 5px 25px;
    font-size: 20px;
    color: #fff;
    border-left: none;
    border-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
}


nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

nav img {
    width: 100px;
    height: 70px;
    

}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li {
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
    margin: 0 5px;
    margin-top: 13px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
    
}

nav ul li a i{
    font-size: 16px;
    
}

nav ul li a span{
    font-size: 0px;
    margin-left: 2px;
    transition: 0.3s;
    
}



nav ul li:hover a {
    font-weight: 900;
    
}

nav ul li:hover {
  background-color: var(--main-color);
  
}

nav ul li:hover span {
    font-size: 13px;
}

.search{
    border-radius: 30px;
}


#home {
    height: 100vh;
    width: 100%;
    
}

#home {
   
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



#home .headers {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

#home .headers h1 {
    font-size: 45px;
}

#home .headers p {
    width: 50%;
    font-size: 13px;
}

#home .headers .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
}

#home .headers .buttons a {
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    background: var(--main-color);
    text-decoration: none;
    border-radius: 3px;
}


#home .headers .buttons a:nth-child(2){
    background: transparent;
    border: 1px solid #fff;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);

}


#home .headers .buttons a:hover:nth-child(2){
    background: var(--main-color);
    
}

.search-themes-box {
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 30%;
    right: 0;
    padding: 20px 15px;
    color: #fff;
    z-index: 100;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;

    
}

.search-themes-box i {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.search-themes-box a {
    color: #fff;
    text-decoration: none;
}

.search-themes-box i:hover {
    transform: scale(1.2);
}

#store {
    color: #fff;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width:100%;
    position: relative;
    background: linear-gradient(360deg, #fa7271 5px , var(--main-color));
}


#store h2 {
    font-family: 'Rowdies';
    padding-top: 40px;
    margin-bottom: 0;
    font-size: 30px;
    text-align: center;
    z-index: 999;
}




.container-games,
.suggestions,
.vouchers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 300.859px;
    gap: 20px;
    width: 90%;
    margin: auto;
    padding: 30px 0;
    position: relative;
}

/* SLIDE INFO */
#slideInfoBtnContainer {
    padding: 0;
}
#slideInfoBtnContainer:hover {
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
}

#slideInfoBtnContainer button {
    height: 55px;
    width: 70px;
    overflow: hidden;
}
#slideInfoBtnContainer button img{
    width: 100%;
    border-radius: 50%;
    height: 100%;
}
.offcanvas {
    background: #202020;
    border: none;
    box-shadow: 10px 7px 50px rgba(255, 255, 255, 0.5);
}

.offcanvas .offcanvas-header .btn-close {
    color: #fff;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.user-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 17px;
}


.user-info::after {
    content: '';
    background: var(--main-color);
    height: 3px;
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

#userName{
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

#userProfileImage {
    width: 30%;
    height: 70%;
    border-radius: 50%;
}
#userEmail {
    font-size: 13px;
    color: #656565;
}

.log-out {
    color: #fff;
    background: var(--secondary-color);
    border-radius: 20px;
    margin-top: 18px;
}

.voucher-container {
    width: 90%;
    padding: 10px;
    border-radius: 10px;
    background: rgb(241,104,58);
    background: linear-gradient(160deg, rgba(241,104,58,1) 0%, rgba(241,181,58,1) 35%, rgba(255,0,56,1) 100%);

}

.voucher-container h4{
    font-size: 18px;
}

.voucher-container .voucher-info ul {
    list-style: circle;
    width: 100%;
}

.voucher-container a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    background: rgb(241,104,58);
    background: linear-gradient(360deg, rgba(241,104,58,1) 0%, rgba(241,181,58,1) 0%, rgba(255,0,56,1) 100%);
    transition: 0.3s;
}

.voucher-container a:hover {
    background: rgb(241,104,58);
    background: linear-gradient(90deg, rgba(241,104,58,1) 0%, rgba(241,181,58,1) 0%, rgba(255,0,56,1) 100%);    
}

.subscribe-vouchers-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.voucher-container .voucher-info ul li{
    font-size: 14px;
    width: 100%;
    transition: 0.3s;
}



.social-links-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;

}
.social-links-container {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.social-links-container ul li {
    margin: 5px;
    padding: 0 10px;
    padding-left: 0;
    border-radius: 5px;
    overflow: hidden;
    width: 89px;
    max-height: 40px;
}

.social-links-container ul li.open-social-link {
    width: 100%;
    transition: 0.3s;
}

.social-links-container ul li.open-social-link a{
    font-size: 16px ;
    transition: 0.3s;
}

.social-links-container ul li:nth-child(1) {
    background: #1877F2;

}
.social-links-container ul li:nth-child(2) {
    background: #000;

}
.social-links-container ul li:nth-child(3) {
    background: #fccc63;

}
.social-links-container ul li:nth-child(4) {
    background: #ff0000;

}

.social-links-container ul li .social-link-text {
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
    font-size: 0;
}

.social-links-container ul li i {
    height: 100%;
    padding: 10px 10px;
    background: #1877F2;
    min-width: 45px;
    padding-left: 33px;
    font-size: 20px;
    transition: 0.3s;

}

.social-links-container ul li:hover .social-link-text{
    font-weight: 900;
        
}

.social-links-container ul li i.fa-facebook {
    background: #1877F2;
}
.social-links-container ul li i.fa-x-twitter {
    background: #000;
}
.social-links-container ul li i.fa-instagram {
    background: #fccc63;
}
.social-links-container ul li i.fa-youtube {
    background: #ff0000;
}

/* PAYMENT HISTORY SECTION */
.last-payments {
    background: #333;
    border-radius: 7px;
    padding: 7px;
}
.last-payments ul {
    list-style: none;
    gap: 7px;
    padding-right: 33px;
    padding-bottom: 20px;
    padding-top: 10px;
}

.last-payments ul li {
    background: #444;
    width: 100%;
    padding: 10px 20px;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.5s;
}

.last-payments ul li:hover {
    transform: scale(1.1);
}

.last-payments ul li a{
    color: #fff;
    text-decoration: none;
}

.last-payments ul li a i {
    background: var(--main-color);
    padding: 2px 3px;
    border-radius: 7px;
}

.show-all-history-cont {
    display: flex;
    justify-content: center;
    align-items: center;
}

.show-all-history-cont a {
    color: #fff;
    background: rgb(241,104,58);
    background: linear-gradient(360deg, rgba(241,104,58,1) 0%, rgba(241,181,58,1) 0%, rgba(255,0,56,1) 100%);
    padding: 5px 10px ;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
}

.show-all-history-cont a:hover {
    background: rgb(241,104,58);
    background: linear-gradient(90deg, rgba(241,104,58,1) 0%, rgba(241,181,58,1) 0%, rgba(255,0,56,1) 100%);    
}

/* <<<======------ (*w*) ------======>>> */

#scrollUpBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
    cursor: pointer;
    background: var(--main-color);
    padding: 16px 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 10px 20px 80px rgba(0, 0, 0, 0.5);
}
.container-games > a,
.vouchers > a,
.suggestions > a {
    color: #fff;
    text-decoration: none;
    height: 100%;
}

.item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 30%;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%);
    right: 0;
    width: 90%;
    margin: auto;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    transition: 0.5s ease-out;
}

.container-games > a:hover .item img,
.vouchers > a:hover .item img,
.suggestions > a:hover .item img {
    transform: scale(1.2);
}


.container-games > a:hover .item .item-content,
.vouchers > a:hover .item .item-content,
.suggestions > a:hover .item .item-content {
    height: 96.66%;
    justify-content: start;
}

.container-games > a:hover .item .item-content h4,
.vouchers > a:hover .item .item-content h4,
.suggestions > a:hover .item .item-content h4 {
    padding-top: 20px;

}

.custom-shape-divider-bottom-1713900081 {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1713900081 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1713900081 .shape-fill {
    fill: #F1683A;
}

@media (max-width: 992px) {
    .custom-shape-divider-bottom-1713900081 svg {
        width: 200vw;
    }
  
    
}






.item{
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: stretch;
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
    height: 100%;
    overflow: hidden;
    z-index: 99999999;
}


.item .item-desc {
    position: absolute;
    left: 120%;
    top: 20%;
    bottom: 0;
    z-index: 3;
    width: 80%;
    font-size: 12px;
    transition: 0.5s cubic-bezier(1,.18,.07,.69);
    padding: 15px;
    display: flex;
    justify-content: center;
    

}

.item .item-desc p {
    word-wrap: break-word;
    text-transform: capitalize;
    text-align: center;
}

.container-games > a:hover .item .item-desc,
.vouchers > a:hover .item .item-desc,
.suggestions > a:hover .item .item-desc {
    left: 50%;
    transform: translateX(-50%);
}


.item:hover{
  transform: scale(1.1);
  border: 2px solid var(--main-color);
}

.item:hover .item-content,
.container-games .item img,
.suggestions .item img,
.vouchers .item img{
    border: 1px solid var(--main-color);
}

.item h4{
    text-align: center;
    font-size: 14px;
    
}



.item a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 13px;

    
}

.item a:hover{
    background: transparent;
}



.container-games .item img,
.suggestions .item img,
.vouchers .item img{
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.container-games .item img:hover,
.suggestions .item img:hover,
.vouchers .item img:hover {

    transform: scale(1.2);
}


.shadow-inset-center {
	-webkit-animation: shadow-inset-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-inset-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-4-23 18:40:32
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shadow-inset-center
 * ----------------------------------------
 */
 

@media (max-width: 1175px) {
   
    .store-header {

        font-size: 30px;
    }

   
    #store h2 {
        font-size: 30px;
        padding-left: 40px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }

    .container-games a  .item .item-content h4,
    .suggestions a  .item .item-content h4,
    .vouchers a .item .item-content h4{
        font-size: 16px;
    }


    .container-games,
    .vouchers {
        grid-template-rows:   repeat(2, 293.06px);
        grid-template-columns: repeat(3,1fr);
        padding-top: 20px;
        width: 65%;
    }
    .suggestions {
        grid-template-columns: repeat(3,1fr);
        padding-top: 20px;
    }
}

@media (max-width: 892px) {

  

   
    .container-games,
    .vouchers {
        grid-template-rows:   repeat(2, 293.06px);
        grid-template-columns: repeat(3,1fr);
        gap: 30px;
        padding-top: 20px;
        width: 80%;
    }
    .suggestions {
        grid-template-columns: repeat(3,1fr);
        padding-top: 20px;
    }
}

@media (max-width: 770px) {

  

    .container-games,
    .vouchers {
        grid-template-rows:   repeat(3, 293.06px);
        grid-template-columns: repeat(2,1fr);
        width: 70%;
        padding-top: 20px;
    }
    .suggestions {
        grid-template-rows: 293.06px;
        grid-template-columns: repeat(2,1fr);
        padding-top: 20px;
    }
}

@media (max-width: 687px) {



    .container-games,
    .vouchers {
        grid-template-rows:   repeat(6, 293.06px);
        grid-template-columns: 1fr;
        width: 55%;
        padding-top: 20px;
    }
    .suggestions {
        grid-template-rows: repeat(2, 293.06px);
        grid-template-columns: repeat(3,1fr);
        padding-top: 20px;
    }
}

#openNavBtn {
    position: absolute;
    right: 30px ;
    top: 33px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    z-index: 100000;
    cursor: pointer;
    display: none;
}


@media (max-width: 599px) {
    header {
        justify-content: center;
        align-items: center;
        z-index: 1000000;
        transition: 0.3s;
        width: 100vw;
    }

    header.max-height {
        height: 100vh;
        border-radius: 7px;
        transition: 0.3s;
        position: fixed;
    }
 
    header nav{
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        
        
    }

    #openNavBtn {
        display: block;
    }

    header nav.maximize {
        height: 100%;
        padding-bottom: 100px;
        transition: 0.3s;
    }

    header ul{
        flex-direction: column;
        transform: scale(0);
        transition: transform 0.3s;
    }

    header nav ul.show {
        transform: scale(1);
    }

    header nav li a span{
        font-size: 15px;
    }
}

@media (max-width: 583px) {

  


    .container-games,
    .vouchers {
        grid-template-rows:   repeat(6, 293.06px);
        grid-template-columns: repeat(1,1fr);
        padding-top: 20px;
    }
    .suggestions {
        grid-template-rows: repeat(2, 293.06px);
        grid-template-columns: repeat(3,1fr);
        padding-top: 20px;
    }
}

@media (max-width: 499px) {


    header nav  {
        justify-content: start;
        gap: 50px;
    }

    

    #store h2 {
        padding-left: 20px;
    }

    .container-games,
    .vouchers {
        grid-template-rows:   repeat(6, 293.06px);
        grid-template-columns: repeat(1,1fr);
        padding-top: 20px;
    }
    .suggestions {
        grid-template-rows: repeat(2, 293.06px);
        grid-template-columns: repeat(3,1fr);
        padding-top: 20px;
    }
}




footer {
    background: #fa7271;
    padding: 20px;
    color: #fff;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}



footer h3 {
    font-size: 20px;
}
.logo-footer {
    width: 150px;
    height: 90px;
}


footer .footer-container {
    z-index: 999;
    position: relative;
}


footer .footer-container .bloger-footer-about p {
    font-size: 12px;
    padding-left: 10px;
    z-index: 999;
}


footer .footer-container .other-links {

    padding-left: 60px;
}


footer .footer-container .other-links ul,
footer .footer-container .contact-social ul {
    list-style: none;
    padding: 0;
}


footer .footer-container .other-links ul li,
footer .footer-container .contact-social ul li {
    padding-top: 5px;
    z-index: 999;
}


footer .footer-container .other-links ul li a ,
footer .footer-container .contact-social ul li a {
    color: #555;
    transition: 0.3s;
    text-decoration: none;
    z-index: 999;
    font-weight: 800;
}

footer .footer-container .other-links ul li a:hover ,
footer .footer-container .contact-social ul li a:hover {
    color: #c62368;
}

footer .footer-container .contact-email {
    position: relative;
    z-index: 999;
}


footer .footer-container .contact-email input {
    width: 95%;
    height: 30px;
    background: #444;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    margin: 10px 0;
    transition: .3s;
    border-radius: 2px;
    color: #fff;
    z-index: 999;
}

footer .footer-container .footer-content {
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    column-gap: 50px;
    padding-top: 50px;
}

footer .footer-container .contact-email textarea {
    width: 95%;
    background: #444;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    outline: none;
    transition: .3s;
    border-radius: 2px;
    color: #fff;
    z-index: 999;
}


footer .footer-container .contact-email input::placeholder {
    color: #fff;
}


footer .footer-container .contact-email textarea::placeholder {
    color: #fff;
}


footer .footer-container .contact-email textarea:hover {
    padding-left: 20px;
}


footer .footer-container .contact-email input:hover {
    padding-left: 20px;
}


#sendEmailBtn {
    background: var(--main-color);
    width: 95%;
    margin-top: 5px;
    padding: 10px;
    font-weight: 500;
    color: #fff;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

#sendEmailBtn:hover {
    border-color: var(--main-color);
}


  
 
#visual {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    right: 0;
}

#visual2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    right: 0;
}



footer .copyright-cont {
    width: 100%;
    text-align: center;
    color:#fff;
}

@media (max-width:984px) {
    footer .footer-container .footer-content{
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    
    
    footer .footer-container .other-links {
        padding-left: 10px;
    }
    
    
    footer .copyright-cont {
        padding-top: 20px;
    }    
}



