
    /* Tổng quan */
    .page-sv388sv288 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-sv388sv288__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-sv388sv288__section-title {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 30px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 10px;
    }

    .page-sv388sv288__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-sv388sv288__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .page-sv388sv288__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-sv388sv288__button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-sv388sv288__hero-section {
      padding-top: 120px; /* Dành cho thanh điều hướng cố định */
      background-color: #000000;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Đảm bảo đủ không gian cho nội dung */
    }

    .page-sv388sv288__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    .page-sv388sv288__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-sv388sv288__hero-title {
      color: #FFD700;
      font-size: 3.2em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-sv388sv288__hero-description {
      color: #ffffff;
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Login Button */
    .page-sv388sv288__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-sv388sv288__pulse 2s infinite;
      text-align: center;
      white-space: nowrap; /* Ngăn nút bị ngắt dòng */
    }

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

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

    /* Game Categories */
    .page-sv388sv288__game-categories {
      background-color: #1a1a1a;
    }

    .page-sv388sv288__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    .page-sv388sv288__game-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid #333;
    }

    .page-sv388sv288__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(255, 215, 0, 0.3);
    }

    .page-sv388sv288__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-sv388sv288__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-sv388sv288__game-card:hover .page-sv388sv288__game-card-image {
      transform: scale(1.05);
    }

    .page-sv388sv288__game-card-content {
      padding: 20px;
    }

    .page-sv388sv288__game-card-title {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 10px;
      text-decoration: none;
    }

    .page-sv388sv288__game-card-link {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-sv388sv288__game-card-link:hover {
      color: #e6c200;
      text-decoration: underline;
    }

    .page-sv388sv288__game-card-description {
      color: #cccccc;
      font-size: 0.95em;
    }

    /* Game Providers */
    .page-sv388sv288__providers-section {
      background-color: #000000;
    }

    .page-sv388sv288__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 20px 0;
      justify-items: center;
      align-items: center;
    }

    .page-sv388sv288__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
    }

    .page-sv388sv288__provider-logo-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
    }

    .page-sv388sv288__provider-logo {
      width: 100%;
      max-width: 120px; /* Adjust max-width for logos */
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Payment Methods */
    .page-sv388sv288__payments-section {
      background-color: #1a1a1a;
    }

    .page-sv388sv288__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 20px 0;
      justify-items: center;
      align-items: center;
    }

    .page-sv388sv288__payment-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
    }

    .page-sv388sv288__payment-logo-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
    }

    .page-sv388sv288__payment-logo {
      width: 100%;
      max-width: 120px; /* Adjust max-width for logos */
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Promotions Section */
    .page-sv388sv288__promotions-section {
      background-color: #000000;
      color: #ffffff;
    }

    .page-sv388sv288__promo-item {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 25px;
      text-align: left;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      border: 1px solid #333;
    }

    .page-sv388sv288__promo-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-sv388sv288__promo-description {
      color: #cccccc;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-sv388sv288__faq-section {
      background-color: #1a1a1a;
      color: #ffffff;
    }

    .page-sv388sv288__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .page-sv388sv288__faq-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid #333;
    }

    .page-sv388sv288__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-sv388sv288__faq-question:hover {
      background-color: #444444;
    }

    .page-sv388sv288__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

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

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

    .page-sv388sv288__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-sv388sv288__cta-section {
      background-color: #000000;
      padding: 80px 0;
    }

    .page-sv388sv288__cta-title {
      color: #FFD700;
      font-size: 2.8em;
      margin-bottom: 25px;
    }

    .page-sv388sv288__cta-text {
      color: #ffffff;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-sv388sv288__hero-section {
        padding-top: 100px; /* Điều chỉnh cho di động */
        min-height: 400px;
      }

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

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

      .page-sv388sv288__section {
        padding: 40px 0;
      }

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

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

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

      .page-sv388sv288__providers-grid,
      .page-sv388sv288__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

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

      .page-sv388sv288__promo-title {
        font-size: 1.5em;
      }

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

      .page-sv388sv288__faq-question {
        padding: 15px 20px;
      }

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

      .page-sv388sv288__faq-answer {
        padding: 0 20px;
      }

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

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

      .page-sv388sv288__cta-text {
        font-size: 1.1em;
      }

      /* Responsive image styles for mobile */
      .page-sv388sv288__hero-image,
      .page-sv388sv288__game-card-image,
      .page-sv388sv288__provider-logo,
      .page-sv388sv288__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sv388sv288__game-card-image-wrapper,
      .page-sv388sv288__provider-logo-wrapper,
      .page-sv388sv288__payment-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  