
    /* Reset và biến cơ bản */
    :root {
      --page-789win__primary-color: #e44d26; /* Cam */
      --page-789win__secondary-color: #f7a01d; /* Vàng cam */
      --page-789win__accent-color: #4CAF50; /* Xanh lá */
      --page-789win__text-color: #333;
      --page-789win__text-light-color: #666;
      --page-789win__background-color: #f8f8f8;
      --page-789win__white-color: #ffffff;
      --page-789win__dark-color: #222222;
      --page-789win__border-color: #eee;
    }

    /* Đảm bảo tất cả text có màu tối hơn nền sáng */
    .page-789win {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789win__text-color);
      background-color: var(--page-789win__background-color);
      padding-bottom: 80px; /* Cho nút nổi */
    }

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

    /* Hero Section */
    .page-789win__hero-section {
      background-color: var(--page-789win__dark-color);
      color: var(--page-789win__white-color);
      text-align: center;
      padding: 120px 0 40px; /* Padding top cho header cố định */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-789win__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .page-789win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-789win__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-789win__secondary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

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

    .page-789win__hero-button {
      display: inline-block;
      background-color: var(--page-789win__primary-color);
      color: var(--page-789win__white-color);
      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 rgba(0,0,0,0.3);
    }

    .page-789win__hero-button:hover {
      background-color: #ff6633;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-789win__section {
      padding: 60px 0;
      background-color: var(--page-789win__white-color);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-789win__section:nth-of-type(even) {
      background-color: var(--page-789win__background-color);
    }

    .page-789win__section-title {
      font-size: 2.2em;
      color: var(--page-789win__primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-789win__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-789win__secondary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Text Content */
    .page-789win__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-789win__text-content ul {
      list-style: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-789win__text-content ul li {
      margin-bottom: 8px;
    }

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

    .page-789win__game-card {
      background-color: var(--page-789win__white-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

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

    .page-789win__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistent card appearance */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-789win__game-card-image {
      max-width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
    }

    .page-789win__game-card-title {
      font-size: 1.5em;
      color: var(--page-789win__primary-color);
      margin: 20px 10px 10px;
    }

    .page-789win__game-card-description {
      font-size: 0.95em;
      color: var(--page-789win__text-light-color);
      padding: 0 15px;
    }

    /* Promotions */
    .page-789win__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-789win__promotion-item {
      background-color: #fff;
      border-left: 5px solid var(--page-789win__primary-color);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .page-789win__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-789win__promotion-item h3 {
      color: var(--page-789win__primary-color);
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-789win__promotion-item p {
      font-size: 1em;
      color: var(--page-789win__text-light-color);
    }

    /* Game Providers */
    .page-789win__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-789win__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px; /* Fixed height for logos */
    }

    .page-789win__provider-logo {
      max-width: 100px; /* Max width for logos */
      max-height: 80px; /* Max height for logos */
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .page-789win__provider-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-789win__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-789win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-789win__dark-color);
      background-color: #f0f0f0;
      border-bottom: 1px solid var(--page-789win__border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-789win__faq-question:hover {
      background-color: #e0e0e0;
    }
    
    .page-789win__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-789win__primary-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-789win__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--page-789win__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-789win__faq-item.active .page-789win__faq-toggle {
      transform: rotate(45deg);
    }

    .page-789win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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-789win__white-color);
      color: var(--page-789win__text-color);
    }

    .page-789win__faq-item.active .page-789win__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }

    /* Floating Login Button */
    .page-789win__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-789win__accent-color);
      color: var(--page-789win__white-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-789win__floating-login-button:hover {
      background-color: #5cb85c;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789win__hero-section {
        padding-top: 100px; /* Mobile padding for fixed header */
        padding-bottom: 30px;
      }

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

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

      .page-789win__section {
        padding: 40px 0;
      }

      .page-789win__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

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

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

      .page-789win__providers-grid {
        grid-template-columns: repeat(3, 1fr);
      }

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

      /* Force responsive image styles */
      .page-789win__hero-image,
      .page-789win__game-card-image,
      .page-789win__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789win__hero-image-wrapper,
      .page-789win__game-card-image-wrapper,
      .page-789win__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-789win__floating-login-button {
          padding: 10px 20px;
          font-size: 1em;
      }
    }
  