* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
}

.background {
  background: url(images/live_bg.png) no-repeat center center;
  background-size: auto 100%;
  background-attachment: fixed;
  background-size: cover;
  max-width: 430px;
  min-height: 100vh;
  width: 100%;
  margin: auto;
  display: block;
  flex-direction: column;
}

/* Header */
.header {
  background: #0f6401;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/**
 * Mobile Menu
 */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3);
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.mobile-menu-title {
  font-size: 20px;
  font-weight: bold;
  font-family: Roboto, sans-serif;
}

.mobile-menu-close {
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  padding: 10px;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-menu-list li {
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, #39ad55, #006719);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.mobile-menu-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-list a {
  display: block;
  padding: 10px;
  font-size: 16px;
  color: #fed304;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.mobile-menu-list a::after {
  content: "›";
  position: absolute;
  right: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: right 0.2s;
}

.mobile-menu-list a:hover::after {
  right: 14px;
  color: #007bff;
}

.btn-home {
  color: #016730;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;

  /* Linear */
  background: linear-gradient(180deg, #f8e64f 0%, #cfea29 100%);
  box-shadow: 0px 3.6502px 3.6502px rgba(0, 0, 0, 0.25);
  border-radius: 31px;
}

/* Banner */
.banner {
  padding: 8px 4px;
}

.banner-img {
  width: 100%;
  /* max-width: 400px; */
}

/* Content */
.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  height: 280px;
}

.menu-items {
  position: absolute;
  top: 24px;
  margin: 12px;
  padding: 0 8px;
  display: flex;

  flex-direction: row;
  align-items: center;
  gap: 10px;
}

@media (max-width: 430px) {
  .menu-items {
    top: 0px;
  }
  .bg-button {
    width: 100%;
    max-width: 400px;
  }
  .menu-items img {
    width: 120%;
  }
  .menu-items :first-child {
    margin-top: 8px;
  }

  .menu-items :last-child {
    margin-top: 8px;
  }

  .qq88-live img {
    width: 90%;
  }
}

@media (max-width: 375px) {
  .menu-items img {
    width: 90%;
  }
  .menu-items img {
    width: 90%;
  }
}

@media (max-width: 320px) {
  .menu-items img {
    width: 100%;
  }
}

.bg-button {
  margin-top: 50px;
  /* z-index: -1; */
}

.images-live {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.images-live img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 430px) {
  .images-live img {
    width: 90%;
  }
}

.emoji {
  position: relative;
  display: flex;
  width: 100%;
  left: 0;
  bottom: 0;
  align-items: last baseline;
  justify-content: space-between;
}
