
    /* Tổng thể */
    .page-yo88moi {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f7fa;
      padding: 0;
      margin: 0 auto;
      max-width: 100%;
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-yo88moi__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px; /* Chiều cao tối thiểu cho banner */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: #000; /* Fallback */
      overflow: hidden;
      padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
      box-sizing: border-box;
    }

    .page-yo88moi__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
      z-index: 1;
      max-width: 100%; /* Đảm bảo hình ảnh không tràn */
    }

    .page-yo88moi__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 20px;
      max-width: 900px;
      box-sizing: border-box;
    }

    .page-yo88moi__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      color: #ffcc00; /* Màu vàng nổi bật */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-yo88moi__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-yo88moi__cta-button {
      display: inline-block;
      background-color: #e44d26; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-yo88moi__cta-button:hover {
      background-color: #c23b1a;
      transform: translateY(-2px);
    }

    /* Phần chung cho các section */
    .page-yo88moi__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-yo88moi__section-title {
      font-size: 2.5em;
      color: #1a2a44;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-yo88moi__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    .page-yo88moi__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: justify;
      margin-bottom: 20px;
    }

    /* Nút đăng nhập nổi */
    .page-yo88moi__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #007bff; /* Màu xanh dương */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      font-size: 1.1em;
    }

    .page-yo88moi__floating-login-button:hover {
      background-color: #0056b3;
      transform: scale(1.05);
    }

    /* Game Categories */
    .page-yo88moi__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yo88moi__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yo88moi__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-yo88moi__game-image-wrapper {
      width: 100%;
      height: 200px; /* Kích thước cố định cho hình ảnh */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-yo88moi__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Đảm bảo hình ảnh không tràn */
    }

    .page-yo88moi__game-info {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yo88moi__game-title {
      font-size: 1.5em;
      color: #1a2a44;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-yo88moi__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-yo88moi__game-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      width: fit-content;
      margin: 0 auto;
    }

    .page-yo88moi__game-button:hover {
      background-color: #c23b1a;
      transform: translateY(-2px);
    }

    /* Ưu đãi và Khuyến mãi */
    .page-yo88moi__promo-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-yo88moi__promo-item {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 25px;
      width: calc(33% - 20px); /* 3 cột trên desktop */
      min-width: 300px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Quan trọng cho responsive */
    }

    .page-yo88moi__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-yo88moi__promo-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
      max-width: 100%;
    }

    .page-yo88moi__promo-title {
      font-size: 1.4em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-yo88moi__promo-description {
      font-size: 1em;
      color: #555;
    }

    /* Hướng dẫn */
    .page-yo88moi__guide-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-yo88moi__guide-step {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Quan trọng cho responsive */
    }

    .page-yo88moi__guide-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-yo88moi__step-number {
      font-size: 2.5em;
      color: #e44d26;
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

    .page-yo88moi__step-title {
      font-size: 1.3em;
      color: #1a2a44;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-yo88moi__step-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ */
    .page-yo88moi__faq-container {
      margin-top: 40px;
    }

    .page-yo88moi__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-yo88moi__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f9f9f9;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      color: #1a2a44;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-yo88moi__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yo88moi__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a44;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
      text-align: left;
    }

    .page-yo88moi__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: #e44d26;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn span chặn sự kiện click */
      margin-left: 15px;
    }

    .page-yo88moi__faq-item.active .page-yo88moi__faq-toggle {
      transform: rotate(45deg); /* Biến '+' thành 'x' hoặc '-' */
      color: #007bff;
    }

    .page-yo88moi__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      font-size: 1em;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #fff;
    }

    .page-yo88moi__faq-item.active .page-yo88moi__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-yo88moi__hero-title {
        font-size: 2.8em;
      }
      .page-yo88moi__hero-description {
        font-size: 1.1em;
      }
      .page-yo88moi__promo-item {
        width: calc(50% - 20px); /* 2 cột trên tablet */
        min-width: unset;
      }
    }

    @media (max-width: 768px) {
      .page-yo88moi__hero-section {
        min-height: 400px;
        padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
      }
      .page-yo88moi__hero-title {
        font-size: 2.2em;
      }
      .page-yo88moi__hero-description {
        font-size: 1em;
      }
      .page-yo88moi__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-yo88moi__section {
        padding: 30px 15px;
      }
      .page-yo88moi__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-yo88moi__text-content {
        font-size: 1em;
      }
      .page-yo88moi__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-yo88moi__game-grid {
        grid-template-columns: 1fr; /* 1 cột trên mobile */
        gap: 20px;
      }
      .page-yo88moi__game-card {
        margin: 0 auto;
        max-width: 400px;
      }
      .page-yo88moi__game-image-wrapper {
        height: 180px;
      }
      .page-yo88moi__game-title {
        font-size: 1.3em;
      }
      .page-yo88moi__game-description {
        font-size: 0.9em;
      }
      .page-yo88moi__promo-list {
        flex-direction: column;
        align-items: center;
      }
      .page-yo88moi__promo-item {
        width: 100% !important; /* 1 cột trên mobile */
        max-width: 400px !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-yo88moi__promo-title {
        font-size: 1.2em;
      }
      .page-yo88moi__promo-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yo88moi__guide-steps {
        grid-template-columns: 1fr; /* 1 cột trên mobile */
        gap: 20px;
      }
      .page-yo88moi__guide-step {
        width: 100% !important;
        max-width: 400px !important;
        padding: 25px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-yo88moi__step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yo88moi__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-yo88moi__faq-question h3 {
        font-size: 1.1em;
      }
      .page-yo88moi__faq-toggle {
        font-size: 1.5em;
      }
      .page-yo88moi__faq-answer {
        padding: 0 20px;
      }
      .page-yo88moi__faq-item.active .page-yo88moi__faq-answer {
        padding: 15px 20px !important;
      }

      /* Images responsive */
      .page-yo88moi img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-yo88moi__image-container { /* If there are specific image containers */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-yo88moi__hero-title {
        font-size: 1.8em;
      }
      .page-yo88moi__hero-description {
        font-size: 0.9em;
      }
      .page-yo88moi__section-title {
        font-size: 1.8em;
      }
      .page-yo88moi__floating-login-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  