body {
  background: #fff;
  font-family: 'PingFang HK', 'Helvetica Neue', 'Microsoft YaHei New', 'STHeiti Light', sans-serif;
  color: #1459b5;
}
html {
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body {
    padding-top: 160px;
}
/********************************custom override ********************************/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
   font-family:  Arial, Helvetica, "Microsoft YaHei New", "Microsoft Yahei", SimSun, sans-serif;
  color: #1459b5;;
}
h1, .h1 {
  font-size: 40px;
  font-weight: 600;
}
h2, .h2 {
  font-size: 32px;
  font-weight: 600;
}
h3, .h3 {
  font-size: 28px;
}
h4, .h4 {
  font-size: 24px;
}
h5, .h5 {
  font-size: 20px;
}
h6, .h6 {
  font-size: 18px;
}
p {
  color: #606060;
  font-size: 1.2rem;
  text-decoration: none;
  line-height: 1.8rem;
}
.lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
li {
  text-decoration: none;
  font-size: 1.2rem
}
.text-body {
  color: #606060 !important;
}
ol.text-body, ul.text-body {
  color: #606060 !important;
}
a {
  color: #1459b5;
  text-decoration: none !important;
}
a:hover, a:focus {
  color: #f5c645;
  text-decoration: none;
}
section, footer {
  padding: 30px 0;
  margin: 0;
}
.form-control::placeholder {
  color: #8F8F8F;
  opacity: 1;
}
.fas, .fab {
  min-width: 22px;
}
.text-primary {
  color: #f5c645 !important;
}
.bg-primary {
  background-color: #f5c645 !important;
}
.border-primary {
}
.btn {
    border-radius: 50px;
}
.btn-lg {
    padding: 0.3rem 0.5rem;
    max-width: 320px;
    max-width: 320px;
}
.btn-yellow {
  color: #fff !important;
  background-color: #f5c645;
  border-color: #f5c645;
}
.btn-yellow:hover, .btn-yellow:active, .btn-yellow:focus   {
  color: #fff !important;
  background-color: #915539 !important;
  border-color: #915539 !important;
}
.btn-green {
  color: #fff !important;
  background-color: #bada55;
  border-color: #bada55;
    border-radius: 0 !important;
}
.btn-green:hover, .btn-green:active, .btn-green:focus   {
  color: #fff !important;
  background-color: #000 !important;
  border-color: #bada55 !important;
}
.btn-gray {
  color: #fff;
  background-color: #878787;
  border-color: #878787;
}
.btn-gray:hover, .btn-gray:active, .btn-gray:focus {
  color: #fff;
  background-color: #915539 !important;
  border-color: #915539 !important;
}

.fa, .fas, .fab {
  width: 20px;
  padding-right: 5px;
  color: #1459b5;
}

table {
  margin-bottom: 35px;
  font-size: 16px;
}
hr {
  border-top: 1px solid #AAAAAA;
  border-bottom: 1px solid #fff;
}
.transparent-bg {
  background-color: transparent !important;
}
.white-bg {
  background-color: #fff;
}
.gray-bg {
  background-color: #ececec;
}

figure {
  margin-bottom: 24px;
}
.br-0 {
  border-radius: 0;
}
.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.text-highlight {}

.darkbg, .darkbg p, .darkbg li, .darkbg a, .darkbg a:active {
  color: #fff !important;
}
.darkbg h1, .darkbg h2, .darkbg h3, .darkbg h4, .darkbg h5, .darkbg h6 {
  color: #fff;
}
/********************************Global animation ********************************/
a, h1, h2, h3, h4, h5, h6, p, ul, li, ::before, ::after, .btn, .images-block, .images-block figcaption, .images-block img, .images-block figcaption h2, .images-block figcaption p, .fas, .fab, .card, .nav-link, .dropdown-item {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

/*********************** *********Global- background images hover effects******************************/
.images-block {
  background-color: #000;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 450px;
}
.images-block img {
  opacity: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.images-block:hover img {
  opacity: 1;
  -webkit-transform: scale3d(1.03, 1.03, 1);
  -moz-transform: scale3d(1.03, 1.03, 1);
  transform: scale3d(1.03, 1.03, 1);
}
.images-block figcaption {
  color: #fff !important;
  font-size: 24px;
  text-align: left;
  font-weight: 400;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  opacity: 1;
  width: 100%;
  min-height: 20px;
  max-height: 150px;
  overflow: hidden;
}
.images-block figcaption p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
	margin-bottom: 5px;
}
.top-banner .images-block, .top-banner .images-block img {
  max-height: 600px;
    min-height: 250px;
}
.top-banner .images-block figcaption {
     background-color: rgba(0, 0, 0, 0) !important;
}
.top-banner .images-block:hover img {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/********************************top header block ********************************/
/* Header styling */
header {
  background-color: #fff;
  color: #fff;
  padding: 1rem 0 0.5rem;
  height: 170px; /* Fixed height for header */
}
header .sub-heading {
 color: #6d6d6d;
    margin-bottom: 8px;
  font-size: 1.2rem !important;
}
header h5 {
  font-size: 2rem;
    font-weight: bold;
    color: #1459b5;
}

header .logo-blk {
    text-align: center;
    /*max-width: 500px;*/
    margin: auto;
}
  .navbar-custom .nav-link, .navbar-custom .dropdown-item {
    color: #1459b5;
      /*background-color: #000;*/
      font-size: 18px;
  position: relative;
  margin: 0 0.5rem;
  padding-top: 10px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-bottom: solid 1px rgba(0, 0, 0, 0);
}  
.navbar-custom .dropdown-item {
    margin: 0;
}
.navbar-custom .nav-link:hover, .navbar-custom .dropdown-item:hover {
  color: #deb75b;
}
.navbar-custom .nav-link.active, .navbar-custom .dropdown-item.active {
     color: #deb75b;
}
.navbar-custom .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: white;
  transition: height 0.3s;
  z-index: 0;
}

.navbar-custom .nav-link:hover::before {
  height: 5px;
}
.navbar-custom .dropdown-menu {
    background-color: #000;
    color:#fff;
}
.navbar-custom .dropdown-item {
     color:#fff;
}
.navbar-custom .dropdown-item:hover {
    background-color: #000;
    color: #deb75b;
}
#offcanvasNavbar2 .offcanvas-body, #offcanvasNavbar2 .offcanvas-header {
  color: #1459b5 !important;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out 0s;
}

