
    :root {
      --page-33wingame__primary-color: #e44d26; /* Cam đỏ */
      --page-33wingame__secondary-color: #333;
      --page-33wingame__accent-color: #ffd700; /* Vàng kim */
      --page-33wingame__text-color: #f5f5f5;
      --page-33wingame__background-color: #1a1a1a;
      --page-33wingame__card-background: #2a2a2a;
      --page-33wingame__border-color: #444;
      --page-33wingame__button-hover: #ff6633;
    }

    .page-33wingame {
      font-family: 'Arial', sans-serif;
      color: var(--page-33wingame__text-color);
      background-color: var(--page-33wingame__background-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-33wingame__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-33wingame__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px; /* Đảm bảo chiều cao tối thiểu cho banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Fixed header compensation desktop */
      box-sizing: border-box;
      overflow: hidden;
    }
    .page-33wingame__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 1;
    }
    .page-33wingame__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7); /* Slightly darken the image for text readability */
    }
    .page-33wingame__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }
    .page-33wingame__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-33wingame__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .page-33wingame__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-33wingame__hero-button {
      background-color: var(--page-33wingame__primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }
    .page-33wingame__hero-button:hover {
      background-color: var(--page-33wingame__button-hover);
    }

    /* Section General Styles */
    .page-33wingame__section {
      padding: 60px 20px;
      text-align: center;
    }
    .page-33wingame__section:nth-of-type(even) {
      background-color: var(--page-33wingame__secondary-color);
    }
    .page-33wingame__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-33wingame__primary-color);
      position: relative;
      display: inline-block;
    }
    .page-33wingame__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-33wingame__accent-color);
      border-radius: 2px;
    }
    .page-33wingame__section-description {
      max-width: 800px;
      margin: 0 auto 50px auto;
      font-size: 1.1em;
      color: #ccc;
    }

    /* Game Categories */
    .page-33wingame__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .page-33wingame__game-card {
      background-color: var(--page-33wingame__card-background);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
      border: 1px solid var(--page-33wingame__border-color);
    }
    .page-33wingame__game-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }
    .page-33wingame__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-33wingame__border-color);
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
      display: block; /* Remove extra space below image */
      box-sizing: border-box; /* Include padding/border in width */
    }
    .page-33wingame__game-title {
      font-size: 1.5em;
      margin: 20px 15px 15px 15px;
      color: var(--page-33wingame__accent-color);
    }
    .page-33wingame__game-description {
      font-size: 0.95em;
      color: #bbb;
      padding: 0 15px 20px 15px;
      flex-grow: 1;
    }
    .page-33wingame__game-button {
      background-color: var(--page-33wingame__primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 0 0 15px 15px;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: block;
      width: 100%;
      border: none;
      cursor: pointer;
    }
    .page-33wingame__game-button:hover {
      background-color: var(--page-33wingame__button-hover);
    }

    /* Features Section */
    .page-33wingame__features-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 0;
      list-style: none;
      max-width: 1000px;
      margin: 0 auto;
    }
    .page-33wingame__feature-item {
      background-color: var(--page-33wingame__card-background);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-33wingame__border-color);
      box-sizing: border-box; /* Crucial for responsive width calculation */
    }
    .page-33wingame__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }
    .page-33wingame__feature-title {
      font-size: 1.4em;
      color: var(--page-33wingame__primary-color);
      margin-bottom: 10px;
    }
    .page-33wingame__feature-description {
      font-size: 1em;
      color: #bbb;
    }

    /* How-to Section */
    .page-33wingame__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 0;
      list-style: none;
      max-width: 1000px;
      margin: 0 auto;
    }
    .page-33wingame__step-item {
      background-color: var(--page-33wingame__card-background);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-33wingame__border-color);
      box-sizing: border-box; /* Crucial for responsive width calculation */
      position: relative;
    }
    .page-33wingame__step-number {
      background-color: var(--page-33wingame__primary-color);
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .page-33wingame__step-title {
      font-size: 1.4em;
      color: var(--page-33wingame__accent-color);
      margin-bottom: 10px;
    }
    .page-33wingame__step-description {
      font-size: 1em;
      color: #bbb;
    }

    /* FAQ Section */
    .page-33wingame__faq-section {
      text-align: left;
    }
    .page-33wingame__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .page-33wingame__faq-item {
      background-color: var(--page-33wingame__card-background);
      border: 1px solid var(--page-33wingame__border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .page-33wingame__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: var(--page-33wingame__accent-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-33wingame__faq-question:hover {
      background-color: #444;
    }
    .page-33wingame__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      color: var(--page-33wingame__accent-color);
    }
    .page-33wingame__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
      transition: transform 0.3s ease;
    }
    .page-33wingame__faq-item.active .page-33wingame__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }
    .page-33wingame__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      font-size: 1em;
      line-height: 1.8;
    }
    .page-33wingame__faq-item.active .page-33wingame__faq-answer {
      max-height: 2000px !important; /* Use !important to ensure override */
      padding: 20px !important; /* Use !important */
      opacity: 1;
    }

    /* Floating Promotion Button */
    .page-33wingame__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-33wingame__primary-color);
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-33wingame__pulse 2s infinite;
    }
    .page-33wingame__floating-button:hover {
      background-color: var(--page-33wingame__button-hover);
      transform: translateY(-3px);
      animation: none;
    }
    @keyframes page-33wingame__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    .page-33wingame__floating-button-icon {
        font-size: 1.5em; /* Example for an icon */
        line-height: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-33wingame__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-33wingame__feature-item,
      .page-33wingame__step-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row */
      }
    }

    @media (max-width: 768px) {
      .page-33wingame__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Fixed header compensation mobile */
      }
      .page-33wingame__hero-title {
        font-size: 2.2em;
      }
      .page-33wingame__hero-description {
        font-size: 1em;
      }
      .page-33wingame__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-33wingame__section-title {
        font-size: 2em;
      }
      .page-33wingame__game-grid {
        grid-template-columns: 1fr; /* Single column */
      }
      .page-33wingame__feature-item,
      .page-33wingame__step-item {
        flex: 1 1 100%; /* Single item per row */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      .page-33wingame__features-list,
      .page-33wingame__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-33wingame__game-image,
      .page-33wingame__feature-icon {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-33wingame__faq-question {
          font-size: 1.1em;
          padding: 15px;
      }
      .page-33wingame__faq-answer {
          padding: 15px !important; /* Adjust padding for mobile */
      }
      .page-33wingame__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-33wingame__hero-title {
        font-size: 1.8em;
      }
      .page-33wingame__section-title {
        font-size: 1.8em;
      }
      .page-33wingame__game-title {
        font-size: 1.3em;
      }
      .page-33wingame__floating-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  