
    /* Global styles for this page only */
    .page-hay88mobi {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

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

    .page-hay88mobi__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-hay88mobi__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Gold accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .page-hay88mobi__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* General image styling for responsiveness */
    .page-hay88mobi img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Hero Section */
    .page-hay88mobi__hero-section {
      background: url('[GALLERY:hero:hay88,mobile,banner]') no-repeat center center/cover;
      position: relative;
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* padding-top 10px for fixed header */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Minimum height for visibility */
    }

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

    .page-hay88mobi__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-hay88mobi__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    /* Floating Login Button */
    .page-hay88mobi__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #e74c3c; /* Red color for urgency */
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      padding: 12px 25px;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
    }

    .page-hay88mobi__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    .page-hay88mobi__floating-button a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-hay88mobi__floating-button a span {
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-hay88mobi__game-categories {
      background-color: #222;
      padding: 50px 0;
    }

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

    .page-hay88mobi__category-item {
      background-color: #333;
      border-radius: 10px;
      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: 20px;
    }

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

    .page-hay88mobi__category-item img {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
    }

    .page-hay88mobi__category-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-hay88mobi__category-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px;
    }

    /* About Section */
    .page-hay88mobi__about-section {
      padding: 50px 0;
      background-color: #1a1a1a;
      text-align: left;
    }

    .page-hay88mobi__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      margin-top: 40px;
    }

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

    .page-hay88mobi__about-text h3 {
      font-size: 1.8em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-hay88mobi__about-text p {
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    .page-hay88mobi__about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .page-hay88mobi__about-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    /* Guide Section */
    .page-hay88mobi__guide-section {
      background-color: #222;
      padding: 50px 0;
    }

    .page-hay88mobi__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-hay88mobi__guide-item {
      background-color: #333;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      text-align: center;
    }

    .page-hay88mobi__guide-item h3 {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-hay88mobi__guide-item p {
      color: #ccc;
    }

    /* FAQ Section */
    .page-hay88mobi__faq-section {
      background-color: #1a1a1a;
      padding: 50px 0;
      text-align: left;
    }

    .page-hay88mobi__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-hay88mobi__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333;
      color: #ffd700;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-hay88mobi__faq-question:hover {
      background-color: #444;
    }

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

    .page-hay88mobi__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
      display: inline-block; /* Ensure transform works correctly */
      width: 1em; /* Give it a fixed width */
      text-align: center;
    }

    .page-hay88mobi__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #2a2a2a;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-hay88mobi__faq-answer p {
      margin-bottom: 10px;
    }

    /* Call to Action */
    .page-hay88mobi__cta-section {
      background-color: #e74c3c;
      padding: 40px 0;
    }

    .page-hay88mobi__cta-title {
      font-size: 2.2em;
      color: #fff;
      margin-bottom: 20px;
    }

    .page-hay88mobi__cta-text {
      font-size: 1.1em;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

    .page-hay88mobi__cta-button {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-hay88mobi__cta-button:hover {
      background-color: #e0b800;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hay88mobi__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Mobile padding for fixed header */
      }
      .page-hay88mobi__hero-title {
        font-size: 2em;
      }
      .page-hay88mobi__hero-description {
        font-size: 1em;
      }
      .page-hay88mobi__section-title {
        font-size: 2em;
      }
      .page-hay88mobi__category-grid {
        grid-template-columns: 1fr;
      }
      .page-hay88mobi__about-content {
        flex-direction: column;
      }
      .page-hay88mobi__about-text,
      .page-hay88mobi__about-image {
        min-width: unset;
        width: 100%;
      }
      .page-hay88mobi__guide-steps {
        flex-direction: column;
        align-items: center;
      }
      .page-hay88mobi__guide-item {
        max-width: 90%;
      }
      .page-hay88mobi__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
      }
      .page-hay88mobi__floating-button a {
        font-size: 1em;
      }

      /* Ensure images are responsive on mobile */
      .page-hay88mobi img {
          max-width: 100% !important;
          height: auto !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-hay88mobi__faq-question,
      .page-hay88mobi__faq-answer {
          padding-left: 15px !important;
          padding-right: 15px !important;
      }
    }

    @media (max-width: 480px) {
        .page-hay88mobi__hero-title {
            font-size: 1.8em;
        }
        .page-hay88mobi__hero-description {
            font-size: 0.9em;
        }
        .page-hay88mobi__section-title {
            font-size: 1.8em;
        }
    }
  