
    .page-3wingame {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng mặc định */
      line-height: 1.6;
      overflow-x: hidden;
      max-width: 100vw;
      box-sizing: border-box;
    }

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

    .page-3wingame__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-3wingame__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-3wingame__section-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-3wingame__hero-section {
      position: relative;
      background-color: #0a0a0a;
      text-align: center;
      padding-top: 150px; /* An toàn cho menu cố định */
      padding-bottom: 40px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3wingame__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .page-3wingame__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-3wingame__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .page-3wingame__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.1;
    }

    .page-3wingame__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-3wingame__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-3wingame__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Floating CTA Button */
    .page-3wingame__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .page-3wingame__floating-cta:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Game Categories */
    .page-3wingame__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-3wingame__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333333;
    }

    .page-3wingame__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-3wingame__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000000;
    }

    .page-3wingame__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover to fill, crop if necessary */
      display: block;
    }

    .page-3wingame__game-card-content {
      padding: 20px;
    }

    .page-3wingame__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-3wingame__game-card-description {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 20px;
      min-height: 40px; /* Ensure consistent height */
    }

    /* Promotions Section */
    .page-3wingame__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-3wingame__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333333;
    }

    .page-3wingame__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-3wingame__promo-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px; /* Fixed height for promo images */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000000;
    }

    .page-3wingame__promo-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-3wingame__promo-card-content {
      padding: 20px;
    }

    .page-3wingame__promo-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-3wingame__promo-card-description {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 20px;
    }

    /* Why Us Section */
    .page-3wingame__why-us-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-3wingame__why-us-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid #333333;
    }

    .page-3wingame__why-us-item-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
      display: flex;
      align-items: center;
    }

    .page-3wingame__why-us-item-title::before {
      content: '⭐';
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-3wingame__why-us-item-description {
      font-size: 0.95em;
      color: #CCCCCC;
    }

    /* Providers Section */
    .page-3wingame__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-3wingame__provider-logo-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Consistent height for logos */
      border: 1px solid #333333;
      transition: transform 0.2s ease;
    }

    .page-3wingame__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-3wingame__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-3wingame__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-3wingame__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid #333333;
    }

    .page-3wingame__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      transition: background-color 0.3s ease;
    }

    .page-3wingame__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-3wingame__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #FFD700;
      font-weight: bold;
      pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-3wingame__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-3wingame__faq-item.active .page-3wingame__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual */
    }

    .page-3wingame__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #CCCCCC;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-3wingame__faq-item.active .page-3wingame__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Final CTA Section */
    .page-3wingame__final-cta-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
      text-align: center;
      border-top: 1px solid #333333;
    }

    .page-3wingame__final-cta-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-3wingame__final-cta-description {
      font-size: 1.1em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-3wingame__hero-title {
        font-size: 3em;
      }
      .page-3wingame__section-title {
        font-size: 2em;
      }
      .page-3wingame__why-us-item {
        flex: 1 1 calc(50% - 20px);
        max-width: 45%;
      }
    }

    @media (max-width: 768px) {
      .page-3wingame__hero-section {
        padding-top: 150px !important; /* Ensure safe zone for mobile */
      }
      .page-3wingame__hero-title {
        font-size: 2.5em;
      }
      .page-3wingame__hero-description {
        font-size: 1.1em;
      }
      .page-3wingame__section-title {
        font-size: 1.8em;
      }
      .page-3wingame__section-subtitle {
        font-size: 1em;
      }
      .page-3wingame__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-3wingame__game-categories-grid,
      .page-3wingame__promotions-grid,
      .page-3wingame__providers-grid {
        grid-template-columns: 1fr;
        padding: 15px;
      }
      .page-3wingame__game-card-image-wrapper,
      .page-3wingame__promo-card-image-wrapper {
        height: 180px;
      }
      .page-3wingame__why-us-item {
        flex: 1 1 100%;
        max-width: 100%;
      }
      .page-3wingame__faq-question {
        padding: 15px 20px;
      }
      .page-3wingame__faq-question h3 {
        font-size: 1em;
      }
      .page-3wingame__faq-answer {
        padding: 0 20px;
      }
      .page-3wingame__faq-item.active .page-3wingame__faq-answer {
        padding: 15px 20px !important;
      }
      .page-3wingame__final-cta-title {
        font-size: 1.8em;
      }
      .page-3wingame__final-cta-description {
        font-size: 1em;
      }
      .page-3wingame__floating-cta {
        padding: 10px 15px;
        font-size: 0.95em;
        bottom: 15px;
        right: 15px;
      }
      /* Image responsiveness for mobile */
      .page-3wingame__hero-image,
      .page-3wingame__game-card-image,
      .page-3wingame__promo-card-image,
      .page-3wingame__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-3wingame__hero-image-wrapper,
      .page-3wingame__game-card-image-wrapper,
      .page-3wingame__promo-card-image-wrapper,
      .page-3wingame__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-3wingame__hero-title {
        font-size: 2em;
      }
      .page-3wingame__section-title {
        font-size: 1.5em;
      }
      .page-3wingame__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-3wingame__floating-cta {
        font-size: 0.85em;
        padding: 8px 12px;
        bottom: 10px;
        right: 10px;
      }
      .page-3wingame__faq-question h3 {
        font-size: 0.95em;
      }
    }
  