
    /* Tổng quan */
    .page-alo789com {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh footer nổi */
    }

    .page-alo789com__section-title {
      color: #FFD700; /* Chữ vàng */
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      padding-top: 20px;
    }

    .page-alo789com a {
      color: #FFD700; /* Link vàng */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-alo789com a:hover {
      color: #fff;
    }

    /* Hero Section */
    .page-alo789com__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 140px; /* An toàn cho header cố định */
      box-sizing: border-box;
      background-color: #1a1a1a; /* Nền tối hơn cho phần hero */
    }

    .page-alo789com__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Giữ tỷ lệ ảnh */
      width: 100%;
      max-height: 500px; /* Giới hạn chiều cao để không quá lớn */
      border-bottom: 5px solid #FFD700; /* Đường viền vàng dưới ảnh */
    }

    .page-alo789com__hero-content {
      padding: 20px;
      max-width: 900px;
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 20px; /* Khoảng cách giữa nội dung và ảnh */
    }

    .page-alo789com__hero-title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-alo789com__hero-description {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 25px;
    }

    .page-alo789com__hero-button,
    .page-alo789com__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: 2px solid #FFD700;
    }

    .page-alo789com__hero-button:hover,
    .page-alo789com__cta-button:hover {
      background-color: #e6c200;
      color: #000;
    }

    /* Floating Login Button */
    .page-alo789com__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .page-alo789com__floating-button {
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: page-alo789com__pulse 2s infinite;
      display: block; /* Đảm bảo nút chiếm toàn bộ không gian để dễ click trên di động */
      text-align: center;
      white-space: nowrap;
    }

    .page-alo789com__floating-button:hover {
      background-color: #e6c200;
    }

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

    /* General Content Sections */
    .page-alo789com__about-us,
    .page-alo789com__game-categories,
    .page-alo789com__game-providers,
    .page-alo789com__promotions,
    .page-alo789com__payment-methods,
    .page-alo789com__faq,
    .page-alo789com__latest-news,
    .page-alo789com__join-us {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-alo789com__about-us p,
    .page-alo789com__join-us p {
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #ccc;
    }

    /* Game Categories */
    .page-alo789com__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-alo789com__category-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

    .page-alo789com__category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-alo789com__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
    }

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

    .page-alo789com__category-title a {
      color: #FFD700;
    }

    .page-alo789com__category-card p {
      color: #ccc;
      font-size: 0.95em;
      padding: 0 15px 20px;
    }

    /* Game Providers */
    .page-alo789com__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }

    .page-alo789com__provider-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      border: 1px solid #333;
    }

    .page-alo789com__provider-item:hover {
      transform: scale(1.05);
    }

    .page-alo789com__provider-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    /* Promotions */
    .page-alo789com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-alo789com__promo-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

    .page-alo789com__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-alo789com__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
    }

    .page-alo789com__promo-title {
      font-size: 1.6em;
      color: #FFD700;
      margin: 20px 0 10px;
      padding: 0 20px;
      text-align: center;
    }

    .page-alo789com__promo-title a {
      color: #FFD700;
    }

    .page-alo789com__promo-card p {
      color: #ccc;
      font-size: 1em;
      padding: 0 20px 20px;
      text-align: center;
    }

    /* Payment Methods */
    .page-alo789com__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-alo789com__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      background-color: #1a1a1a;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid #333;
    }

    .page-alo789com__payment-logo:hover {
      transform: scale(1.1);
    }

    /* FAQ Section */
    .page-alo789com__faq-container {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-alo789com__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #333;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .page-alo789com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

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

    .page-alo789com__faq-q-text {
      font-size: 1.3em;
      color: #FFD700;
      margin: 0;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-alo789com__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên span */
    }

    .page-alo789com__faq-item.active .page-alo789com__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X */
    }

    .page-alo789com__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;
    }

    .page-alo789com__faq-item.active .page-alo789com__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-alo789com__faq-answer p {
      margin: 0;
      color: #ccc;
      font-size: 1em;
    }

    /* Latest News */
    .page-alo789com__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-alo789com__news-item {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

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

    .page-alo789com__news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
    }

    .page-alo789com__news-title {
      font-size: 1.4em;
      color: #FFD700;
      margin: 20px 0 10px;
      padding: 0 20px;
    }

    .page-alo789com__news-title a {
      color: #FFD700;
    }

    .page-alo789com__news-item p {
      color: #ccc;
      font-size: 0.95em;
      padding: 0 20px 20px;
    }

    .page-alo789com__join-us .page-alo789com__cta-button {
      display: block;
      margin: 30px auto 0;
      max-width: 300px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-alo789com__section-title {
        font-size: 2em;
      }
      .page-alo789com__hero-title {
        font-size: 2.2em;
      }
      .page-alo789com__hero-description {
        font-size: 1.1em;
      }
      .page-alo789com__categories-grid,
      .page-alo789com__promotions-grid,
      .page-alo789com__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-alo789com__hero-section {
        padding-top: 100px; /* An toàn cho header di động */
      }
      .page-alo789com__section-title {
        font-size: 1.8em;
      }
      .page-alo789com__hero-title {
        font-size: 1.8em;
      }
      .page-alo789com__hero-description {
        font-size: 1em;
      }
      .page-alo789com__hero-button,
      .page-alo789com__floating-button,
      .page-alo789com__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-alo789com__floating-button-wrapper {
        bottom: 15px;
        right: 15px;
      }
      .page-alo789com__about-us,
      .page-alo789com__game-categories,
      .page-alo789com__game-providers,
      .page-alo789com__promotions,
      .page-alo789com__payment-methods,
      .page-alo789com__faq,
      .page-alo789com__latest-news,
      .page-alo789com__join-us {
        padding: 30px 15px;
      }
      .page-alo789com__categories-grid,
      .page-alo789com__promotions-grid,
      .page-alo789com__news-grid {
        grid-template-columns: 1fr;
      }
      .page-alo789com__category-card,
      .page-alo789com__promo-card,
      .page-alo789com__news-item {
        margin-bottom: 20px;
      }
      .page-alo789com__faq-q-text {
        font-size: 1.1em;
      }
      .page-alo789com__faq-answer p {
        font-size: 0.9em;
      }

      /* Image responsive optimization with !important */
      .page-alo789com img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-alo789com__hero-image,
      .page-alo789com__category-image,
      .page-alo789com__promo-image,
      .page-alo789com__news-image {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important;
          object-fit: cover !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-alo789com__provider-logo,
      .page-alo789com__payment-logo {
          max-width: 100% !important;
          height: auto !important;
          object-fit: contain !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  