
    /* Tổng quan */
    .page-alo789new {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 80px; /* Đủ khoảng trống cho nút nổi */
    }

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

    .page-alo789new__section-title {
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-alo789new__text-white {
      color: #FFFFFF;
    }

    .page-alo789new__text-yellow {
      color: #FFD700;
    }

    /* Hero Section */
    .page-alo789new__hero-section {
      text-align: center;
      padding: 100px 0 50px 0; /* Khoảng cách trên cho desktop */
      background-color: #000000;
      position: relative;
    }

    .page-alo789new__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-alo789new__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
    }

    .page-alo789new__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-alo789new__hero-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

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

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

    /* Nút đăng nhập nổi */
    .page-alo789new__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      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.4);
      z-index: 1000;
      animation: page-alo789new__pulse 2s infinite;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      text-align: center;
    }

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

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

    /* Game Categories Section */
    .page-alo789new__game-categories {
      padding: 60px 0;
    }

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

    .page-alo789new__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-alo789new__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-alo789new__game-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .page-alo789new__game-icon {
      width: 120px; /* Kích thước tối thiểu 200px, nhưng đây là logo nên có thể nhỏ hơn 200px, đảm bảo không phải icon nhỏ */
      height: 120px; /* Đảm bảo kích thước tối thiểu */
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin: 0 auto;
      display: block;
    }

    .page-alo789new__game-name {
      font-size: 1.2em;
      color: #FFD700;
      font-weight: bold;
    }

    /* About Section */
    .page-alo789new__about-section {
      padding: 60px 0;
      background-color: #0a0a0a;
    }

    .page-alo789new__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .page-alo789new__about-text {
      font-size: 1.1em;
      line-height: 1.8;
      text-align: justify;
    }

    .page-alo789new__about-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 20px;
    }

    .page-alo789new__about-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* FAQ Section */
    .page-alo789new__faq-section {
      padding: 60px 0;
    }

    .page-alo789new__faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-alo789new__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-alo789new__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #333333;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-alo789new__faq-question:hover {
      background-color: #333333;
    }

    .page-alo789new__faq-question h3 {
      margin: 0;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-alo789new__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn span chặn sự kiện click */
    }

    .page-alo789new__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #FFFFFF;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-alo789new__faq-item.active .page-alo789new__faq-question {
      border-bottom: none;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-alo789new__hero-section {
        padding-top: 160px; /* Khoảng cách trên cho mobile */
        padding-bottom: 30px;
      }

      .page-alo789new__hero-title {
        font-size: 2.5em;
      }

      .page-alo789new__hero-subtitle {
        font-size: 1.2em;
      }

      .page-alo789new__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

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

      .page-alo789new__game-icon {
        width: 100px;
        height: 100px;
      }

      .page-alo789new__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
        min-width: 180px;
      }

      .page-alo789new__about-content {
        flex-direction: column;
      }

      .page-alo789new__about-text {
        text-align: left;
      }

      .page-alo789new__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-alo789new__faq-answer {
        padding: 0 20px;
      }

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

      /* Responsive image optimization */
      .page-alo789new__hero-image,
      .page-alo789new__game-icon,
      .page-alo789new__about-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
      }

      .page-alo789new__hero-image-wrapper,
      .page-alo789new__game-icon-wrapper,
      .page-alo789new__about-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-alo789new__hero-title {
        font-size: 2em;
      }

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

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

      .page-alo789new__floating-login-button {
        font-size: 0.9em;
        padding: 10px 18px;
        min-width: 150px;
      }
    }
  