
    :root {
      --page-32winfun__primary-color: #e44d26; /* Cam đỏ */
      --page-32winfun__secondary-color: #333;
      --page-32winfun__accent-color: #f7b731; /* Vàng cam */
      --page-32winfun__text-light: #fff;
      --page-32winfun__text-dark: #333;
      --page-32winfun__bg-light: #f5f5f5;
      --page-32winfun__bg-dark: #222;
      --page-32winfun__border-color: #ddd;
    }

    .page-32winfun {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-32winfun__text-dark);
      background-color: var(--page-32winfun__bg-light);
      padding-bottom: 80px; /* Space for fixed footer */
    }

    /* Hero Section */
    .page-32winfun__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-32winfun__text-light);
      overflow: hidden;
      padding-top: 10px; /* Space for fixed header */
      box-sizing: border-box;
    }

    .page-32winfun__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-32winfun__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      margin-top: 50px; /* Adjust for banner above text */
    }

    .page-32winfun__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-32winfun__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-32winfun__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-32winfun__cta-button {
      display: inline-block;
      background-color: var(--page-32winfun__primary-color);
      color: var(--page-32winfun__text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-32winfun__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-32winfun__floating-button {
      position: fixed;
      bottom: 100px; /* Above footer placeholder */
      right: 20px;
      background-color: var(--page-32winfun__accent-color);
      color: var(--page-32winfun__text-dark);
      padding: 15px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-32winfun__floating-button:hover {
      background-color: #f0c419;
      transform: scale(1.05);
    }

    /* Section General */
    .page-32winfun__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

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

    .page-32winfun__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-32winfun__accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Game Categories */
    .page-32winfun__game-categories {
      background-color: var(--page-32winfun__bg-light);
    }

    .page-32winfun__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-32winfun__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-32winfun__border-color);
    }

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

    .page-32winfun__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-32winfun__border-color);
      max-width: 100%;
    }

    .page-32winfun__game-info {
      padding: 20px;
    }

    .page-32winfun__game-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-32winfun__primary-color);
    }

    .page-32winfun__game-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-32winfun__promotions-section {
      background-color: var(--page-32winfun__bg-dark);
      color: var(--page-32winfun__text-light);
      padding: 60px 20px;
    }

    .page-32winfun__promotions-section .page-32winfun__section-title {
      color: var(--page-32winfun__accent-color);
    }

    .page-32winfun__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-32winfun__promo-card {
      background-color: #3a3a3a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-32winfun__promo-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
    }

    .page-32winfun__promo-title {
      font-size: 1.8em;
      color: var(--page-32winfun__accent-color);
      margin-bottom: 10px;
    }

    .page-32winfun__promo-description {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-32winfun__promo-button {
      background-color: var(--page-32winfun__primary-color);
      color: var(--page-32winfun__text-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-32winfun__promo-button:hover {
      background-color: #c0392b;
    }

    /* How To Get Started Section */
    .page-32winfun__how-to-section {
      background-color: #fff;
    }

    .page-32winfun__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-32winfun__step-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      background-color: var(--page-32winfun__bg-light);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--page-32winfun__border-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-32winfun__step-number {
      font-size: 2.5em;
      color: var(--page-32winfun__accent-color);
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

    .page-32winfun__step-title {
      font-size: 1.6em;
      color: var(--page-32winfun__primary-color);
      margin-bottom: 10px;
    }

    .page-32winfun__step-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-32winfun__faq-section {
      background-color: var(--page-32winfun__bg-light);
      padding: 60px 20px;
    }

    .page-32winfun__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-32winfun__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-32winfun__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-32winfun__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-32winfun__primary-color);
      color: var(--page-32winfun__text-light);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-32winfun__faq-question:hover {
      background-color: #c0392b;
    }

    .page-32winfun__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-32winfun__text-light);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-32winfun__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-32winfun__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      background-color: #fcfcfc;
      color: var(--page-32winfun__text-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

    .page-32winfun__faq-item.active .page-32winfun__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important; /* Padding when active */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-32winfun__hero-title {
        font-size: 2em;
      }

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

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

      .page-32winfun__floating-button {
        bottom: 80px;
        right: 15px;
        padding: 12px 18px;
        font-size: 0.9em;
      }

      .page-32winfun__section {
        padding: 30px 15px;
      }

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

      .page-32winfun__game-grid,
      .page-32winfun__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-32winfun__game-card,
      .page-32winfun__promo-card {
        margin: 0 auto;
        max-width: 400px;
      }

      .page-32winfun__steps-list {
        flex-direction: column;
        align-items: center;
      }

      .page-32winfun__step-item {
        width: 100% !important;
        max-width: 400px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-32winfun__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-32winfun__faq-question h3 {
        font-size: 1em;
      }

      .page-32winfun__faq-answer {
        padding: 15px !important;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-32winfun__hero-content {
        margin-top: 20px;
      }
      .page-32winfun__hero-title {
        font-size: 1.8em;
      }
      .page-32winfun__hero-description {
        font-size: 0.9em;
      }
      .page-32winfun__floating-button {
        padding: 10px 15px;
        font-size: 0.8em;
        bottom: 70px;
      }
    }
  