
    :root {
      --primary-color: #e44d26; /* Một màu cam đỏ nổi bật */
      --secondary-color: #f7b32b; /* Màu vàng cam */
      --dark-background: #1a1a1a; /* Nền tối */
      --light-text: #ffffff; /* Chữ sáng */
      --gray-text: #cccccc; /* Chữ xám nhạt */
      --border-color: #333333; /* Màu viền */
      --button-hover-color: #ff6a00; /* Màu khi hover nút */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--light-text);
      background-color: var(--dark-background);
      margin: 0;
      padding-top: var(--header-offset, 122px); /* Fallback padding-top */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-42-88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 40px; /* Thêm padding-top 10px cho phần nội dung chính */
      box-sizing: border-box;
    }

    .page-42-88__section {
      background-color: #2a2a2a;
      border-radius: 10px;
      margin-bottom: 30px;
      padding: 30px 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-42-88__section-title {
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.2em;
      font-weight: bold;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-42-88__section-subtitle {
      color: var(--gray-text);
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
    }

    .page-42-88__text-center {
      text-align: center;
    }

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

    .page-42-88__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-42-88__hero-section {
      background: linear-gradient(135deg, #3a0ca3, #4361ee);
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-42-88__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:abstract:1920x1080:geometric,pattern,dark]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-42-88__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-42-88__hero-title {
      font-size: 3.5em;
      color: var(--light-text);
      margin-bottom: 15px;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    }

    .page-42-88__hero-subtitle {
      font-size: 1.5em;
      color: var(--gray-text);
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-42-88__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Game Showcase */
    .page-42-88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-42-88__game-card {
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-42-88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-42-88__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-42-88__game-card-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area without distortion */
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-42-88__game-card-title {
      color: var(--secondary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-42-88__game-card-description {
      color: var(--gray-text);
      font-size: 0.95em;
      margin-bottom: 15px;
      padding: 0 15px;
    }

    /* Promotion Section */
    .page-42-88__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-42-88__promo-card {
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-42-88__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-42-88__promo-image-wrapper {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-42-88__promo-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-42-88__promo-content {
      padding: 20px;
    }

    .page-42-88__promo-title {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-42-88__promo-description {
      color: var(--gray-text);
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-42-88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-42-88__feature-item {
      background-color: #333333;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-42-88__feature-item:hover {
      background-color: #444444;
    }

    .page-42-88__feature-icon {
      margin-bottom: 15px;
      width: 100px; /* Larger icon size for impact */
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-42-88__feature-title {
      color: var(--secondary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-42-88__feature-description {
      color: var(--gray-text);
      font-size: 0.9em;
    }

    /* FAQ Section */
    .page-42-88__faq-item {
      background-color: #333333;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-42-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      color: var(--light-text);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-42-88__faq-question:hover {
      background-color: #444444;
      border-radius: 8px;
    }

    .page-42-88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--light-text);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-42-88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-42-88__faq-item.active .page-42-88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-42-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--gray-text);
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    /* CTA Section */
    .page-42-88__cta-section {
      text-align: center;
      background-color: #1f1f1f;
      padding: 40px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-42-88__cta-title {
      color: var(--secondary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-42-88__cta-description {
      color: var(--gray-text);
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-42-88__hero-title {
        font-size: 3em;
      }
      .page-42-88__hero-subtitle {
        font-size: 1.3em;
      }
      .page-42-88__section-title {
        font-size: 2em;
      }
      .page-42-88__cta-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-42-88 {
        padding: 10px 10px 30px;
      }
      .page-42-88__hero-title {
        font-size: 2.5em;
      }
      .page-42-88__hero-subtitle {
        font-size: 1.1em;
      }
      .page-42-88__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-42-88__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        box-sizing: border-box;
      }
      .page-42-88__section-title {
        font-size: 1.8em;
      }
      .page-42-88__section-subtitle {
        font-size: 1em;
      }
      .page-42-88__game-grid,
      .page-42-88__promotion-grid,
      .page-42-88__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-42-88__game-card,
      .page-42-88__promo-card,
      .page-42-88__feature-item,
      .page-42-88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important; /* Adjust padding for mobile */
      }
      .page-42-88__game-card-description,
      .page-42-88__promo-description,
      .page-42-88__feature-description,
      .page-42-88__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-42-88__faq-question {
        padding: 15px;
      }
      .page-42-88__faq-answer {
        padding: 15px !important; /* Override with !important for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-42-88__hero-title {
        font-size: 2em;
      }
      .page-42-88__hero-subtitle {
        font-size: 0.95em;
      }
      .page-42-88__section-title {
        font-size: 1.6em;
      }
      .page-42-88__cta-title {
        font-size: 1.8em;
      }
      .page-42-88__cta-description {
        font-size: 1em;
      }
      .page-42-88__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  