/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --fontPrimary: 'Roboto', sans-serif;
    --fontSecondary: 'Poppins', sans-serif;
    --whiteColor: #ffffff;
    --grayWhiteColor: #f7f7f7;
    --blackColor: #000000;
    --primaryColor: #a45124;
    --primaryDarkColor: #f7f7f7;
    --primaryMidColor: linear-gradient(270deg, rgba(74,55,129,1) 0%, rgba(58,41,106,1) 50%, rgba(66,48,117,1) 100%);
    --bgSliderColor: #2F215A;
    --borderColor: #4A3781;
    --dividerColor: #190F39;
    --starColor: rgb(255, 221, 0);
    --navColor: #a45124;
}

body{
    display: flex;
    justify-content: center;
    background-color: var(--blackColor);
}
.container{
    width: 40%;
    max-width: 40%;
    background-color: var(--primaryDarkColor); 
    position: relative;
    overflow: hidden;
}

/* Navbar Start */
.navbar{
    display: flex;
    justify-content: space-between;
    background-color: var(--navColor);
    padding: 20px;
}
.navbar .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar .logo a img{
    width: 50px;
    height: 50px;
    max-width: 100%;
    max-height: 100%;
}
.navbar .logo a .brand-name{
    font-size: 2rem;
    color: var(--whiteColor);
    font-weight: 700;
    font-family: var(--fontPrimary);
    padding-left: 10px;
}
.navbar .menu{
    width: 60px;
    height: 60px;
    position: relative;
    background: var(--navColor);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.navbar .menu span{
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--whiteColor);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.navbar .menu span:nth-child(1){
    left: 10px;
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
}
.navbar .menu.active span:nth-child(1){
    width: 40px;
    transform: translateY(0px) rotate(45deg);
    -webkit-transform: translateY(0px) rotate(45deg);
    -moz-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
    -o-transform: translateY(0px) rotate(45deg);
}
.navbar .menu span:nth-child(2){
    left: 10px;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
}
.navbar .menu.active span:nth-child(2){
    width: 40px;
    transform: translateY(0px) rotate(-45deg);
    -webkit-transform: translateY(0px) rotate(-45deg);
    -moz-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
    -o-transform: translateY(0px) rotate(-45deg);
}
.navbar .menu.active span:nth-child(3){
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
}
/* Navbar End  */

/* Main Menu Start */
.main-menu{
    position: absolute;
    left: -50%;
    visibility: hidden;
    overflow: hidden;
    width: 50%;
    height: 100%;
    background-color: var(--primaryColor);
    z-index: 1000;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.main-menu.active{
    left: 0;
    visibility: visible;
}

.main-menu>.menu>.menu-item{
    margin: 10px 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.main-menu>.menu>.menu-item:nth-child(1){
    margin-top: 10px;
}
.main-menu>.menu>.menu-item>.menu-link{
    font-size: 1.3rem;
    width: 100%;
    color: var(--whiteColor);
    display: block;
    padding: 10px;
}
/* Main Menu End */

/* Main Content Start */
.main-content{
    position: relative;
}
.main-content .main-img{
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: 2px dotted var(--whiteColor);
}
.main-content .btn-container{
    position: absolute;
    width: 60%;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
}
.main-content .download-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--primaryColor);
    border: 2px dotted var(--whiteColor);
    font-size: 20px;
    color: var(--whiteColor);
    padding: 15px 0px;
    animation: zoom 1s infinite alternate;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-animation: zoom 1s infinite alternate;
}
.main-content .download-btn i{
    margin-right: 10px;
}

.main-desc{
    color: var(--whiteColor);
    font-size: 14px;
    padding: 0 10px;
    margin-top: 20px;
}

@keyframes zoom {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
/* Main Content End */

/* Hero Start */
.hero{
    position: relative;
}
.hero .down-btn img{
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
/* Hero End */

/* Slider Start */
.slider-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 20px;
    background-color: var(--bgSliderColor);
    border: 2px solid var(--borderColor);
  }

  .slider-item .body{
    display: flex;
    padding: 20px 20px 0px 20px;
  }
  
  .slider-item .logo {
    margin-right: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
  }
  
  .slider-item .logo img {
    max-width: 100%;
  }
  
  .slider-item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .slider-item .title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--whiteColor);
  }
  
  .slider-item .description {
    font-size: 11px;
    margin-top: 0;
    color: var(--grayWhiteColor);
  }
  
  .slider-item > .footer {
    display: flex;
    justify-content: space-between;
    background: var(--primaryMidColor);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 20px;
  }
  .slider-item .text1{
    font-size: 14px;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .slider-item .link {
    font-size: 14px;
    color: white;
    background-color: var(--primaryColor);
    padding: 10px 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  
/* Slider End */

/* Devider Start*/
.divider{
    width: 100%;
    height: 5px;
    background: var(--dividerColor);
}
.section-title{
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    color: var(--whiteColor);
    font-size: 16px;
    font-family: var(--fontSecondary);
    font-weight: 600;
}
.section-title img{
    width: 20px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}
/* Devider End*/

/* Top Games Start */

.section-heading{
    background-color: var(--primaryColor);
    padding: 10px;
    margin: 10px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.section-heading span{
    color: var(--whiteColor);
    font-size: 1.5rem;
    text-align: center;
    display: block;
    font-family: var(--fontPrimary);
}

.top-games{
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 0px 20px;
}
.top-games .top-game{
    width: 30%;
    background: var(--bgSliderColor);
    border: 1px solid var(--borderColor);
    padding: 10px;
    margin: 35px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.top-games .top-game:first-child{
    margin-right: 10px;
}
.top-games .top-game:last-child{
    margin-left: 10px;
}
.top-games .top-game .body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-games .top-game .logo{
    width: 70px;
    height: 70px;
    margin-top: -45px;
}
.top-games .top-game .title{
    color: var(--whiteColor);
    font-size: 11px;
    margin-top: 10px;
    text-align: center;
}
.top-games .top-game .description{
    color: var(--grayWhiteColor);
    font-size: 9px;
    text-align: center;
    margin-top: 3px;
}
.top-games .top-game .footer{
    background: var(--primaryColor);
    padding: 7px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.top-games .top-game .footer a{
    font-size: 14px;
    color: var(--whiteColor);
}
/* Top Games End */

/* All Games Start */
.all-games{
    margin: 20px;
}
.all-games .all-game{
    display: flex;
    align-items: center;
    background: var(--whiteColor);
    border: 1px solid var(--navColor);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.all-games .all-game .logo{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.all-games .all-game .title{
    font-size: 18px;
    color: var(--blackColor);
}
.all-games .all-game .description{
    font-size: 11px;
    color: var(--blackColor);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.all-games .all-game .footer{
    margin-left: auto;
    margin-top: 0;
    background: var(--navColor);
    padding: 7px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.all-games .all-game .footer span{
    font-size: 14px;
    color: var(--whiteColor);
}
.all-games .all-game .footer i{
    font-size: 16px;
}
/* All Games End */

/* Social Meadia Start  */
.social-icons {
    display: none;
}
.social-icons .social{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.social-icons .social .social-item{
    margin: 0 10px;
}
.social-icons .social .social-item .social-link{
    color: var(--whiteColor);
}
.social-icons .social .social-item .social-link>i{
    background: var(--primaryMidColor);
    font-size: 1.5rem;
    text-align: center;
    line-height: 3rem;
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
/* Social Meadia End */

/* Bottom Menu Start */
.bottom-menu-section{
    margin: 0 20px;
}
.bottom-menu-section .bottom-menu{
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.bottom-menu-section .bottom-menu>.menu-item{
    display: inline-block;
    margin-right: 10px;
}
.bottom-menu-section .bottom-menu>.menu-item>.menu-link{
    text-decoration: none;
    color: black;
}
.footer{
    padding: 10px 0;
    text-transform: capitalize;
    margin-top: 30px;
    text-align: center;
    background: var(--primaryColor);
    color: var(--whiteColor);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.footer > span > a{
    color: var(--whiteColor);
}
/* Bottom Menu End */