
    :root {
      --page-789winweb__primary-color: #e44d26; /* Cam đỏ */
      --page-789winweb__secondary-color: #f7a000; /* Vàng cam */
      --page-789winweb__accent-color: #4CAF50; /* Xanh lá cây */
      --page-789winweb__dark-bg: #1a1a1a;
      --page-789winweb__light-bg: #f9f9f9;
      --page-789winweb__text-color: #333;
      --page-789winweb__white-text: #fff;
      --page-789winweb__border-color: #ddd;
      --page-789winweb__shadow-color: rgba(0, 0, 0, 0.1);
    }

    .page-789winweb {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-789winweb__text-color);
      background-color: var(--page-789winweb__light-bg);
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .page-789winweb *, .page-789winweb *::before, .page-789winweb *::after {
      box-sizing: border-box;
    }

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

    /* Hero Section */
    .page-789winweb__hero-section {
      position: relative;
      width: 100%;
      min-height: 350px; /* Adjusted for banner image */
      background: linear-gradient(135deg, var(--page-789winweb__primary-color), var(--page-789winweb__secondary-color));
      color: var(--page-789winweb__white-text);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 10px 20px 40px; /* Top padding for fixed header */
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 30px;
    }

    .page-789winweb__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7); /* Darken image for text readability */
      z-index: 0;
    }

    .page-789winweb__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
    }

    .page-789winweb__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      text-shadow: 2px 2px 4px var(--page-789winweb__dark-bg);
      color: var(--page-789winweb__white-text);
    }

    .page-789winweb__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-789winweb__white-text);
      text-shadow: 1px 1px 2px var(--page-789winweb__dark-bg);
    }

    .page-789winweb__cta-button {
      display: inline-block;
      background-color: var(--page-789winweb__accent-color);
      color: var(--page-789winweb__white-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px var(--page-789winweb__shadow-color);
      border: none;
      cursor: pointer;
    }

    .page-789winweb__cta-button:hover {
      background-color: #43a047;
      transform: translateY(-2px);
    }

    /* Floating Login/Promo Button */
    .page-789winweb__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(90deg, #ff6b6b, #ee4c7c);
      color: var(--page-789winweb__white-text);
      padding: 15px 25px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: pulse 2s infinite;
      cursor: pointer;
      border: none;
      text-decoration: none; /* Ensure it looks like a button even if it's an anchor */
    }

    .page-789winweb__floating-promo-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
    }

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

    /* Section Styling */
    .page-789winweb__section {
      background-color: var(--page-789winweb__white-text);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--page-789winweb__shadow-color);
    }

    .page-789winweb__section-title {
      font-size: 2em;
      color: var(--page-789winweb__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789winweb__text-content p {
      margin-bottom: 15px;
      font-size: 1em;
      color: var(--page-789winweb__text-color);
    }

    .page-789winweb__text-content strong {
      color: var(--page-789winweb__primary-color);
    }

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

    .page-789winweb__game-card {
      background-color: var(--page-789winweb__light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--page-789winweb__shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

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

    .page-789winweb__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-789winweb__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid var(--page-789winweb__primary-color);
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure aspect ratio */
      display: block; /* Remove extra space below image */
    }


    .page-789winweb__game-card-title {
      font-size: 1.4em;
      color: var(--page-789winweb__primary-color);
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-789winweb__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px;
    }

    /* Promotion Section */
    .page-789winweb__promo-card {
      background: linear-gradient(135deg, #f06292, #ef5350); /* Hồng đến đỏ */
      color: var(--page-789winweb__white-text);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      margin-top: 30px;
    }

    .page-789winweb__promo-card-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

    .page-789winweb__promo-card-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      line-height: 1.5;
    }

    /* FAQ Section */
    .page-789winweb__faq-list {
      margin-top: 30px;
    }

    .page-789winweb__faq-item {
      background-color: var(--page-789winweb__light-bg);
      border: 1px solid var(--page-789winweb__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-789winweb__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      color: var(--page-789winweb__dark-bg);
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-789winweb__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-789winweb__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-789winweb__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-789winweb__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: var(--page-789winweb__secondary-color);
      transition: transform 0.3s ease;
    }

    .page-789winweb__faq-item.active .page-789winweb__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-789winweb__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-789winweb__white-text);
      color: var(--page-789winweb__text-color);
    }

    .page-789winweb__faq-item.active .page-789winweb__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important; /* Active padding */
      opacity: 1;
    }

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

      .page-789winweb__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Adjusted for mobile fixed header */
        border-radius: 0 0 10px 10px;
      }

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

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

      .page-789winweb__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-789winweb__section {
        padding: 30px 15px;
      }

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

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

      .page-789winweb__game-card-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-789winweb__game-card-image {
        height: 180px;
        max-width: 100% !important; /* Enforce responsive image in mobile */
        height: auto !important; /* Enforce aspect ratio in mobile */
      }

      .page-789winweb__promo-card-title {
        font-size: 1.8em;
      }

      .page-789winweb__promo-card-description {
        font-size: 0.95em;
      }

      .page-789winweb__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-789winweb__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-789winweb__faq-question h3 {
        font-size: 1em;
      }
      .page-789winweb__faq-answer {
        padding: 0 15px;
      }
      .page-789winweb__faq-item.active .page-789winweb__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-789winweb__hero-title {
        font-size: 1.8em;
      }
      .page-789winweb__hero-subtitle {
        font-size: 0.9em;
      }
      .page-789winweb__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-789winweb__floating-promo-button {
        padding: 10px 18px;
        font-size: 0.85em;
      }
    }
  