
    /* Base styles for the page */
    .page-8k8-8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-8__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-8__section:nth-of-type(even) {
      background-color: #fff;
    }

    .page-8k8-8__heading {
      font-size: 2.8em;
      color: #0056b3;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-8__subheading {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-8k8-8__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Hero Section */
    .page-8k8-8__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,gaming,8k8,promotions]') no-repeat center center/cover;
      color: #fff;
      padding: 10px 0 100px 0; /* 10px top padding to avoid double header offset, 100px bottom for content */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      text-align: center;
    }

    .page-8k8-8__hero-content {
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-8__hero-title {
      font-size: 4em;
      margin-bottom: 20px;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #ffc107; /* Gold/Yellow for prominence */
    }

    .page-8k8-8__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      color: #e0e0e0;
    }

    .page-8k8-8__call-to-action-button {
      display: inline-block;
      background-color: #28a745; /* Green for action */
      color: #fff;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-8__call-to-action-button:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    /* Game Categories Section */
    .page-8k8-8__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-8__category-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-8__category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-8__category-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-8__category-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-8k8-8__category-card:hover .page-8k8-8__category-image {
      transform: scale(1.05);
    }

    .page-8k8-8__category-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-8__category-title {
      font-size: 1.6em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-8k8-8__category-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-8k8-8__promotions-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8k8-8__promotion-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-8__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-8__promotion-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-8__promotion-description {
      color: #555;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Payment and Providers Section */
    .page-8k8-8__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-8__logo-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      box-sizing: border-box;
    }

    .page-8k8-8__logo-image {
      max-width: 100%;
      max-height: 80px;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Why Choose Us Section */
    .page-8k8-8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-8__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: left;
      box-sizing: border-box;
    }

    .page-8k8-8__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-8k8-8__feature-description {
      color: #555;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-8__faq-section {
      text-align: left;
    }

    .page-8k8-8__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      list-style: none;
    }

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

    .page-8k8-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e9f5ff;
      color: #0056b3;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-8__faq-question:hover {
      background-color: #d0e8ff;
    }

    .page-8k8-8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-8__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-8__faq-item.active .page-8k8-8__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or equivalent */
    }

    .page-8k8-8__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;
      color: #444;
      font-size: 1em;
    }

    .page-8k8-8__faq-item.active .page-8k8-8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-8__hero-title {
        font-size: 3em;
      }
      .page-8k8-8__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-8__heading {
        font-size: 2.2em;
      }
      .page-8k8-8__subheading {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-8__container {
        padding: 15px;
      }
      .page-8k8-8__section {
        padding: 40px 0;
      }
      .page-8k8-8__hero-section {
        min-height: 450px;
        padding-bottom: 60px;
      }
      .page-8k8-8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-8__hero-description {
        font-size: 1em;
      }
      .page-8k8-8__call-to-action-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-8__heading {
        font-size: 1.8em;
      }
      .page-8k8-8__subheading {
        font-size: 1.3em;
      }
      .page-8k8-8__paragraph {
        font-size: 1em;
      }

      /* List items mobile responsive */
      .page-8k8-8__game-categories,
      .page-8k8-8__promotions-list,
      .page-8k8-8__logo-grid,
      .page-8k8-8__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-8__category-card,
      .page-8k8-8__promotion-item,
      .page-8k8-8__logo-item,
      .page-8k8-8__feature-item,
      .page-8k8-8__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

      .page-8k8-8__category-image-wrapper,
      .page-8k8-8__logo-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-8__category-image {
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px; /* Limit height on mobile */
        object-fit: cover !important;
      }

      .page-8k8-8__faq-list {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-8__faq-question,
      .page-8k8-8__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-8k8-8__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-8__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-8__paragraph,
      .page-8k8-8__category-description,
      .page-8k8-8__promotion-description,
      .page-8k8-8__feature-description,
      .page-8k8-8__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-8__hero-title {
        font-size: 2em;
      }
      .page-8k8-8__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-8__heading {
        font-size: 1.5em;
      }
      .page-8k8-8__subheading {
        font-size: 1.1em;
      }
      .page-8k8-8__category-title,
      .page-8k8-8__promotion-title,
      .page-8k8-8__feature-title {
        font-size: 1.3em;
      }
    }
  