
    :root {
      --page-8k8-com-2__primary-color: #e50914; /* A vibrant red, common in gaming/casino */
      --page-8k8-com-2__secondary-color: #ffc107; /* Gold/yellow for highlights */
      --page-8k8-com-2__dark-background: #1a1a1a; /* Dark background */
      --page-8k8-com-2__light-text: #f0f0f0; /* Light text color */
      --page-8k8-com-2__medium-gray: #333333; /* Medium gray for cards/sections */
      --page-8k8-com-2__border-color: #444444;
      --page-8k8-com-2__header-offset-padding: 10px; /* Small padding for hero/first section, relying on body for main offset */
    }

    .page-8k8-com-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-com-2__light-text);
      background-color: var(--page-8k8-com-2__dark-background);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset if body padding not applied by system */
    }

    .page-8k8-com-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-2__section--dark {
      background-color: var(--page-8k8-com-2__medium-gray);
    }

    .page-8k8-com-2__hero-section {
      background-color: var(--page-8k8-com-2__dark-background);
      padding: var(--page-8k8-com-2__header-offset-padding) 20px 80px; /* Small padding top, relying on body for main header offset */
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-com-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 80px 0;
    }

    .page-8k8-com-2__hero-title {
      font-size: 3.5em;
      color: var(--page-8k8-com-2__primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-2__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-8k8-com-2__light-text);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-2__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-com-2__primary-color);
      color: var(--page-8k8-com-2__light-text);
      padding: 15px 40px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-2__cta-button:hover {
      background-color: #c40710; /* Darker red */
      transform: translateY(-2px);
    }

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

    .page-8k8-com-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-com-2__secondary-color);
      border-radius: 2px;
    }

    .page-8k8-com-2__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-2__card {
      background-color: var(--page-8k8-com-2__medium-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-8k8-com-2__border-color);
    }

    .page-8k8-com-2__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-com-2__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

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

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

    .page-8k8-com-2__card-content {
      padding: 25px;
    }

    .page-8k8-com-2__card-title {
      font-size: 1.6em;
      color: var(--page-8k8-com-2__secondary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-2__card-description {
      font-size: 0.95em;
      color: var(--page-8k8-com-2__light-text);
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-com-2__game-providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-com-2__provider-item {
      background-color: var(--page-8k8-com-2__medium-gray);
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: bold;
      color: var(--page-8k8-com-2__secondary-color);
      border: 1px solid var(--page-8k8-com-2__border-color);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: fit-content; /* Adjust width to content */
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-com-2__provider-item:hover {
      background-color: #4a4a4a;
      transform: translateY(-3px);
    }

    .page-8k8-com-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-com-2__payment-method-card {
      background-color: var(--page-8k8-com-2__medium-gray);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-8k8-com-2__border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-2__payment-method-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-2__payment-method-icon {
      width: 100px; /* Adjusted from smaller icon size */
      height: 100px; /* Adjusted from smaller icon size */
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-com-2__payment-method-name {
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-com-2__light-text);
    }

    /* FAQ Section */
    .page-8k8-com-2__faq-container {
      max-width: 800px;
      margin: 40px auto;
      text-align: left;
    }

    .page-8k8-com-2__faq-item {
      background-color: var(--page-8k8-com-2__medium-gray);
      border: 1px solid var(--page-8k8-com-2__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2c2c2c; /* Slightly lighter than main background */
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-2__faq-question:hover {
      background-color: #3a3a3a;
    }

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

    .page-8k8-com-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-com-2__secondary-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); /* Rotate + to X or - */
    }

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

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

    /* 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: 2.5em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-2 {
        padding-top: var(--header-offset, 100px); /* Adjust fallback for mobile header */
      }
      .page-8k8-com-2__hero-content {
        padding: 60px 0;
      }
      .page-8k8-com-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-2__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-8k8-com-2__section {
        padding: 40px 15px;
      }
      .page-8k8-com-2__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-8k8-com-2__text-content {
        font-size: 1em;
      }
      .page-8k8-com-2__grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }
      .page-8k8-com-2__card-title {
        font-size: 1.4em;
      }
      .page-8k8-com-2__game-providers-list {
        flex-direction: column; /* Stack provider items */
        align-items: center;
        gap: 15px;
      }
      .page-8k8-com-2__provider-item {
        width: 100% !important; /* List item responsive */
        max-width: 90% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-com-2__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Smaller cards */
        gap: 15px;
      }
      .page-8k8-com-2__payment-method-card {
        padding: 15px;
        box-sizing: border-box !important;
      }
      .page-8k8-com-2__payment-method-icon {
        width: 80px;
        height: 80px;
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com-2__payment-method-name {
        font-size: 1.1em;
      }
      .page-8k8-com-2__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-com-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-2__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-com-2__faq-answer {
        padding: 0 20px; /* Initial padding mobile */
      }
      .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-answer {
        padding: 15px 20px !important; /* Final padding mobile */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-2__cta-button {
        font-size: 1em;
        padding: 10px 25px;
      }
      .page-8k8-com-2__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-2__card-title {
        font-size: 1.2em;
      }
      .page-8k8-com-2__payment-methods-grid {
        grid-template-columns: 1fr; /* Stack payment methods on very small screens */
      }
      .page-8k8-com-2__payment-method-icon {
        width: 60px;
        height: 60px;
      }
      .page-8k8-com-2__payment-method-name {
        font-size: 1em;
      }
    }
  