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

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

    .page-8k8-com-online__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      background-color: #2a2a2a;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-online__section--dark {
      background-color: #1a1a1a;
    }

    .page-8k8-com-online__heading {
      text-align: center;
      color: #ffcc00;
      margin-bottom: 40px;
      font-size: 2.8em;
      font-weight: bold;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }

    .page-8k8-com-online__subheading {
      text-align: center;
      color: #ffffff;
      margin-bottom: 30px;
      font-size: 2em;
      font-weight: bold;
    }

    .page-8k8-com-online__text {
      font-size: 1.1em;
      color: #cccccc;
      text-align: center;
      margin-bottom: 25px;
    }

    /* Hero Section */
    .page-8k8-com-online__hero-section {
      background: linear-gradient(135deg, #000000, #333333);
      color: #ffffff;
      padding: 10px 0 80px; /* Added 10px padding-top for header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-online__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-online__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-online__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00;
      text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-com-online__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    .page-8k8-com-online__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-8k8-com-online__button {
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-online__button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-8k8-com-online__button--secondary {
      background-color: #444444;
      color: #ffcc00;
    }

    .page-8k8-com-online__button--secondary:hover {
      background-color: #555555;
      color: #ffffff;
    }

    /* Features Section */
    .page-8k8-com-online__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-8k8-com-online__feature-item {
      background-color: #333333;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-online__feature-item:hover {
      transform: translateY(-5px);
      background-color: #444444;
    }

    .page-8k8-com-online__feature-title {
      color: #ffcc00;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-8k8-com-online__feature-description {
      color: #cccccc;
      font-size: 1em;
      word-wrap: break-word; /* Required for list items */
    }

    /* Games Section */
    .page-8k8-com-online__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-8k8-com-online__game-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-online__game-card:hover {
      transform: translateY(-8px);
    }

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

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

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

    .page-8k8-com-online__game-content {
      padding: 20px;
      text-align: center;
    }

    .page-8k8-com-online__game-title {
      color: #ffcc00;
      font-size: 1.4em;
      margin-bottom: 10px;
      word-wrap: break-word; /* Required for list items */
    }

    .page-8k8-com-online__game-description {
      color: #cccccc;
      font-size: 0.95em;
      word-wrap: break-word; /* Required for list items */
    }

    /* Promotions Section */
    .page-8k8-com-online__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-8k8-com-online__promo-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-online__promo-card:hover {
      transform: translateY(-8px);
    }

    .page-8k8-com-online__promo-image-wrapper {
      width: 100%;
      height: 220px; /* Fixed height for consistency */
      overflow: hidden;
    }

    .page-8k8-com-online__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-online__promo-content {
      padding: 20px;
      text-align: left;
    }

    .page-8k8-com-online__promo-title {
      color: #ffcc00;
      font-size: 1.5em;
      margin-bottom: 10px;
      word-wrap: break-word; /* Required for list items */
    }

    .page-8k8-com-online__promo-description {
      color: #cccccc;
      font-size: 1em;
      margin-bottom: 15px;
      word-wrap: break-word; /* Required for list items */
    }

    .page-8k8-com-online__promo-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-online__promo-button:hover {
      background-color: #e6b800;
    }

    /* Payment Methods Section */
    .page-8k8-com-online__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-online__payment-item {
      background-color: #333333;
      padding: 15px 25px;
      border-radius: 8px;
      color: #ffffff;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for list items */
    }

    /* FAQ Section */
    .page-8k8-com-online__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-com-online__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #444444;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-online__faq-question:hover {
      background-color: #555555;
    }

    .page-8k8-com-online__faq-question h3 {
      color: #ffcc00;
      font-size: 1.3em;
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word; /* Required for list items */
    }

    .page-8k8-com-online__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-com-online__faq-item.active .page-8k8-com-online__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or similar effect */
    }

    .page-8k8-com-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-online__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-online__heading {
        font-size: 2.5em;
      }
      .page-8k8-com-online__subheading {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-online__section {
        padding: 40px 15px;
      }

      .page-8k8-com-online__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-online__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-online__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-com-online__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-com-online__heading {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-com-online__subheading {
        font-size: 1.5em;
      }

      .page-8k8-com-online__text {
        font-size: 1em;
      }

      /* List item responsiveness for all grid/flex items */
      .page-8k8-com-online__features-grid,
      .page-8k8-com-online__games-grid,
      .page-8k8-com-online__promotions-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-online__feature-item,
      .page-8k8-com-online__game-card,
      .page-8k8-com-online__promo-card,
      .page-8k8-com-online__payment-item,
      .page-8k8-com-online__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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-8k8-com-online__payment-item {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-8k8-com-online__faq-question {
        padding: 15px 20px;
      }

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

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

      .page-8k8-com-online__faq-answer {
        padding: 15px 20px;
      }

      /* Image responsiveness */
      .page-8k8-com-online__hero-image,
      .page-8k8-com-online__game-image,
      .page-8k8-com-online__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-online__game-image-wrapper,
      .page-8k8-com-online__promo-image-wrapper {
        width: 100% !important;
        height: auto !important; /* Allow height to adjust naturally */
        max-height: 200px !important; /* Max height for smaller screens */
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-online__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-online__heading {
        font-size: 1.8em;
      }
      .page-8k8-com-online__subheading {
        font-size: 1.3em;
      }
      .page-8k8-com-online__button {
        width: 100%;
      }
      .page-8k8-com-online__faq-question h3 {
        font-size: 1em;
      }
    }
  