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

    /* Hero Section */
    .page-sc88__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Cho khoảng trống với header cố định */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-sc88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Làm tối ảnh nền để chữ nổi bật */
      max-width: 100%;
    }

    .page-sc88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-sc88__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word; /* Đảm bảo tiêu đề dài không tràn */
    }

    .page-sc88__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
    }

    .page-sc88__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng kim */
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating CTA Button */
    .page-sc88__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FF4500; /* Cam đỏ */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-sc88__floating-cta:hover {
      background-color: #e03c00;
      transform: scale(1.05);
    }

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

    /* General Section Styling */
    .page-sc88__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-sc88__section--alt {
      background-color: #f0f8ff;
    }

    .page-sc88__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
      word-wrap: break-word;
    }

    .page-sc88__section-subtitle {
      font-size: 1.2em;
      color: #555;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
    }

    /* Content Layouts */
    .page-sc88__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-sc88__text-block {
      margin-bottom: 20px;
      word-wrap: break-word;
    }

    .page-sc88__text-block h3 {
      font-size: 1.8em;
      color: #34495e;
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-sc88__text-block p {
      font-size: 1.1em;
      color: #666;
      word-wrap: break-word;
    }

    .page-sc88__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-sc88__list-item {
      background-color: #e8f5e9; /* Xanh lá nhạt */
      border-left: 5px solid #4CAF50; /* Xanh lá đậm */
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 5px;
      font-size: 1.1em;
      color: #333;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      word-wrap: break-word;
    }

    .page-sc88__list-item::before {
      content: '✓';
      color: #4CAF50;
      font-weight: bold;
      margin-right: 10px;
    }

    /* Game Cards */
    .page-sc88__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;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-sc88__game-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
      box-sizing: border-box;
    }

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

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

    .page-sc88__game-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
      word-wrap: break-word;
    }

    .page-sc88__game-description {
      font-size: 0.95em;
      color: #777;
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word;
    }

    .page-sc88__game-button {
      background-color: #007bff; /* Xanh dương */
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: fit-content;
      margin: 0 auto;
    }

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

    /* FAQ Section */
    .page-sc88__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto 30px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-sc88__faq-item {
      background-color: #fdfdfd;
      border: 1px solid #eee;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-sc88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #eaf6ff; /* Xanh nhạt */
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-sc88__faq-question:hover {
      background-color: #dbeeff;
    }

    .page-sc88__faq-question h3 {
      font-size: 1.25em;
      color: #2c3e50;
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
      word-wrap: break-word;
    }

    .page-sc88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
    }

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

    .page-sc88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1.05em;
      box-sizing: border-box;
      word-wrap: break-word;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-sc88__hero-section {
        min-height: 350px;
        padding-top: 10px; /* Đảm bảo khoảng trống trên mobile */
      }

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

      .page-sc88__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-sc88__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 1em;
      }

      .page-sc88__section {
        padding: 40px 15px;
        margin-bottom: 20px;
      }

      .page-sc88__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-sc88__section-subtitle {
        font-size: 1em;
      }

      .page-sc88__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-sc88__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-sc88__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-sc88__game-image-container {
        height: 180px;
      }

      .page-sc88__game-title {
        font-size: 1.3em;
      }

      .page-sc88__game-description {
        font-size: 0.9em;
      }

      .page-sc88__faq-section {
        padding: 40px 15px;
      }

      .page-sc88__faq-question {
        padding: 15px 18px;
      }

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

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

      .page-sc88__faq-answer {
        padding: 0 18px;
      }

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

    @media (max-width: 480px) {
      .page-sc88__hero-title {
        font-size: 1.8em;
      }

      .page-sc88__hero-subtitle {
        font-size: 1em;
      }

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