
    :root {
      --page-58wij-primary-color: #ffcc00; /* Vàng nổi bật */
      --page-58wij-secondary-color: #333333; /* Xám đậm */
      --page-58wij-accent-color: #e60000; /* Đỏ nhấn */
      --page-58wij-text-color: #ffffff; /* Trắng */
      --page-58wij-background-dark: #1a1a1a; /* Nền tối */
      --page-58wij-background-light: #2c2c2c; /* Nền sáng hơn */
      --page-58wij-border-color: #555555;
      --page-58wij-button-hover: #ffd633;
    }

    .page-58wij {
      font-family: 'Arial', sans-serif;
      color: var(--page-58wij-text-color);
      background-color: var(--page-58wij-background-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small padding to avoid content directly touching header if body padding is not enough */
    }

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

    .page-58wij__section {
      padding: 40px 0;
      text-align: center;
      background-color: var(--page-58wij-background-dark);
    }

    .page-58wij__section--alt {
      background-color: var(--page-58wij-background-light);
    }

    .page-58wij__title {
      font-size: 2.5em;
      color: var(--page-58wij-primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-58wij__subtitle {
      font-size: 1.8em;
      color: var(--page-58wij-text-color);
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-58wij__text {
      font-size: 1.1em;
      color: var(--page-58wij-text-color);
      margin-bottom: 20px;
    }

    .page-58wij__hero {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: var(--page-58wij-background-dark);
    }

    .page-58wij__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
    }

    .page-58wij__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-58wij__hero-title {
      font-size: 3em;
      color: var(--page-58wij-primary-color);
      margin-bottom: 10px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-58wij__hero-description {
      font-size: 1.3em;
      color: var(--page-58wij-text-color);
      margin-bottom: 20px;
      max-width: 600px;
    }

    .page-58wij__promo-link {
      display: inline-block;
      background-color: var(--page-58wij-accent-color);
      color: var(--page-58wij-text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
    }

    .page-58wij__promo-link:hover {
      background-color: #cc0000;
    }

    .page-58wij__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-58wij__button {
      background-color: var(--page-58wij-primary-color);
      color: var(--page-58wij-secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-58wij__button:hover {
      background-color: var(--page-58wij-button-hover);
      transform: translateY(-2px);
    }

    .page-58wij__button--accent {
      background-color: var(--page-58wij-accent-color);
      color: var(--page-58wij-text-color);
    }

    .page-58wij__button--accent:hover {
      background-color: #cc0000;
    }

    .page-58wij__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-58wij__game-card {
      background-color: var(--page-58wij-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-58wij__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-58wij__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-58wij__game-title {
      font-size: 1.5em;
      color: var(--page-58wij-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58wij__game-description {
      font-size: 0.95em;
      color: var(--page-58wij-text-color);
      flex-grow: 1;
      margin-bottom: 15px;
    }

    .page-58wij__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-58wij__feature-item {
      background-color: var(--page-58wij-background-light);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      box-sizing: border-box;
    }

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

    .page-58wij__feature-icon-wrapper {
      width: 100%;
      max-width: 250px; /* Adjusted from 200px to allow slightly larger icons */
      height: auto;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-58wij__feature-icon {
      width: 100%;
      height: auto;
      object-fit: contain;
      max-width: 100%;
      display: block;
    }

    .page-58wij__feature-title {
      font-size: 1.4em;
      color: var(--page-58wij-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58wij__feature-description {
      font-size: 1em;
      color: var(--page-58wij-text-color);
    }

    .page-58wij__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-58wij__payment-logo-wrapper {
      width: 100%;
      max-width: 180px; /* Min size 200px, so a bit larger container is needed */
      height: auto;
      background-color: var(--page-58wij-background-light);
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-58wij__payment-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-58wij__payment-logo {
      width: 100%;
      height: auto;
      max-width: 160px; /* Image itself can be 200px wide, but display smaller */
      object-fit: contain;
      display: block;
    }

    .page-58wij__faq-section {
      background-color: var(--page-58wij-background-dark);
      padding: 60px 0;
    }

    .page-58wij__faq-item {
      background-color: var(--page-58wij-background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-58wij__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-58wij-secondary-color);
      color: var(--page-58wij-text-color);
      border-bottom: 1px solid var(--page-58wij-border-color);
      transition: background-color 0.3s ease;
    }

    .page-58wij__faq-question:hover {
      background-color: #444444;
    }

    .page-58wij__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      text-align: left;
      color: var(--page-58wij-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-58wij__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-58wij-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-58wij__faq-item.active .page-58wij__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus */
    }

    .page-58wij__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, will be overridden by !important */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-58wij-text-color);
      text-align: left;
      background-color: var(--page-58wij-background-light);
    }

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

    .page-58wij__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-58wij__provider-logo-wrapper {
      width: 100%;
      max-width: 180px; /* Container for logos, allowing min 200px image */
      height: auto;
      background-color: var(--page-58wij-background-light);
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-58wij__provider-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-58wij__provider-logo {
      width: 100%;
      height: auto;
      max-width: 160px; /* Actual image display size */
      object-fit: contain;
      display: block;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58wij__title {
        font-size: 2em;
      }

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

      .page-58wij__hero {
        height: 50vh;
      }

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

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

      .page-58wij__section {
        padding: 30px 0;
      }

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

      .page-58wij__game-image-wrapper,
      .page-58wij__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-58wij__game-image,
      .page-58wij__feature-icon,
      .page-58wij__payment-logo,
      .page-58wij__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-58wij__game-card,
      .page-58wij__feature-item,
      .page-58wij__payment-logo-wrapper,
      .page-58wij__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-58wij__game-content {
        padding: 15px;
      }

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

      .page-58wij__feature-title {
        font-size: 1.2em;
      }

      .page-58wij__faq-question {
        padding: 12px 15px;
      }

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

      .page-58wij__faq-answer {
        padding: 0 15px;
      }

      .page-58wij__faq-item.active .page-58wij__faq-answer {
        padding: 15px !important;
      }
      
      .page-58wij__text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-58wij__hero-title {
        font-size: 1.8em;
      }
      .page-58wij__floating-buttons {
        right: 10px;
        bottom: 10px;
      }
      .page-58wij__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  