* {
  margin: 0;
  padding: 0;
}

input {
  background: none;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-size: 16px;
}

input::placeholder {
  font-weight: 600;
}

body {
  background-image: url("/static/cmd88/asset/BACGROUND/BGDEKTOP-BG.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  font-family: "Battambang", system-ui;
}

.container {
  width: 1120px;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 25px 0;
}

.wrap-navbar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.logo img {
  width: 200px;
  height: auto;
}

.d-login {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 10px;
}

.win-lang img {
  width: 45px;
  height: 20px;
  object-fit: contain;
}

.win-lang span {
  text-transform: uppercase;
  color: #6f8dd9;
  font-size: 12px;
  font-weight: 500;
}

.wrap-input {
  display: flex;
  gap: 7px;
}

.username,
.password {
  display: flex;
  gap: 10px;
  background-color: #d3e4f6;
  padding: 10px;
  border-radius: 10px;
}
.username img,
.password img {
  width: 20px;
  height: auto;
  object-fit: contain;
}
.btn-d-login {
  border-radius: 10px;
  padding: 9px 20px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  background: #f6ab1c;
  cursor: pointer;
  white-space: nowrap;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.game {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 15px 0px;
  border-bottom: 2px solid #c8d4f0;
}
.bg-game {
  background-color: #f1f1f1;
  padding: 10px 20px;
  border-radius: 10px;
}
.wrap-game {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.btn-click {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-click button {
  background: none;
  border: none;
  cursor: pointer;
}

.btn-click button img {
  width: 24px;
  height: auto;
  object-fit: contain;
}

.game-title {
  text-transform: uppercase;
  color: #6f8dd9;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  position: relative;
  z-index: 1;
}

.swiper-slide img {
  width: 100%;
  object-fit: contain;
}

.swiper-slide span {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

.win-footer {
  padding: 10px 0;
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  color: #6f8dd9;
}

/* mobile */

.mobile {
  padding: 0 20px;
  padding-top: 120px;
}

.m-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.m-logo img {
  width: 200px;
}

.m-username,
.m-password {
  background-color: white;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.m-username img,
.m-password img {
  background-color: #f2f2f2;
  padding: 8px 10px;
}

.m-username input,
.m-password input {
  width: 100%;
  padding-right: 5px;
}

.m-username input::placeholder,
.m-password input::placeholder {
  color: rgb(200, 195, 195);
}

#m-form {
  background-color: #6c8bdb;
  padding: 10px 20px;
  border-radius: 15px;
}

#m-form h5 {
  color: white;
  padding: 15px 0;
  font-size: 18px;
  text-align: center;
}

label {
  color: white;
  font-size: 13px;
}

.wrap-btn-m-login {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.btn-m-login {
  background-color: #f6ab1c;
  border: none;
  font-size: 20px;
  padding: 0px 20px;
  height: 45px;
  border-radius: 7px;
}
.m-lang {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 15px;
}

.win-menu {
  background: #4a7cef;
  display: flex;
  justify-content: center;
}

.wrap-win-menu{
  display: flex;
  justify-content: space-around;
}

.win-menu a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 20px;
  font-weight: 500;
}

.active-win-menu{
  background:#5685ed;
}

.win-lang {
  display: flex; /* Change to flex to allow for positioning children */
  align-items: center; /* Center align items vertically */
  position: relative;
  cursor: pointer;
}

.win-lang:hover .dropdown-content {
  display: block;
}

.win-lang .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 20px;
}

.win-lang:hover .dropdown-content {
  display: block; /* Show dropdown on hover */
}

.lang-option {
  display: flex; /* Ensure options are flex items */
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
}

.lang-option:hover {
  background-color: #f1f1f1;
}

