/*
 |=======================================================================================================================
 | Overview Using Less Steps
 |=======================================================================================================================
 | 1. npm install -g less
 | 2. npm install -g less-watch-compiler
 | 3. npm install css-minify -g
 | 4. less-watch-compiler
 | 5. css-minify -f filename
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | Install Less with Node.js
 |=======================================================================================================================
 | #https://lesscss.org
 |
 | npm install -g less
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | Compile .less to .css 
 |=======================================================================================================================
 | #Example Command Line Usage, work with Windows
 | lessc main.less main.css
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | LESS CSS Watch Compiler
 |=======================================================================================================================
 | https://www.npmjs.com/package/less-watch-compiler
 |-----------------------------------------------------------------------------------------------------------------------
 | #The commands below may need to be prefixed with sudo depending upon your system
 | npm install -g less-watch-compiler
 |
 | #The Project Can Be Compiled With The Following Command:
 | less-watch-compiler
 |-----------------------------------------------------------------------------------------------------------------------
 */
/*
 |=======================================================================================================================
 | Using Minify CSS with CMD
 |=======================================================================================================================
 | https://www.geeksforgeeks.org/minification-of-css-files
 |
 | #Install Minification of CSS files
 | npm install css-minify -g
 |
 | #To minify a single CSS file, type the following command:
 | css-minify -f filename
 |-----------------------------------------------------------------------------------------------------------------------
 */
/*
 |=======================================================================================================================
 | Variables
 |=======================================================================================================================
 |
 */
