
    .page-zt9398 {
      background-color: #000000;
      color: #FFFFFF;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for sticky button */
    }

    .page-zt9398__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-zt9398__hero-section {
      text-align: center;
      padding: 150px 0 40px; /* Adjusted padding-top for fixed header */
      background-color: #1a1a1a;
      position: relative;
      overflow: hidden;
    }

    .page-zt9398__hero-banner {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      min-height: 200px; /* Ensure minimum size */
    }

    .page-zt9398__hero-content {
      position: relative;
      z-index: 10;
      padding: 20px 15px;
    }

    .page-zt9398__logo {
      width: 180px;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto 20px;
      min-height: 200px; /* Ensure minimum size */
    }

    .page-zt9398__main-heading {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-zt9398__sub-heading {
      color: #FFFFFF;
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-zt9398__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-zt9398__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-zt9398__sticky-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      border: none;
      cursor: pointer;
    }

    .page-zt9398__sticky-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-3px);
    }

    .page-zt9398__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-zt9398__section-heading {
      color: #FFD700;
      font-size: 2em;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-zt9398__section-heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #FFD700;
    }

    .page-zt9398__text-content {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    .page-zt9398__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-zt9398__game-item {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 15px;
    }

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

    .page-zt9398__game-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
    }

    .page-zt9398__game-title {
      color: #FFD700;
      font-size: 1.1em;
      margin: 15px 10px 0;
      font-weight: bold;
    }

    .page-zt9398__promo-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 30px;
      margin-top: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-zt9398__promo-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 25px;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
    }

    .page-zt9398__promo-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-zt9398__promo-description {
      color: #E0E0E0;
      font-size: 1em;
      margin-bottom: 25px;
      text-align: center;
    }

    .page-zt9398__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-zt9398__provider-logo {
      width: 100%;
      height: auto;
      max-width: 150px;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      filter: brightness(0.8) grayscale(0.5); /* Allowed for stylistic effect, not color change */
      transition: filter 0.3s ease;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px; /* Ensure minimum size */
    }

    .page-zt9398__provider-logo:hover {
      filter: brightness(1) grayscale(0);
    }

    .page-zt9398__faq-section {
      background-color: #1a1a1a;
      padding: 60px 0;
      text-align: center;
    }

    .page-zt9398__faq-item {
      background-color: #222222;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-zt9398__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2c2c2c;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-zt9398__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-zt9398__faq-question h3 {
      color: #FFD700;
      font-size: 1.1em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-zt9398__faq-toggle {
      color: #FFD700;
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

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

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-zt9398__hero-section {
        padding-top: 150px; /* Ensure mobile padding-top is also respected */
      }

      .page-zt9398__main-heading {
        font-size: 2em;
      }

      .page-zt9398__sub-heading {
        font-size: 1em;
      }

      .page-zt9398__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-zt9398__sticky-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-zt9398__section {
        padding: 40px 0;
      }

      .page-zt9398__section-heading {
        font-size: 1.8em;
      }

      .page-zt9398__text-content {
        font-size: 0.95em;
      }

      .page-zt9398__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }

      .page-zt9398__game-image {
        height: 120px;
      }

      .page-zt9398__game-title {
        font-size: 1em;
      }

      .page-zt9398__promo-card {
        padding: 20px;
      }

      .page-zt9398__promo-title {
        font-size: 1.5em;
      }

      .page-zt9398__promo-description {
        font-size: 0.9em;
      }

      .page-zt9398__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

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

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

      .page-zt9398__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
      }

      /* Image responsiveness for mobile */
      .page-zt9398 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-zt9398__game-image, .page-zt9398__promo-image, .page-zt9398__provider-logo, .page-zt9398__hero-banner, .page-zt9398__logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  