
    /* Tổng thể */
    .page-bet999slot {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi nút nổi */
    }

    /* Tiêu đề chính */
    .page-bet999slot__h1,
    .page-bet999slot__h2,
    .page-bet999slot__h3 {
      color: #2c3e50;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-bet999slot__h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }

    .page-bet999slot__h2 {
      font-size: 2em;
      margin-top: 40px;
    }

    .page-bet999slot__h3 {
      font-size: 1.5em;
      margin-top: 30px;
    }

    /* Phần hero */
    .page-bet999slot__hero-section {
      position: relative;
      background-color: #000; /* Fallback */
      color: #fff;
      text-align: center;
      padding: 10px 0 50px; /* Padding top cho header cố định */
      overflow: hidden;
    }

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

    .page-bet999slot__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-bet999slot__hero-content {
      position: relative;
      z-index: 1;
      max-width: 960px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-bet999slot__hero-content p {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Nút nổi đăng nhập */
    .page-bet999slot__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Đảm bảo văn bản không xuống dòng */
    }

    .page-bet999slot__floating-button:hover {
      background-color: #c0392b;
      transform: translateX(-50%) scale(1.05);
    }

    /* Phần nội dung chung */
    .page-bet999slot__container {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px 15px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-bet999slot__section {
      margin-bottom: 40px;
      padding: 20px 0;
    }

    .page-bet999slot__section p {
      margin-bottom: 15px;
    }

    .page-bet999slot__section ul {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-bet999slot__section li {
      margin-bottom: 8px;
    }

    /* Lưới trò chơi */
    .page-bet999slot__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-bet999slot__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-bet999slot__game-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistency */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-bet999slot__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area */
      display: block;
    }

    .page-bet999slot__game-info {
      padding: 20px;
    }

    .page-bet999slot__game-info h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #34495e;
    }

    .page-bet999slot__game-info p {
      font-size: 0.95em;
      color: #555;
    }

    /* Nút hành động */
    .page-bet999slot__action-button {
      display: inline-block;
      background-color: #2ecc71; /* Màu xanh lá cây */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Cho biết có thể nhấp */
      border: none; /* Đảm bảo không có viền nút */
    }

    .page-bet999slot__action-button:hover {
      background-color: #27ae60;
    }

    /* Hướng dẫn */
    .page-bet999slot__guide-step {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      background-color: #ecf0f1;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-bet999slot__guide-step:last-child {
      margin-bottom: 0;
    }

    .page-bet999slot__guide-icon-container {
        width: 100px;
        height: 100px;
        min-width: 100px;
        margin-right: 20px;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #bdc3c7;
    }

    .page-bet999slot__guide-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-bet999slot__guide-text h3 {
      color: #2980b9;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-bet999slot__guide-text p {
      margin-bottom: 0;
    }

    /* Phần FAQ */
    .page-bet999slot__faq-section {
      background-color: #f8f8f8;
      padding: 40px 0;
      border-top: 1px solid #eee;
    }

    .page-bet999slot__faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-bet999slot__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-bet999slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-bet999slot__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-bet999slot__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #34495e;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-bet999slot__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #2c3e50;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
    }

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

    .page-bet999slot__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.4s ease;
      background-color: #fff;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-bet999slot__h1 {
        font-size: 2em;
      }

      .page-bet999slot__h2 {
        font-size: 1.8em;
      }

      .page-bet999slot__h3 {
        font-size: 1.3em;
      }

      .page-bet999slot__hero-section {
        padding-top: 10px; /* Mobile padding top */
        padding-bottom: 30px;
      }

      .page-bet999slot__hero-content p {
        font-size: 1em;
      }

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

      .page-bet999slot__game-grid {
        grid-template-columns: 1fr;
      }

      .page-bet999slot__guide-step {
        flex-direction: column;
        text-align: center;
      }

      .page-bet999slot__guide-icon-container {
        margin-right: 0;
        margin-bottom: 15px;
      }

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

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

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

      .page-bet999slot__game-image-container img,
      .page-bet999slot__guide-icon-container img {
          max-width: 100% !important;
          height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-bet999slot__floating-button {
        width: calc(100% - 30px);
        left: 15px;
        transform: translateX(0);
        border-radius: 8px;
      }
    }
  