
    /* Tổng quan */
    .page-vic88game {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-vic88game__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-vic88game__section {
      background-color: #fff;
      padding: 30px 20px;
      margin-bottom: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-vic88game__section-title {
      font-size: 2.5em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    .page-vic88game__section-subtitle {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 20px;
      font-weight: 600;
      border-bottom: 2px solid #007bff;
      padding-bottom: 10px;
    }

    /* Hero Section */
    .page-vic88game__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      color: #fff;
      padding-top: 100px; /* Cho khoảng trống cho header cố định */
      padding-bottom: 50px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      border-radius: 0 0 15px 15px;
      box-sizing: border-box;
    }

    .page-vic88game__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
    }

    .page-vic88game__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-vic88game__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    }

    .page-vic88game__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    /* Floating Login Button */
    .page-vic88game__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffc107; /* Màu vàng hấp dẫn */
      color: #333;
      padding: 15px 25px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
      z-index: 1000;
      transition: all 0.3s ease;
      animation: page-vic88game__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer;
    }

    .page-vic88game__floating-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    @keyframes page-vic88game__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-vic88game__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-vic88game__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

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

    .page-vic88game__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        margin-bottom: 15px;
    }

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

    .page-vic88game__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-vic88game__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
    }

    /* Why Choose Section */
    .page-vic88game__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-vic88game__feature-item {
      background-color: #eaf6ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      border-left: 5px solid #007bff;
    }

    .page-vic88game__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-vic88game__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-vic88game__feature-text {
      font-size: 0.95em;
      color: #666;
    }

    /* Call to Action */
    .page-vic88game__cta-section {
      text-align: center;
      background-color: #007bff;
      color: #fff;
      padding: 40px 20px;
      border-radius: 10px;
      margin-bottom: 25px;
    }

    .page-vic88game__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: 700;
    }

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

    .page-vic88game__cta-button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
    }

    .page-vic88game__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-vic88game__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-vic88game__faq-question {
      background-color: #007bff;
      color: #fff;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

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

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

    .page-vic88game__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle icon */
    }

    .page-vic88game__faq-item.active .page-vic88game__faq-toggle {
      transform: rotate(45deg);
    }

    .page-vic88game__faq-answer {
      background-color: #fefefe;
      color: #444;
      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;
      box-sizing: border-box;
    }

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

    .page-vic88game__faq-answer p {
      margin: 0 0 10px 0;
    }
    .page-vic88game__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-vic88game__container {
        padding: 15px;
      }

      .page-vic88game__section {
        padding: 25px 15px;
        margin-bottom: 20px;
      }

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

      .page-vic88game__hero-title {
        font-size: 2.2em;
      }

      .page-vic88game__hero-description {
        font-size: 1.1em;
      }

      .page-vic88game__section-title {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-vic88game__section-subtitle {
        font-size: 1.5em;
      }

      .page-vic88game__game-grid,
      .page-vic88game__features-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-vic88game__game-card,
      .page-vic88game__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-vic88game__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      .page-vic88game__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      
      /* List item responsive styles */
      .page-vic88game__game-grid,
      .page-vic88game__features-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-vic88game__game-card,
      .page-vic88game__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Adjust padding to avoid excessive inner padding */
        padding-right: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-vic88game__game-description,
      .page-vic88game__feature-text {
        word-break: break-word !important;
      }

      .page-vic88game__game-image,
      .page-vic88game__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-vic88game__hero-title {
        font-size: 1.8em;
      }
      .page-vic88game__hero-description {
        font-size: 1em;
      }
      .page-vic88game__section-title {
        font-size: 1.6em;
      }
      .page-vic88game__section-subtitle {
        font-size: 1.3em;
      }
    }
  