*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    margin: 0;
    padding: 0;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#hero_area
{
    padding-top: 3rem;
}

#banner
{
    border: 1px solid #ddd;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.heading_title
{
    text-align: center;
    padding: 2rem 0;
}
.gameCard
{
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.gameCard .gameImg
{
    position: relative;
    width: 100%;
    height: 250px;
}
.gameCard img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameCard_fullwidth {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: 0;
    padding: 20px 30px 20px 15px;
    border-radius: 10px;
    background-blend-mode: multiply;
    margin-bottom: 20px;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    border: 1px solid #fff2;
    display: flex;
    align-items: center;
}
.card_overlay {
    background: linear-gradient(to right, transparent 0%, #0008 90%, #000 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}
.game_content {
    position: absolute;
    right: 8rem;
}
.nav-link {
    transition: all 0.3s ease;
    color: #fff;
}
.nav-link:hover {
    color:#F7C91B !important;
}
.game_content a
{
    text-decoration: none;
}
.game_content h2
{
    font-size: clamp(1.6rem,5vw,2.5rem);
    color: #fff;
}

.primary_btn
{
    background: #C5026B;
    display: inline-block;
    padding: 0.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 1rem 0;
    transition: all 0.2s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}
.offcanvas-body .primary_btn {
    margin: 0.5rem 0;
}
.primary_btn:hover
{
    background:  #F7C91B;
    color: #222;
}

.upay_btn
{

    background:  #F7C91B;
    display: inline-block;
    padding: 0.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 1rem 0;
    transition: all 0.2s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}
.offcanvas-body .primary_btn {
    margin: 0.5rem 0;
}
.upay_btn:hover
{
    background: #C5026B;
    color: #F7C91B;
}
.card-footer
{
    position: relative;
    background: #fff !important;

}
.card-footer a
{
    color: #222 !important;
}

/* footer */
footer
{
    background: #3c1e6e;
    padding: 2rem;
    margin-top: 5rem;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    display: inline-block;
    margin-right: 20px;
}

.footer-menu li:last-child {
    margin-right: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-menu a:hover
{
    color: #F7C91B;
    text-decoration: underline;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    display: inline-block;
    margin: 1rem 0.5rem;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    /*display: inline-block;*/
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.social-icons a:hover
{
    box-shadow: 0 0 10px 3px rgb(255, 255, 255,0.8);
}
.footer-bottom {
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #F7C91B;
}


@media (max-width: 768px) {
    .footer-menu{
        text-align: left;
    }
    .footer-menu li {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
        text-align: center;
    }
    .gameCard .gameImg {
        position: relative;
        width: 100%;
        height: 140px;
    }
    #hero_area {
        padding-top: 1rem;
    }
    .heading_title {
        text-align: center;
        padding: 1rem 0;
    }
    .carousel-item img
    {
        height: 150px !important;
        object-fit: cover;
    }
    .gameCard_fullwidth {
        height: 180px;
    }
    .card_overlay {
        background: linear-gradient(to left, transparent 0%, #0008 90%, #0008 100%);
    }
    .game_content {
        position: absolute;
        left: 1.5rem;
    }
    .primary_btn {
        background: #C5026B;
        display: inline-block;
        text-align: center;
        padding: 0.5rem 1rem;
    }
    .card-footer a {
        font-size: 16px;
    }
    .carousel-indicators {
        bottom: -20px;
        transform: scale(0.6);
    }
    .offcanvas-body .primary_btn {
        background: #C5026B;
        text-align: center;
        padding: 0.5rem 1rem;
        display: block;
        width: 150px;
        margin: 1rem auto;
    }
}

