
    /* Tổng quan */
    .page-ww88com {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-ww88com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-ww88com__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ww88com__section-title {
      color: #FFD700; /* Chữ vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ww88com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 3px;
      background-color: #FFD700; /* Gạch dưới vàng */
      border-radius: 2px;
    }

    .page-ww88com__text-highlight {
      color: #FFD700; /* Chữ vàng nổi bật */
    }

    .page-ww88com__button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000000; /* Chữ đen trên nút */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-ww88com__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-ww88com__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* Safe zone for fixed header on desktop */
      background-color: #000000;
    }

    .page-ww88com__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
    }

    .page-ww88com__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Center the image */
      object-fit: contain; /* Ensure original ratio */
      border-radius: 8px;
    }

    .page-ww88com__hero-content {
      padding: 30px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-ww88com__hero-title {
      font-size: 3em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-ww88com__hero-description {
      font-size: 1.2em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    /* Giới thiệu */
    .page-ww88com__introduction-section {
      background-color: #1a1a1a;
      padding: 50px 0;
    }

    .page-ww88com__introduction-text {
      font-size: 1.1em;
      color: #E0E0E0;
      max-width: 900px;
      margin: 0 auto 30px auto;
    }

    /* Ưu đãi */
    .page-ww88com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ww88com__promotion-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

    .page-ww88com__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ww88com__promotion-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ww88com__promotion-card-description {
      color: #CCCCCC;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-ww88com__promotion-card-link {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-ww88com__promotion-card-link:hover {
      color: #e6c200;
      text-decoration: underline;
    }

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

    .page-ww88com__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

    .page-ww88com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ww88com__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-ww88com__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: cover; /* Cover the container */
      display: block;
    }

    .page-ww88com__game-card-content {
      padding: 15px;
      text-align: center;
    }

    .page-ww88com__game-card-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ww88com__game-card-description {
      color: #CCCCCC;
      font-size: 0.9em;
    }

    /* Guides Section */
    .page-ww88com__guides-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-ww88com__guide-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 350px;
      text-align: left;
      transition: transform 0.3s ease;
      border: 1px solid #333;
    }

    .page-ww88com__guide-item:hover {
      transform: translateY(-5px);
    }

    .page-ww88com__guide-item h3 {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-ww88com__guide-item p {
      color: #CCCCCC;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-ww88com__guide-item-link {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-ww88com__guide-item-link:hover {
      color: #e6c200;
      text-decoration: underline;
    }

    /* Why Choose Section */
    .page-ww88com__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ww88com__why-choose-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

    .page-ww88com__why-choose-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ww88com__why-choose-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .page-ww88com__why-choose-icon {
        width: 100px;
        height: 100px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        color: #FFD700;
    }

    .page-ww88com__why-choose-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ww88com__why-choose-card-description {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-ww88com__faq-section {
      background-color: #1a1a1a;
      padding: 50px 0;
    }

    .page-ww88com__faq-list {
      max-width: 900px;
      margin: 30px auto 0 auto;
      text-align: left;
    }

    .page-ww88com__faq-item {
      background-color: #000000;
      border-radius: 8px;
      margin-bottom: 15px;
      border: 1px solid #333;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-ww88com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #FFFFFF;
      transition: background-color 0.3s ease;
    }

    .page-ww88com__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-ww88com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-ww88com__faq-item.active .page-ww88com__faq-toggle {
      transform: rotate(45deg); /* Change + to X or a dash */
    }

    .page-ww88com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

    .page-ww88com__faq-item.active .page-ww88com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Call to Action */
    .page-ww88com__cta-section {
      padding: 50px 0;
      background-color: #000000;
    }

    .page-ww88com__cta-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-ww88com__cta-description {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-ww88com__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700; /* Nút vàng */
      color: #000000; /* Chữ đen */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-ww88com__floating-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ww88com__hero-section {
        padding-top: 10px; /* Safe zone for fixed header on mobile */
      }
      .page-ww88com__hero-title {
        font-size: 2.2em;
      }
      .page-ww88com__hero-description {
        font-size: 1em;
      }
      .page-ww88com__section-title {
        font-size: 2em;
      }
      .page-ww88com__promotion-card,
      .page-ww88com__game-card,
      .page-ww88com__guide-item,
      .page-ww88com__why-choose-card {
        padding: 20px;
      }
      .page-ww88com__promotion-card-title,
      .page-ww88com__game-card-title,
      .page-ww88com__why-choose-card-title {
        font-size: 1.3em;
      }
      .page-ww88com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-ww88com__faq-toggle {
        font-size: 1.5em;
      }
      .page-ww88com__faq-answer {
        font-size: 0.9em;
      }
      .page-ww88com__floating-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-ww88com__hero-image,
      .page-ww88com__game-card-image,
      .page-ww88com__why-choose-icon {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-ww88com__hero-image-wrapper,
      .page-ww88com__game-card-image-wrapper,
      .page-ww88com__why-choose-icon-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-ww88com__hero-title {
        font-size: 1.8em;
      }
      .page-ww88com__section-title {
        font-size: 1.8em;
      }
      .page-ww88com__floating-button {
        width: 90%;
        bottom: 15px;
      }
      .page-ww88com__game-card-image-wrapper {
        height: 160px;
      }
    }
  