
    :root {
      --page-188bbet-primary-color: #e44d26; /* Cam đậm */
      --page-188bbet-secondary-color: #333; /* Xám đậm */
      --page-188bbet-accent-color: #f7b731; /* Vàng cam */
      --page-188bbet-light-bg: #f5f5f5; /* Nền sáng */
      --page-188bbet-dark-bg: #222; /* Nền tối */
      --page-188bbet-text-color: #fff; /* Chữ trắng */
      --page-188bbet-dark-text-color: #333; /* Chữ xám đậm */
    }

    /* Base styles for the page */
    .page-188bbet {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-188bbet-dark-text-color);
      line-height: 1.6;
      background-color: var(--page-188bbet-light-bg);
      padding-top: 10px; /* Small decorative padding, body handles header offset */
    }

    .page-188bbet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

    .page-188bbet__section--dark {
      background-color: var(--page-188bbet-dark-bg);
      color: var(--page-188bbet-text-color);
    }

    .page-188bbet__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-188bbet-primary-color);
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-188bbet__section--dark .page-188bbet__section-title {
      color: var(--page-188bbet-accent-color);
    }

    /* Hero Section */
    .page-188bbet__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--page-188bbet-text-color);
      text-align: center;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-188bbet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-188bbet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
    }

    .page-188bbet__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: var(--page-188bbet-accent-color);
    }

    .page-188bbet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-188bbet__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-188bbet__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-188bbet-primary-color);
      color: var(--page-188bbet-text-color);
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
    }

    .page-188bbet__button:hover {
      background-color: #d13c1a;
      transform: translateY(-2px);
    }

    .page-188bbet__button--secondary {
      background-color: var(--page-188bbet-accent-color);
      color: var(--page-188bbet-dark-text-color);
    }

    .page-188bbet__button--secondary:hover {
      background-color: #e6a720;
    }

    /* Floating Buttons */
    .page-188bbet__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 30px); /* Adjust width for padding on mobile */
      max-width: 400px;
    }

    .page-188bbet__floating-button {
      flex: 1;
      padding: 12px 0;
      background-color: var(--page-188bbet-primary-color);
      color: var(--page-188bbet-text-color);
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-188bbet__floating-button:hover {
      background-color: #d13c1a;
      transform: translateY(-2px);
    }

    .page-188bbet__floating-button--login {
      background-color: var(--page-188bbet-accent-color);
      color: var(--page-188bbet-dark-text-color);
    }

    .page-188bbet__floating-button--login:hover {
      background-color: #e6a720;
    }

    /* Game Categories */
    .page-188bbet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-188bbet__game-item {
      background-color: var(--page-188bbet-text-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-188bbet__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-188bbet__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
    }

    .page-188bbet__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .page-188bbet__game-title {
      font-size: 1.5em;
      color: var(--page-188bbet-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-188bbet__game-description {
      font-size: 0.95em;
      color: var(--page-188bbet-secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions */
    .page-188bbet__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-188bbet__promo-item {
      background-color: var(--page-188bbet-text-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      box-sizing: border-box;
    }

    .page-188bbet__promo-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-188bbet__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-188bbet__promo-content {
      padding: 20px;
    }

    .page-188bbet__promo-title {
      font-size: 1.4em;
      color: var(--page-188bbet-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-188bbet__promo-description {
      font-size: 0.9em;
      color: var(--page-188bbet-secondary-color);
      margin-bottom: 15px;
    }

    /* Why Choose Us */
    .page-188bbet__advantage-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-188bbet__advantage-item {
      background-color: var(--page-188bbet-text-color);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      font-size: 1.1em;
      font-weight: 600;
      color: var(--page-188bbet-primary-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-188bbet__advantage-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-188bbet__advantage-icon {
      margin-bottom: 15px;
      width: 60px; /* Adjust size to meet min 200x200 requirement, this is just a placeholder icon */
      height: 60px; /* Placeholder for visual icon, will be replaced by image */
      object-fit: contain;
    }

    /* Payment Methods & Game Providers */
    .page-188bbet__partner-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-188bbet__partner-item {
      background-color: var(--page-188bbet-text-color);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
      box-sizing: border-box;
    }

    .page-188bbet__partner-logo {
      max-width: 100%;
      max-height: 60px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.2s ease;
    }

    .page-188bbet__partner-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-188bbet__faq-section {
      background-color: var(--page-188bbet-dark-bg);
      color: var(--page-188bbet-text-color);
    }

    .page-188bbet__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      list-style: none;
    }

    .page-188bbet__faq-item {
      background-color: #3a3a3a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-188bbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #444;
      border-bottom: 1px solid #555;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-188bbet__faq-question:hover {
      background-color: #555;
    }

    .page-188bbet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-188bbet-accent-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-188bbet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-188bbet-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1;
    }

    .page-188bbet__faq-item.active .page-188bbet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-188bbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-188bbet-text-color);
      text-align: left;
    }

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

    .page-188bbet__faq-answer p {
      margin: 0;
      padding: 0;
    }

    /* Contact Section */
    .page-188bbet__contact-info {
      margin-top: 30px;
      font-size: 1.1em;
      color: var(--page-188bbet-secondary-color);
    }

    .page-188bbet__contact-info p {
      margin-bottom: 10px;
    }

    .page-188bbet__social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-188bbet__social-link {
      display: inline-block;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--page-188bbet-primary-color);
      color: var(--page-188bbet-text-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-188bbet__social-link:hover {
      background-color: #d13c1a;
      transform: translateY(-2px);
    }

    .page-188bbet__social-link img {
      width: 30px; /* Placeholder for social media icon image */
      height: 30px; /* Placeholder for social media icon image */
      object-fit: contain;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-188bbet__hero-title {
        font-size: 3em;
      }
      .page-188bbet__hero-subtitle {
        font-size: 1.3em;
      }
      .page-188bbet__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-188bbet__hero-section {
        min-height: 350px;
      }
      .page-188bbet__hero-title {
        font-size: 2.2em;
      }
      .page-188bbet__hero-subtitle {
        font-size: 1.1em;
      }
      .page-188bbet__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-188bbet__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }
      .page-188bbet__section {
        padding: 30px 0;
      }
      .page-188bbet__section-title {
        font-size: 1.8em;
      }

      /* Floating buttons */
      .page-188bbet__floating-buttons {
        width: calc(100% - 30px) !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__floating-button {
        font-size: 1em !important;
        padding: 10px 0 !important;
        box-sizing: border-box !important;
      }

      /* Game Grid */
      .page-188bbet__game-grid {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__game-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__game-title {
        font-size: 1.3em !important;
      }
      .page-188bbet__game-description {
        font-size: 0.85em !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-188bbet__game-image-wrapper {
        height: 180px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Promo List */
      .page-188bbet__promo-list {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__promo-title {
        font-size: 1.2em !important;
      }
      .page-188bbet__promo-description {
        font-size: 0.8em !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-188bbet__promo-image-wrapper {
        height: 180px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Advantage List */
      .page-188bbet__advantage-list {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__advantage-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        font-size: 1em !important;
        padding: 20px !important;
      }
      .page-188bbet__advantage-icon {
        width: 50px !important;
        height: 50px !important;
      }

      /* Partner Grid */
      .page-188bbet__partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__partner-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        min-height: 70px !important;
        padding: 10px !important;
      }
      .page-188bbet__partner-logo {
        max-width: 90% !important;
        max-height: 50px !important;
      }

      /* FAQ */
      .page-188bbet__faq-list {
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-188bbet__faq-question {
        padding: 12px 15px !important;
      }
      .page-188bbet__faq-question h3 {
        font-size: 1.1em !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-188bbet__faq-toggle {
        font-size: 1.5em !important;
      }
      .page-188bbet__faq-answer {
        padding: 15px !important;
      }
      .page-188bbet__faq-item.active .page-188bbet__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-188bbet__hero-title {
        font-size: 1.8em;
      }
      .page-188bbet__hero-subtitle {
        font-size: 0.9em;
      }
      .page-188bbet__button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-188bbet__section-title {
        font-size: 1.5em;
      }
      .page-188bbet__floating-button {
        font-size: 0.9em !important;
      }
    }
  