
    .page-g-online {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-g-online__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-g-online__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-g-online__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #e74c3c; /* Red for emphasis */
      font-weight: bold;
    }

    .page-g-online__section-title--light {
      color: #f39c12; /* Orange for light background */
    }

    .page-g-online__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #666;
    }

    .page-g-online__section-subtitle--light {
      color: #bdc3c7;
    }

    .page-g-online__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-g-online__text-content p {
      margin-bottom: 15px;
    }

    /* Hero Section */
    .page-g-online__hero-section {
      padding: 10px 20px 60px; /* 10px top padding as per instruction */
      background-image: url('[GALLERY:hero:1920x1080:cockfighting,online_betting,vietnam]');
      background-size: cover;
      background-position: center;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-g-online__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #f39c12;
      text-transform: uppercase;
    }

    .page-g-online__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-g-online__button {
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-g-online__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Product Display */
    .page-g-online__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-g-online__product-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

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

    .page-g-online__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-g-online__product-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-g-online__product-content {
      padding: 25px;
    }

    .page-g-online__product-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: #e74c3c;
    }

    .page-g-online__product-description {
      font-size: 1em;
      color: #555;
    }

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

    .page-g-online__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-g-online__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-g-online__feature-icon {
      width: 100%;
      height: auto;
      max-width: 250px;
      display: block;
      margin: 0 auto;
    }

    .page-g-online__feature-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
      text-align: center;
    }

    .page-g-online__feature-description {
      font-size: 1em;
      color: #555;
      text-align: center;
    }

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

    .page-g-online__floating-button {
      background-color: #f39c12; /* Orange */
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      font-weight: bold;
    }

    .page-g-online__floating-button--register {
      background-color: #27ae60; /* Green for Register */
    }

    .page-g-online__floating-button--register:hover {
      background-color: #229a56;
      transform: translateY(-2px);
    }

    .page-g-online__floating-button--login {
      background-color: #3498db; /* Blue for Login */
    }

    .page-g-online__floating-button--login:hover {
      background-color: #2a8bd1;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-g-online__faq-container {
      max-width: 800px;
      margin: 30px auto;
      text-align: left;
    }

    .page-g-online__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-g-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #e74c3c;
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-g-online__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: inherit;
    }

    .page-g-online__faq-question:hover {
      background-color: #c0392b;
    }

    .page-g-online__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-g-online__faq-item.active .page-g-online__faq-toggle {
      transform: rotate(45deg);
    }

    .page-g-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fcfcfc;
      color: #333;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-g-online__hero-title {
        font-size: 2.5em;
      }

      .page-g-online__hero-subtitle {
        font-size: 1.3em;
      }

      .page-g-online__section-title {
        font-size: 2em;
      }

      .page-g-online__section {
        padding: 30px 15px;
      }

      .page-g-online__product-grid, .page-g-online__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-g-online__product-item, .page-g-online__feature-item {
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
      }

      .page-g-online__feature-icon-wrapper,
      .page-g-online__product-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-g-online__feature-icon,
      .page-g-online__product-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-g-online__text-content {
        font-size: 1em;
      }

      .page-g-online__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-g-online__faq-answer {
        padding: 0 20px;
      }

      .page-g-online__faq-item.active .page-g-online__faq-answer {
        padding: 15px 20px !important;
      }

      .page-g-online__floating-buttons {
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
        justify-content: space-around;
        gap: 10px;
      }

      .page-g-online__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-g-online__hero-title {
        font-size: 2em;
      }
      .page-g-online__hero-subtitle {
        font-size: 1.1em;
      }
      .page-g-online__floating-button {
        font-size: 0.9em;
        padding: 8px 10px;
      }
    }
  