body, p, h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif !important;
}
.game_logo {
    width: 200px;
    height: 100px;
}

.footer_text {
    margin-left: -40px;
    list-style-type: none;
}
#footer_line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #222; /* Changed sidebar background color */
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 4px 4px 4px 16px;
    text-decoration: none;
    font-size: 15px;
    color: #6B7280;
    /* color: #ddd; Changed sidebar link color */
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    /* color: #fff; Changed sidebar link hover color */
    color: #FACC15;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #222; /* Changed open button background color */
    color: white;
    padding: 8px 12px;
    border: none;
}

.openbtn:hover {
    /* background-color: #444; Changed open button hover background color */
    background-color: #1E3A8A;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
    background: linear-gradient(90deg, rgba(84, 93, 245, 0.3) 0%, rgba(71, 15, 19, 0.3) 100%);
    /* color: #fff; Changed main content text color */
    color: #111827 ;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }
    .sidebar a {
        font-size: 18px;
    }
}

.bg {
    margin: 0;
    padding: 0;
    /* background-image: url(../images/bg.jpg); */
    height: 100%;
    background-size: cover;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

.cusBtn {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(90deg, rgba(184, 93, 245, 0.3) 0%, rgba(71, 15, 19, 0.3) 100%); /* Adjusted background gradient */
    /* color: #fff; */
    color: #2563EB;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    white-space: nowrap;
    font-weight: 600;
}

.cusBtn:hover {
    background: linear-gradient(90deg, rgba(71, 15, 19, 0.3) 0%, rgba(184, 93, 245, 0.3) 100%); /* Adjusted hover background gradient */
}


.ContactUsInput {
    box-sizing: border-box;
    border: 2px solid #FACC15; /* Red border */
    /* color: #fff; */
    color: #FACC15;
    border-radius: 4px;
    font-size: 16px;
    background-color: #2563EB; /* Red background with transparency */
    background-position-x: 96%;
    background-position-y: 15px;
    background-repeat: no-repeat;
    background-size: 15px;
    padding: 12px 52px 12px 20px;
    border-radius: 12px;
    outline: none;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.ContactUsInput:hover {
    /* border: 2px solid #474747; Dark gray border on hover */
    border: 2px solid #FACC15;
}

.ContactUsInput:focus {
    border: 2px solid var(--theme-color); /* Adjusted focus border color */
}

.about_us {
    background: linear-gradient(90deg, rgba(245, 45, 58, 0.3) 0%, rgba(184, 93, 245, 0.3) 100%); /* Gradient from red to purple with transparency */
    padding: 10px;
    border-radius: 10px;
}


.bg_img {
    height: auto;
    display: block;
    width: fit-content;
    opacity: 1.3;
    z-index: -3;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
}

.gameArea {
    height: 600px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* background-color: #f3434e35; Adjusted background color */
    background-color: #1E3A8A01;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.playtxt {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 1.5rem;
    padding-bottom: 20px;
}

.PlayBtn {
    position: absolute;
    background-color: #F9FAFB; /* Updated background color */
    box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4);
    padding: 10px 30px;
    font-size: 18px;
    width: fit-content;
    height: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 45%;
    border-radius: 10px;
}

.PlayBtn:hover {
    background-color: #FACC15; /* Updated background color */
    color: #ffffff;
}

.MainHVR {
    transition: all 0.4s;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.game {
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    color: #111827;
}


.MainHVR:hover .game {
    bottom: 8px;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: #555; /* Change the background color */
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
    background: #f1f1f1; /* Change the thumb color */
}

/* Scrollbar Thumb on Hover */
::-webkit-scrollbar-thumb:hover {
    background: #888; /* Change the thumb color on hover */
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

.margTop {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    margin-top: -50px;
}


.header {
    /* padding: 20px 30px; */
    /* vertical-align: cen; */
    /* box-shadow: 2px 5px 15px rgba(124, 0, 87, 0.75); */
    /* border-radius: 20px;    
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px; */
    /* background-color: white; */
    /* border: 3px solid; */
    /* border-color: red; */
    height: 130px;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    /* background: linear-gradient(90deg, rgba(243, 67, 79, 0.3) 0%, rgba(245, 45, 58, 0.3) 100%); Updated gradient colors */
    background-color: #1E3A8A ;
}


.navGradiant {
    /* height: 80px; */
}

.bgGradiant {
    /* height: ;
    padding: 0 10px; */
}

.navbar {
    display: flex;
}

.navItem {
    letter-spacing: 0px !important;
    font-weight: 650;
    white-space: nowrap;
    position: relative;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    color: #ffffff; /* Updated color with some opacity */
    /* border-bottom: none; */
}


.navItem:hover {
    color: #FACC15; /* Updated color with some opacity */
    border-top: 1px solid #FACC15; /* Red border-top with opacity */
    border-bottom: 1px solid #FACC15; /* Red border-bottom with opacity */
}


.icon {
    display: none;
}

/* .navIcon { 
    display: none;
     font-size: 20px !important;
    color: white !important;
    margin-left: 30px;
    line-height: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s; x
}*/

body {
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    position: relative; /* Sets position relative */
    font-family: Montserrat, sans-serif; /* Sets the font family */
    font-weight: 300; /* Sets the font weight */
    font-size: 1rem; /* Sets the font size to 16px */
    line-height: 1.75; /* Sets the line height */
    color: #6B7280; /* Sets the text color to white */
    background-color: #F9FAFB; /* Sets the background color to a dark purple */
    width: 100%; /* Sets the width to 100% of the viewport width */
}


a {
    color: currentColor;
    text-decoration: none;
    transition: color .2s ease-out;
    /* font-size: 15px; */
}

.container {
    /* background-color: #0046ab; */
    width: 80%;
    display: block;
    overflow: hidden;
    padding-left: 10%;
    padding-right: 10%;
}

.games_decor_title {
    position: absolute;
    z-index: -1;
    font-size: 10.6875rem;
    font-weight: 1000;
    line-height: 1;
    text-transform: uppercase;
    color: #f44336; /* Change the text color to a shade of red */
    -webkit-transform: translateX(-50%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
}


.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px;
}

.items {
    width: max-content;
}

.game-card__cover {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.game-link {
    display: block;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.game-link:focus,
.game-link:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08)
}
#footer_line_phone{
    visibility: hidden !important;
}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
    body {
        align-items: center;
        /* padding-top:70px; */
    }
    .games_decor_title {
        font-size: 12.375rem;
    }
    .game-card__cover {
        width: 180px;
        height: 180px;
    }
    .navItem {
        font-size: 1rem;
        padding: 0px 10px;
    }
    .container {
        /* background-color: #0046ab; */
        width: 90%;
        display: block;
        overflow: hidden;
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Small Devices, Tablets and Medium Devices, Desktops*/

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .game-card__cover {
        width: 160px;
        height: 160px;
    }
    .games_decor_title {
        font-size: 7.375rem;
    }
    .game-card__cover {
        width: 160px;
        height: 160px;
    }
    .navItem {
        font-size: 0.8rem;
        padding: 0px 7px;
    }
    .container {
        /* background-color: #0046ab; */
        width: 90%;
        display: block;
        overflow: hidden;
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* Custom, iPhone Retina and Small Devices, Phones */

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .game-card__cover {
        width: 100px;
        height: 100px;
    }
    .games_decor_title {
        font-size: 1.375rem;
    }
    .navItem {
        font-size: 0.7rem;
        padding: 0px 6px;
    }
    .container {
        /* background-color: #0046ab; */
        width: 90%;
        display: block;
        overflow: hidden;
        padding-left: 5%;
        padding-right: 5%;
    }
    div#footer-res {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding: 0px 20px !important;
    overflow:  hidden  !important;
}
div#game_logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-content: center;
}
div#footer_content {
    width: 80% !important;
}
div#footer-menu {
    width: 100% !important;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px !important;
}
#footer_line {
   visibility: hidden !important;
}
#footer_line_phone{
    visibility: visible !important;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 20px;
    margin-top: -70px;
}
footer {
    overflow: hidden;
}
}