@font-face {
  font-family: "Pyidaungsu", sans-serif;
  src: url("../../fonts/Pyidaungsu-2.5.3_Regular.ttf") format("TrueType");
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| WordPress Core styles
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  /* Offset for fixed navbar */
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
ul,
li,
span,
div,
body {
  font-family: "Play", sans-serif;
}
img {
  height: auto;
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.text-center {
  align-items: center;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.section-padding {
  padding: 20px 0;
}
.section-bottom {
  padding-bottom: 20px;
}
.section-top {
  padding-top: 20px;
}
.bg-blue {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #0A2C57;
}
.language-flag .dropdown-menu {
  background: #0C3569;
}
.language-flag .dropdown-item {
  color: #FFF;
  font-family: "Play", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  background-color: unset;
}
.main-title-blue {
  color: #0C3569;
  font-family: "Play", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 0;
}
.main-title-white {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}
.main-title-lg-white {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 64px;
  font-weight: 700;
}
.body-text {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.body-lg-text {
  font-family: "Play", sans-serif;
  font-size: 32px;
  color: #fff;
}
/* Navbar Styles */
.navbar {
  padding: 9px 0;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(383.29% 24.27% at 50% 0%, rgba(71, 139, 226, 0.2) 0%, rgba(12, 53, 105, 0.2) 100%), #0A2C57;
  backdrop-filter: blur(2px);
}
.navbar.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}
.navbar-brand img {
  height: 35px;
}
.navbar .nav-link {
  color: #ffffff;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #FEC63D;
}
.menu-item a {
  color: #E1E0DE;
  font-family: "Play", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
}
.navbar-nav ul {
  margin-bottom: 0;
}
.navbar-nav ul li {
  list-style: none;
}
.current-menu-item a,
.current_page_item a {
  color: #FEC63D;
  font-family: "Play", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
}
.navbar-brand {
  position: relative;
}
.navbar-brand:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 35px;
  background-color: #fff;
  opacity: 0.1;
  margin-left: 40px;
}
#navbarNav {
  padding-left: 60px;
}
.home-banner {
  height: 500px;
  background-color: #0b274e !important;
}
.channel-main-wrap {
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.channel-main-wrap .channel-info-wrap {
  gap: 40px;
}
.channel-title {
  color: #0C3569;
  font-family: "Play", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  /* 54px */
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fff;
}
.language-available {
  padding: 97px 0 90px 0;
}
.d-box {
  text-align: center;
  padding: 40px;
}
.second-d-box {
  margin-top: 20px;
}
.e-game-section {
  position: relative;
}
.e-game-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.e-game-section .e-game-box {
  position: absolute;
  width: 76%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.e-game-section li {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  padding: 10px 40px;
}
.e-game-section li:last-child {
  margin-bottom: 0;
}
.football-section {
  margin-bottom: 20px;
}
.football-box img {
  margin-right: 10px;
}
.availble-deveice {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.download-title {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.download-btn {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #FFF;
  padding: 20px;
}
.download-btn-wrap {
  margin: 15px 0;
}
.download-btn-wrap img {
  margin-right: 10px;
}
.how-to-install h3 a {
  color: #FEC63D;
  text-align: center;
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.contact-pg-box {
  margin-top: 35px;
}
.social-icon-img {
  width: 40px;
  margin-left: 5px;
}
.contact-text {
  color: #0C3569;
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.social-btn-viber strong {
  color: #8255E7;
  font-family: "Play", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-right: 3px;
}
.social-btn {
  border-radius: 4px;
  border: 1px solid #0C3569;
  background: #0C3569;
  text-align: center;
  color: #fff;
  padding: 20px 50px;
  display: block;
  min-width: 430px;
}
.social-btn span {
  font-size: 20px;
}
.social-btn-telegram strong {
  color: #25A2E0;
  font-family: "Play", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.social-btn-viber {
  margin-bottom: 30px;
}
.install-tab-wrap .tab-pane {
  margin-top: 20px;
}
.nav-pills .nav-link.active {
  color: #FFD671;
  font-family: "Play", sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
  background: #0C3569;
  box-shadow: 0 1px 0 0 #478BE2;
  padding: 10px;
  width: 100%;
}
.nav-pills {
  gap: 20px;
  display: inline;
}
.nav-pills .nav-link {
  color: #FFF;
  font-family: "Play", sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
  background: #0C3569;
  box-shadow: 0 1px 0 0 #478BE2;
  padding: 10px;
  width: 100%;
}
.install-title {
  color: #FFF;
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 700;
  min-height: 50px;
}
.first-promo-box,
.accordion-button {
  background: #0C3569 !important;
  padding: 12px;
  color: #fff !important;
  border-radius: 4px;
  margin-bottom: 2px;
  justify-content: space-between;
}
.accordion-item {
  border: 0;
}
.nav-pills-wrap {
  margin: 20px 0;
}
.accordion-button::after {
  display: none;
}
.promotion-tab-wrap {
  margin-top: 20px;
}
.promotion-tab-wrap .accordion-body {
  padding: 2px 0;
}
.game-type-label p {
  font-weight: 700;
  font-size: 16px;
  font-family: "Play", sans-serif;
}
.no-dropdown {
  color: #FEC63D;
  font-family: "Play", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.game-info-box {
  background: #0C3569;
  border-radius: 4px;
  padding: 20px 40px;
  margin-bottom: 2px;
}
.title-bonus {
  color: #FEC63D;
  font-family: "Play", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
}
.promo-main-wrap {
  background: #fff;
  padding: 20px;
}
.promo-content {
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2px;
}
.promotion-tab-wrap .nav-pills {
  display: inline;
  margin-bottom: 3px;
}
.promotion-tab-wrap .nav-link,
.promotion-tab-wrap .nav-link.active {
  width: 100%;
  box-shadow: unset;
}
.promotion-tab-wrap .nav-pills .nav-link.active,
.promotion-tab-wrap .nav-pills .nav-link {
  font-size: 16px;
}
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #FEC63D;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
footer .copyright-text {
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-links-section {
  display: flex;
  gap: 60px;
}
.footer-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease;
  font-family: "Play", sans-serif;
  padding: 0;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Play", sans-serif;
}
.contact-list li i {
  font-size: 1rem;
  width: 20px;
  color: #fff;
}
.footer-heading {
  font-family: "Play", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FEC63D;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Min)
|-------------------------------------------------------------------------------------------------------------------------------
| Small devices (landscape phones, 576px and up), 
| Medium devices (tablets, 768px and up), 
| Large devices (desktops, 992px and up), 
| Extra large devices (large desktops, 1200px and up), 
| and other standard screen sizes (414px, 375px and 320px and up - Note: get from browser)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    justify-content: start !important;
  }
  .btn-close {
    display: none;
  }
  #menu-item-665,
  #menu-item-666,
  #menu-item-667,
  #menu-item-668 {
    display: none;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Max)
|-------------------------------------------------------------------------------------------------------------------------------
| Large devices (desktops, less than 1200px), 
| Medium devices (tablets, less than 992px), 
| Small devices (landscape phones, less than 768px), 
| Extra small devices (portrait phones, less than 576px), 
| and other standard screen sizes (less than 414px, 375px and 320px - Note: get from browser)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
@media (max-width: 1440px) {
  .e-game-section .e-game-box {
    width: 80%;
  }
  .e-game-section li {
    font-size: 20px;
  }
  .home-banner {
    height: 455px;
  }
}
@media (max-width: 1367.98px) {
  .home-banner {
    height: 470px !important;
  }
  .e-game-section li {
    font-size: 21px;
  }
  .e-game-section li {
    padding: 10px 22px;
  }
}
@media (max-width: 1199.98px) {
  .home-banner {
    height: 395px !important;
  }
  .main-title-lg-white {
    font-size: 58px;
  }
  .language-available {
    padding: 85px 0 50px 0;
  }
  .btn-close-mobile {
    background-image: unset;
  }
  .btn-close-mobile::after {
    content: url("/wp-content/uploads//2025/12/close.png");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    /* adjust size */
    height: 24px;
    /* adjust size */
    display: block;
  }
  .btn-close-mobile {
    display: block;
  }
  #menu-item-665,
  #menu-item-666,
  #menu-item-667,
  #menu-item-668 {
    display: block;
  }
  .navbar .menu-item {
    line-height: 1.7;
  }
  .navbar ::before {
    background: #fff;
  }
  /* Mobile hamburger button - improve tap target*/
  .navbar-toggler {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  /* Mobile menu - slide from right with white background*/
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background-color: #0C3569 !important;
    background-image: none !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    /* box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); */
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  /* Mobile menu open state*/
  .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
  }
  /* Mobile menu collapsing animation*/
  .navbar-collapse.collapsing {
    height: 100vh;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .navbar-collapse.collapsing.hide {
    transform: translateX(100%);
  }
  /*Close button for mobile menu*/
  .btn-close-mobile {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    /* filter: invert(1) grayscale(100%) brightness(0.3); */
    -webkit-tap-highlight-color: transparent;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-close-mobile:hover {
    opacity: 0.7;
  }
  /* Mobile menu text color - green text on white background*/
  .navbar-collapse a,
  .navbar-collapse .nav-link {
    color: #fff !important;
    font-size: 18px;
    padding: 15px 10px;
    border-bottom: none !important;
    background-color: linear-gradient(to right, var(--primary-purple), var(--light-purple)) !important;
    background-image: none !important;
    line-height: 30px;
    text-align: left;
  }
  /* Mobile menu active/current item*/
  .navbar-collapse .current-menu-item a {
    color: #FEC63D !important;
    background-color: transparent !important;
  }
  /* Mobile menu structure*/
  .navbar-collapse .menu-item {
    padding: 0;
    background-color: transparent !important;
    background-image: none !important;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding-top: 60px;
    background-color: linear-gradient(to right, var(--primary-purple), var(--light-purple)) !important;
    list-style: none;
  }
  .navbar-collapse .nav-item {
    background-color: transparent !important;
    background-image: none !important;
  }
  .navbar-collapse ul,
  .navbar-collapse #menu-primary,
  .navbar-collapse #menu-primary-mm {
    background-color: transparent !important;
    background-image: none !important;
    list-style: none;
    padding-left: 0;
  }
  /* Overlay backdrop for mobile menu*/
  .navbar-collapse::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: -1;
    pointer-events: none;
  }
  .navbar-collapse.show::after,
  .navbar-collapse.collapsing:not(.hide)::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: #0C3569 !important;
  }
}
@media (max-width: 991.98px) {
  .home-banner {
    height: 328px !important;
  }
}
@media (max-width: 767.98px) {
  .home-banner {
    height: 260px !important;
  }
  .main-title-lg-white {
    font-size: 45px;
  }
  .e-game-section {
    height: 460px !important;
  }
  .body-lg-text {
    font-size: 20px;
  }
  .channel-main-wrap {
    gap: 10px;
    flex-direction: column;
  }
  .nav-pills .nav-link.active,
  .nav-pills .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .main-title-blue {
    font-size: 32px;
    line-height: normal;
  }
  .main-title-white {
    font-size: 30px;
    line-height: normal;
  }
  .title-bonus {
    font-size: 28px;
    line-height: normal;
  }
  .main-title-lg-white {
    font-size: 32px;
  }
  .language-available {
    padding: 50px 0 10px 0;
  }
  .home-banner {
    height: 150px !important;
  }
  .social-btn {
    padding: 10px 50px;
    min-width: 350px;
  }
  .social-icon-img {
    width: 30px;
  }
  .nav-pills .nav-link.active,
  .nav-pills .nav-link {
    font-size: 16px;
  }
  .install-title {
    font-size: 17px;
  }
  .download-box {
    flex-direction: column;
  }
  .download-title {
    font-size: 32px;
  }
}
@media (max-width: 413.98px) {
  .main-title-white {
    font-size: 27px;
  }
  .main-title-blue {
    font-size: 27px;
    line-height: normal;
  }
  .body-lg-text {
    font-size: 16px;
  }
  .download-title {
    font-size: 28px;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Min and Max)
|-------------------------------------------------------------------------------------------------------------------------------
| Small devices (landscape phones, 576px and up), 
| Medium devices (tablets, 768px and up), 
| Large devices (desktops, 992px and up), 
| Extra large devices (large desktops, 1200px and up)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
