
    /* Base styles for the page */
    .page-8k8-com-4 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Dark background */
      color: #e0e0e0; /* Light text for contrast */
      line-height: 1.6;
      padding-top: 10px; /* Small top padding for visual separation from header */
      box-sizing: border-box;
    }

    /* Section styling */
    .page-8k8-com-4__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #2a2a4a; /* Slightly lighter dark background for sections */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-com-4__section:last-of-type {
      margin-bottom: 0;
    }

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

    /* Headings */
    .page-8k8-com-4 h1,
    .page-8k8-com-4 h2,
    .page-8k8-com-4 h3 {
      color: #ffcc00; /* Accent color for headings */
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-8k8-com-4 h1 {
      font-size: 2.8em;
      margin-bottom: 30px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-4 h2 {
      font-size: 2.2em;
      margin-top: 40px;
    }

    .page-8k8-com-4 h3 {
      font-size: 1.8em;
    }

    /* Paragraphs */
    .page-8k8-com-4 p {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Buttons (no links) */
    .page-8k8-com-4__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffcc00; /* Accent color */
      color: #1a1a2e; /* Dark text on accent */
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-4__button:hover {
      background-color: #e6b800; /* Slightly darker accent on hover */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-com-4__hero-section {
      text-align: center;
      padding: 60px 20px 80px;
      background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
      border-radius: 0; /* No rounded corners for hero */
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-4__hero-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-4__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-top: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      object-fit: cover;
    }

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

    .page-8k8-com-4__game-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8k8-com-4__game-card:hover {
      transform: translateY(-5px);
      background-color: #4a4a6a;
    }

    .page-8k8-com-4__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-8k8-com-4__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
    }

    .page-8k8-com-4__game-card h3 {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #ffcc00;
    }

    .page-8k8-com-4__game-card p {
      font-size: 0.95em;
      color: #c0c0d0;
      flex-grow: 1;
      text-align: center;
    }

    /* Promotions Section */
    .page-8k8-com-4__promo-item {
      display: flex;
      align-items: center;
      background-color: #3a3a5a;
      border-radius: 10px;
      margin-bottom: 25px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .page-8k8-com-4__promo-image-wrapper {
      flex: 0 0 250px;
      max-width: 250px;
      margin-right: 25px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-4__promo-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-8k8-com-4__promo-content {
      flex-grow: 1;
      min-width: 280px; /* Ensure content doesn't get too narrow */
    }

    .page-8k8-com-4__promo-content h3 {
      text-align: left;
      margin-top: 0;
      margin-bottom: 10px;
      color: #ffcc00;
    }

    .page-8k8-com-4__promo-content p {
      font-size: 0.95em;
      color: #c0c0d0;
      margin-bottom: 15px;
      text-align: left;
    }

    /* Why Choose Us Section */
    .page-8k8-com-4__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-com-4__feature-item {
      background-color: #3a3a5a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-4__feature-item-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-8k8-com-4__feature-item-image {
      width: 100%;
      height: 150px; /* Fixed height for feature images */
      object-fit: cover;
      border-radius: 8px;
    }

    .page-8k8-com-4__feature-item h3 {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #ffcc00;
    }

    .page-8k8-com-4__feature-item p {
      font-size: 0.9em;
      color: #c0c0d0;
      flex-grow: 1;
      text-align: center;
    }

    /* FAQ Section */
    .page-8k8-com-4__faq-list {
      margin-top: 30px;
    }

    .page-8k8-com-4__faq-item {
      background-color: #3a3a5a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #4a4a6a;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-4__faq-question:hover {
      background-color: #5a5a7a;
    }

    .page-8k8-com-4__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-8k8-com-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question */
      background-color: #3a3a5a;
      color: #c0c0d0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    /* Call to Action Section */
    .page-8k8-com-4__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #1a1a2e;
      border-radius: 0;
      box-sizing: border-box;
    }

    .page-8k8-com-4__cta-section h2 {
      color: #ffcc00;
      margin-bottom: 25px;
    }

    .page-8k8-com-4__cta-section p {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-4 h1 {
        font-size: 2.2em;
      }

      .page-8k8-com-4 h2 {
        font-size: 1.8em;
      }

      .page-8k8-com-4 h3 {
        font-size: 1.4em;
      }

      .page-8k8-com-4__section {
        padding: 30px 15px;
      }

      .page-8k8-com-4__hero-section {
        padding: 40px 15px 60px;
      }

      .page-8k8-com-4__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-4__game-card {
        padding: 20px;
      }

      .page-8k8-com-4__game-card-image-wrapper,
      .page-8k8-com-4__game-card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-4__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
      }

      .page-8k8-com-4__promo-image-wrapper {
        flex: none;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-com-4__promo-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-4__promo-content h3,
      .page-8k8-com-4__promo-content p {
        text-align: center;
      }

      .page-8k8-com-4__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-4__feature-item {
        padding: 20px;
      }

      .page-8k8-com-4__feature-item-image-wrapper,
      .page-8k8-com-4__feature-item-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

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

      .page-8k8-com-4__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-4__button {
        width: 100%;
        padding: 15px 20px;
      }
    }

    /* Ensure all list items and images are responsive */
    .page-8k8-com-4 ul,
    .page-8k8-com-4 ol {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-4 ul li,
    .page-8k8-com-4 ol li {
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-com-4 img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    @media (max-width: 768px) {
      .page-8k8-com-4 ul li,
      .page-8k8-com-4 ol li {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-4__container {
        padding: 0 10px; /* Further reduce padding on very small screens */
      }
    }
  