
    :root {
      --page-24wim__primary-color: #e44d26; /* Cam đỏ */
      --page-24wim__secondary-color: #ffb300; /* Vàng cam */
      --page-24wim__dark-background: #1a1a1a; /* Nền tối */
      --page-24wim__light-background: #f5f5f5; /* Nền sáng */
      --page-24wim__text-color: #ffffff; /* Chữ trắng */
      --page-24wim__dark-text-color: #333333; /* Chữ tối */
      --page-24wim__accent-color: #00bcd4; /* Xanh ngọc */
      --page-24wim__border-radius: 8px;
    }

    /* Base styles for the page content */
    .page-24wim {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-24wim__dark-text-color);
      background-color: var(--page-24wim__light-background);
      padding-top: 10px; /* Small padding to avoid double header offset */
    }

    /* Section styling */
    .page-24wim__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-24wim__section--dark {
      background-color: var(--page-24wim__dark-background);
      color: var(--page-24wim__text-color);
    }

    .page-24wim__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-24wim__primary-color);
      font-weight: bold;
    }

    .page-24wim__section--dark .page-24wim__section-title {
      color: var(--page-24wim__secondary-color);
    }

    .page-24wim__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: var(--page-24wim__dark-text-color);
    }

    .page-24wim__section--dark .page-24wim__section-subtitle {
      color: var(--page-24wim__text-color);
    }

    /* Hero Section */
    .page-24wim__hero-section {
      background: linear-gradient(135deg, var(--page-24wim__primary-color) 0%, var(--page-24wim__secondary-color) 100%);
      color: var(--page-24wim__text-color);
      padding: 80px 20px 100px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-24wim__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .page-24wim__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      width: 100%;
    }

    .page-24wim__hero-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-24wim__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-24wim__hero-button {
      background-color: var(--page-24wim__accent-color);
      color: var(--page-24wim__text-color);
      padding: 15px 30px;
      border: none;
      border-radius: var(--page-24wim__border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-24wim__hero-button:hover {
      background-color: #00a0b8;
      transform: translateY(-2px);
    }

    /* Floating Register/Login Buttons */
    .page-24wim__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-24wim__floating-button {
      background-color: var(--page-24wim__primary-color);
      color: var(--page-24wim__text-color);
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .page-24wim__floating-button--login {
      background-color: var(--page-24wim__secondary-color);
    }

    .page-24wim__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-24wim__floating-button--login:hover {
      background-color: #e6a000;
    }

    /* Game Categories Section */
    .page-24wim__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-24wim__game-card {
      background-color: var(--page-24wim__text-color);
      border-radius: var(--page-24wim__border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-24wim__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-24wim__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid var(--page-24wim__primary-color);
    }

    .page-24wim__game-card-title {
      font-size: 1.5em;
      margin: 20px 0 10px;
      color: var(--page-24wim__dark-text-color);
      padding: 0 15px;
    }

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

    /* Promotions Section */
    .page-24wim__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-24wim__promotion-card {
      background-color: var(--page-24wim__text-color);
      border-radius: var(--page-24wim__border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      box-sizing: border-box;
    }

    .page-24wim__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-24wim__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-24wim__promotion-content {
      padding: 20px;
    }

    .page-24wim__promotion-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-24wim__primary-color);
    }

    .page-24wim__promotion-description {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-24wim__promotion-button {
      background-color: var(--page-24wim__primary-color);
      color: var(--page-24wim__text-color);
      padding: 10px 20px;
      border: none;
      border-radius: var(--page-24wim__border-radius);
      font-size: 0.9em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-align: center;
    }

    .page-24wim__promotion-button:hover {
      background-color: #c23b18;
    }

    /* About Section */
    .page-24wim__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .page-24wim__about-text {
      font-size: 1.1em;
      color: var(--page-24wim__dark-text-color);
    }

    .page-24wim__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: var(--page-24wim__border-radius);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      margin: 20px auto;
      display: block;
    }

    /* Payment Methods & Game Providers Sections */
    .page-24wim__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-24wim__logo-item {
      background-color: var(--page-24wim__text-color);
      padding: 20px;
      border-radius: var(--page-24wim__border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 200px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-24wim__logo-item:hover {
      transform: translateY(-5px);
    }

    .page-24wim__logo-image {
      max-width: 100%;
      max-height: 80px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-24wim__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-24wim__faq-item {
      background-color: var(--page-24wim__text-color);
      border: 1px solid #ddd;
      border-radius: var(--page-24wim__border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-24wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      font-weight: bold;
      color: var(--page-24wim__dark-text-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-24wim__faq-question:hover {
      background-color: #f0f0f0;
    }

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

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

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

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-24wim__hero-title {
        font-size: 2.5em;
      }

      .page-24wim__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-24wim__section {
        padding: 30px 15px;
      }

      .page-24wim__game-categories,
      .page-24wim__promotions-grid,
      .page-24wim__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-24wim__game-card-image {
        height: 180px;
      }

      .page-24wim__promotion-image {
        height: 180px;
      }

      .page-24wim__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
        width: calc(100% - 30px);
        left: 15px;
        transform: translateX(0);
        right: 15px;
      }

      .page-24wim__floating-button {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.95em;
      }

      /* List item mobile responsiveness */
      .page-24wim__game-categories > *,
      .page-24wim__promotions-grid > *,
      .page-24wim__logo-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-24wim__faq-question h3 {
        font-size: 1em;
      }

      .page-24wim__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-24wim__hero-title {
        font-size: 2em;
      }

      .page-24wim__hero-subtitle {
        font-size: 1em;
      }

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

    /* Ensure images are responsive */
    .page-24wim img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-24wim__game-card-image,
    .page-24wim__promotion-image,
    .page-24wim__about-image,
    .page-24wim__logo-image {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .page-24wim__game-card-image,
      .page-24wim__promotion-image,
      .page-24wim__about-image,
      .page-24wim__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  