
    :root {
      --page-58-wim-primary-color: #e44d26; /* Cam đỏ */
      --page-58-wim-secondary-color: #f7b731; /* Vàng cam */
      --page-58-wim-dark-bg: #1a1a1a;
      --page-58-wim-light-bg: #f5f5f5;
      --page-58-wim-text-color: #ffffff;
      --page-58-wim-dark-text: #333333;
      --page-58-wim-border-radius: 8px;
      --page-58-wim-max-width: 1200px;
      --page-58-wim-padding-section: 60px 20px;
    }

    /* Base styles for the page container */
    .page-58-wim {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-58-wim-dark-text);
      background-color: var(--page-58-wim-light-bg);
      overflow-x: hidden;
    }

    /* General section styling */
    .page-58-wim__section {
      padding: var(--page-58-wim-padding-section);
      margin: 0 auto;
      max-width: var(--page-58-wim-max-width);
      text-align: center;
    }

    .page-58-wim__section--dark {
      background-color: var(--page-58-wim-dark-bg);
      color: var(--page-58-wim-text-color);
    }

    .page-58-wim__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: var(--page-58-wim-primary-color);
      font-weight: bold;
    }
    .page-58-wim__section--dark .page-58-wim__section-title {
      color: var(--page-58-wim-secondary-color);
    }

    .page-58-wim__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-58-wim__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,vietnam,online_betting,58wim]') no-repeat center center/cover;
      color: var(--page-58-wim-text-color);
      padding: 10px 20px 100px 20px; /* Adjusted padding-top for fixed header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 70vh;
      text-align: center;
    }

    .page-58-wim__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-58-wim-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-58-wim__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: var(--page-58-wim-text-color);
    }

    .page-58-wim__hero-cta-button {
      background-color: var(--page-58-wim-primary-color);
      color: var(--page-58-wim-text-color);
      padding: 15px 30px;
      border-radius: var(--page-58-wim-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-58-wim__hero-cta-button:hover {
      background-color: #d13a17;
    }

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

    .page-58-wim__floating-button {
      background-color: var(--page-58-wim-primary-color);
      color: var(--page-58-wim-text-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      width: 150px; /* Fixed width for better appearance */
      text-align: center;
    }

    .page-58-wim__floating-button--login {
      background-color: var(--page-58-wim-secondary-color);
    }

    .page-58-wim__floating-button:hover {
      background-color: #d13a17;
      transform: translateY(-2px);
    }

    .page-58-wim__floating-button--login:hover {
      background-color: #e0a32e;
      transform: translateY(-2px);
    }

    /* About Section */
    .page-58-wim__about-section {
      background-color: var(--page-58-wim-light-bg);
      color: var(--page-58-wim-dark-text);
    }

    .page-58-wim__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      text-align: left;
    }

    .page-58-wim__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-58-wim__about-text p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-58-wim__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border-radius: var(--page-58-wim-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-58-wim__about-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--page-58-wim-border-radius);
    }

    /* Game Categories */
    .page-58-wim__game-categories {
      background-color: var(--page-58-wim-dark-bg);
      color: var(--page-58-wim-text-color);
    }

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

    .page-58-wim__game-card {
      background-color: #2a2a2a;
      border-radius: var(--page-58-wim-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center; /* Centered product image */
    }

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

    .page-58-wim__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-58-wim__game-content {
      padding: 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
    }

    .page-58-wim__game-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-58-wim-secondary-color);
      font-weight: bold;
    }

    .page-58-wim__game-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-58-wim__game-button {
      background-color: var(--page-58-wim-primary-color);
      color: var(--page-58-wim-text-color);
      padding: 10px 20px;
      border-radius: var(--page-58-wim-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box;
    }

    .page-58-wim__game-button:hover {
      background-color: #d13a17;
    }

    /* Promotions Section */
    .page-58-wim__promotions-section {
      background-color: var(--page-58-wim-light-bg);
      color: var(--page-58-wim-dark-text);
    }

    .page-58-wim__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-58-wim__promo-card {
      background-color: #ffffff;
      border-radius: var(--page-58-wim-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-58-wim__promo-image-wrapper {
      width: 100%;
      height: 250px;
      overflow: hidden;
    }

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

    .page-58-wim__promo-content {
      padding: 25px;
    }

    .page-58-wim__promo-title {
      font-size: 1.8em;
      margin-bottom: 10px;
      color: var(--page-58-wim-primary-color);
      font-weight: bold;
    }

    .page-58-wim__promo-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-58-wim__promo-button {
      background-color: var(--page-58-wim-secondary-color);
      color: var(--page-58-wim-text-color);
      padding: 12px 25px;
      border-radius: var(--page-58-wim-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-58-wim__promo-button:hover {
      background-color: #e0a32e;
    }

    /* Features Section */
    .page-58-wim__features-section {
      background-color: var(--page-58-wim-dark-bg);
      color: var(--page-58-wim-text-color);
    }

    .page-58-wim__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .page-58-wim__feature-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: var(--page-58-wim-border-radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-58-wim__feature-icon-wrapper {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-58-wim__feature-icon {
      width: 80px;
      height: 80px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-58-wim__feature-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: var(--page-58-wim-secondary-color);
      font-weight: bold;
    }

    .page-58-wim__feature-description {
      font-size: 1em;
      color: #ccc;
    }

    /* FAQ Section */
    .page-58-wim__faq-section {
      background-color: var(--page-58-wim-light-bg);
      color: var(--page-58-wim-dark-text);
    }

    .page-58-wim__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-58-wim__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: var(--page-58-wim-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

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

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

    .page-58-wim__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-58-wim-dark-text);
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-58-wim__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-58-wim-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-58-wim__faq-item.active .page-58-wim__faq-toggle {
      transform: rotate(45deg); /* Transforms '+' to 'x' or similar */
      color: var(--page-58-wim-secondary-color);
    }

    .page-58-wim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #666;
      font-size: 1em;
      line-height: 1.6;
    }

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

    /* Call to Action Section */
    .page-58-wim__cta-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:cta:1200x600:join_us,win,excitement,58wim]') no-repeat center center/cover;
      color: var(--page-58-wim-text-color);
      padding: var(--page-58-wim-padding-section);
    }

    .page-58-wim__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-58-wim-secondary-color);
      font-weight: bold;
    }

    .page-58-wim__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-58-wim__cta-button {
      background-color: var(--page-58-wim-primary-color);
      color: var(--page-58-wim-text-color);
      padding: 18px 40px;
      border-radius: var(--page-58-wim-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.4em;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .page-58-wim__cta-button:hover {
      background-color: #d13a17;
    }

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

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

      .page-58-wim__hero-section {
        min-height: 60vh;
        padding-bottom: 80px;
      }

      .page-58-wim__hero-title {
        font-size: 2.5em;
      }

      .page-58-wim__hero-subtitle {
        font-size: 1.1em;
      }

      .page-58-wim__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-58-wim__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        width: 48%; /* Adjust width for two buttons */
      }

      .page-58-wim__about-content {
        flex-direction: column;
        text-align: center;
      }

      .page-58-wim__about-image-wrapper {
        width: 100%;
      }

      .page-58-wim__game-grid,
      .page-58-wim__promotions-grid,
      .page-58-wim__features-grid {
        grid-template-columns: 1fr;
      }

      .page-58-wim__game-card,
      .page-58-wim__promo-card,
      .page-58-wim__feature-item {
        margin-bottom: 20px;
      }
      
      .page-58-wim__game-image-wrapper {
        height: 180px;
      }

      .page-58-wim__promo-image-wrapper {
        height: 200px;
      }

      .page-58-wim__faq-question {
        padding: 15px 20px;
      }

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

      .page-58-wim__faq-answer {
        padding: 0 20px;
      }
      .page-58-wim__faq-item.active .page-58-wim__faq-answer {
        padding: 15px 20px !important;
      }

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

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

      .page-58-wim__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      /* Image responsive */
      .page-58-wim__about-image,
      .page-58-wim__game-image,
      .page-58-wim__promo-image,
      .page-58-wim__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-58-wim__about-image-wrapper,
      .page-58-wim__game-image-wrapper,
      .page-58-wim__promo-image-wrapper,
      .page-58-wim__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      /* List item responsive (if any, applied broadly to card-like lists) */
      .page-58-wim__game-card,
      .page-58-wim__promo-card,
      .page-58-wim__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-58-wim__game-grid,
      .page-58-wim__promotions-grid,
      .page-58-wim__features-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  