
    :root {
      --page-yo88game__primary-color: #e44d26; /* Màu cam đỏ */
      --page-yo88game__secondary-color: #ff9900; /* Màu cam sáng */
      --page-yo88game__accent-color: #4CAF50; /* Màu xanh lá cây */
      --page-yo88game__text-color: #333;
      --page-yo88game__light-text-color: #666;
      --page-yo88game__background-light: #f9f9f9;
      --page-yo88game__background-dark: #2c3e50; /* Màu xanh đậm */
      --page-yo88game__white: #ffffff;
      --page-yo88game__border-color: #ddd;
    }

    .page-yo88game {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-yo88game__text-color);
      background-color: var(--page-yo88game__background-light);
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-yo88game__hero-section {
      position: relative;
      background: linear-gradient(135deg, var(--page-yo88game__primary-color), var(--page-yo88game__secondary-color));
      color: var(--page-yo88game__white);
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
    }

    .page-yo88game__hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
      border-radius: 10px;
    }
    @media (max-width: 768px) {
      .page-yo88game__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }


    .page-yo88game__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
    }

    .page-yo88game__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      color: var(--page-yo88game__white);
    }

    .page-yo88game__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-yo88game__button {
      display: inline-block;
      background-color: var(--page-yo88game__accent-color);
      color: var(--page-yo88game__white);
      padding: 15px 30px;
      border-radius: 30px;
      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-yo88game__button:hover {
      background-color: #4CAF50; /* Slightly darker green */
      transform: translateY(-3px);
    }

    .page-yo88game__section {
      padding: 60px 0;
      background-color: var(--page-yo88game__white);
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-yo88game__section--dark {
      background-color: var(--page-yo88game__background-dark);
      color: var(--page-yo88game__white);
      padding: 60px 0;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-yo88game__section-title {
      font-size: 2.2em;
      color: var(--page-yo88game__primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }
    .page-yo88game__section--dark .page-yo88game__section-title {
      color: var(--page-yo88game__secondary-color);
    }

    .page-yo88game__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-yo88game__secondary-color);
      border-radius: 2px;
    }
    .page-yo88game__section--dark .page-yo88game__section-title::after {
      background-color: var(--page-yo88game__primary-color);
    }

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

    .page-yo88game__game-card {
      background-color: var(--page-yo88game__white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-yo88game__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .page-yo88game__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    @media (max-width: 768px) {
      .page-yo88game__game-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }


    .page-yo88game__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yo88game__game-card-title {
      font-size: 1.5em;
      color: var(--page-yo88game__primary-color);
      margin-bottom: 10px;
    }

    .page-yo88game__game-card-description {
      font-size: 0.95em;
      color: var(--page-yo88game__light-text-color);
      margin-bottom: 20px;
    }

    .page-yo88game__game-card-button {
      background-color: var(--page-yo88game__secondary-color);
      color: var(--page-yo88game__white);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push button to bottom */
      border: none;
      cursor: pointer;
    }

    .page-yo88game__game-card-button:hover {
      background-color: #e68a00; /* Slightly darker orange */
    }

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

    .page-yo88game__feature-item {
      background-color: var(--page-yo88game__white);
      border-left: 5px solid var(--page-yo88game__primary-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-yo88game__section--dark .page-yo88game__feature-item {
      background-color: #34495e;
      border-left-color: var(--page-yo88game__secondary-color);
      color: var(--page-yo88game__white);
    }

    .page-yo88game__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .page-yo88game__feature-title {
      font-size: 1.3em;
      color: var(--page-yo88game__primary-color);
      margin-bottom: 10px;
    }
    .page-yo88game__section--dark .page-yo88game__feature-title {
      color: var(--page-yo88game__secondary-color);
    }

    .page-yo88game__download-instructions {
      text-align: center;
      margin-top: 40px;
    }

    .page-yo88game__download-steps {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-yo88game__step-card {
      background-color: var(--page-yo88game__white);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 300px;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-yo88game__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-yo88game__primary-color);
      margin-bottom: 15px;
    }

    .page-yo88game__step-title {
      font-size: 1.2em;
      color: var(--page-yo88game__text-color);
      margin-bottom: 10px;
    }

    .page-yo88game__step-description {
      font-size: 0.95em;
      color: var(--page-yo88game__light-text-color);
    }

    .page-yo88game__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-yo88game__accent-color);
      color: var(--page-yo88game__white);
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      display: none; /* Hidden by default, shown on mobile */
      border: none;
      cursor: pointer;
    }

    .page-yo88game__floating-button:hover {
      background-color: #4CAF50;
      transform: translateX(-50%) translateY(-3px);
    }

    /* FAQ Styles */
    .page-yo88game__faq-section {
      background-color: var(--page-yo88game__white);
      padding: 60px 0;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-yo88game__faq-item {
      border: 1px solid var(--page-yo88game__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--page-yo88game__background-light);
    }

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

    .page-yo88game__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Ensure h3 is not too large */
      color: var(--page-yo88game__text-color);
      pointer-events: none; /* Prevents h3 from interfering with click event */
    }

    .page-yo88game__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yo88game__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-yo88game__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click event */
    }

    .page-yo88game__faq-item.active .page-yo88game__faq-toggle {
      transform: rotate(45deg);
      color: var(--page-yo88game__accent-color);
    }

    .page-yo88game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-yo88game__white);
      color: var(--page-yo88game__light-text-color);
      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;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-yo88game__hero-section {
        padding-top: 10px; /* Adjusted for mobile fixed header */
        padding-bottom: 40px;
      }
      .page-yo88game__hero-title {
        font-size: 2em;
      }
      .page-yo88game__hero-description {
        font-size: 1em;
      }
      .page-yo88game__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-yo88game__section {
        padding: 40px 0;
      }
      .page-yo88game__section-title {
        font-size: 1.8em;
      }
      .page-yo88game__game-grid {
        grid-template-columns: 1fr;
      }
      .page-yo88game__features-list {
        grid-template-columns: 1fr;
      }
      .page-yo88game__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-yo88game__download-steps {
        flex-direction: column;
        align-items: center;
      }
      .page-yo88game__step-card {
        width: 100% !important;
        max-width: 90% !important;
        box-sizing: border-box !important;
        padding: 25px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-yo88game__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-yo88game__faq-question h3 {
        font-size: 1em;
      }
      .page-yo88game__faq-answer {
        padding: 15px !important;
      }
      .page-yo88game__floating-button {
        display: block; /* Show on mobile */
        width: calc(100% - 40px);
        max-width: 400px;
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  