
    /* Tổng quan */
    .page-3winvip {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    .page-3winvip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-3winvip__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #1a1a1a;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-3winvip__section--dark {
      background-color: #0d0d0d;
    }

    .page-3winvip__title {
      font-size: 2.5em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-3winvip__subtitle {
      font-size: 1.8em;
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-3winvip__text {
      font-size: 1.1em;
      color: #CCCCCC;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-3winvip__text strong {
      color: #FFD700;
    }

    .page-3winvip__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

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

    /* Hero Section */
    .page-3winvip__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      padding-top: 10px; /* Safe zone for fixed header */
      background-color: #000000; /* Ensure black background behind banner */
    }

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

    .page-3winvip__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-3winvip__hero-content {
      padding: 0 20px 40px;
    }

    .page-3winvip__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-3winvip__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Floating Login/Register Button */
    .page-3winvip__floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 10px 0;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
    }

    .page-3winvip__floating-cta-text {
      color: #FFD700;
      font-size: 1.1em;
      font-weight: bold;
      margin-right: 10px;
    }

    .page-3winvip__floating-cta .page-3winvip__button {
      padding: 10px 20px;
      font-size: 1em;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

    /* Game Categories */
    .page-3winvip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-3winvip__game-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-3winvip__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    }

    .page-3winvip__game-link {
      text-decoration: none;
      color: inherit;
    }

    .page-3winvip__game-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: #1a1a1a;
    }

    .page-3winvip__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image fits without cropping */
    }

    .page-3winvip__game-content {
      padding: 15px;
    }

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

    .page-3winvip__game-description {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-3winvip__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 2px solid #FFD700;
    }

    .page-3winvip__promo-card h3 {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-3winvip__promo-card p {
      color: #FFFFFF;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-3winvip__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
      border-radius: 8px;
    }

    .page-3winvip__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* Game Providers */
    .page-3winvip__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-3winvip__provider-logo-wrapper {
      width: 120px; /* Fixed width for logos */
      height: 60px; /* Fixed height for logos */
      background-color: #2a2a2a;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

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

    .page-3winvip__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-3winvip__faq-list {
      margin-top: 30px;
    }

    .page-3winvip__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-3winvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      color: #FFD700;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-3winvip__faq-question:hover {
      background-color: #444444;
    }

    .page-3winvip__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em; /* Adjusted for better fit with toggle */
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-3winvip__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }
    
    .page-3winvip__faq-item.active .page-3winvip__faq-toggle {
      transform: rotate(45deg); /* Example for X-like rotation */
    }
    .page-3winvip__faq-item.active .page-3winvip__faq-toggle::before {
        content: "−"; /* Change + to - when active */
    }
    .page-3winvip__faq-item:not(.active) .page-3winvip__faq-toggle::before {
        content: "+"; /* Keep + when not active */
    }

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

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

    .page-3winvip__faq-answer p {
      margin: 0;
    }

    /* Benefits Section */
    .page-3winvip__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-3winvip__benefit-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-3winvip__benefit-card:hover {
      transform: translateY(-5px);
    }

    .page-3winvip__benefit-icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px;
      background-color: #FFD700;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .page-3winvip__benefit-icon {
      max-width: 70%;
      max-height: 70%;
      height: auto;
      display: block;
      object-fit: contain;
    }


    .page-3winvip__benefit-card h3 {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-3winvip__benefit-card p {
      color: #CCCCCC;
      font-size: 1em;
    }

    /* Call to Action Section */
    .page-3winvip__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #0d0d0d;
      border-radius: 8px;
    }

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

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-3winvip__container {
        padding: 10px;
      }

      .page-3winvip__section {
        padding: 30px 15px;
      }

      .page-3winvip__title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-3winvip__subtitle {
        font-size: 1.5em;
        margin-bottom: 15px;
      }

      .page-3winvip__text {
        font-size: 1em;
      }

      .page-3winvip__hero-section {
        padding-top: 10px; /* Safe zone for fixed header on mobile */
      }

      .page-3winvip__hero-title {
        font-size: 2.2em;
      }

      .page-3winvip__hero-description {
        font-size: 1.1em;
      }

      .page-3winvip__floating-cta {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
      }

      .page-3winvip__floating-cta-text {
        font-size: 1em;
        margin-right: 0;
      }

      .page-3winvip__floating-cta .page-3winvip__button {
        padding: 8px 15px;
        font-size: 0.9em;
        width: 80%; /* Make buttons wider on mobile */
        max-width: 250px;
      }

      .page-3winvip__game-grid,
      .page-3winvip__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-3winvip__game-image-wrapper {
        height: 180px;
      }

      .page-3winvip__game-title {
        font-size: 1.2em;
      }

      .page-3winvip__promo-card h3 {
        font-size: 1.5em;
      }

      .page-3winvip__promo-card p {
        font-size: 1em;
      }

      .page-3winvip__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }

      .page-3winvip__provider-logo-wrapper {
        width: 100px;
        height: 50px;
      }

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

      .page-3winvip__faq-question h3 {
        font-size: 1em;
      }

      .page-3winvip__faq-toggle {
        font-size: 1.3em;
      }

      .page-3winvip__faq-answer {
        padding: 15px !important; /* Ensure padding is correct for active state */
        font-size: 0.95em;
      }

      .page-3winvip__cta-title {
        font-size: 1.8em;
      }

      .page-3winvip__cta-description {
        font-size: 1em;
      }

      /* Image responsive forcing */
      .page-3winvip img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-3winvip__hero-image-wrapper,
      .page-3winvip__game-image-wrapper,
      .page-3winvip__promo-image-wrapper,
      .page-3winvip__provider-logo-wrapper,
      .page-3winvip__benefit-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-3winvip__provider-logo-wrapper {
        width: 100px !important; /* Specific size for logos */
        max-width: 100px !important;
      }
      .page-3winvip__benefit-icon-wrapper {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }
    }
  