
    :root {
      --page-26tr88-com-primary-color: #e44d26; /* Cam đỏ */
      --page-26tr88-com-secondary-color: #f7b731; /* Vàng cam */
      --page-26tr88-com-dark-bg: #1a1a1a;
      --page-26tr88-com-light-text: #ffffff;
      --page-26tr88-com-gray-text: #cccccc;
      --page-26tr88-com-border-color: #333333;
      --page-26tr88-com-button-hover-bg: #ff6f40;
      --page-26tr88-com-header-offset: 122px; /* Default fallback, will be overridden by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-26tr88-com-light-text);
      background-color: #0d0d0d;
      margin: 0;
      padding-top: var(--header-offset, 122px); /* Ensures content is below fixed header */
    }

    .page-26tr88-com {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
      color: var(--page-26tr88-com-light-text);
    }

    .page-26tr88-com__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--page-26tr88-com-dark-bg);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-26tr88-com__section--alt-bg {
      background-color: #222222;
    }

    .page-26tr88-com__section-title {
      text-align: center;
      color: var(--page-26tr88-com-secondary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-26tr88-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-26tr88-com-primary-color);
      border-radius: 2px;
    }

    .page-26tr88-com__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-26tr88-com__hero-section {
      padding: 10px 0 60px 0; /* Small top padding as body handles header offset */
      background: linear-gradient(135deg, var(--page-26tr88-com-dark-bg) 0%, #0d0d0d 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 0; /* Override default section border-radius for hero */
      margin-bottom: 0; /* No margin-bottom for hero */
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .page-26tr88-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-26tr88-com__hero-title {
      font-size: 3.5em;
      color: var(--page-26tr88-com-light-text);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-26tr88-com__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-26tr88-com-gray-text);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-26tr88-com__hero-button-wrapper {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-26tr88-com__button {
      background-color: var(--page-26tr88-com-primary-color);
      color: var(--page-26tr88-com-light-text);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      min-width: 150px;
      font-weight: bold;
    }

    .page-26tr88-com__button:hover {
      background-color: var(--page-26tr88-com-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-26tr88-com__button--secondary {
      background-color: var(--page-26tr88-com-secondary-color);
      color: var(--page-26tr88-com-dark-bg);
    }

    .page-26tr88-com__button--secondary:hover {
      background-color: #fdd861;
    }

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

    .page-26tr88-com__floating-button {
      background-color: var(--page-26tr88-com-primary-color);
      color: var(--page-26tr88-com-light-text);
      padding: 12px 20px;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-26tr88-com__floating-button:hover {
      background-color: var(--page-26tr88-com-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-26tr88-com__floating-button--login {
      background-color: var(--page-26tr88-com-secondary-color);
      color: var(--page-26tr88-com-dark-bg);
    }

    .page-26tr88-com__floating-button--login:hover {
      background-color: #fdd861;
    }

    /* Game Categories / Product Display */
    .page-26tr88-com__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .page-26tr88-com__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%; /* Ensure cards are same height */
    }

    .page-26tr88-com__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }

    .page-26tr88-com__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--page-26tr88-com-primary-color);
    }

    .page-26tr88-com__game-card-content {
      padding: 20px;
      flex-grow: 1; /* Allows content to expand */
    }

    .page-26tr88-com__game-card-title {
      font-size: 1.5em;
      color: var(--page-26tr88-com-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-26tr88-com__game-card-description {
      font-size: 0.95em;
      color: var(--page-26tr88-com-gray-text);
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-26tr88-com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .page-26tr88-com__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-26tr88-com__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }

    .page-26tr88-com__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--page-26tr88-com-secondary-color);
    }

    .page-26tr88-com__promo-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-26tr88-com__promo-card-title {
      font-size: 1.4em;
      color: var(--page-26tr88-com-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-26tr88-com__promo-card-description {
      font-size: 0.9em;
      color: var(--page-26tr88-com-gray-text);
      margin-bottom: 15px;
    }

    .page-26tr88-com__promo-card-button {
      background-color: var(--page-26tr88-com-primary-color);
      color: var(--page-26tr88-com-light-text);
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 0.9em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: block;
      width: fit-content;
      margin-top: auto; /* Push button to bottom */
    }

    .page-26tr88-com__promo-card-button:hover {
      background-color: var(--page-26tr88-com-button-hover-bg);
    }

    /* Why Choose Us Section */
    .page-26tr88-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .page-26tr88-com__feature-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-26tr88-com__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-26tr88-com__feature-icon {
      margin-bottom: 15px;
      display: inline-block;
      width: 80px; /* Enforce min-size for images */
      height: 80px; /* Enforce min-size for images */
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-26tr88-com__feature-title {
      font-size: 1.3em;
      color: var(--page-26tr88-com-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-26tr88-com__feature-description {
      font-size: 0.9em;
      color: var(--page-26tr88-com-gray-text);
    }

    /* About Section */
    .page-26tr88-com__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }

    .page-26tr88-com__about-text {
      font-size: 1em;
      color: var(--page-26tr88-com-gray-text);
      line-height: 1.8;
      text-align: justify;
    }

    .page-26tr88-com__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 20px auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* FAQ Section */
    .page-26tr88-com__faq-container {
      padding: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-26tr88-com__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-26tr88-com-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-26tr88-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333333;
      color: var(--page-26tr88-com-light-text);
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-26tr88-com__faq-question:hover {
      background-color: #444444;
    }

    .page-26tr88-com__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-26tr88-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      color: var(--page-26tr88-com-primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-26tr88-com__faq-item.active .page-26tr88-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    .page-26tr88-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-26tr88-com-gray-text);
      background-color: #2a2a2a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
      line-height: 1.7;
    }

    .page-26tr88-com__faq-item.active .page-26tr88-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-26tr88-com__hero-title {
        font-size: 3em;
      }
      .page-26tr88-com__hero-subtitle {
        font-size: 1.3em;
      }
      .page-26tr88-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-26tr88-com {
        padding: 0 10px;
      }

      .page-26tr88-com__hero-title {
        font-size: 2.5em;
      }
      .page-26tr88-com__hero-subtitle {
        font-size: 1.1em;
      }
      .page-26tr88-com__hero-button-wrapper {
        flex-direction: column;
        gap: 15px;
      }
      .page-26tr88-com__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-26tr88-com__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-26tr88-com__game-categories,
      .page-26tr88-com__promotions-grid,
      .page-26tr88-com__features-grid {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 20px;
      }

      .page-26tr88-com__game-card,
      .page-26tr88-com__promo-card,
      .page-26tr88-com__feature-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-26tr88-com__game-card-image,
      .page-26tr88-com__promo-card-image,
      .page-26tr88-com__feature-icon,
      .page-26tr88-com__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-26tr88-com__section {
        padding: 30px 0;
      }

      .page-26tr88-com__section-title {
        font-size: 1.8em;
      }

      .page-26tr88-com__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-26tr88-com__faq-answer {
        padding: 15px 15px !important;
      }

      .page-26tr88-com__about-text {
        text-align: left; /* Adjust for smaller screens */
      }
      
      /* Ensure text wraps correctly in lists/cards */
      .page-26tr88-com__game-card-description,
      .page-26tr88-com__promo-card-description,
      .page-26tr88-com__feature-description,
      .page-26tr88-com__about-text,
      .page-26tr88-com__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-26tr88-com__hero-title {
        font-size: 2em;
      }
      .page-26tr88-com__hero-subtitle {
        font-size: 1em;
      }
      .page-26tr88-com__section-title {
        font-size: 1.6em;
      }
      .page-26tr88-com__floating-buttons {
        bottom: 10px;
        right: 10px;
      }
      .page-26tr88-com__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  