
    /* Reset và cơ bản */
    .page-dabet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Dành chỗ cho nút nổi */
    }

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

    .page-dabet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-dabet__section--light {
      background-color: #ffffff;
    }

    .page-dabet__section--dark {
      background-color: #e9ecef;
    }

    .page-dabet__heading {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-dabet__subheading {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-dabet__text {
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    .page-dabet__button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin-top: 20px;
    }

    .page-dabet__button:hover {
      background-color: #0056b3;
    }

    /* Hero Section */
    .page-dabet__hero-section {
      position: relative;
      background-color: #003366; /* Màu nền dự phòng nếu ảnh không tải */
      color: #ffffff;
      padding-top: 10px; /* Để tránh bị che bởi header cố định */
      padding-bottom: 40px;
      overflow: hidden;
    }

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

    .page-dabet__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      text-align: center;
    }

    .page-dabet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #ffd700; /* Màu vàng nổi bật */
    }

    .page-dabet__hero-description {
      font-size: 1.3em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    /* Floating Button */
    .page-dabet__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      text-align: center;
    }

    .page-dabet__floating-button {
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #ffffff;
      padding: 15px 20px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: block; /* Đảm bảo nút chiếm toàn bộ chiều rộng wrapper */
      text-decoration: none;
      border: none;
      cursor: pointer;
    }

    .page-dabet__floating-button:hover {
      background-color: #e63900;
      transform: scale(1.05);
    }

    /* About Section */
    .page-dabet__about-section .page-dabet__text {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-dabet__about-image-wrapper {
      width: 100%;
      max-width: 600px;
      margin: 20px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-dabet__about-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Games Section */
    .page-dabet__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-dabet__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-dabet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-dabet__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
    }

    .page-dabet__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensures image covers the area without distortion */
      width: 100%;
      height: 100%;
    }

    .page-dabet__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-dabet__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-dabet__game-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* Guides Section */
    .page-dabet__guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-dabet__guide-item {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: left;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-dabet__guide-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-dabet__guide-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-dabet__guide-text {
      font-size: 1em;
      color: #555;
    }

    /* App Section */
    .page-dabet__app-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-dabet__app-image-wrapper {
      width: 100%;
      max-width: 400px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-dabet__app-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Link Section */
    .page-dabet__link-section .page-dabet__text {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-dabet__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: left;
    }

    .page-dabet__faq-item {
      background-color: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-dabet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f8ff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #0056b3;
      transition: background-color 0.3s ease;
    }

    .page-dabet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3; /* Ensure heading color contrast */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-dabet__faq-question:hover {
      background-color: #e0f2ff;
    }

    .page-dabet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #0056b3;
    }

    .page-dabet__faq-item.active .page-dabet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-dabet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #495057;
      background-color: #ffffff;
    }

    .page-dabet__faq-item.active .page-dabet__faq-answer {
      max-height: 2000px !important; /* Use !important as per requirement */
      padding: 20px !important; /* Use !important as per requirement */
      opacity: 1;
    }

    .page-dabet__faq-answer p {
      margin: 0 0 10px 0;
      font-size: 1em;
    }

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

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

      .page-dabet__hero-section {
        padding-top: 10px; /* Điều chỉnh cho mobile */
        padding-bottom: 30px;
      }

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

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

      .page-dabet__heading {
        font-size: 2em;
      }

      .page-dabet__subheading {
        font-size: 1.5em;
      }

      .page-dabet__text {
        font-size: 1em;
      }

      .page-dabet__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-dabet__games-grid,
      .page-dabet__guide-grid {
        grid-template-columns: 1fr;
      }

      .page-dabet__floating-button-wrapper {
        width: 95%;
        bottom: 15px;
      }

      .page-dabet__floating-button {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-dabet__game-card,
      .page-dabet__guide-item {
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-dabet__faq-question {
        padding: 12px 15px;
      }

      .page-dabet__faq-question h3 {
        font-size: 1.1em;
      }

      .page-dabet__faq-answer {
        padding: 15px !important; /* Important for mobile */
      }
      /* Image responsiveness for mobile */
      .page-dabet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-dabet__hero-image,
      .page-dabet__about-image,
      .page-dabet__game-image,
      .page-dabet__app-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-dabet__about-image-wrapper,
      .page-dabet__app-image-wrapper,
      .page-dabet__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  