
    /* Reset và biến cơ bản */
    :root {
      --primary-color: #ffcc00; /* Vàng sáng */
      --secondary-color: #e60000; /* Đỏ */
      --dark-bg: #1a1a1a; /* Nền tối */
      --light-text: #ffffff; /* Chữ trắng */
      --gray-text: #cccccc; /* Chữ xám nhạt */
      --accent-color: #007bff; /* Xanh dương */
      --border-color: #333333; /* Màu viền */
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--light-text);
      background-color: var(--dark-bg);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    /* Base styling for the page-32win-11 container */
    .page-32win-11 {
      max-width: 100%;
      margin: 0 auto;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set it */
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-32win-11__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for mobile first */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--light-text);
      overflow: hidden;
      padding: 10px 20px 0; /* Small padding-top for visual separation, body already has offset */
      box-sizing: border-box;
    }

    .page-32win-11__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-32win-11__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
      border-radius: 10px;
      max-width: 90%;
    }

    .page-32win-11__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-32win-11__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--light-text);
    }

    .page-32win-11__cta-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--light-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-32win-11__cta-button:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-32win-11__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-32win-11__floating-button {
      background-color: var(--primary-color);
      color: var(--dark-bg);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-32win-11__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Section General Styling */
    .page-32win-11__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #222222;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-32win-11__section-title {
      font-size: 2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-32win-11__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    /* Game Categories / Product Display */
    .page-32win-11__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-32win-11__game-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-32win-11__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }

    .page-32win-11__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      vertical-align: middle;
    }

    .page-32win-11__game-content {
      padding: 20px;
    }

    .page-32win-11__game-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-32win-11__game-description {
      font-size: 0.95em;
      color: var(--gray-text);
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-32win-11__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-32win-11__promo-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-32win-11__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }

    .page-32win-11__promo-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      vertical-align: middle;
    }

    .page-32win-11__promo-content {
      padding: 20px;
    }

    .page-32win-11__promo-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-32win-11__promo-text {
      font-size: 0.9em;
      color: var(--gray-text);
      margin-bottom: 15px;
    }

    /* About Section */
    .page-32win-11__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .page-32win-11__about-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-32win-11__about-text {
      font-size: 1em;
      color: var(--gray-text);
      text-align: justify;
      max-width: 800px;
    }

    .page-32win-11__about-text p {
      margin-bottom: 15px;
    }

    /* Payment & Providers Section */
    .page-32win-11__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-32win-11__logo-item {
      background-color: #333333;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100px; /* Fixed width for logo containers */
      height: 70px; /* Fixed height for logo containers */
      box-sizing: border-box;
    }

    .page-32win-11__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-32win-11__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      vertical-align: middle;
    }

    /* FAQ Section */
    .page-32win-11__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-32win-11__faq-item {
      background-color: #333333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-32win-11__faq-question:hover {
      background-color: #555555;
    }

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

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

    .page-32win-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--gray-text);
      background-color: #333333;
      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-32win-11__faq-item.active .page-32win-11__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-32win-11__hero-section {
        height: 80vh;
        padding-top: 10px; /* Small padding-top for visual separation, body already has offset */
      }

      .page-32win-11__hero-title {
        font-size: 3.8em;
      }

      .page-32win-11__hero-subtitle {
        font-size: 1.3em;
      }

      .page-32win-11__section {
        padding: 60px 40px;
      }

      .page-32win-11__game-categories {
        grid-template-columns: repeat(3, 1fr);
      }

      .page-32win-11__promotions-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-32win-11__about-content {
        flex-direction: row;
        gap: 40px;
      }

      .page-32win-11__about-image {
        max-width: 40%;
      }

      .page-32win-11__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .page-32win-11__game-categories {
        grid-template-columns: repeat(4, 1fr);
      }
      .page-32win-11__promotions-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Mobile specific styles for lists (game categories, promotions, logos, etc.) */
    @media (max-width: 768px) {
      .page-32win-11__hero-title {
        font-size: 2em;
      }
      .page-32win-11__hero-subtitle {
        font-size: 1em;
      }
      .page-32win-11__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-32win-11__section-title {
        font-size: 1.8em;
      }
      
      /* Ensure list items and their containers are 100% width on mobile */
      .page-32win-11__game-categories,
      .page-32win-11__promotions-grid,
      .page-32win-11__logos-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important; /* Adjust padding to prevent overflow */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        grid-template-columns: 1fr; /* Stack items */
      }

      .page-32win-11__game-card,
      .page-32win-11__promo-card,
      .page-32win-11__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-32win-11__logo-item {
        width: 120px !important; /* Give some fixed width for logos to look good */
        height: 80px !important;
      }
      
      /* Images responsive */
      .page-32win-11__game-image,
      .page-32win-11__promo-image,
      .page-32win-11__about-image,
      .page-32win-11__logo-image,
      .page-32win-11__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block; /* Ensure no extra space below images */
      }

      /* Text wrapping for long content */
      .page-32win-11__game-description,
      .page-32win-11__promo-text,
      .page-32win-11__about-text,
      .page-32win-11__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-32win-11__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-32win-11__faq-question h3 {
        font-size: 1em;
      }
      .page-32win-11__faq-answer {
        padding: 0 15px;
      }
      .page-32win-11__faq-item.active .page-32win-11__faq-answer {
        padding: 15px !important;
      }
    }
  