
    .page-68win-10-com {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Đảm bảo nội dung không bị che bởi header cố định */
    }

    .page-68win-10-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Phần Hero */
    .page-68win-10-com__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-image: url('[GALLERY:hero:1920x1080:betting,casino,background]');
      background-size: cover;
      background-position: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* 10px cho khoảng cách trang trí + 60px padding */
    }

    .page-68win-10-com__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-68win-10-com__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-68win-10-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #f0f0f0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-68win-10-com__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-68win-10-com__promo-link {
      display: inline-block;
      background-color: #e44d26; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-68win-10-com__promo-link:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

    /* Nút Nổi */
    .page-68win-10-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-68win-10-com__floating-button {
      background-color: #007bff; /* Màu xanh cho hành động */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px;
    }

    .page-68win-10-com__floating-button--register {
      background-color: #28a745; /* Màu xanh lá cho đăng ký */
    }

    .page-68win-10-com__floating-button--login {
      background-color: #007bff; /* Màu xanh dương cho đăng nhập */
    }

    .page-68win-10-com__floating-button:hover {
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    /* Trưng bày trò chơi */
    .page-68win-10-com__game-showcase {
      padding: 50px 0;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-68win-10-com__section-title {
      font-size: 2.2em;
      color: #f0f0f0;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }

    .page-68win-10-com__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e44d26;
      margin: 10px auto 0;
    }

    .page-68win-10-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-68win-10-com__game-item {
      background-color: #2b2b45;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-68win-10-com__game-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-68win-10-com__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-68win-10-com__game-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 3px solid #e44d26;
      transition: transform 0.3s ease;
    }

    .page-68win-10-com__game-item:hover .page-68win-10-com__game-image {
      transform: scale(1.05);
    }

    .page-68win-10-com__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-68win-10-com__game-title {
      font-size: 1.5em;
      color: #f0f0f0;
      margin-bottom: 10px;
    }

    .page-68win-10-com__game-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-68win-10-com__game-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Đẩy nút xuống dưới cùng */
      cursor: pointer;
      border: none;
    }

    .page-68win-10-com__game-button:hover {
      background-color: #0056b3;
    }

    /* Phần Khuyến mãi */
    .page-68win-10-com__promotions-section {
      background-color: #2b2b45;
      padding: 50px 20px;
      text-align: center;
    }

    .page-68win-10-com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-68win-10-com__promo-card {
      background-color: #1a1a2e;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-68win-10-com__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-68win-10-com__promo-icon {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 15px;
        border-radius: 8px;
        object-fit: cover;
    }

    .page-68win-10-com__promo-title {
      font-size: 1.8em;
      color: #e44d26;
      margin-bottom: 15px;
    }

    .page-68win-10-com__promo-description {
      color: #ccc;
      font-size: 1em;
      margin-bottom: 20px;
    }

    .page-68win-10-com__promo-action {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Không phải link, dùng cursor pointer */
    }

    .page-68win-10-com__promo-action:hover {
      background-color: #ff6633;
    }

    /* Tại sao chọn chúng tôi */
    .page-68win-10-com__why-choose-us {
      padding: 50px 20px;
      background-color: #1a1a2e;
    }

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

    .page-68win-10-com__feature-item {
      background-color: #2b2b45;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-68win-10-com__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-68win-10-com__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-68win-10-com__feature-icon {
      width: 250px; /* Kích thước tối thiểu 200x200 */
      height: 250px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 50%; /* Ví dụ cho biểu tượng, điều chỉnh nếu là ảnh đầy đủ */
      border: 3px solid #007bff;
    }

    .page-68win-10-com__feature-title {
      font-size: 1.5em;
      color: #e44d26;
      margin-bottom: 10px;
    }

    .page-68win-10-com__feature-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Phần Câu Hỏi Thường Gặp (FAQ) */
    .page-68win-10-com__faq-section {
      padding: 50px 20px;
      background-color: #2b2b45;
    }

    .page-68win-10-com__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      list-style: none;
      padding: 0;
    }

    .page-68win-10-com__faq-item {
      background-color: #1a1a2e;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-68win-10-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #33334f;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #f0f0f0;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
    }

    .page-68win-10-com__faq-question:hover {
      background-color: #44446a;
    }

    .page-68win-10-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #f0f0f0;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click trên phần tử cha */
    }

    .page-68win-10-com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn nút toggle chặn sự kiện click trên phần tử cha */
    }

    .page-68win-10-com__faq-item.active .page-68win-10-com__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng thành dấu gạch ngang khi mở */
      color: #007bff;
    }

    .page-68win-10-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #ccc;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Phần Kêu gọi hành động */
    .page-68win-10-com__cta-section {
      background-color: #1a1a2e;
      padding: 60px 20px;
      text-align: center;
    }

    .page-68win-10-com__cta-title {
      font-size: 2.5em;
      color: #f0f0f0;
      margin-bottom: 20px;
    }

    .page-68win-10-com__cta-text {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 40px;
    }

    .page-68win-10-com__cta-button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-68win-10-com__cta-button:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

    /* Điều chỉnh Responsive */
    @media (max-width: 992px) {
      .page-68win-10-com__hero-title {
        font-size: 2.2em;
      }
      .page-68win-10-com__hero-subtitle {
        font-size: 1.1em;
      }
      .page-68win-10-com__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-68win-10-com__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
      .page-68win-10-com__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-68win-10-com__section-title {
        font-size: 2em;
      }
      .page-68win-10-com__cta-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-68win-10-com__container {
        padding: 15px;
      }
      .page-68win-10-com__hero-section {
        padding: 40px 15px;
        padding-top: 50px; /* Điều chỉnh lại padding-top */
      }
      .page-68win-10-com__hero-title {
        font-size: 2em;
      }
      .page-68win-10-com__hero-subtitle {
        font-size: 1em;
      }
      .page-68win-10-com__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-68win-10-com__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-68win-10-com__floating-button {
        padding: 10px 15px;
        min-width: 100px;
      }
      .page-68win-10-com__game-showcase,
      .page-68win-10-com__promotions-section,
      .page-68win-10-com__why-choose-us,
      .page-68win-10-com__faq-section,
      .page-68win-10-com__cta-section {
        padding: 40px 15px;
      }
      .page-68win-10-com__section-title {
        font-size: 1.8em;
      }
      .page-68win-10-com__game-grid,
      .page-68win-10-com__promo-grid,
      .page-68win-10-com__features-grid {
        grid-template-columns: 1fr; /* Một cột duy nhất */
        padding: 0;
      }

      /* Yêu cầu responsive cho các mục danh sách */
      .page-68win-10-com__game-item,
      .page-68win-10-com__promo-card,
      .page-68win-10-com__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win-10-com__game-grid,
      .page-68win-10-com__promo-grid,
      .page-68win-10-com__features-grid,
      .page-68win-10-com__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win-10-com__game-description,
      .page-68win-10-com__promo-description,
      .page-68win-10-com__feature-description,
      .page-68win-10-com__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Yêu cầu responsive cho hình ảnh */
      .page-68win-10-com__game-image,
      .page-68win-10-com__promo-icon,
      .page-68win-10-com__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-68win-10-com__game-image-wrapper,
      .page-68win-10-com__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-68win-10-com__cta-title {
        font-size: 1.8em;
      }
      .page-68win-10-com__cta-text {
        font-size: 1em;
      }
      .page-68win-10-com__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-68win-10-com__hero-title {
        font-size: 1.8em;
      }
      .page-68win-10-com__hero-subtitle {
        font-size: 0.9em;
      }
      .page-68win-10-com__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: center;
        bottom: 10px;
        right: 15px;
        left: 15px;
      }
      .page-68win-10-com__floating-button {
        flex: 1;
        min-width: unset;
        font-size: 0.9em;
      }
      .page-68win-10-com__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-68win-10-com__faq-question h3 {
        font-size: 1em;
      }
      .page-68win-10-com__faq-toggle {
        font-size: 1.3em;
      }
      .page-68win-10-com__faq-answer {
        font-size: 0.85em;
        padding: 15px 15px !important;
      }
    }
  