
    /* CSS toàn cục cho trang 58win game */
    .page-58wingame {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a; /* Nền tối */
      color: #f0f0f0; /* Chữ sáng */
      line-height: 1.6;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    .page-58wingame__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-58wingame__section {
      padding: 40px 0;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #2a2a2a;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-58wingame__section--alt {
      background-color: #1f1f1f;
    }

    .page-58wingame__heading {
      color: #ffcc00; /* Màu vàng cam làm điểm nhấn */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-58wingame__sub-heading {
      color: #f0f0f0;
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: bold;
    }

    .page-58wingame__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #e0e0e0;
      text-align: justify;
    }

    .page-58wingame__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-58wingame__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-58wingame__link {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-58wingame__link:hover {
      color: #e6b800;
      text-decoration: underline;
    }

    /* Hero Section */
    .page-58wingame__hero-section {
      position: relative;
      background-color: #0d0d0d;
      color: #f0f0f0;
      padding: 10px 0 60px 0; /* padding-top để tránh header cố định */
      text-align: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-58wingame__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-58wingame__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-58wingame__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-58wingame__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-58wingame__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-58wingame__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4d4d; /* Màu đỏ nổi bật */
      color: white;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      animation: page-58wingame__pulse 2s infinite;
    }

    .page-58wingame__floating-button:hover {
      background-color: #e60000;
      transform: scale(1.05);
    }

    @keyframes page-58wingame__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

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

    .page-58wingame__game-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-58wingame__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-58wingame__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

    .page-58wingame__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-58wingame__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-58wingame__game-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58wingame__game-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Download Section */
    .page-58wingame__download-steps {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      text-align: left;
    }

    .page-58wingame__download-step-item {
      background-color: #333333;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
    }

    .page-58wingame__download-step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-right: 15px;
      flex-shrink: 0;
      width: 40px;
      text-align: center;
    }

    .page-58wingame__download-step-content {
      flex-grow: 1;
    }

    .page-58wingame__download-step-title {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 5px;
    }

    .page-58wingame__download-step-description {
      font-size: 1em;
      color: #cccccc;
    }

    .page-58wingame__download-qr-code-wrapper {
      width: 100%;
      max-width: 300px;
      margin: 30px auto 0;
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-58wingame__download-qr-code {
      width: 100%;
      height: auto;
      display: block;
    }

    .page-58wingame__download-qr-code-caption {
      color: #333;
      font-weight: bold;
      margin-top: 10px;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-58wingame__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      text-align: left;
    }

    .page-58wingame__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-58wingame__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #3d3d3d;
      border-bottom: 1px solid #4a4a4a;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-58wingame__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-58wingame__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #f0f0f0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-58wingame__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-58wingame__faq-item.active .page-58wingame__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or rotate */
    }

    .page-58wingame__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1em;
      text-align: justify;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58wingame__container {
        padding: 15px;
      }

      .page-58wingame__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }

      .page-58wingame__hero-title {
        font-size: 2.2em;
      }

      .page-58wingame__hero-description {
        font-size: 1.1em;
      }

      .page-58wingame__heading {
        font-size: 2em;
      }

      .page-58wingame__sub-heading {
        font-size: 1.5em;
      }

      .page-58wingame__paragraph {
        font-size: 1em;
      }

      .page-58wingame__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-58wingame__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-58wingame__game-image-wrapper {
        height: 180px;
      }

      .page-58wingame__game-title {
        font-size: 1.3em;
      }

      .page-58wingame__download-step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-58wingame__download-step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-58wingame__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

      .page-58wingame__faq-question h3 {
        font-size: 1.1em;
      }

      .page-58wingame__faq-toggle {
        font-size: 1.5em;
      }

      /* Image responsive optimization */
      .page-58wingame__hero-image,
      .page-58wingame__game-image,
      .page-58wingame__download-qr-code {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-58wingame__hero-image-wrapper,
      .page-58wingame__game-image-wrapper,
      .page-58wingame__download-qr-code-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  