.offcanvas-title {
  color: #fff;
}
.game-listing .card {
    border: solid 1px #F9F9F9;
}
.game-block {
    padding: 15px;
  border: 1px solid #dee2e6;
  margin-bottom: 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 5px 25px 15px rgba(109,141,173,0.25);
}
.game-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
}
.game-col {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Fixed-height vertical divider */
.game-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  height: 80px;
  width: 1px;
  background-color: #000;
  top: 50%;
  transform: translateY(-50%);
}
/* Responsive stacking */
@media (max-width: 991.98px) {
  .game-col {
      
    flex: 0 0 100%;
    max-width: 100%;
    border-top: 0px solid #000;
      padding: 0.5rem 1.5rem;
    justify-content: center;
  }
  .game-col:first-child {
    border-top: none;
  }
  .game-col::before {
    display: none !important;
  }
}
.game-logo img {
  max-height: 60px;
}
.game-title {
  font-weight: 600;
  font-size: 1rem;
}

.star-rating {
  color: #f8c102;
  font-size: 1.2rem;
     padding: 0.2rem;
}
.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 80%;
    margin: auto;
    align-items: center; 
}
.btn-stack .btn {
  min-width: 80%;
}
.game-description {
  padding: 0.2rem 1rem;
  font-size: 0.75rem;
  color: #555;
}

/* ----------------
  banner Section
  ---------------------*/

#banner {
  background: radial-gradient(circle farthest-corner at 54% 25%, #FFD9D7 2.631578947368421%, #94BBE9 62.28070175438597%);
}
.banner-section {
  background: radial-gradient(circle farthest-corner at 54% 25%, #FFD9D7 2.631578947368421%, #94BBE9 62.28070175438597%);
  margin: 0;
}


/*********************** ********* pages ******************************/
section.bg {
  background-color: #09356f;
}
.list-group-block {
    border-radius: 5px !important;
    box-shadow: 0px 5px 25px 15px rgba(109,141,173,0.25);
}

.list-group-item {
    padding: 25px;
}
/*********************** ********* blog ******************************/
.blog-list {
    padding: 20px 15px;
}
.blog-list a {
  color: #f5c645;
  text-decoration: none !important;
}
.blog-list a:hover, .blog-list a:focus {
  color: #000;
  text-decoration: none;
}

#blog-right-col  {
    border-left: solid 1px #eee;
}
#blog-right-col .post-title {
    font-size: 16px;
    line-height: 20px;
}


#recommendations .card { 
    border: 0;
    border-bottom: solid 1px #ddd;
    padding: 15px;
    min-height: 280px;
}
#recommendations .card img { 
    padding: 0;
    padding-top: 15px;
}

#recommendations .card, #recommendations .card p { 
    font-size: 12px !important;
    color: #808080;
}

#recommendations .card .btn , #recommendations .card .btn-yellow {
    border-radius: 0 !important;
}


.light-sky-bg {
    background-color: #edf4ff;
}
/*********************** ********* Footer ******************************/

footer {
  background-color: #1459b5;
  text-decoration: none;
  max-width: 100%;
  padding: 1.5rem;
}
footer .box {
  border: solid 1px rgba(255, 255, 255, 0.2);
  padding: 25px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  footer .box {
    height: 350px;
  }
}
footer a:hover {
  text-decoration: underline !important;
}

footer, footer p, footer a {
  font-size: 1.4rem !important;
  line-height: 2.1rem !important;
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .fa, footer .fas, footer .fab {
  font-size: 1.6rem;
  color: #fff;
  margin-right: 1rem;
}

.custom-toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 91; /* above everything inside header */
  margin: 10px;
}

/* Optional: Adjust size or color if needed */
.custom-toggler .navbar-toggler-icon {
  background-size: contain;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hide toggle on extra-large screens and above */
@media (min-width: 1200px) {
  .custom-toggler {
    display: none;
  }
}