
    :root {
      --primary-color: #e44d26; /* Màu cam đỏ rực rỡ, phổ biến trong các trang cá cược */
      --secondary-color: #333; /* Màu xám đậm */
      --accent-color: #f7b731; /* Màu vàng/vàng kim cho các điểm nhấn */
      --background-dark: #1a1a1a; /* Nền tối */
      --background-light: #2c2c2c; /* Nền xám nhạt hơn */
      --text-color-light: #f0f0f0; /* Màu chữ sáng */
      --text-color-dark: #ccc; /* Màu chữ xám nhạt */
      --border-color: #444; /* Màu viền */
      --button-hover: #ff6f42; /* Màu nút khi hover */
    }

    /* Phong cách cơ bản cho phần nội dung trang */
    .page-www-678 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang do các nút nổi */
    }

    .page-www-678__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

    .page-www-678__section--dark {
      background-color: var(--background-dark);
    }

    .page-www-678__section--light {
      background-color: var(--background-light);
    }

    .page-www-678__title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      word-wrap: break-word; /* Đảm bảo tiêu đề dài không tràn */
    }

    .page-www-678__subtitle {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 30px;
    }

    .page-www-678__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--text-color-dark);
      word-wrap: break-word;
    }

    /* Các nút nổi */
    .page-www-678__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-www-678__floating-button {
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: block; /* Đảm bảo chiếm toàn bộ chiều rộng của mục flex */
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
    }

    .page-www-678__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Tiêu đề thương hiệu */
    .page-www-678__brand-header {
      text-align: center;
      padding-top: 10px; /* Khoảng đệm trên trang trí nhỏ, giả định body có khoảng cách từ header */
      padding-bottom: 20px;
      background-color: var(--background-dark);
    }

    .page-www-678__brand-logo {
      font-size: 3em;
      font-weight: 900;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 0;
      line-height: 1;
    }

    .page-www-678__brand-slogan {
      font-size: 1.2em;
      color: var(--accent-color);
      margin-top: 5px;
    }

    /* Phần Hero */
    .page-www-678__hero-section {
      position: relative;
      overflow: hidden;
      padding: 0; /* Nội dung bên trong sẽ xử lý khoảng đệm */
      background-color: var(--background-dark);
    }

    .page-www-678__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%;
    }

    .page-www-678__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--text-color-light);
      text-align: center;
      width: 90%;
      max-width: 800px;
      background: rgba(0, 0, 0, 0.6);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-www-678__hero-headline {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      word-wrap: break-word;
    }

    .page-www-678__hero-description {
      font-size: 1.3em;
      margin-bottom: 25px;
      color: var(--text-color-light);
      word-wrap: break-word;
    }

    .page-www-678__cta-button {
      background-color: var(--accent-color);
      color: var(--secondary-color);
      padding: 15px 35px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      cursor: pointer;
      display: inline-block; /* Sử dụng inline-block để trông như nút mà không cần liên kết */
      text-decoration: none;
    }

    .page-www-678__cta-button:hover {
      background-color: #fdd866;
    }

    /* Trưng bày trò chơi */
    .page-www-678__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Căn giữa các mục trong lưới */
    }

    .page-www-678__game-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      border: 1px solid var(--border-color);
      width: 100%; /* Đảm bảo thẻ chiếm toàn bộ chiều rộng cột lưới */
      max-width: 350px; /* Giới hạn chiều rộng thẻ cá nhân */
    }

    .page-www-678__game-card:hover {
      transform: translateY(-5px);
    }

    .page-www-678__game-image-container {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh nhất quán */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000; /* Nền giữ chỗ */
      box-sizing: border-box; /* Bao gồm padding và border trong width/height */
    }

    .page-www-678__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Che phủ container */
      width: 100%; /* Đảm bảo hình ảnh lấp đầy chiều rộng container */
      box-sizing: border-box;
    }

    .page-www-678__game-info {
      padding: 20px;
    }

    .page-www-678__game-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-www-678__game-description {
      font-size: 0.95em;
      color: var(--text-color-dark);
      word-wrap: break-word;
    }

    /* Phần khuyến mãi */
    .page-www-678__promotion-card {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 30px;
      margin-top: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      border: 1px solid var(--border-color);
    }

    .page-www-678__promotion-title {
      font-size: 2em;
      color: var(--primary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-www-678__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-www-678__promotion-list-item {
      background-color: var(--background-dark);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      border-left: 5px solid var(--accent-color);
      color: var(--text-color-dark);
      font-size: 1.05em;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-www-678__promotion-list-item strong {
      color: var(--text-color-light);
    }

    /* Phần lý do chọn chúng tôi */
    .page-www-678__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-www-678__feature-card {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--border-color);
    }

    .page-www-678__feature-icon {
      font-size: 3em;
      color: var(--primary-color);
      margin-bottom: 15px;
      display: block; /* Đảm bảo chiếm toàn bộ chiều rộng và căn giữa */
    }

    .page-www-678__feature-title {
      font-size: 1.4em;
      color: var(--accent-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-www-678__feature-description {
      font-size: 0.95em;
      color: var(--text-color-dark);
      word-wrap: break-word;
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-www-678__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-www-678__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-www-678__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--secondary-color);
      cursor: pointer;
      user-select: none;
      color: var(--text-color-light);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-www-678__faq-question:hover {
      background-color: #444;
    }

    .page-www-678__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--text-color-light);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-www-678__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-www-678__faq-item.active .page-www-678__faq-toggle {
      transform: rotate(45deg); /* Thay đổi '+' thành 'x' hoặc hiệu ứng tương tự */
    }

    .page-www-678__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Khoảng đệm ban đầu khớp với câu hỏi */
      background-color: var(--background-light);
      color: var(--text-color-dark);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-www-678__faq-item.active .page-www-678__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 25px !important; /* Khoảng đệm điều chỉnh cho trạng thái mở rộng */
      opacity: 1;
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-www-678__title {
        font-size: 2em;
      }

      .page-www-678__subtitle {
        font-size: 1.5em;
      }

      .page-www-678__hero-headline {
        font-size: 2em;
      }

      .page-www-678__hero-description {
        font-size: 1em;
      }

      .page-www-678__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-www-678__game-grid,
      .page-www-678__feature-grid {
        grid-template-columns: 1fr; /* Một cột cho lưới */
      }

      .page-www-678__game-card,
      .page-www-678__feature-card {
        max-width: 100%; /* Cho phép thẻ chiếm toàn bộ chiều rộng */
      }

      .page-www-678__section {
        padding: 30px 15px;
      }

      .page-www-678__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Ngang cho di động để tiết kiệm không gian dọc */
        gap: 8px;
      }

      .page-www-678__floating-button {
        padding: 10px 18px;
        font-size: 0.95em;
      }

      .page-www-678__brand-logo {
        font-size: 2.5em;
      }

      .page-www-678__brand-slogan {
        font-size: 1em;
      }

      /* Tối ưu hóa hình ảnh đáp ứng */
      .page-www-678 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-www-678__game-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* Tối ưu hóa danh sách đáp ứng */
      .page-www-678__promotion-list,
      .page-www-678__feature-list { /* Giả sử danh sách tính năng có thể có */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-678__promotion-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important; /* Giảm khoảng đệm cho di động */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-www-678__faq-question,
      .page-www-678__faq-answer {
        padding: 15px 20px;
      }
      .page-www-678__faq-question h3 {
        font-size: 1em;
      }
    }
  