/* 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: #8a2be2;
    --starColor: rgb(255, 221, 0);
}

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

/* Navbar Start */
.navbar{
    display: flex;
    align-items: center;
    background-color: var(--primaryColor);
    padding: 5px 10px;
}
.navbar .logo{
    width: 50%;
    float: left;
}
.navbar .logo img{
    width: 80px;
    height: 80px;
}
.navbar .nav-menu{
    width: 50%;
    display: flex;
    justify-content: end;
}
.navbar .menu{
    width: 60px;
    height: 60px;
    position: relative;
    background-color: var(--whiteColor);
    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: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.navbar .menu span{
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--primaryColor);
    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(--whiteColor);
    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{
    background-color: var(--primaryColor);
    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 */

/* Notification Ticker Start */
.ticker-section{
    background-color: rgb(99, 36, 36);
}
.ticker-section .ticker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
.ticker-section .ticker .news {
    width: 80%;
}
.ticker-section .ticker .title {
    width: 20%;
    text-align: center;
    background-color: var(--primaryColor);
    position: relative;
    color: var(--whiteColor);
    border-top: 1px solid #8303de;
}
/* .title:after {
    position: absolute;
    content: "";
    right: -25%;
    border-left: 20px solid var(--primaryColor);
    border-top: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid transparent;
    z-index: 999;
    top: 0;
} */
.ticker-section .ticker .title h5 {
    font-size: 18px;
    margin: 8% 0;
}
.ticker-section .ticker .news marquee {
    font-size: 18px;
    color: var(--whiteColor);
}
/* Notification Ticker End */

/* Top Apps Section Start  */

.heading .heading-title{
    display: block;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    padding-top: 15px;
    color: var(--primaryColor);
}
.heading .heading-line{
    width: 30%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.top-apps-section{
   margin: 20px;
   background-color: #fff;
   border-radius: 20px;
   -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
   -ms-border-radius: 20px;
   -o-border-radius: 20px;
   -webkit-box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
-moz-box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
}
#top-apps-section .top-apps{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
#top-apps-section .app .app-logo{
    width: 100px;
    border: 8px solid var(--primaryColor);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
#top-apps-section .app .app-logo>img{
    position: relative;
}
#top-apps-section .app .app-logo>.num{
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}



.app{
    text-align: center;
    position: relative;
    margin: 20px;
   width: 30%; 
}
/* .app:nth-child(1),
.app:nth-child(3){
    margin-top: 30px;
} */
.app .app-logo{
    margin: 0 auto;
    overflow: hidden;
}
.app img{
    width: 100%;
    height: auto;

}
.app:hover .social li a{ transform: scale(1); }
.app:hover .social li a:hover{ background: #7a4b94; }
.app .app-content{
    padding: 15px 15px 20px;
    background: var(--primaryColor);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    color: #fff;
}
.app .title{
    font-size: 1rem;
    font-weight: bold;
    margin: 10px 0 5px 0;
}
.app .rating i{
    color: var(--starColor);
    font-size: 0.7rem;
}
.app .app-btn{
    background: #000;;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0;
}
.app .app-btn .d-btn{
    font-size: 18px;
    color: var(--whiteColor);
    font-weight: 600;
    padding: 10px 0;
    display: block;
}

/* Top Apps Section End */

/* All Apps Section Start */
.apps-section{}
.apps-section .tabs .tabs-head{
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
    margin-right: 30px;

}
.apps-section .tabs .tabs-head .tabs-btn{
    width: 30%;
    background-color: var(--primaryColor);
    display: block;
    text-align: center;
    color: var(--whiteColor);
    font-size: 20px;
    padding: 10px 0;
    text-transform: capitalize;
}
.apps-section .tabs .tabs-head .tabs-btn i{
    color: var(--primaryColor) !important;
    font-size: 20px;
}
.apps-section .tabs .tabs-btn.active{
    background-color: var(--whiteColor); 
    color: var(--primaryColor);
    border-top: 2px solid var(--primaryColor);;
    border-left: 2px solid var(--primaryColor);;
    border-right: 2px solid var(--primaryColor);
}
.apps-section .tabs-body{
    background-color:  var(--grayWhiteColor); 
}
.apps-section .tabs-body .tabs-content{
    display: none;
}
.apps-section .tabs-body .tabs-content.active{
    display: block;
}
.apps-section .tabs-body .tabs-content .tabs-app{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 30px;
    margin-right: 30px;
    background-color: var(--whiteColor);
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
    -moz-box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
    box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
    padding: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.apps-section .tabs-body .tabs-content .tabs-app:not(:first-child){
    margin-top: 15px;
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-logo{
    width: 15%;
    min-width: 15%;
    position: relative;
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-logo .num{
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 18px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-details{
    margin-left: 15px;
}

.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-details .tabs-app-name span{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primaryColor);
}

.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-details .t-download-and-bonus .t-download,
.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-details .t-download-and-bonus .bonus{
    font-size: 15px;
    color: rgb(94, 93, 93);
    font-weight: 700;
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-details .t-download-and-bonus .t-download::after{
    content: "|";
    color: rgb(183, 183, 183);
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-app-details .min-withdraw{
    color: green;
    font-weight: 600;
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-d-btn{
    margin-left: 20px;
}
.apps-section .tabs-body .tabs-content .tabs-app .tabs-d-btn > .down-btn{
    background-color: var(--primaryColor);
    /* background-color: var(--blackColor); */
    color: var(--whiteColor);
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
/* All Apps Section End */


/* Social Meadia Start  */
.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{
    font-size: 1.5rem;
    text-align: center;
    line-height: 3rem;
    display: block;
    background-color: var(--primaryColor);
    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 .bottom-menu{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.bottom-menu-section .bottom-menu>.menu-item{
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    padding: 5px 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    margin-right: 10px;
}
.bottom-menu-section .bottom-menu>.menu-item>i{
    margin-right: 5px;
    font-size: 1rem;
}
.bottom-menu-section .bottom-menu>.menu-item>.menu-link{
    font-size: 1rem;
    text-transform: capitalize;
    color: var(--whiteColor);
}
.footer{
    padding: 10px 0;
    text-transform: capitalize;
    margin-top: 30px;
    text-align: center;
    background-color: #1a1a1a;
    color: var(--whiteColor);
}
/* Bottom Menu End */