
    /* Page-specific CSS for tải go88 */
    :root {
      --page-go88-primary-color: #f7b200; /* Gold/Yellow for Go88 brand */
      --page-go88-secondary-color: #2c3e50; /* Dark blue/grey for contrast */
      --page-go88-accent-color: #e74c3c; /* Red for promotions */
      --page-go88-text-color: #ecf0f1; /* Light text on dark background */
      --page-go88-dark-text: #34495e; /* Dark text on light background */
      --page-go88-background-light: #fdfdfd;
      --page-go88-background-dark: #1a1a1a;
      --page-go88-border-radius: 8px;
    }

    .page-go88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-go88-dark-text); /* Default text color for light sections */
      background-color: var(--page-go88-background-light);
    }

    /* General containers and sections */
    .page-go88-section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

    .page-go88-section.dark-bg {
      background-color: var(--page-go88-secondary-color);
      color: var(--page-go88-text-color);
    }

    .page-go88-container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Headings */
    .page-go88 h1, .page-go88 h2, .page-go88 h3, .page-go88 h4 {
      color: var(--page-go88-primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-go88 h1 {
      font-size: 2.5em;
      color: var(--page-go88-dark-text); /* Ensure H1 is visible on light banner background */
    }
    .page-go88 .dark-bg h1, .page-go88 .dark-bg h2, .page-go88 .dark-bg h3, .page-go88 .dark-bg h4 {
      color: var(--page-go88-primary-color);
    }

    .page-go88 h2 {
      font-size: 2em;
      margin-top: 30px;
    }

    .page-go88 h3 {
      font-size: 1.5em;
      margin-top: 25px;
    }

    /* Paragraphs */
    .page-go88 p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-go88 .dark-bg p {
      color: var(--page-go88-text-color);
    }

    /* Links and Buttons */
    .page-go88 a {
      color: var(--page-go88-primary-color);
      text-decoration: none;
    }

    .page-go88 a:hover {
      text-decoration: underline;
    }

    .page-go88-button {
      display: inline-block;
      background-color: var(--page-go88-primary-color);
      color: var(--page-go88-dark-text); /* Dark text on primary button */
      padding: 12px 25px;
      border-radius: var(--page-go88-border-radius);
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-go88-button:hover {
      background-color: #ffc107; /* Lighter shade of primary */
      color: var(--page-go88-dark-text);
      text-decoration: none;
    }

    .page-go88-button.accent {
      background-color: var(--page-go88-accent-color);
      color: var(--page-go88-text-color); /* Light text on accent button */
    }

    .page-go88-button.accent:hover {
      background-color: #c0392b; /* Darker shade of accent */
      color: var(--page-go88-text-color);
    }

    /* Banner Section */
    .page-go88-hero {
      position: relative;
      overflow: hidden;
      padding: 80px 20px; /* Increased padding for mobile */
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      background-color: var(--page-go88-secondary-color); /* Fallback background */
      color: var(--page-go88-text-color);
    }

    .page-go88-hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6; /* Ensure text visibility */
    }

    .page-go88-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-go88-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-go88-text-color); /* H1 on banner */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-go88-hero p {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-go88-text-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-go88-hero .page-go88-button {
      margin: 0 10px;
    }

    /* Floating Buttons */
    .page-go88-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      display: flex;
      gap: 15px;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-go88-floating-buttons .page-go88-button {
      padding: 10px 20px;
      font-size: 1.1em;
      white-space: nowrap;
    }

    /* Product Grid */
    .page-go88-product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-go88-product-card {
      background-color: var(--page-go88-background-light);
      border-radius: var(--page-go88-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid #e0e0e0;
    }

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

    .page-go88-product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-go88-product-card-content {
      padding: 20px;
    }

    .page-go88-product-card h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-go88-secondary-color);
    }

    .page-go88-product-card p {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* Download Section */
    .page-go88-download-options {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-go88-download-item {
      background-color: var(--page-go88-background-dark);
      color: var(--page-go88-text-color);
      padding: 25px;
      border-radius: var(--page-go88-border-radius);
      text-align: center;
      flex: 1 1 280px;
      max-width: 350px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-go88-download-item img {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      filter: invert(1); /* Make icons white on dark background */
    }

    .page-go88-download-item h3 {
      color: var(--page-go88-primary-color);
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-go88-download-item p {
      font-size: 1em;
      margin-bottom: 20px;
      color: var(--page-go88-text-color);
    }

    .page-go88-download-item .page-go88-button {
      width: 100%;
    }

    /* FAQs Section */
    .page-go88-faq-list {
      text-align: left;
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-go88-faq-item {
      background-color: var(--page-go88-background-light);
      border: 1px solid #ddd;
      border-radius: var(--page-go88-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-go88-faq-question {
      padding: 18px 25px;
      background-color: #f7f7f7;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-go88-secondary-color);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-go88-faq-question:hover {
      background-color: #eee;
    }

    .page-go88-faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-go88-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-go88-faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      background-color: var(--page-go88-background-light);
      color: #555;
    }

    .page-go88-faq-answer.active {
      max-height: 200px; /* Adjust as needed */
      padding: 15px 25px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-go88-hero {
        padding: 60px 15px;
        min-height: 250px;
      }

      .page-go88-hero h1 {
        font-size: 2em;
      }

      .page-go88-hero p {
        font-size: 1em;
      }

      .page-go88-hero .page-go88-button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
      }

      .page-go88-section {
        padding: 30px 15px;
      }

      .page-go88 h1 {
        font-size: 2em;
      }

      .page-go88 h2 {
        font-size: 1.6em;
      }

      .page-go88 h3 {
        font-size: 1.3em;
      }

      .page-go88-floating-buttons {
        flex-direction: column;
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
        bottom: 15px;
        padding: 10px 15px;
        border-radius: 10px;
        gap: 10px;
      }

      .page-go88-floating-buttons .page-go88-button {
        width: 100%;
        text-align: center;
        font-size: 1em;
      }

      .page-go88-product-grid {
        grid-template-columns: 1fr;
      }

      .page-go88-download-item {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
  