
    /* Tổng quan */
    .page-debet2 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo footer không bị che */
      overflow-x: hidden; /* Ngăn chặn cuộn ngang */
    }

    .page-debet2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-debet2__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-debet2__section-title {
      font-size: 2.8em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-debet2__text-white {
      color: #ffffff;
    }

    .page-debet2__text-yellow {
      color: #FFD700;
    }

    /* Hero Section */
    .page-debet2__hero-section {
      position: relative;
      background-color: #1a1a1a;
      padding-top: 160px; /* Khoảng cách an toàn cho header cố định */
      padding-bottom: 40px;
      text-align: center;
      overflow: hidden; /* Đảm bảo hình ảnh không tràn */
    }

    .page-debet2__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px; /* Khoảng cách giữa ảnh và nội dung bên dưới */
    }

    .page-debet2__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Đảm bảo hình ảnh nằm giữa */
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-debet2__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 15px;
    }

    .page-debet2__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    }

    .page-debet2__hero-subtitle {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-debet2__cta-button {
      display: inline-block;
      background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
      color: #000000;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
      border: none;
      cursor: pointer;
    }

    .page-debet2__cta-button:hover {
      background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
      color: #000000; /* Giữ màu chữ đen */
    }

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

    .page-debet2__floating-button {
      background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%); /* Cam đỏ */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      white-space: nowrap; /* Ngăn chặn chữ xuống dòng */
    }

    .page-debet2__floating-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
      color: #ffffff; /* Giữ màu chữ trắng */
    }

    /* Game Categories */
    .page-debet2__game-categories {
      background-color: #111111;
    }

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

    .page-debet2__game-card {
      background-color: #222222;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-debet2__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-debet2__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }

    .page-debet2__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area, cropping if necessary */
      transition: transform 0.3s ease;
    }

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

    .page-debet2__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
      text-align: center;
    }

    .page-debet2__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
      text-align: center;
    }

    /* Why Choose Us */
    .page-debet2__why-choose-us {
      background-color: #000000;
    }

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

    .page-debet2__feature-item {
      background-color: #222222;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-debet2__feature-item:hover {
      transform: translateY(-5px);
      background-color: #333333;
    }

    .page-debet2__feature-icon-wrapper {
      margin-bottom: 20px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
    }

    .page-debet2__feature-icon {
      width: 100px; /* Larger icons */
      height: 100px;
      object-fit: contain;
      border-radius: 50%;
      background-color: #FFD700;
      padding: 10px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-debet2__feature-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-debet2__feature-description {
      font-size: 1em;
      color: #cccccc;
      text-align: center;
    }

    /* Game Providers */
    .page-debet2__providers-section {
      background-color: #111111;
    }

    .page-debet2__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-debet2__provider-logo-wrapper {
      background-color: #222222;
      padding: 15px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-debet2__provider-logo-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-debet2__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Adjust based on desired logo size within wrapper */
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-debet2__faq-section {
      background-color: #000000;
    }

    .page-debet2__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-debet2__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-debet2__faq-item:hover {
      background-color: #2a2a2a;
    }

    .page-debet2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #FFD700;
      background-color: #222222;
      border-bottom: 1px solid #333333;
    }

    .page-debet2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: inherit; /* Kế thừa màu từ cha */
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-debet2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 20px;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle icon chặn sự kiện click */
    }

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

    .page-debet2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      background-color: #1a1a1a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-debet2__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-debet2__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-debet2__hero-section {
        padding-top: 120px; /* Điều chỉnh cho mobile */
      }

      .page-debet2__section {
        padding: 40px 0;
      }

      .page-debet2__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-debet2__hero-title {
        font-size: 2.5em;
      }

      .page-debet2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-debet2__cta-button {
        padding: 12px 30px;
        font-size: 1em;
      }

      .page-debet2__game-grid,
      .page-debet2__feature-grid,
      .page-debet2__provider-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-debet2__game-card-image-wrapper {
        height: 180px;
      }

      .page-debet2__feature-title {
        font-size: 1.5em;
      }

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

      .page-debet2__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-debet2__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

      .page-debet2__faq-toggle {
        font-size: 1.5em;
      }

      .page-debet2__faq-answer {
        padding: 0 20px;
      }

      .page-debet2__faq-item.active .page-debet2__faq-answer {
        padding: 15px 20px !important;
      }

      /* Responsive images for mobile */
      .page-debet2__hero-image,
      .page-debet2__game-card-image,
      .page-debet2__feature-icon,
      .page-debet2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-debet2__hero-image-wrapper,
      .page-debet2__game-card-image-wrapper,
      .page-debet2__feature-icon-wrapper,
      .page-debet2__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  