
    :root {
      --page-58win2026__primary-color: #007bff; /* Blue */
      --page-58win2026__secondary-color: #6c757d; /* Grey */
      --page-58win2026__accent-color: #ffc107; /* Yellow */
      --page-58win2026__text-color: #343a40; /* Dark Grey */
      --page-58win2026__background-color: #f8f9fa; /* Light Grey */
      --page-58win2026__white: #ffffff;
      --page-58win2026__dark-blue: #002d5a;
      --page-58win2026__green: #28a745;
    }

    .page-58win2026 {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-58win2026__text-color);
      background-color: var(--page-58win2026__background-color);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

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

    .page-58win2026__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      color: var(--page-58win2026__white);
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
    }

    .page-58win2026__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-58win2026__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 8px;
      max-width: 90%;
      box-sizing: border-box;
    }

    .page-58win2026__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-58win2026__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-58win2026__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: var(--page-58win2026__white);
    }

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

    .page-58win2026__cta-button:hover {
      background-color: var(--page-58win2026__dark-blue);
    }

    .page-58win2026__section {
      padding: 40px 0;
      background-color: var(--page-58win2026__white);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-58win2026__section:nth-child(even) {
      background-color: var(--page-58win2026__background-color);
    }

    .page-58win2026__section-title {
      font-size: 2em;
      color: var(--page-58win2026__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-58win2026__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-58win2026__accent-color);
    }

    .page-58win2026__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-58win2026__text-content ul {
      list-style: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-58win2026__text-content ol {
      list-style: decimal;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-58win2026__text-content li {
      margin-bottom: 8px;
    }

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

    .page-58win2026__game-item {
      background-color: var(--page-58win2026__white);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 15px;
    }

    .page-58win2026__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-58win2026__game-item-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .page-58win2026__game-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      min-height: 150px; /* Ensure images are not too small */
    }

    .page-58win2026__game-title {
      font-size: 1.1em;
      color: var(--page-58win2026__text-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-58win2026__promotion-card {
      background-color: var(--page-58win2026__white);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 25px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-58win2026__promotion-card-title {
      color: var(--page-58win2026__primary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-58win2026__promotion-card-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      margin: 0 auto 20px auto;
      border-radius: 8px;
    }

    .page-58win2026__promotion-card-description {
      margin-bottom: 20px;
    }

    .page-58win2026__faq-section {
      background-color: var(--page-58win2026__white);
      padding: 40px 0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-58win2026__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--page-58win2026__white);
    }

    .page-58win2026__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-58win2026__dark-blue);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-58win2026__faq-question:hover {
      background-color: #e6e6e6;
    }

    .page-58win2026__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-58win2026__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-58win2026__faq-item.active .page-58win2026__faq-toggle {
      transform: rotate(45deg);
    }

    .page-58win2026__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;
      background-color: var(--page-58win2026__white);
      color: var(--page-58win2026__text-color);
    }

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

    .page-58win2026__faq-answer p {
      margin: 0;
    }

    .page-58win2026__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-58win2026__green);
      color: var(--page-58win2026__white);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    .page-58win2026__floating-button:hover {
      background-color: #218838;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58win2026__hero-section {
        padding-top: 10px; /* For fixed header on mobile */
      }

      .page-58win2026__hero-title {
        font-size: 1.8em;
      }

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

      .page-58win2026__section-title {
        font-size: 1.6em;
      }

      .page-58win2026__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }

      .page-58win2026__game-image {
        min-height: 120px;
      }

      .page-58win2026__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-58win2026__faq-question h3 {
        font-size: 1em;
      }

      .page-58win2026__faq-answer {
        padding: 15px 15px !important;
      }

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

      /* Image responsive important rules */
      .page-58win2026__hero-image,
      .page-58win2026__game-image,
      .page-58win2026__promotion-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-58win2026__hero-section,
      .page-58win2026__game-item,
      .page-58win2026__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-58win2026__hero-title {
        font-size: 1.5em;
      }

      .page-58win2026__hero-subtitle {
        font-size: 0.9em;
      }

      .page-58win2026__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-58win2026__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-58win2026__game-image {
        min-height: 100px;
      }
    }
  