
    /* CSS Styles for page-gamebet */
    .page-gamebet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-gamebet__hero-section {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height for banner */
      background-color: #0d47a1; /* Dark blue */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
    }

    .page-gamebet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7); /* Darken background image slightly */
      z-index: 1;
    }

    .page-gamebet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-gamebet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffe082; /* Light yellow */
    }

    .page-gamebet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e3f2fd; /* Light blue */
    }

    .page-gamebet__cta-button {
      display: inline-block;
      background-color: #ff5722; /* Orange */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-gamebet__cta-button:hover {
      background-color: #e64a19; /* Darker orange */
    }

    .page-gamebet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #f44336; /* Red */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

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

    .page-gamebet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-gamebet__intro-text {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.05em;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gamebet__section-title {
      font-size: 2em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-gamebet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ff5722;
      border-radius: 2px;
    }

    .page-gamebet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-gamebet__game-card {
      background-color: #f0f4f8;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

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

    .page-gamebet__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
    }

    .page-gamebet__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-gamebet__game-card:hover .page-gamebet__game-image {
      transform: scale(1.05);
    }

    .page-gamebet__game-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin: 15px 10px 10px;
      font-weight: bold;
    }

    .page-gamebet__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-gamebet__promo-section {
      background-color: #e3f2fd;
      padding: 50px 20px;
      text-align: center;
    }

    .page-gamebet__promo-title {
      font-size: 2.5em;
      color: #d32f2f;
      margin-bottom: 20px;
    }

    .page-gamebet__promo-text {
      font-size: 1.1em;
      color: #333;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gamebet__how-to-section {
      background-color: #f0f4f8;
      padding: 50px 20px;
    }

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

    .page-gamebet__step-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      position: relative;
    }

    .page-gamebet__step-number {
      font-size: 2.5em;
      color: #ff5722;
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

    .page-gamebet__step-title {
      font-size: 1.3em;
      color: #0d47a1;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-gamebet__step-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-gamebet__faq-section {
      background-color: #fff;
      padding: 50px 20px;
    }

    .page-gamebet__faq-list {
      max-width: 800px;
      margin: 30px auto 0;
    }

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

    .page-gamebet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0d47a1; /* Dark blue */
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-gamebet__faq-question:hover {
      background-color: #0b3c8f; /* Slightly darker blue */
    }

    .page-gamebet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-gamebet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

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

    .page-gamebet__conclusion-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-gamebet__conclusion-text {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 25px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-gamebet__hero-section {
        height: 300px;
        padding-top: 10px; /* Mobile padding for fixed header */
      }

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

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

      .page-gamebet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-gamebet__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }

      .page-gamebet__section {
        padding: 30px 15px;
      }

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

      .page-gamebet__intro-text {
        font-size: 1em;
      }

      .page-gamebet__game-grid {
        grid-template-columns: 1fr;
      }

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

      .page-gamebet__game-title {
        font-size: 1.3em;
      }

      .page-gamebet__game-description {
        font-size: 0.9em;
      }

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

      .page-gamebet__promo-text {
        font-size: 1em;
      }

      .page-gamebet__step-list {
        grid-template-columns: 1fr;
      }

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

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

      .page-gamebet__faq-answer {
        padding: 0 15px;
      }

      .page-gamebet__faq-item.active .page-gamebet__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive optimization for mobile */
      .page-gamebet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-gamebet .page-gamebet__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  