
    :root {
      --primary-color: #e44d26; /* Orange-red for action */
      --secondary-color: #333;
      --text-color: #f5f5f5; /* Light text for dark backgrounds */
      --bg-color: #1a1a1a; /* Dark background */
      --accent-color: #ffd700; /* Gold for highlights */
      --button-bg-register: #4CAF50; /* Green */
      --button-bg-login: #2196F3; /* Blue */
    }

    .page-hero123 {
      font-family: 'Arial', sans-serif;
      background-color: var(--bg-color);
      color: var(--text-color);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
    }

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

    .page-hero123__hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:online_betting,casino,vietnam]');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      position: relative;
    }

    .page-hero123__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      line-height: 1.2;
    }

    .page-hero123__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-hero123__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .page-hero123__cta-button:hover {
      background-color: #ff6a00;
    }

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

    .page-hero123__floating-button {
      padding: 12px 20px;
      border-radius: 50px;
      color: #fff;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.4);
      transition: transform 0.2s ease, background-color 0.3s ease;
      min-width: 120px;
      white-space: nowrap;
    }

    .page-hero123__floating-button--register {
      background-color: var(--button-bg-register);
    }

    .page-hero123__floating-button--login {
      background-color: var(--button-bg-login);
    }

    .page-hero123__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-hero123__heading {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--accent-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-hero123__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

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

    .page-hero123__product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0,0,0,0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-hero123__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.7);
    }

    .page-hero123__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-hero123__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      min-height: 200px; /* Ensure minimum height for image */
    }

    .page-hero123__product-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .page-hero123__product-title {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 10px;
      flex-grow: 1;
    }

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

    .page-hero123__learn-more {
      display: block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
      margin-top: auto;
    }

    .page-hero123__learn-more:hover {
      background-color: #ff6a00;
    }

    .page-hero123__promo-section {
      background-color: #222;
    }

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

    .page-hero123__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.5);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-hero123__promo-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .page-hero123__promo-description {
      color: #ccc;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-hero123__faq-section {
      background-color: var(--bg-color);
    }

    .page-hero123__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-hero123__faq-item {
      margin-bottom: 15px;
      border: 1px solid #333;
      border-radius: 8px;
      overflow: hidden;
      background-color: #2a2a2a;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .page-hero123__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      color: var(--accent-color);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-hero123__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-hero123__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit within the question div */
      color: inherit;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-hero123__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

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

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

    .page-hero123__info-section {
      background-color: #222;
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-hero123__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-hero123__info-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      padding: 25px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-hero123__info-icon {
      width: 400px;
      height: 300px;
      margin-bottom: 15px;
      border-radius: 5px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-hero123__info-title {
      font-size: 1.4em;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .page-hero123__info-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-hero123__hero-title {
        font-size: 3em;
      }
      .page-hero123__hero-subtitle {
        font-size: 1.3em;
      }
      .page-hero123__heading {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-hero123__hero-section {
        padding: 60px 15px;
        min-height: 50vh;
      }
      .page-hero123__hero-title {
        font-size: 2.5em;
      }
      .page-hero123__hero-subtitle {
        font-size: 1.2em;
      }
      .page-hero123__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-hero123__section {
        padding: 30px 15px;
      }
      .page-hero123__heading {
        font-size: 2em;
      }

      .page-hero123__product-grid, .page-hero123__promo-grid, .page-hero123__info-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 20px;
      }

      .page-hero123__product-card, .page-hero123__promo-card, .page-hero123__info-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-hero123__product-image-wrapper, .page-hero123__info-icon {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: auto;
      }

      .page-hero123__product-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        object-fit: cover;
      }

      .page-hero123__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-hero123__faq-answer {
        padding: 15px !important;
      }

      .page-hero123__floating-buttons {
        flex-direction: row;
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        right: unset;
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-hero123__floating-button {
        flex: 1;
        margin: 0 5px; /* Adjust spacing between buttons */
        min-width: unset;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-hero123__product-description, .page-hero123__promo-description, .page-hero123__info-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-hero123__hero-title {
        font-size: 2em;
      }
      .page-hero123__hero-subtitle {
        font-size: 1em;
      }
      .page-hero123__heading {
        font-size: 1.8em;
      }
      .page-hero123__floating-buttons {
        width: calc(100% - 20px);
        bottom: 10px;
      }
      .page-hero123__floating-button {
        padding: 8px 10px;
        font-size: 0.8em;
      }
    }
  