
    .page-789win-ng-nh-p {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

    .page-789win-ng-nh-p__hero-section {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px 0 60px 0; /* Add a small top padding and extra bottom for floating buttons */
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    }

    .page-789win-ng-nh-p__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-789win-ng-nh-p__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 90%;
    }

    .page-789win-ng-nh-p__main-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Bright gold for brand emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789win-ng-nh-p__subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      color: #eee;
    }

    .page-789win-ng-nh-p__cta-button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffcc00;
      color: #333;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-789win-ng-nh-p__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-789win-ng-nh-p__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      justify-content: center;
    }

    .page-789win-ng-nh-p__floating-button {
      flex: 1;
      max-width: 150px;
      padding: 12px 0;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      font-size: 1em;
    }

    .page-789win-ng-nh-p__register-btn {
      background-color: #4CAF50;
      color: white;
    }

    .page-789win-ng-nh-p__register-btn:hover {
      background-color: #45a049;
      transform: translateY(-2px);
    }

    .page-789win-ng-nh-p__login-btn {
      background-color: #007bff;
      color: white;
    }

    .page-789win-ng-nh-p__login-btn:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-789win-ng-nh-p__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-789win-ng-nh-p__section--dark {
      background-color: #1a2a3a;
      color: #f0f0f0;
    }

    .page-789win-ng-nh-p__section-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: #007bff;
      position: relative;
      padding-bottom: 10px;
    }

    .page-789win-ng-nh-p__section-title--dark {
      color: #ffcc00;
    }

    .page-789win-ng-nh-p__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
    }

    .page-789win-ng-nh-p__grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 10px;
    }

    .page-789win-ng-nh-p__feature-card,
    .page-789win-ng-nh-p__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;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-789win-ng-nh-p__section--dark .page-789win-ng-nh-p__feature-card,
    .page-789win-ng-nh-p__section--dark .page-789win-ng-nh-p__game-card {
      background-color: #2b445c;
      color: #f0f0f0;
    }

    .page-789win-ng-nh-p__feature-card:hover,
    .page-789win-ng-nh-p__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-789win-ng-nh-p__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-789win-ng-nh-p__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
      display: block;
    }

    .page-789win-ng-nh-p__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789win-ng-nh-p__card-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #007bff;
    }

    .page-789win-ng-nh-p__section--dark .page-789win-ng-nh-p__card-title {
      color: #ffcc00;
    }

    .page-789win-ng-nh-p__card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-789win-ng-nh-p__section--dark .page-789win-ng-nh-p__card-description {
      color: #ccc;
    }

    .page-789win-ng-nh-p__faq-section {
      background-color: #eef2f5;
    }

    .page-789win-ng-nh-p__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-789win-ng-nh-p__faq-item {
      background-color: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-789win-ng-nh-p__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-789win-ng-nh-p__faq-question:hover {
      background-color: #0056b3;
    }

    .page-789win-ng-nh-p__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-789win-ng-nh-p__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-789win-ng-nh-p__faq-item.active .page-789win-ng-nh-p__faq-toggle {
      transform: rotate(45deg);
    }

    .page-789win-ng-nh-p__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #f9f9f9;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-789win-ng-nh-p__faq-item.active .page-789win-ng-nh-p__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-789win-ng-nh-p__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-789win-ng-nh-p__faq-answer ul {
      padding-left: 20px;
      margin-bottom: 10px;
    }

    .page-789win-ng-nh-p__promo-link {
        display: block;
        text-align: center;
        margin-top: 20px;
        font-size: 1.1em;
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }

    .page-789win-ng-nh-p__promo-link:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
      .page-789win-ng-nh-p__main-title {
        font-size: 2em;
      }

      .page-789win-ng-nh-p__subtitle {
        font-size: 1em;
      }

      .page-789win-ng-nh-p__floating-buttons {
        width: 95%;
        gap: 10px;
      }

      .page-789win-ng-nh-p__floating-button {
        padding: 10px 0;
        font-size: 0.9em;
        max-width: 120px;
      }

      .page-789win-ng-nh-p__section {
        padding: 30px 15px;
      }

      .page-789win-ng-nh-p__section-title {
        font-size: 1.7em;
      }

      .page-789win-ng-nh-p__grid-container {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-789win-ng-nh-p__feature-card, 
      .page-789win-ng-nh-p__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-789win-ng-nh-p__card-image-wrapper {
        height: 180px;
      }

      .page-789win-ng-nh-p__card-title {
        font-size: 1.2em;
      }

      .page-789win-ng-nh-p__card-description {
        font-size: 0.85em;
      }

      .page-789win-ng-nh-p__faq-question h3 {
        font-size: 1em;
      }

      .page-789win-ng-nh-p__faq-answer {
        padding: 15px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-789win-ng-nh-p__faq-answer p,
      .page-789win-ng-nh-p__faq-answer ul {
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-789win-ng-nh-p__main-title {
        font-size: 1.8em;
      }
      .page-789win-ng-nh-p__subtitle {
        font-size: 0.9em;
      }
      .page-789win-ng-nh-p__floating-buttons {
        flex-direction: column;
        align-items: center;
        bottom: 10px;
      }
      .page-789win-ng-nh-p__floating-button {
        width: 100%;
        max-width: 200px;
      }
    }
  