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

    .page-clbgame__hero-section {
      position: relative;
      background-color: #0d1a26;
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Small padding-top as body handles header offset */
      overflow: hidden;
    }

    .page-clbgame__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-clbgame__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-clbgame__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__promo-button {
      display: inline-block;
      background-color: #e60000; /* Red for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-clbgame__promo-button:hover {
      background-color: #cc0000;
    }

    .page-clbgame__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      border-top: 1px solid #333;
    }

    .page-clbgame__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-clbgame__floating-button--register {
      background-color: #ffd700; /* Gold */
      color: #0d1a26;
    }

    .page-clbgame__floating-button--register:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-clbgame__floating-button--login {
      background-color: #e60000; /* Red */
      color: #fff;
    }

    .page-clbgame__floating-button--login:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

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

    .page-clbgame__section-title {
      font-size: 2.2em;
      color: #0d1a26;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-clbgame__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-items: center; /* Center items in the grid */
    }

    .page-clbgame__card {
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      max-width: 350px; /* Limit card width */
      width: 100%; /* Ensure responsiveness */
      box-sizing: border-box;
    }

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

    .page-clbgame__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-clbgame__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-clbgame__card-title {
      font-size: 1.5em;
      color: #0d1a26;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__card-button {
      display: inline-block;
      background-color: #0d1a26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: auto;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-clbgame__card-button:hover {
      background-color: #1a334d;
    }

    .page-clbgame__text-content {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 20px;
      text-align: justify;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
    }

    .page-clbgame__list-item {
      background-color: #f0f0f0;
      padding: 15px 20px;
      border-left: 5px solid #ffd700;
      border-radius: 5px;
      font-size: 1em;
      color: #333;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      word-wrap: break-word;
      overflow-wrap: break-word;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-clbgame__provider-logo {
      width: 150px;
      height: auto;
      margin: 10px;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
      object-fit: contain;
    }

    .page-clbgame__provider-logo:hover {
      filter: grayscale(0%);
    }

    .page-clbgame__payment-method-icon {
      width: 100px;
      height: auto;
      margin: 10px;
      max-width: 100%; /* Ensure responsiveness */
      object-fit: contain;
    }

    /* FAQ Styles */
    .page-clbgame__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-clbgame__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0d1a26;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__faq-question:hover {
      background-color: #1a334d;
    }

    .page-clbgame__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

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

    .page-clbgame__faq-item.active .page-clbgame__faq-question {
      background-color: #1a334d;
    }

    .page-clbgame__faq-item.active .page-clbgame__faq-toggle {
      content: '−';
    }

    .page-clbgame__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #0d1a26;
      color: #fff;
      margin-top: 20px;
      border-radius: 10px;
    }

    .page-clbgame__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffd700;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-clbgame__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-clbgame__hero-title {
        font-size: 2.5em;
      }
      .page-clbgame__section-title {
        font-size: 2em;
      }
      .page-clbgame__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-clbgame__hero-section {
        padding: 10px 15px 50px;
      }
      .page-clbgame__hero-title {
        font-size: 2em;
      }
      .page-clbgame__hero-subtitle {
        font-size: 1.1em;
      }
      .page-clbgame__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-clbgame__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }
      .page-clbgame__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-clbgame__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-clbgame__card {
        max-width: 100%; /* Ensure cards take full width on mobile */
      }
      .page-clbgame__list {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .page-clbgame__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-clbgame__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-clbgame__faq-answer {
        padding: 0 15px;
      }
      .page-clbgame__faq-item.active .page-clbgame__faq-answer {
        padding: 15px !important;
      }
      .page-clbgame__cta-title {
        font-size: 2em;
      }
      .page-clbgame__cta-description {
        font-size: 1.1em;
      }
      .page-clbgame__provider-logo, .page-clbgame__payment-method-icon {
        width: 120px;
      }
      .page-clbgame__text-content {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-clbgame__hero-title {
        font-size: 1.8em;
      }
      .page-clbgame__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
      .page-clbgame__section-title {
        font-size: 1.6em;
      }
      .page-clbgame__card-title {
        font-size: 1.3em;
      }
      .page-clbgame__cta-title {
        font-size: 1.8em;
      }
    }
  