
    :root {
      --page-58-wi-primary-bg: #1a1a2e;
      --page-58-wi-secondary-bg: #16213e;
      --page-58-wi-accent-color: #e94560;
      --page-58-wi-text-color: #e0e0e0;
      --page-58-wi-highlight-color: #f7b32b;
      --page-58-wi-border-color: #3e4459;
      --page-58-wi-button-bg: #e94560;
      --page-58-wi-button-text: #ffffff;
    }

    .page-58-wi {
      font-family: 'Arial', sans-serif;
      color: var(--page-58-wi-text-color);
      background-color: var(--page-58-wi-primary-bg);
      line-height: 1.6;
      /* Fallback for header offset if shared.css doesn't provide it */
      padding-top: var(--header-offset, 0px); /* This will be overridden by shared.css if present, or provide a default */
    }

    .page-58-wi__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-58-wi__section--dark {
      background-color: var(--page-58-wi-secondary-bg);
    }

    .page-58-wi__heading {
      color: var(--page-58-wi-highlight-color);
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-58-wi__subheading {
      color: var(--page-58-wi-accent-color);
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-58-wi__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--page-58-wi-text-color);
    }

    .page-58-wi__button {
      display: inline-block;
      background-color: var(--page-58-wi-button-bg);
      color: var(--page-58-wi-button-text);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin: 10px;
    }

    .page-58-wi__button:hover {
      background-color: #c73750; /* Darker accent */
      transform: translateY(-2px);
    }

    .page-58-wi__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:betting,casino,vietnam,night]');
      background-size: cover;
      background-position: center;
      padding: 100px 20px 80px;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      /* Decorative top padding + header offset */
      padding-top: calc(10px + var(--header-offset, 0px));
    }

    .page-58-wi__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-58-wi__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-58-wi__hero-title {
      font-size: 3.5em;
      color: var(--page-58-wi-highlight-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-58-wi__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-58-wi-text-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-58-wi__game-card {
      background-color: var(--page-58-wi-secondary-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-58-wi-border-color);
    }

    .page-58-wi__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }

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

    .page-58-wi__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-58-wi__game-card:hover .page-58-wi__game-image {
      transform: scale(1.05);
    }

    .page-58-wi__game-content {
      padding: 20px;
    }

    .page-58-wi__game-title {
      font-size: 1.5em;
      color: var(--page-58-wi-highlight-color);
      margin-bottom: 10px;
    }

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

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

    .page-58-wi__promo-card {
      background-color: var(--page-58-wi-secondary-bg);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-58-wi-border-color);
      text-align: center;
    }

    .page-58-wi__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }

    .page-58-wi__promo-title {
      font-size: 1.6em;
      color: var(--page-58-wi-accent-color);
      margin-bottom: 15px;
    }

    .page-58-wi__promo-description {
      font-size: 1em;
      color: var(--page-58-wi-text-color);
      margin-bottom: 20px;
    }

    .page-58-wi__feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-58-wi__feature-item {
      background-color: var(--page-58-wi-secondary-bg);
      border-radius: 10px;
      padding: 25px;
      width: calc(33% - 20px); /* Adjust for 3 columns on desktop */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--page-58-wi-border-color);
      box-sizing: border-box; /* Crucial for responsive width calculation */
    }

    .page-58-wi__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: 250px;
      margin: 0 auto 15px;
      object-fit: contain;
      display: block;
    }

    .page-58-wi__feature-title {
      font-size: 1.4em;
      color: var(--page-58-wi-highlight-color);
      margin-bottom: 10px;
    }

    .page-58-wi__feature-description {
      font-size: 0.95em;
      color: var(--page-58-wi-text-color);
    }

    .page-58-wi__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-58-wi__logo-item {
      padding: 15px;
      background-color: #0d121f; /* Slightly darker for contrast */
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-sizing: border-box;
    }

    .page-58-wi__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .page-58-wi__faq-list {
      margin-top: 30px;
      text-align: left;
      padding: 0;
      list-style: none;
    }

    .page-58-wi__faq-item {
      background-color: var(--page-58-wi-secondary-bg);
      border: 1px solid var(--page-58-wi-border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-58-wi__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #242b45; /* Slightly different background for question */
      transition: background-color 0.3s ease;
    }

    .page-58-wi__faq-question:hover {
      background-color: #2e3650;
    }

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

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

    .page-58-wi__faq-item.active .page-58-wi__faq-toggle {
      transform: rotate(45deg); /* Plus to X visual effect */
    }

    .page-58-wi__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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-58-wi-text-color);
      font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-58-wi__hero-title {
        font-size: 3em;
      }
      .page-58-wi__hero-subtitle {
        font-size: 1.3em;
      }
      .page-58-wi__feature-item {
        width: calc(50% - 20px); /* 2 columns */
      }
    }

    @media (max-width: 768px) {
      .page-58-wi__section {
        padding: 30px 15px;
      }
      .page-58-wi__heading {
        font-size: 2em;
      }
      .page-58-wi__subheading {
        font-size: 1.5em;
      }
      .page-58-wi__hero-section {
        padding-top: calc(10px + var(--header-offset, 0px)); /* Ensure 10px decorative space + header offset */
        padding-bottom: 60px;
        min-height: 400px;
      }
      .page-58-wi__hero-title {
        font-size: 2.5em;
      }
      .page-58-wi__hero-subtitle {
        font-size: 1.1em;
      }
      .page-58-wi__game-grid,
      .page-58-wi__promo-grid,
      .page-58-wi__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-58-wi__feature-list {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-58-wi__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-58-wi__faq-question {
        padding: 12px 15px;
      }
      .page-58-wi__faq-question-text {
        font-size: 1.1em;
      }
      .page-58-wi__faq-answer {
        padding: 0 15px;
      }
      .page-58-wi__faq-item.active .page-58-wi__faq-answer {
        padding: 15px !important;
      }

      /* Image responsiveness */
      .page-58-wi img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-58-wi__game-image-wrapper,
      .page-58-wi__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-58-wi__hero-title {
        font-size: 2em;
      }
      .page-58-wi__hero-subtitle {
        font-size: 1em;
      }
      .page-58-wi__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-58-wi__game-title {
        font-size: 1.3em;
      }
      .page-58-wi__promo-title {
        font-size: 1.4em;
      }
      .page-58-wi__feature-title {
        font-size: 1.2em;
      }
      .page-58-wi__faq-question-text {
        font-size: 1em;
      }
    }
  