
    .page-alo-788 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-alo-788__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-alo-788__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Adjusted padding-top as body handles header offset */
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
    }

    .page-alo-788__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
    }

    .page-alo-788__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-alo-788__hero-image-wrapper {
      max-width: 800px;
      margin: 30px auto 0;
      position: relative;
      z-index: 1;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .page-alo-788__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-alo-788__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-alo-788__floating-button {
      background-color: #ff4500;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .page-alo-788__floating-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-alo-788__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      text-align: center;
      margin: 40px 0 30px;
      position: relative;
    }

    .page-alo-788__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ff4500;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-alo-788__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .page-alo-788__category-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-alo-788__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-alo-788__category-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      margin-bottom: 15px;
    }

    .page-alo-788__category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-alo-788__category-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin: 0 15px 10px;
    }

    .page-alo-788__category-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }

    .page-alo-788__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .page-alo-788__promotion-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-alo-788__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-alo-788__promotion-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .page-alo-788__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-alo-788__promotion-content {
      padding: 20px;
    }

    .page-alo-788__promotion-title {
      font-size: 1.4em;
      color: #ff4500;
      margin-bottom: 10px;
    }

    .page-alo-788__promotion-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-alo-788__promotion-button {
      background-color: #1a2a6c;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.95em;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-alo-788__promotion-button:hover {
      background-color: #0d1a4a;
    }

    .page-alo-788__about-section {
      background-color: #eaf0f6;
      padding: 50px 0;
      border-radius: 15px;
      margin-bottom: 50px;
      text-align: center;
    }

    .page-alo-788__about-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-alo-788__about-text {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 20px;
    }

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

    .page-alo-788__feature-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1 1 280px;
      max-width: 300px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-alo-788__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-alo-788__feature-icon-wrapper {
      margin-bottom: 15px;
      display: inline-block;
      width: 100px; /* Ensure minimum size */
      height: 100px; /* Ensure minimum size */
      overflow: hidden;
    }

    .page-alo-788__feature-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .page-alo-788__feature-title {
      font-size: 1.3em;
      color: #ff4500;
      margin-bottom: 10px;
    }

    .page-alo-788__feature-description {
      font-size: 0.9em;
      color: #666;
    }

    .page-alo-788__faq-section {
      margin-bottom: 50px;
    }

    .page-alo-788__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-alo-788__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      font-size: 1.15em;
      color: #1a2a6c;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      background-color: #f0f5fa;
      border-bottom: 1px solid #e0e5ea;
      transition: background-color 0.3s ease;
    }

    .page-alo-788__faq-question:hover {
      background-color: #e5edf5;
    }

    .page-alo-788__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Reset h3 default size */
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-alo-788__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #ff4500;
    }

    .page-alo-788__faq-item.active .page-alo-788__faq-toggle {
      transform: rotate(45deg);
    }

    .page-alo-788__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: #555;
      font-size: 0.95em;
      background-color: #fff;
    }

    .page-alo-788__faq-item.active .page-alo-788__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-alo-788__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 50px;
    }

    .page-alo-788__payment-item, .page-alo-788__provider-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      padding: 15px 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      max-width: 200px;
      height: 80px;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-alo-788__payment-item:hover, .page-alo-788__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    }

    .page-alo-788__payment-logo, .page-alo-788__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-alo-788__social-media {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
    }

    .page-alo-788__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #1a2a6c;
      color: #fff;
      border-radius: 50%;
      font-size: 1.5em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-alo-788__social-link:hover {
      background-color: #ff4500;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-alo-788__container {
        padding: 15px;
      }

      .page-alo-788__hero-title {
        font-size: 2em;
      }

      .page-alo-788__hero-subtitle {
        font-size: 1em;
      }

      .page-alo-788__section-title {
        font-size: 1.8em;
        margin: 30px 0 20px;
      }

      .page-alo-788__game-categories,
      .page-alo-788__promotion-grid {
        grid-template-columns: 1fr;
      }

      .page-alo-788__category-card,
      .page-alo-788__promotion-card {
        margin: 0 auto;
        max-width: 350px;
      }

      .page-alo-788__feature-list {
        flex-direction: column;
        align-items: center;
      }

      .page-alo-788__feature-item {
        width: 100% !important;
        max-width: 350px !important;
        box-sizing: border-box !important;
        padding: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-alo-788__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

      .page-alo-788__faq-answer {
        padding: 0 20px;
        font-size: 0.9em;
      }

      .page-alo-788__faq-item.active .page-alo-788__faq-answer {
        padding: 15px 20px !important;
      }

      .page-alo-788__payment-item, .page-alo-788__provider-item {
        min-width: unset;
        width: 45% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-alo-788__payment-providers, .page-alo-788__social-media {
        gap: 10px;
      }

      .page-alo-788__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

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

      .page-alo-788__hero-image,
      .page-alo-788__category-image,
      .page-alo-788__promotion-image,
      .page-alo-788__feature-icon,
      .page-alo-788__payment-logo,
      .page-alo-788__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-alo-788__hero-image-wrapper,
      .page-alo-788__category-image-wrapper,
      .page-alo-788__promotion-image-wrapper,
      .page-alo-788__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;
      }

      .page-alo-788__about-content p,
      .page-alo-788__category-description,
      .page-alo-788__promotion-description,
      .page-alo-788__feature-description,
      .page-alo-788__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  