
    :root {
      --page-22hello__primary-color: #e44d26; /* Cam đậm */
      --page-22hello__secondary-color: #f7a01a; /* Cam sáng */
      --page-22hello__dark-bg: #1a1a1a;
      --page-22hello__light-bg: #f5f5f5;
      --page-22hello__text-color: #ffffff;
      --page-22hello__dark-text: #333333;
      --page-22hello__border-color: #333333;
    }

    .page-22hello {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-22hello__text-color);
      background-color: var(--page-22hello__dark-bg);
      padding-bottom: 20px; /* Ensure space above footer */
    }

    .page-22hello__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-22hello__section--light {
      background-color: var(--page-22hello__light-bg);
      color: var(--page-22hello__dark-text);
    }

    .page-22hello__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:betting,casino,mobile,22hello88]') no-repeat center center/cover;
      padding: 100px 20px; /* Adjusted padding to account for body padding */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      color: var(--page-22hello__text-color);
      position: relative;
    }

    .page-22hello__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-22hello__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-22hello__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-22hello__button {
      display: inline-block;
      background-color: var(--page-22hello__primary-color);
      color: var(--page-22hello__text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-22hello__button:hover {
      background-color: var(--page-22hello__secondary-color);
    }

    .page-22hello__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-22hello__primary-color);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-22hello__section--light .page-22hello__section-title {
      color: var(--page-22hello__primary-color);
      text-shadow: none;
    }

    .page-22hello__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-22hello__card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-22hello__section--light .page-22hello__card {
      background-color: #ffffff;
      color: var(--page-22hello__dark-text);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-22hello__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-22hello__card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      box-sizing: border-box;
    }
    
    .page-22hello__card-image-small {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: contain; /* Use contain for logos/smaller items */
      box-sizing: border-box;
    }

    .page-22hello__card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-22hello__primary-color);
    }

    .page-22hello__card-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-22hello__section--light .page-22hello__card-description {
      color: #666666;
    }

    /* FAQ Section Styles */
    .page-22hello__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-22hello__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-22hello__section--light .page-22hello__faq-item {
      background-color: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-22hello__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-22hello__text-color);
      transition: background-color 0.3s ease;
    }

    .page-22hello__section--light .page-22hello__faq-question {
      color: var(--page-22hello__dark-text);
    }

    .page-22hello__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      color: inherit;
    }

    .page-22hello__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-22hello__primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

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

    .page-22hello__section--light .page-22hello__faq-question:hover {
      background-color: #f0f0f0;
    }

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

    .page-22hello__section--light .page-22hello__faq-answer {
      color: #555555;
    }

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

    .page-22hello__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-align: justify;
      color: #e0e0e0;
    }
    
    .page-22hello__section--light .page-22hello__text-content {
        color: #444444;
    }

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

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

      .page-22hello__section-title {
        font-size: 2em;
      }

      .page-22hello__section {
        padding: 30px 15px;
      }

      .page-22hello__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-22hello__card {
        padding: 20px;
      }
      
      .page-22hello__card-image,
      .page-22hello__card-image-small {
        max-width: 90% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

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

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

      .page-22hello__faq-item.active .page-22hello__faq-answer {
        padding: 15px 20px !important;
      }
      
      .page-22hello__text-content {
        font-size: 1em;
        padding: 0 10px;
      }
      
      /* Ensure lists within cards are responsive */
      .page-22hello__card ul,
      .page-22hello__card ol {
          width: 100% !important;
          max-width: 100% !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
      }
      
      .page-22hello__card ul li,
      .page-22hello__card ol li {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding: 5px 0 !important; /* Adjust as needed */
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }
  