
    /* Tổng thể */
    .page-123bbookmaker {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #f0f0f0;
      line-height: 1.6;
    }

    .page-123bbookmaker__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-123bbookmaker__section {
      padding: 40px 0;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #222;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-123bbookmaker__section-title {
      text-align: center;
      color: #e44d26;
      font-size: 2.5em;
      margin-bottom: 30px;
      padding-bottom: 10px;
      position: relative;
    }

    .page-123bbookmaker__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    .page-123bbookmaker__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-123bbookmaker__hero-section {
      position: relative;
      overflow: hidden;
      text-align: center;
      color: #fff;
      padding-top: 120px; /* Dành chỗ cho header cố định */
      background-color: #1a1a1a;
    }

    .page-123bbookmaker__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-123bbookmaker__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
    }

    .page-123bbookmaker__hero-content {
      position: relative;
      z-index: 10;
      padding: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-123bbookmaker__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-123bbookmaker__cta-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-123bbookmaker__cta-button:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

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

    .page-123bbookmaker__floating-register-btn,
    .page-123bbookmaker__floating-login-btn {
      background-color: #e44d26;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap;
    }

    .page-123bbookmaker__floating-register-btn:hover,
    .page-123bbookmaker__floating-login-btn:hover {
      background-color: #ff6633;
      transform: scale(1.05);
    }

    /* Giới thiệu */
    .page-123bbookmaker__about-content {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto;
      text-align: justify;
      color: #ccc;
    }

    /* Danh mục trò chơi */
    .page-123bbookmaker__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-123bbookmaker__game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-123bbookmaker__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-123bbookmaker__game-card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-123bbookmaker__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Cố định chiều cao cho ảnh trò chơi */
    }

    .page-123bbookmaker__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-123bbookmaker__game-card:hover .page-123bbookmaker__game-image {
      transform: scale(1.05);
    }

    .page-123bbookmaker__game-title {
      font-size: 1.3em;
      color: #e44d26;
      padding: 15px 10px;
      margin-top: auto; /* Đẩy tiêu đề xuống dưới */
    }

    /* Nhà cung cấp game */
    .page-123bbookmaker__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

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

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

    .page-123bbookmaker__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 100px; /* Cố định chiều cao cho logo nhà cung cấp */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-123bbookmaker__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo logo không bị cắt xén */
    }

    /* FAQ Section */
    .page-123bbookmaker__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-123bbookmaker__faq-item {
      background-color: #333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }

    .page-123bbookmaker__faq-item:hover {
      background-color: #444;
    }

    .page-123bbookmaker__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      color: #e44d26;
      font-size: 1.2em;
      font-weight: bold;
    }

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

    .page-123bbookmaker__faq-toggle {
      font-size: 1.8em;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      transition: transform 0.3s ease;
      color: #f0f0f0;
    }

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

    .page-123bbookmaker__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Giữ padding ngang */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      font-size: 1.05em;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-123bbookmaker__hero-section {
        padding-top: 100px !important; /* Dành chỗ cho header cố định trên mobile */
      }

      .page-123bbookmaker__hero-title {
        font-size: 2.2em;
      }

      .page-123bbookmaker__hero-description {
        font-size: 1em;
      }

      .page-123bbookmaker__section-title {
        font-size: 2em;
      }

      .page-123bbookmaker__about-content,
      .page-123bbookmaker__faq-list {
        padding: 0 15px;
      }

      .page-123bbookmaker__game-grid,
      .page-123bbookmaker__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        padding: 0 15px;
      }

      .page-123bbookmaker__game-title {
        font-size: 1.1em;
      }

      .page-123bbookmaker__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-123bbookmaker__floating-register-btn,
      .page-123bbookmaker__floating-login-btn {
        padding: 10px 15px;
        font-size: 0.9em;
      }

      /* Responsive image optimization */
      .page-123bbookmaker__hero-image-wrapper,
      .page-123bbookmaker__game-image-wrapper,
      .page-123bbookmaker__provider-logo-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-123bbookmaker__hero-image,
      .page-123bbookmaker__game-image,
      .page-123bbookmaker__provider-logo {
          max-width: 100% !important;
          height: auto !important;
      }
    }
  