
    /* Tổng quan */
    .page-ga65 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 20px;
    }

    .page-ga65__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

    .page-ga65__section--dark {
      background-color: #222222;
    }

    .page-ga65__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Gold accent */
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ga65__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffd700;
    }

    .page-ga65__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    /* Hero Section */
    .page-ga65__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:ga65,betting,promo,banner]') no-repeat center center/cover;
      padding: 100px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top spacing */
    }

    .page-ga65__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-ga65__hero-title {
      font-size: 3.5em;
      color: #ffd700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ga65__hero-description {
      font-size: 1.4em;
      color: #ffffff;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-ga65__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for call to action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .page-ga65__cta-button:hover {
      background-color: #0056b3;
    }

    /* About Section */
    .page-ga65__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      text-align: left;
    }

    .page-ga65__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .page-ga65__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      object-fit: cover;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }

    .page-ga65__about-text-content {
      flex: 2;
      min-width: 300px;
    }

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

    .page-ga65__game-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-ga65__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-ga65__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #ffd700;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }

    .page-ga65__game-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-ga65__game-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Game Providers */
    .page-ga65__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-ga65__provider-item {
      background-color: #333333;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 1em;
      white-space: nowrap;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      max-width: 100%; /* For mobile responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-ga65__provider-item:hover {
      background-color: #444444;
    }

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

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

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

    .page-ga65__promo-title {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-ga65__promo-description {
      font-size: 1em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    /* Payment Methods */
    .page-ga65__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-ga65__payment-item {
      background-color: #333333;
      padding: 15px 25px;
      border-radius: 8px;
      color: #ffffff;
      font-size: 1.1em;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      max-width: 100%; /* For mobile responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-ga65__payment-item:hover {
      background-color: #444444;
    }

    /* Why Choose Section */
    .page-ga65__why-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: left;
    }

    .page-ga65__why-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
      max-width: 100%; /* For mobile responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-ga65__why-icon {
      color: #ffd700;
      font-size: 1.8em;
      line-height: 1;
    }

    .page-ga65__why-text {
      flex: 1;
      font-size: 1em;
      color: #cccccc;
    }

    /* FAQ Section */
    .page-ga65__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-ga65__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-ga65__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333333;
      color: #ffffff;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-ga65__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ga65__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: #ffd700;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-ga65__faq-item.active .page-ga65__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
    }

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

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

    .page-ga65__faq-answer p {
      margin: 0;
    }

    /* Floating buttons */
    .page-ga65__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-ga65__floating-button {
      background-color: #ffd700; /* Gold accent */
      color: #1a1a1a;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-ga65__hero-title {
        font-size: 3em;
      }
      .page-ga65__hero-description {
        font-size: 1.2em;
      }
      .page-ga65__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-ga65__hero-section {
        padding: 80px 0;
        min-height: 400px;
      }
      .page-ga65__hero-title {
        font-size: 2.5em;
      }
      .page-ga65__hero-description {
        font-size: 1.1em;
      }
      .page-ga65__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-ga65__section {
        padding: 30px 0;
      }
      .page-ga65__section-title {
        font-size: 1.8em;
      }
      .page-ga65__about-content {
        flex-direction: column;
        text-align: center;
      }
      .page-ga65__about-text-content {
        order: 2;
      }
      .page-ga65__about-image-wrapper {
        order: 1;
      }

      /* List item mobile responsiveness */
      .page-ga65__providers-list,
      .page-ga65__payment-grid,
      .page-ga65__why-list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-ga65__provider-item,
      .page-ga65__payment-item,
      .page-ga65__why-item {
        width: 95% !important; /* Adjust width to fit container with some padding */
        max-width: 95% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-ga65__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-ga65__faq-answer {
        padding: 0 15px;
      }
      .page-ga65__faq-item.active .page-ga65__faq-answer {
        padding: 15px !important;
      }

      .page-ga65__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-ga65__floating-button {
        padding: 10px 18px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-ga65__hero-title {
        font-size: 2em;
      }
      .page-ga65__hero-description {
        font-size: 1em;
      }
      .page-ga65__section-title {
        font-size: 1.5em;
      }
      .page-ga65__text {
        font-size: 1em;
      }
    }
  