
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, common in gaming/betting */
      --secondary-color: #333; /* Dark grey for text */
      --accent-color: #f7b731; /* Golden yellow for highlights */
      --background-light: #f8f8f8; /* Light grey background */
      --background-dark: #222; /* Dark background for contrast sections */
      --text-light: #fff;
      --text-dark: #333;
      --border-color: #eee;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --shadow-dark: rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--background-light);
      padding-top: 10px; /* Decorative padding, relying on body padding-top for header offset */
    }

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

    /* Hero Section */
    .page-8k8-com-2__hero-section {
      position: relative;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      color: var(--text-light);
      padding: 80px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 15px;
      margin-bottom: 40px;
      box-shadow: 0 10px 20px var(--shadow-dark);
    }

    .page-8k8-com-2__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-8k8-com-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      line-height: 1.2;
      color: var(--text-light); /* Ensure high contrast */
    }

    .page-8k8-com-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-light); /* Ensure high contrast */
    }

    .page-8k8-com-2__hero-button {
      display: inline-block;
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px var(--shadow-dark);
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-8k8-com-2__hero-button:hover {
      background-color: #555;
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-8k8-com-2__section {
      background-color: var(--text-light);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--shadow-light);
    }

    .page-8k8-com-2__section--dark {
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--shadow-dark);
    }

    .page-8k8-com-2__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-com-2__section-title--dark {
      color: var(--accent-color);
    }

    .page-8k8-com-2__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com-2__section-title--dark::after {
      background-color: var(--accent-color);
    }

    .page-8k8-com-2__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto 30px;
      text-align: center;
    }

    .page-8k8-com-2__text-content--dark {
      color: var(--text-light);
    }

    /* Features Grid */
    .page-8k8-com-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-2__feature-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px var(--shadow-light);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%; /* Ensure cards are same height */
      box-sizing: border-box;
    }

    .page-8k8-com-2__section--dark .page-8k8-com-2__feature-card {
      background-color: #3a3a3a;
      box-shadow: 0 2px 8px var(--shadow-dark);
    }

    .page-8k8-com-2__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--shadow-light);
    }

    .page-8k8-com-2__section--dark .page-8k8-com-2__feature-card:hover {
      box-shadow: 0 8px 20px var(--shadow-dark);
    }

    .page-8k8-com-2__feature-icon {
      width: 200px; /* Enforce minimum size */
      height: 200px; /* Enforce minimum size */
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 8px; /* Slightly rounded corners */
    }

    .page-8k8-com-2__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-2__section--dark .page-8k8-com-2__feature-title {
      color: var(--accent-color);
    }

    .page-8k8-com-2__feature-description {
      font-size: 1em;
      color: var(--secondary-color);
      flex-grow: 1; /* Allows description to take up available space */
    }

    .page-8k8-com-2__section--dark .page-8k8-com-2__feature-description {
      color: var(--text-light);
    }

    /* Game Providers Section */
    .page-8k8-com-2__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ensure min width for images */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8-com-2__provider-logo {
      width: 200px; /* Minimum 200px requirement */
      height: 120px; /* Maintain aspect ratio or adjust, ensure min 200px height if possible, but 120px is for logo style */
      object-fit: contain;
      padding: 15px;
      background-color: var(--background-light);
      border-radius: 8px;
      box-shadow: 0 2px 5px var(--shadow-light);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }
    .page-8k8-com-2__provider-logo:hover {
      transform: scale(1.05);
    }
    .page-8k8-com-2__section--dark .page-8k8-com-2__provider-logo {
      background-color: #3a3a3a;
      box-shadow: 0 2px 5px var(--shadow-dark);
    }

    /* Payment Methods */
    .page-8k8-com-2__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-2__payment-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 15px 25px;
      background-color: var(--background-light);
      border-radius: 50px;
      box-shadow: 0 2px 5px var(--shadow-light);
      font-weight: bold;
      color: var(--secondary-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-2__section--dark .page-8k8-com-2__payment-item {
      background-color: #3a3a3a;
      color: var(--text-light);
      box-shadow: 0 2px 5px var(--shadow-dark);
    }

    .page-8k8-com-2__payment-item:hover {
      background-color: var(--border-color);
    }
    .page-8k8-com-2__section--dark .page-8k8-com-2__payment-item:hover {
      background-color: #555;
    }

    .page-8k8-com-2__payment-icon {
      width: 200px; /* Minimum 200px requirement */
      height: 200px; /* Minimum 200px requirement */
      object-fit: contain;
    }

    /* Call to Action */
    .page-8k8-com-2__cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
      color: var(--text-light);
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px var(--shadow-dark);
    }

    .page-8k8-com-2__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
      color: var(--text-light); /* Ensure high contrast */
    }

    .page-8k8-com-2__cta-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-light); /* Ensure high contrast */
    }

    .page-8k8-com-2__cta-button {
      display: inline-block;
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px var(--shadow-dark);
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-8k8-com-2__cta-button:hover {
      background-color: #555;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-8k8-com-2__faq-section {
      background-color: var(--text-light);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--shadow-light);
    }

    .page-8k8-com-2__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-8k8-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-2__faq-question:hover {
      background-color: var(--border-color);
    }

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-8k8-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--secondary-color);
      background-color: var(--text-light);
    }

    .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8k8-com-2__faq-answer p {
      margin-bottom: 10px;
      font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-2__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-2__section-title {
        font-size: 2em;
      }
      .page-8k8-com-2__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-com-2__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-2__container {
        padding: 15px;
      }
      .page-8k8-com-2__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-com-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-2__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-2__section,
      .page-8k8-com-2__section--dark,
      .page-8k8-com-2__cta-section,
      .page-8k8-com-2__faq-section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }
      .page-8k8-com-2__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-2__text-content {
        font-size: 1em;
      }

      /* List item responsiveness */
      .page-8k8-com-2__features-grid,
      .page-8k8-com-2__providers-grid,
      .page-8k8-com-2__payment-methods {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-2__feature-card,
      .page-8k8-com-2__provider-logo,
      .page-8k8-com-2__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid too much spacing */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-2__feature-icon,
      .page-8k8-com-2__provider-logo,
      .page-8k8-com-2__payment-icon {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-com-2__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-2__cta-description {
        font-size: 1em;
      }
      .page-8k8-com-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-2__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-8k8-com-2__faq-answer {
        padding: 15px !important;
      }
      .page-8k8-com-2__faq-question h3 {
        font-size: 1em; /* Adjust h3 size within FAQ */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-2__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-2__cta-title {
        font-size: 1.6em;
      }
    }
  