
    :root {
      --page-alo789__primary-color: #e04a00; /* Cam cháy */
      --page-alo789__secondary-color: #ffd700; /* Vàng kim */
      --page-alo789__background-dark: #1a1a1a; /* Nền tối */
      --page-alo789__text-light: #f0f0f0; /* Chữ sáng */
      --page-alo789__text-dark: #333333; /* Chữ tối */
      --page-alo789__accent-blue: #007bff; /* Xanh dương */
      --page-alo789__border-color: #333333; /* Màu viền */
      --page-alo789__shadow-color: rgba(0, 0, 0, 0.4); /* Màu đổ bóng */
    }

    .page-alo789 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-alo789__background-dark);
      color: var(--page-alo789__text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-alo789 a {
      color: var(--page-alo789__secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-alo789 a:hover {
      color: var(--page-alo789__primary-color);
    }

    .page-alo789__hero-section {
      position: relative;
      width: 100%;
      padding-top: 100px; /* Mobile header spacing */
      text-align: center;
      overflow: hidden;
    }

    @media (min-width: 769px) {
      .page-alo789__hero-section {
        padding-top: 120px; /* Desktop header spacing */
      }
    }

    .page-alo789__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%; /* Ensure image is responsive */
      display: block;
      margin: 0 auto;
      object-fit: cover;
      filter: brightness(0.8); /* Slightly dim the image for text readability */
      border-radius: 8px;
    }

    .page-alo789__hero-content {
      position: absolute;
      top: 50%; /* Adjust based on image and desired text position */
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      color: var(--page-alo789__text-light);
      max-width: 90%;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-alo789__shadow-color);
      box-sizing: border-box;
    }

    .page-alo789__hero-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-alo789__secondary-color);
      line-height: 1.2;
    }

    .page-alo789__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: var(--page-alo789__text-light);
    }

    .page-alo789__hero-cta-button {
      display: inline-block;
      background-color: var(--page-alo789__primary-color);
      color: var(--page-alo789__text-light);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px var(--page-alo789__shadow-color);
    }

    .page-alo789__hero-cta-button:hover {
      background-color: #ff6600; /* Slightly lighter orange */
      transform: translateY(-2px);
    }

    .page-alo789__section-title {
      font-size: 2em;
      color: var(--page-alo789__secondary-color);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-alo789__section-description {
      text-align: center;
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: var(--page-alo789__text-light);
    }

    .page-alo789__game-categories,
    .page-alo789__promotions,
    .page-alo789__game-providers,
    .page-alo789__why-choose,
    .page-alo789__faq-section,
    .page-alo789__news-section,
    .page-alo789__cta-section {
      padding: 20px;
      margin-bottom: 40px;
      background-color: #222222;
      border-radius: 8px;
      margin-left: 15px;
      margin-right: 15px;
      box-shadow: 0 4px 10px var(--page-alo789__shadow-color);
      box-sizing: border-box;
    }

    .page-alo789__categories-grid,
    .page-alo789__promo-grid,
    .page-alo789__features-grid,
    .page-alo789__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-alo789__category-item,
    .page-alo789__promo-card,
    .page-alo789__feature-item,
    .page-alo789__news-article {
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-alo789__category-item:hover,
    .page-alo789__promo-card:hover,
    .page-alo789__feature-item:hover,
    .page-alo789__news-article:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--page-alo789__shadow-color);
    }

    .page-alo789__category-link {
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 20px;
      flex-grow: 1;
      color: var(--page-alo789__text-light);
    }

    .page-alo789__category-image,
    .page-alo789__promo-image,
    .page-alo789__news-image,
    .page-alo789__feature-icon {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 15px;
    }

    .page-alo789__feature-icon {
        height: 100px;
        width: 100px;
        margin: 0 auto 15px auto;
        object-fit: contain;
    }

    .page-alo789__category-title,
    .page-alo789__promo-title,
    .page-alo789__feature-title,
    .page-alo789__article-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-alo789__secondary-color);
    }

    .page-alo789__category-text,
    .page-alo789__promo-text,
    .page-alo789__feature-description,
    .page-alo789__article-excerpt {
      font-size: 0.95em;
      color: var(--page-alo789__text-light);
      flex-grow: 1;
    }

    .page-alo789__promo-button,
    .page-alo789__read-more {
      display: inline-block;
      background-color: var(--page-alo789__primary-color);
      color: var(--page-alo789__text-light);
      padding: 10px 20px;
      border-radius: 5px;
      margin-top: 20px;
      font-size: 0.9em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      align-self: center;
    }

    .page-alo789__promo-button:hover,
    .page-alo789__read-more:hover {
      background-color: #ff6600;
    }

    .page-alo789__game-providers {
      text-align: center;
    }

    .page-alo789__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      padding: 20px 0;
      justify-items: center;
    }

    .page-alo789__provider-item {
      background-color: #333333;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
      width: 100px;
      height: 100px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: transform 0.2s ease;
    }

    .page-alo789__provider-item:hover {
        transform: translateY(-3px);
    }

    .page-alo789__provider-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 4px;
      margin-bottom: 5px;
    }

    .page-alo789__provider-name {
      font-size: 0.85em;
      color: var(--page-alo789__text-light);
      font-weight: bold;
    }

    .page-alo789__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-alo789__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #444444;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-alo789__border-color);
      transition: background-color 0.3s ease;
    }

    .page-alo789__faq-question:hover {
      background-color: #555555;
    }

    .page-alo789__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-alo789__secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-alo789__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-alo789__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .page-alo789__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-alo789__text-light);
    }

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

    .page-alo789__faq-answer p {
      margin: 0;
    }

    .page-alo789__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-alo789__primary-color);
      color: var(--page-alo789__text-light);
    }

    .page-alo789__cta-section .page-alo789__section-title {
      color: var(--page-alo789__text-light);
      margin-bottom: 15px;
      padding-top: 0;
    }

    .page-alo789__cta-section .page-alo789__section-description {
      color: var(--page-alo789__text-light);
      margin-bottom: 30px;
    }

    .page-alo789__cta-button {
      display: inline-block;
      background-color: var(--page-alo789__secondary-color);
      color: var(--page-alo789__background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-alo789__cta-button:hover {
      background-color: #e0b000; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-alo789__cta-text {
      margin-top: 20px;
      font-size: 1em;
      color: var(--page-alo789__text-light);
    }

    .page-alo789__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-alo789__primary-color);
      color: var(--page-alo789__text-light);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      box-shadow: 0 4px 15px var(--page-alo789__shadow-color);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-alo789__floating-login-button:hover {
      background-color: #ff6600;
      transform: scale(1.05);
    }

    .page-alo789__keyword {
      color: var(--page-alo789__secondary-color);
      font-weight: bold;
    }
    .page-alo789__text-link {
        color: var(--page-alo789__secondary-color);
        text-decoration: underline;
    }
    .page-alo789__text-link:hover {
        color: var(--page-alo789__primary-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-alo789__hero-title {
        font-size: 1.8em;
      }

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

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

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

      .page-alo789__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-alo789__categories-grid,
      .page-alo789__promo-grid,
      .page-alo789__features-grid,
      .page-alo789__news-grid {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-alo789__category-item,
      .page-alo789__promo-card,
      .page-alo789__feature-item,
      .page-alo789__news-article {
        margin: 0 10px;
      }

      .page-alo789__category-image,
      .page-alo789__promo-image,
      .page-alo789__news-image {
        height: 180px;
      }

      .page-alo789__provider-item {
        width: 80px;
        height: 80px;
      }
      .page-alo789__provider-logo {
        width: 60px;
        height: 60px;
      }

      .page-alo789__faq-question {
        padding: 12px 15px;
      }

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

      .page-alo789__faq-answer {
        padding: 0 15px;
      }

      .page-alo789__faq-item.active .page-alo789__faq-answer {
        padding: 15px !important;
      }

      .page-alo789__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-alo789__hero-content {
        max-width: 95%;
        padding: 15px;
      }
      .page-alo789__game-categories,
      .page-alo789__promotions,
      .page-alo789__game-providers,
      .page-alo789__why-choose,
      .page-alo789__faq-section,
      .page-alo789__news-section,
      .page-alo789__cta-section {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
      }
    }

    /* Enforce responsive images for all images */
    .page-alo789 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-alo789__hero-section .page-alo789__hero-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto;
        object-fit: cover;
    }
    @media (max-width: 768px) {
        .page-alo789 img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-alo789__hero-section .page-alo789__hero-image {
            width: 100% !important;
            height: auto !important;
        }
    }
  