
    :root {
      --primary-color: #ff4500; /* Cam rực rỡ */
      --secondary-color: #ffd700; /* Vàng kim */
      --dark-background: #1a1a2e; /* Nền tối */
      --light-text: #ffffff; /* Chữ sáng */
      --grey-text: #cccccc; /* Chữ xám */
      --button-bg: #4CAF50; /* Nút xanh lá */
      --button-hover-bg: #45a049;
      --border-color: #333;
      --header-offset: 122px; /* Fallback value, should be set by shared.css */
    }

    .page-alo789-y-n {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-alo789-y-n__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-alo789-y-n__hero-section {
      text-align: center;
      padding: 60px 0 30px;
      background: linear-gradient(135deg, var(--dark-background), #2e004a);
      position: relative;
      overflow: hidden;
    }

    .page-alo789-y-n__hero-title {
      font-size: 2.8em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__hero-subtitle {
      font-size: 1.3em;
      color: var(--grey-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      margin-top: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-alo789-y-n__section {
      padding: 40px 0;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }

    .page-alo789-y-n__section:last-of-type {
      border-bottom: none;
    }

    .page-alo789-y-n__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__text-content {
      font-size: 1.1em;
      color: var(--grey-text);
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__game-grid,
    .page-alo789-y-n__payment-grid,
    .page-alo789-y-n__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-alo789-y-n__game-item,
    .page-alo789-y-n__payment-item,
    .page-alo789-y-n__provider-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-alo789-y-n__game-item:hover,
    .page-alo789-y-n__payment-item:hover,
    .page-alo789-y-n__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-alo789-y-n__game-image,
    .page-alo789-y-n__payment-image,
    .page-alo789-y-n__provider-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
      object-fit: contain; /* Ensure images fit without cropping */
      width: 250px; /* Specific width for consistent display */
      height: 150px; /* Specific height for consistent display */
    }

    .page-alo789-y-n__game-title,
    .page-alo789-y-n__payment-name,
    .page-alo789-y-n__provider-name {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__game-description {
      font-size: 0.95em;
      color: var(--grey-text);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-alo789-y-n__promo-item {
      background-color: #3a3a5a;
      border-left: 5px solid var(--primary-color);
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      max-width: 450px;
      width: 100%;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__promo-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__promo-description {
      font-size: 1em;
      color: var(--grey-text);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__cta-button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      margin-top: 30px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

    .page-alo789-y-n__cta-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    .page-alo789-y-n__faq-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-alo789-y-n__faq-list {
      max-width: 900px;
      margin: 30px auto 0;
      list-style: none;
      padding: 0;
    }

    .page-alo789-y-n__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-alo789-y-n__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a5a;
      color: var(--secondary-color);
      font-size: 1.2em;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid transparent; /* Placeholder for active state */
    }

    .page-alo789-y-n__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-alo789-y-n__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent */
      color: inherit;
      pointer-events: none; /* Prevent click event on h3 itself */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1;
    }

    .page-alo789-y-n__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click event on toggle itself */
    }

    .page-alo789-y-n__faq-item.active .page-alo789-y-n__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: var(--light-text);
    }

    .page-alo789-y-n__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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(--grey-text);
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__faq-item.active .page-alo789-y-n__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-alo789-y-n__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-alo789-y-n__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-alo789-y-n__floating-button:hover {
      background-color: #ff6600;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-alo789-y-n__hero-section {
        padding: 40px 0 20px;
      }

      .page-alo789-y-n__hero-title {
        font-size: 2em;
      }

      .page-alo789-y-n__hero-subtitle {
        font-size: 1em;
      }

      .page-alo789-y-n__section-title {
        font-size: 1.8em;
      }

      .page-alo789-y-n__text-content {
        font-size: 1em;
      }

      .page-alo789-y-n__game-grid,
      .page-alo789-y-n__payment-grid,
      .page-alo789-y-n__provider-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-alo789-y-n__game-image,
      .page-alo789-y-n__payment-image,
      .page-alo789-y-n__provider-image {
        max-width: 100% !important;
        height: auto !important;
        width: auto !important;
        margin-left: auto;
        margin-right: auto;
      }

      .page-alo789-y-n__promo-list {
        flex-direction: column;
        align-items: center;
      }

      .page-alo789-y-n__promo-item {
        max-width: 100%;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-alo789-y-n__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-alo789-y-n__faq-answer {
        padding: 0 15px;
      }

      .page-alo789-y-n__faq-item.active .page-alo789-y-n__faq-answer {
        padding: 15px 15px !important;
      }

      .page-alo789-y-n__floating-buttons {
        flex-direction: row;
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        right: auto;
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-alo789-y-n__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-alo789-y-n__hero-title {
        font-size: 1.8em;
      }

      .page-alo789-y-n__section-title {
        font-size: 1.6em;
      }

      .page-alo789-y-n__floating-buttons {
        width: calc(100% - 20px);
        bottom: 10px;
      }

      .page-alo789-y-n__floating-button {
        padding: 8px 10px;
      }
    }
  