
    :root {
      --page-sv388-primary-color: #e44d26; /* Màu đỏ cam rực rỡ */
      --page-sv388-secondary-color: #333; /* Màu xám đậm */
      --page-sv388-accent-color: #f7b32b; /* Màu vàng kim cho điểm nhấn */
      --page-sv388-text-color: #f8f8f8; /* Màu chữ sáng */
      --page-sv388-dark-text-color: #1a1a1a; /* Màu chữ tối */
      --page-sv388-bg-dark: #222; /* Nền tối */
      --page-sv388-bg-light: #f4f4f4; /* Nền sáng */
      --page-sv388-card-bg: #3c3c3c; /* Nền thẻ */
      --page-sv388-border-color: #555; /* Màu viền */
    }

    .page-sv388 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-sv388-text-color);
      background-color: var(--page-sv388-bg-dark);
      padding-bottom: 80px; /* Khoảng trống cho footer cố định */
    }

    /* Khoảng cách cho thanh điều hướng cố định */
    .page-sv388__hero-section {
      padding-top: 120px; /* Khoảng đệm trên cho desktop */
    }

    @media (max-width: 768px) {
      .page-sv388__hero-section {
        padding-top: 100px; /* Khoảng đệm trên cho mobile */
      }
    }

    .page-sv388__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-sv388__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-sv388__section--light {
      background-color: var(--page-sv388-bg-light);
      color: var(--page-sv388-dark-text-color);
    }

    .page-sv388__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: var(--page-sv388-primary-color);
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-sv388__section--light .page-sv388__section-title {
      color: var(--page-sv388-secondary-color);
    }

    .page-sv388__section-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: var(--page-sv388-accent-color);
    }

    /* Phần Hero */
    .page-sv388__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      background-color: var(--page-sv388-bg-dark);
    }

    .page-sv388__hero-image {
      width: 100%;
      height: auto;
      object-fit: contain; /* Đảm bảo hình ảnh giữ tỷ lệ và hiển thị đầy đủ */
      display: block;
      margin: 0 auto;
      max-width: 100%; /* Quan trọng cho khả năng thích ứng */
      height: auto; /* Quan trọng cho khả năng thích ứng */
    }

    .page-sv388__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      color: var(--page-sv388-text-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      width: 90%;
      max-width: 800px;
    }

    .page-sv388__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-sv388-accent-color);
      line-height: 1.2;
    }

    .page-sv388__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: var(--page-sv388-text-color);
    }

    .page-sv388__button {
      display: inline-block;
      background-color: var(--page-sv388-primary-color);
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-sv388__button:hover {
      background-color: #c9401f;
      transform: translateY(-2px);
    }

    /* Nút nổi */
    .page-sv388__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-sv388__floating-button {
      background-color: var(--page-sv388-accent-color);
      color: var(--page-sv388-dark-text-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .page-sv388__floating-button--register {
      background-color: var(--page-sv388-primary-color);
      color: white;
    }

    .page-sv388__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    /* Danh mục trò chơi */
    .page-sv388__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-sv388__game-card {
      background-color: var(--page-sv388-card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-sv388__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-sv388__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%; /* Quan trọng cho khả năng thích ứng */
      height: auto; /* Quan trọng cho khả năng thích ứng */
    }

    .page-sv388__game-card-title {
      font-size: 1.8em;
      color: var(--page-sv388-accent-color);
      margin-bottom: 10px;
    }

    .page-sv388__game-card-description {
      font-size: 1em;
      color: var(--page-sv388-text-color);
      padding: 0 20px;
      margin-bottom: 20px;
    }

    .page-sv388__game-card .page-sv388__button {
      padding: 10px 20px;
      font-size: 0.9em;
    }

    /* Phần Tại sao chọn chúng tôi */
    .page-sv388__features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-sv388__feature-item {
      background-color: var(--page-sv388-card-bg);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      border-left: 5px solid var(--page-sv388-primary-color);
    }

    .page-sv388__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      max-width: 100%; /* Quan trọng cho khả năng thích ứng */
      height: auto; /* Quan trọng cho khả năng thích ứng */
    }

    .page-sv388__feature-title {
      font-size: 1.5em;
      color: var(--page-sv388-accent-color);
      margin-bottom: 10px;
    }

    .page-sv388__feature-description {
      font-size: 1em;
      color: var(--page-sv388-text-color);
    }

    /* Nhà cung cấp game */
    .page-sv388__provider-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Điều chỉnh cho logo nhỏ hơn */
      gap: 20px;
      margin-top: 40px;
    }

    .page-sv388__provider-logo-wrapper {
      background-color: var(--page-sv388-card-bg);
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      height: 100px; /* Chiều cao cố định để có giao diện nhất quán */
    }

    .page-sv388__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-sv388__provider-logo {
      max-width: 100px; /* Chiều rộng tối đa cho logo */
      max-height: 70px; /* Chiều cao tối đa cho logo */
      object-fit: contain;
      display: block;
      max-width: 100%; /* Quan trọng cho khả năng thích ứng */
      height: auto; /* Quan trọng cho khả năng thích ứng */
    }

    /* Phần Câu hỏi thường gặp */
    .page-sv388__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-sv388__faq-item {
      background-color: var(--page-sv388-card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-sv388__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-sv388-primary-color);
      color: white;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-sv388__faq-question:hover {
      background-color: #c9401f;
    }

    .page-sv388__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit; /* Kế thừa màu từ phần tử cha */
      pointer-events: none; /* Ngăn chặn văn bản chặn sự kiện click */
    }

    .page-sv388__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn biểu tượng chặn sự kiện click */
    }

    .page-sv388__faq-item.active .page-sv388__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X (hoặc xoay thành -) */
    }

    .page-sv388__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-sv388-bg-dark);
      color: var(--page-sv388-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-sv388__faq-item.active .page-sv388__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Kêu gọi hành động */
    .page-sv388__cta-section {
      background-color: var(--page-sv388-primary-color);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .page-sv388__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-sv388__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Điều chỉnh Responsive */
    @media (max-width: 1024px) {
      .page-sv388__hero-title {
        font-size: 3em;
      }
      .page-sv388__hero-subtitle {
        font-size: 1.5em;
      }
      .page-sv388__section-title {
        font-size: 2.5em;
      }
      .page-sv388__section-subtitle {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-sv388__hero-section {
        min-height: 400px;
      }
      .page-sv388__hero-title {
        font-size: 2.5em;
      }
      .page-sv388__hero-subtitle {
        font-size: 1.2em;
      }
      .page-sv388__section {
        padding: 40px 15px;
      }
      .page-sv388__section-title {
        font-size: 2em;
      }
      .page-sv388__section-subtitle {
        font-size: 1.1em;
      }
      .page-sv388__game-categories,
      .page-sv388__features,
      .page-sv388__provider-logos {
        grid-template-columns: 1fr;
      }
      .page-sv388__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
        gap: 10px;
      }
      .page-sv388__floating-button {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
        font-size: 1em;
      }
      .page-sv388__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-sv388__faq-answer {
        padding: 0 20px;
      }
      .page-sv388__faq-item.active .page-sv388__faq-answer {
        padding: 15px 20px !important;
      }
      .page-sv388__cta-title {
        font-size: 2em;
      }
      .page-sv388__cta-description {
        font-size: 1em;
      }
      /* Đảm bảo hình ảnh hoàn toàn thích ứng trên thiết bị di động */
      .page-sv388__hero-image,
      .page-sv388__game-card-image,
      .page-sv388__feature-icon,
      .page-sv388__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sv388__game-card-image {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .page-sv388__hero-title {
        font-size: 2em;
      }
      .page-sv388__hero-subtitle {
        font-size: 1em;
      }
      .page-sv388__section-title {
        font-size: 1.8em;
      }
      .page-sv388__floating-buttons {
        bottom: 10px;
      }
      .page-sv388__floating-button {
        font-size: 0.9em;
        padding: 8px 12px;
      }
    }
  