
    :root {
      --primary-color: #e44d26; /* Cam đỏ */
      --secondary-color: #f7b731; /* Vàng cam */
      --dark-bg: #1a1a2e; /* Nền tối */
      --light-text: #ffffff; /* Chữ trắng */
      --gray-text: #cccccc; /* Chữ xám nhạt */
      --accent-color: #3f90ff; /* Xanh dương */
    }

    /* Base styles for the specific page */
    .page-32 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Assuming body has padding-top from shared header offset */
    }

    .page-32__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-32__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-32__section--dark {
      background-color: #2a2a4a;
    }

    .page-32__section--light {
      background-color: #3a3a5a;
    }

    .page-32__title {
      font-size: 2.8em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-32__subtitle {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-32__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--gray-text);
    }

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

    .page-32__button:hover {
      background-color: #ff6a40;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-32__hero-section {
      background: linear-gradient(135deg, #1a1a2e, #3a3a5a);
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 70vh;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
      text-align: center;
      padding-top: 80px; /* Adjusted for hero section */
    }

    .page-32__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-32__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-32__hero-title {
      font-size: 3.5em;
      color: var(--secondary-color);
      margin-bottom: 25px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-32__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: var(--gray-text);
    }

    /* Floating Buttons */
    .page-32__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-32__floating-button {
      background-color: var(--accent-color);
      color: var(--light-text);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 100px;
    }

    .page-32__floating-button:hover {
      background-color: #5aa1ff;
      transform: translateY(-3px);
    }

    /* About Section */
    .page-32__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      text-align: left;
      margin-top: 40px;
    }

    .page-32__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-32__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-32__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-32__about-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-32__about-list-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--gray-text);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-32__about-list-item::before {
      content: '✓';
      color: var(--primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
      line-height: 1;
    }

    /* Games Section */
    .page-32__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-32__game-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-32__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-32__game-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-32__game-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-32__game-description {
      font-size: 0.95em;
      color: var(--gray-text);
    }

    /* Promotions Section */
    .page-32__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-32__promotion-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-32__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-32__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-32__promotion-content {
      padding: 20px;
    }

    .page-32__promotion-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-32__promotion-description {
      font-size: 1em;
      color: var(--gray-text);
      margin-bottom: 15px;
    }

    /* Testimonials Section */
    .page-32__testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-32__testimonial-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      font-style: italic;
      position: relative;
    }

    .page-32__testimonial-quote {
      font-size: 1.1em;
      color: var(--gray-text);
      margin-bottom: 15px;
    }

    .page-32__testimonial-author {
      font-weight: bold;
      color: var(--primary-color);
      font-size: 1.05em;
    }

    /* FAQ Section */
    .page-32__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-32__faq-item {
      background-color: #3a3a5a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-32__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #4a4a6a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-32__faq-question:hover {
      background-color: #5a5a7a;
    }

    .page-32__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

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

    .page-32__faq-item.active .page-32__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for active */
      color: var(--accent-color);
    }

    .page-32__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: var(--gray-text);
      font-size: 1em;
      text-align: left;
    }

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

    /* CTA Section */
    .page-32__cta-section {
      background: linear-gradient(90deg, #1a1a2e, #3a3a5a);
      padding: 80px 20px;
      text-align: center;
    }

    .page-32__cta-text {
      font-size: 1.5em;
      color: var(--light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-32__title {
        font-size: 2.2em;
      }
      .page-32__subtitle {
        font-size: 1.6em;
      }
      .page-32__hero-title {
        font-size: 2.8em;
      }
      .page-32__hero-description {
        font-size: 1.1em;
      }
      .page-32__about-content {
        flex-direction: column;
        text-align: center;
      }
      .page-32__about-text, .page-32__about-image-wrapper {
        min-width: unset;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-32__section {
        padding: 40px 15px;
      }
      .page-32__title {
        font-size: 2em;
      }
      .page-32__subtitle {
        font-size: 1.4em;
      }
      .page-32__hero-section {
        padding: 60px 15px;
        min-height: 60vh;
      }
      .page-32__hero-title {
        font-size: 2.2em;
      }
      .page-32__hero-description {
        font-size: 1em;
      }
      .page-32__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-32__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        width: calc(100% - 30px);
        justify-content: center;
      }
      .page-32__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }

      /* List item responsiveness */
      .page-32__about-list,
      .page-32__games-grid,
      .page-32__promotions-grid,
      .page-32__testimonials-grid,
      .page-32__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-32__about-list-item,
      .page-32__game-card,
      .page-32__promotion-card,
      .page-32__testimonial-card,
      .page-32__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-32__faq-question, .page-32__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-32__faq-question h3 {
        font-size: 1.1em;
      }
      .page-32__faq-toggle {
        font-size: 1.5em;
      }
      .page-32__cta-text {
        font-size: 1.2em;
      }
      .page-32__promotion-image {
        height: 150px;
      }
    }

    @media (max-width: 480px) {
      .page-32__hero-title {
        font-size: 1.8em;
      }
      .page-32__hero-description {
        font-size: 0.9em;
      }
      .page-32__title {
        font-size: 1.8em;
      }
      .page-32__subtitle {
        font-size: 1.2em;
      }
      .page-32__faq-question h3 {
        font-size: 1em;
      }
      .page-32__faq-toggle {
        font-size: 1.3em;
      }
      .page-32__floating-buttons {
        flex-direction: row; /* Ensure horizontal for very small screens */
        justify-content: space-around;
        gap: 5px;
      }
      .page-32__floating-button {
        font-size: 0.85em;
        padding: 8px 10px;
      }
    }
  