
    /* Tổng quan */
    .page-thomo {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #ffffff;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo đủ khoảng trống cho footer */
    }

    .page-thomo__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-thomo__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-thomo__heading {
      color: #ffd700;
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-thomo__subheading {
      color: #ffffff;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-thomo__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-thomo__hero-section {
      position: relative;
      text-align: center;
      padding-top: 150px; /* Khoảng trống cho header cố định */
      padding-bottom: 40px;
      background-color: #000;
    }

    .page-thomo__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-thomo__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-thomo__hero-title {
      font-size: 3.2em;
      color: #ffd700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-thomo__hero-description {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-thomo__cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
    }

    .page-thomo__cta-button:hover {
      background-color: #e63e00;
      transform: translateY(-3px);
    }

    /* Content Section */
    .page-thomo__content-section {
      background-color: #1a1a1a;
      padding: 60px 0;
      border-bottom: 1px solid #333;
    }

    .page-thomo__content-section:last-of-type {
      border-bottom: none;
    }

    .page-thomo__image-right,
    .page-thomo__image-left {
      display: flex;
      align-items: center;
      gap: 30px;
      text-align: left;
      margin-bottom: 40px;
    }

    .page-thomo__image-right .page-thomo__content-block,
    .page-thomo__image-left .page-thomo__content-block {
      flex: 1;
    }

    .page-thomo__image-right .page-thomo__image-wrapper,
    .page-thomo__image-left .page-thomo__image-wrapper {
      flex: 1;
      min-width: 250px; /* Đảm bảo hình ảnh không quá nhỏ */
      max-width: 50%;
    }

    .page-thomo__image-left {
      flex-direction: row-reverse;
    }

    .page-thomo__image-wrapper img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-thomo__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-thomo__list-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-thomo__list-item:hover {
      transform: translateY(-5px);
    }

    .page-thomo__list-item strong {
      color: #ffd700;
      font-size: 1.2em;
      display: block;
      margin-bottom: 10px;
    }

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

    .page-thomo__game-card {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

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

    .page-thomo__game-card-image {
      width: 100%;
      max-width: 250px; /* Giới hạn chiều rộng ảnh trò chơi */
      height: auto;
      border-radius: 6px;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .page-thomo__game-card-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    /* Game Providers Section */
    .page-thomo__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-thomo__provider-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-thomo__provider-item:hover {
      transform: scale(1.05);
    }

    .page-thomo__provider-logo {
      width: 100%;
      max-width: 180px; /* Chiều rộng tối đa cho logo nhà cung cấp */
      height: auto;
      filter: grayscale(20%); /* Làm mờ nhẹ để hài hòa với nền đen */
      transition: filter 0.3s ease;
    }

    .page-thomo__provider-item:hover .page-thomo__provider-logo {
      filter: grayscale(0%);
    }

    .page-thomo__provider-name {
      color: #ffffff;
      font-weight: bold;
      margin-top: 10px;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-thomo__faq-section {
      background-color: #1a1a1a;
      padding: 60px 0;
    }

    .page-thomo__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: left;
    }

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

    .page-thomo__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333333;
      color: #ffd700;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-thomo__faq-question:hover {
      background-color: #444444;
    }

    .page-thomo__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-thomo__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn span chặn sự kiện click */
    }

    .page-thomo__faq-item.active .page-thomo__faq-toggle {
      transform: rotate(45deg); /* Biến + thành X hoặc - */
    }

    .page-thomo__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #2a2a2a;
      font-size: 1em;
    }

    .page-thomo__faq-item.active .page-thomo__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .page-thomo__hero-title {
        font-size: 2.8em;
      }
      .page-thomo__hero-description {
        font-size: 1.1em;
      }
      .page-thomo__heading {
        font-size: 2em;
      }
      .page-thomo__subheading {
        font-size: 1.5em;
      }
      .page-thomo__image-right,
      .page-thomo__image-left {
        flex-direction: column;
        text-align: center;
      }
      .page-thomo__image-right .page-thomo__image-wrapper,
      .page-thomo__image-left .page-thomo__image-wrapper {
        max-width: 80%;
      }
    }

    @media (max-width: 768px) {
      .page-thomo__hero-section {
        padding-top: 150px; /* Đảm bảo đủ khoảng trống cho header cố định trên di động */
      }
      .page-thomo__hero-title {
        font-size: 2.2em;
      }
      .page-thomo__hero-description {
        font-size: 1em;
      }
      .page-thomo__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-thomo__heading {
        font-size: 1.8em;
      }
      .page-thomo__subheading {
        font-size: 1.3em;
      }
      .page-thomo__text {
        font-size: 0.95em;
      }
      .page-thomo__list {
        grid-template-columns: 1fr;
      }
      .page-thomo__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }
      .page-thomo__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-thomo__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-thomo__faq-toggle {
        font-size: 1.5em;
      }
      .page-thomo__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsive optimization for mobile */
      .page-thomo img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-thomo__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-thomo__game-card-image {
        max-width: 100% !important;
      }
      .page-thomo__provider-logo {
        max-width: 100% !important;
      }
    }
  