
    /* Page-specific CSS for 6f-game */
    .page-6f-game {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body already has offset */
    }

    .page-6f-game__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-6f-game__section {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      padding: 30px;
      text-align: center;
    }

    .page-6f-game__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 60px 20px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-6f-game__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #ffcc00; /* Accent color for title */
    }

    .page-6f-game__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-6f-game__cta-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-6f-game__button {
      background-color: #ffcc00;
      color: #333;
      padding: 15px 30px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-6f-game__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-6f-game__image-full-width {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 20px 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .page-6f-game__heading {
      font-size: 2.5em;
      color: #007bff;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-6f-game__sub-heading {
      font-size: 1.8em;
      color: #333;
      margin-top: 20px;
      margin-bottom: 15px;
    }

    .page-6f-game__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: left;
    }

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

    .page-6f-game__product-card {
      background-color: #f9f9f9;
      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: 20px;
    }

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

    .page-6f-game__product-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .page-6f-game__product-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-6f-game__product-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-6f-game__list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .page-6f-game__list-item {
      background-color: #eaf6ff;
      border-left: 5px solid #007bff;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      font-size: 1.05em;
      color: #333;
      display: flex;
      align-items: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-6f-game__list-item::before {
      content: '✓';
      color: #007bff;
      font-weight: bold;
      margin-right: 10px;
    }

    .page-6f-game__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
    }

    .page-6f-game__provider-item {
      text-align: center;
      padding: 15px;
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
    }

    .page-6f-game__provider-item:hover {
      transform: scale(1.05);
    }

    .page-6f-game__provider-logo {
      max-width: 100%;
      height: 80px; /* Fixed height for logos */
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-6f-game__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-6f-game__payment-item {
      text-align: center;
      padding: 15px;
      background-color: #f0fff0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
    }

    .page-6f-game__payment-item:hover {
      transform: scale(1.05);
    }

    .page-6f-game__payment-logo {
      max-width: 100%;
      height: 60px; /* Fixed height for payment logos */
      object-fit: contain;
      margin-bottom: 8px;
    }

    /* FAQ Section Styles */
    .page-6f-game__faq-section {
      text-align: left;
    }

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

    .page-6f-game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease;
    }

    .page-6f-game__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #fff; /* Ensure contrast */
    }

    .page-6f-game__faq-question:hover {
      background-color: #0056b3;
    }

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

    .page-6f-game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #f9f9f9;
      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; /* Ensure contrast */
    }

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

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

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-6f-game__container {
        padding: 15px;
      }

      .page-6f-game__hero-title {
        font-size: 2.2em;
      }

      .page-6f-game__hero-subtitle {
        font-size: 1.2em;
      }

      .page-6f-game__cta-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-6f-game__button {
        width: 100%;
        padding: 12px 20px;
      }

      .page-6f-game__heading {
        font-size: 2em;
      }

      .page-6f-game__sub-heading {
        font-size: 1.5em;
      }

      .page-6f-game__text-content {
        font-size: 1em;
      }

      .page-6f-game__product-grid,
      .page-6f-game__provider-grid,
      .page-6f-game__payment-grid {
        grid-template-columns: 1fr;
      }

      .page-6f-game__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-6f-game__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-6f-game__product-image,
      .page-6f-game__provider-logo,
      .page-6f-game__payment-logo,
      .page-6f-game__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

      .page-6f-game__faq-answer {
        padding: 0 15px;
      }

      .page-6f-game__faq-item.active .page-6f-game__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-6f-game__hero-title {
        font-size: 1.8em;
      }
      .page-6f-game__hero-subtitle {
        font-size: 1em;
      }
      .page-6f-game__heading {
        font-size: 1.8em;
      }
      .page-6f-game__sub-heading {
        font-size: 1.3em;
      }
    }
  