@media (max-width:320px) {
    .game-card__cover {
        width: 50px;
        height: 50px;
    }
    .games_decor_title {
        /* font-size: 1.375rem; */
        display: none;
    }
    .navItem {
        font-size: 0.3rem;
        padding: 0px 4px;
    }
    .container {
        /* background-color: #0046ab; */
        width: 90%;
        display: block;
        overflow: hidden;
        padding-left: 5%;
        padding-right: 5%;
    }
        div#footer-res {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding: 0px 20px !important;
    overflow:  hidden  !important;
}
div#game_logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-content: center;
}
div#footer_content {
    width: 80% !important;
}
div#footer-menu {
    width: 100% !important;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px !important;
}
#footer_line {
   visibility: hidden !important;
}
#footer_line_phone{
    visibility: visible !important;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 20px;
    margin-top: -70px;
}
footer {
    overflow: hidden;
}
}

@media (max-width:500px) {
    .ms-auto {
        display: none;
    }
    .header {
        display: none;
    }
    .icon {
        display: flex;
        border-radius: 8px;
    }
    .navIcon {
        display: flex;
        width: 18px;
        height: 18px;
        justify-content: center;
    }
    .cusBtn {
        padding: 8px 10px;
        border-radius: 8px;
    }
    .playtxt {
        font-size: 1.2rem;
    }
    .PlayBtn {
        padding: 5px 15px;
        font-size: 15px;
        left: 40%;
    }
        div#footer-res {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding: 0px 20px !important;
    overflow:  hidden  !important;
}
div#game_logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-content: center;
}
div#footer_content {
    width: 80% !important;
}
div#footer-menu {
    width: 100% !important;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px !important;
}
#footer_line {
   visibility: hidden !important;
}
#footer_line_phone{
    visibility: visible !important;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 20px;
    /* padding-left: 20px;
    padding-right: 20px; */
    margin-top: -70px;
}
footer {
    overflow: hidden;
}
}

@supports (-webkit-text-stroke:1px) {
    .games_decor_title {
        color: transparent;
        -webkit-text-stroke: 1px #0046ab;
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}