
    /* Tổng quan */
    .page-6tcasino {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 20px;
      padding-top: 10px; /* Theo yêu cầu, chỉ 8-16px trang trí đỉnh */
    }

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

    /* Hero Section */
    .page-6tcasino__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 80px 0;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-6tcasino__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Làm mờ ảnh nền để text dễ đọc */
    }

    .page-6tcasino__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      display: inline-block;
      max-width: 90%;
    }

    .page-6tcasino__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffda44; /* Màu vàng nổi bật */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-6tcasino__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-6tcasino__cta-button {
      display: inline-block;
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-6tcasino__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

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

    .page-6tcasino__floating-button {
      background-color: #27ae60; /* Màu xanh lá cây */
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      min-width: 120px;
    }

    .page-6tcasino__floating-button--login {
      background-color: #3498db; /* Màu xanh dương */
    }

    .page-6tcasino__floating-button:hover {
      background-color: #2ecc71;
      transform: translateY(-2px);
    }

    .page-6tcasino__floating-button--login:hover {
      background-color: #2980b9;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-6tcasino__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-6tcasino__section-title {
      font-size: 2.2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-6tcasino__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    /* Product Display */
    .page-6tcasino__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Đảm bảo các item được căn giữa */
    }

    .page-6tcasino__product-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 350px; /* Giới hạn chiều rộng cho card */
      box-sizing: border-box;
    }

    .page-6tcasino__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-6tcasino__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-6tcasino__product-info {
      padding: 20px;
    }

    .page-6tcasino__product-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-6tcasino__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Features/Why Choose Us */
    .page-6tcasino__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-6tcasino__feature-item {
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-6tcasino__feature-item:hover {
      transform: translateY(-5px);
      background-color: #dde1e2;
    }

    .page-6tcasino__feature-icon {
      width: 200px; /* Tăng kích thước tối thiểu */
      height: 200px; /* Tăng kích thước tối thiểu */
      margin: 0 auto 15px auto;
      object-fit: contain;
      border-radius: 50%;
      background-color: #e74c3c;
      padding: 10px;
      display: block; /* Đảm bảo căn giữa */
    }

    .page-6tcasino__feature-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-6tcasino__feature-description {
      font-size: 0.9em;
      color: #666;
    }

    /* Game Providers */
    .page-6tcasino__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-6tcasino__provider-logo {
      width: 200px; /* Tăng kích thước tối thiểu */
      height: 120px; /* Tăng kích thước tối thiểu */
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-6tcasino__provider-logo:hover {
      filter: grayscale(0%);
    }

    /* Payment Methods */
    .page-6tcasino__payments-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-6tcasino__payment-icon {
      width: 200px; /* Tăng kích thước tối thiểu */
      height: 120px; /* Tăng kích thước tối thiểu */
      object-fit: contain;
      filter: grayscale(50%);
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-6tcasino__payment-icon:hover {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-6tcasino__faq-section {
      padding: 40px 0;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-6tcasino__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-sizing: border-box; /* Thêm box-sizing cho item */
    }

    .page-6tcasino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e74c3c; /* Màu đỏ cho câu hỏi */
      color: #fff;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-6tcasino__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
      text-align: left;
    }

    .page-6tcasino__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-6tcasino__faq-item.active .page-6tcasino__faq-question {
      background-color: #c0392b; /* Màu đỏ đậm hơn khi active */
    }

    .page-6tcasino__faq-item.active .page-6tcasino__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc dấu trừ */
    }

    .page-6tcasino__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;
      background-color: #fefefe;
      color: #333;
    }

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

    .page-6tcasino__faq-answer p {
      margin-bottom: 10px;
      font-size: 0.95em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-6tcasino__hero-section {
        padding: 60px 0;
      }

      .page-6tcasino__hero-title {
        font-size: 2em;
      }

      .page-6tcasino__hero-subtitle {
        font-size: 1.1em;
      }

      .page-6tcasino__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-6tcasino__section-title {
        font-size: 1.8em;
      }

      .page-6tcasino__text-content {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-6tcasino__product-grid,
      .page-6tcasino__features-grid {
        grid-template-columns: 1fr;
      }

      .page-6tcasino__product-card,
      .page-6tcasino__feature-item,
      .page-6tcasino__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-6tcasino__product-info,
      .page-6tcasino__feature-item {
        padding: 15px;
      }

      .page-6tcasino__product-title {
        font-size: 1.2em;
      }

      .page-6tcasino__feature-title {
        font-size: 1.1em;
      }

      .page-6tcasino__providers-grid,
      .page-6tcasino__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-6tcasino__provider-logo,
      .page-6tcasino__payment-icon {
        width: 100% !important;
        max-width: 150px !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-6tcasino__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-6tcasino__faq-question h3 {
        font-size: 1em;
      }

      .page-6tcasino__faq-answer {
        padding: 15px 15px !important;
      }
      .page-6tcasino__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-6tcasino__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: row; /* Thay đổi thành hàng ngang trên di động */
        width: calc(100% - 20px);
        justify-content: space-around;
      }

      .page-6tcasino__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }
    }

    /* Đảm bảo hình ảnh không bị biến đổi màu */
    .page-6tcasino__product-image,
    .page-6tcasino__feature-icon,
    .page-6tcasino__provider-logo,
    .page-6tcasino__payment-icon {
      filter: none; /* Đảm bảo không có filter làm thay đổi màu sắc */
    }
    .page-6tcasino__hero-background {
      filter: brightness(0.6); /* Ngoại lệ cho hero background để text dễ đọc */
    }

    /* Global image responsive */
    .page-6tcasino img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-6tcasino img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  