
    :root {
      --primary-color: #e44d26;
      --secondary-color: #333;
      --accent-color: #f7b731;
      --text-color: #333;
      --light-text-color: #f8f8f8;
      --bg-color: #f0f2f5;
      --card-bg-color: #fff;
      --border-radius: 8px;
      --spacing-unit: 20px;
      --header-offset: 122px; /* Default for potential fallback */
    }

    .page-alo-789-ch-nh-ch {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not applied by shared.css */
    }

    .page-alo-789-ch-nh-ch__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__section {
      padding: calc(var(--spacing-unit) * 2) 0;
      margin-bottom: var(--spacing-unit);
      background-color: var(--card-bg-color);
      border-radius: var(--border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-alo-789-ch-nh-ch__section--dark {
      background-color: var(--secondary-color);
      color: var(--light-text-color);
    }

    .page-alo-789-ch-nh-ch__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: var(--spacing-unit);
      color: var(--primary-color);
      padding-top: 10px; /* Decorative top padding */
    }

    .page-alo-789-ch-nh-ch__section-title--light {
      color: var(--light-text-color);
    }

    .page-alo-789-ch-nh-ch__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
      color: var(--light-text-color);
      text-align: center;
      padding: calc(var(--spacing-unit) * 3) 0;
      overflow: hidden;
      border-radius: var(--border-radius);
      margin-bottom: var(--spacing-unit);
      padding-top: 10px; /* Decorative top padding, assuming body handles main offset */
    }

    .page-alo-789-ch-nh-ch__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-alo-789-ch-nh-ch__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--accent-color);
    }

    .page-alo-789-ch-nh-ch__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: var(--spacing-unit);
      color: var(--light-text-color);
    }

    .page-alo-789-ch-nh-ch__button-group {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-alo-789-ch-nh-ch__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-alo-789-ch-nh-ch__floating-buttons {
      position: fixed;
      bottom: var(--spacing-unit);
      display: flex;
      justify-content: space-around;
      width: 100%;
      z-index: 1000;
      padding: 0 var(--spacing-unit);
      box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 15px 10px;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      text-align: center;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      max-width: 180px;
    }

    .page-alo-789-ch-nh-ch__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-alo-789-ch-nh-ch__intro-text,
    .page-alo-789-ch-nh-ch__content-text {
      font-size: 1.1em;
      margin-bottom: var(--spacing-unit);
      text-align: justify;
      padding: 0 var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__features-grid,
    .page-alo-789-ch-nh-ch__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--spacing-unit);
      padding: 0 var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__feature-item,
    .page-alo-789-ch-nh-ch__game-card {
      background-color: var(--card-bg-color);
      padding: var(--spacing-unit);
      border-radius: var(--border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-alo-789-ch-nh-ch__feature-item:hover,
    .page-alo-789-ch-nh-ch__game-card:hover {
      transform: translateY(-5px);
    }

    .page-alo-789-ch-nh-ch__feature-icon {
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      border-radius: var(--border-radius);
    }

    .page-alo-789-ch-nh-ch__game-image {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      margin-bottom: 15px;
      object-fit: cover;
    }

    .page-alo-789-ch-nh-ch__feature-title,
    .page-alo-789-ch-nh-ch__game-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-alo-789-ch-nh-ch__feature-description,
    .page-alo-789-ch-nh-ch__game-description {
      font-size: 0.95em;
      color: var(--secondary-color);
    }

    .page-alo-789-ch-nh-ch__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--spacing-unit);
      padding: 0 var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__payment-item {
      background-color: var(--card-bg-color);
      padding: 15px 20px;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      min-width: 120px;
      flex: 1 1 auto;
      max-width: 180px;
    }

    .page-alo-789-ch-nh-ch__payment-icon {
      max-width: 150px; /* Increased size */
      height: auto;
      margin-bottom: 10px;
    }

    .page-alo-789-ch-nh-ch__payment-name {
      font-weight: bold;
      color: var(--primary-color);
    }

    .page-alo-789-ch-nh-ch__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--spacing-unit);
      padding: 0 var(--spacing-unit);
    }

    .page-alo-789-ch-nh-ch__social-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--light-text-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-alo-789-ch-nh-ch__social-item:hover {
      color: var(--accent-color);
    }

    .page-alo-789-ch-nh-ch__social-icon {
      max-width: 200px; /* Increased size */
      height: auto;
      vertical-align: middle;
    }

    /* FAQ Section */
    .page-alo-789-ch-nh-ch__faq-list {
      padding: 0 var(--spacing-unit);
      list-style: none;
    }

    .page-alo-789-ch-nh-ch__faq-item {
      background-color: var(--card-bg-color);
      border: 1px solid #ddd;
      border-radius: var(--border-radius);
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-alo-789-ch-nh-ch__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px var(--spacing-unit);
      cursor: pointer;
      background-color: #f9f9f9;
      font-weight: bold;
      color: var(--secondary-color);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-alo-789-ch-nh-ch__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-alo-789-ch-nh-ch__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-alo-789-ch-nh-ch__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: var(--accent-color);
    }

    .page-alo-789-ch-nh-ch__faq-item.active .page-alo-789-ch-nh-ch__faq-toggle {
      transform: rotate(45deg);
    }

    .page-alo-789-ch-nh-ch__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--spacing-unit);
      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(--text-color);
    }

    .page-alo-789-ch-nh-ch__faq-item.active .page-alo-789-ch-nh-ch__faq-answer {
      max-height: 2000px !important;
      padding: 20px var(--spacing-unit) !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-alo-789-ch-nh-ch__hero-title {
        font-size: 3em;
      }
    }

    @media (max-width: 768px) {
      .page-alo-789-ch-nh-ch__container {
        padding: 0 15px;
      }
      .page-alo-789-ch-nh-ch__section-title {
        font-size: 2em;
      }
      .page-alo-789-ch-nh-ch__hero-title {
        font-size: 2.5em;
      }
      .page-alo-789-ch-nh-ch__hero-subtitle {
        font-size: 1.2em;
      }
      .page-alo-789-ch-nh-ch__button-group {
        flex-direction: column;
        align-items: center;
      }
      .page-alo-789-ch-nh-ch__button {
        width: 100%;
        max-width: 250px;
      }
      .page-alo-789-ch-nh-ch__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 10px;
        padding: 0 10px;
      }
      .page-alo-789-ch-nh-ch__floating-button {
        max-width: 100%;
        margin: 0;
        font-size: 1em;
        padding: 12px 10px;
      }

      .page-alo-789-ch-nh-ch__features-grid,
      .page-alo-789-ch-nh-ch__games-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-alo-789-ch-nh-ch__payment-methods,
      .page-alo-789-ch-nh-ch__social-links {
        gap: 15px;
        padding: 0 15px;
      }

      .page-alo-789-ch-nh-ch__payment-item {
        min-width: unset;
        flex: 1 1 45%;
        max-width: 48%;
      }

      .page-alo-789-ch-nh-ch__faq-question,
      .page-alo-789-ch-nh-ch__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-alo-789-ch-nh-ch__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-alo-789-ch-nh-ch__faq-list {
        padding: 0 15px;
      }
    }

    @media (max-width: 480px) {
      .page-alo-789-ch-nh-ch__hero-title {
        font-size: 2em;
      }
      .page-alo-789-ch-nh-ch__hero-subtitle {
        font-size: 1em;
      }
      .page-alo-789-ch-nh-ch__payment-item {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
  