
    :root {
      --page-8k8-7-primary-color: #e60000; /* Red */
      --page-8k8-7-secondary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-7-dark-text: #1a1a1a;
      --page-8k8-7-light-text: #ffffff;
      --page-8k8-7-background-light: #f5f5f5;
      --page-8k8-7-background-dark: #222222;
      --page-8k8-7-border-color: #cccccc;
      --page-8k8-7-button-hover: #cc0000;
    }

    .page-8k8-7 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-7-dark-text);
      background-color: var(--page-8k8-7-background-light);
      padding-top: 10px; /* Minimal top padding, assuming body padding handles header offset */
    }

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

    .page-8k8-7__section--dark {
      background-color: var(--page-8k8-7-background-dark);
      color: var(--page-8k8-7-light-text);
    }

    .page-8k8-7__hero-section {
      background-color: var(--page-8k8-7-background-dark);
      color: var(--page-8k8-7-light-text);
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

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

    .page-8k8-7__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-7__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-7-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-7__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-7-light-text);
    }

    .page-8k8-7__button {
      display: inline-block;
      background-color: var(--page-8k8-7-primary-color);
      color: var(--page-8k8-7-light-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-7__button:hover {
      background-color: var(--page-8k8-7-button-hover);
    }

    .page-8k8-7__promo-button {
      background-color: var(--page-8k8-7-secondary-color);
      color: var(--page-8k8-7-dark-text);
      padding: 15px 30px;
      font-size: 1.2em;
      border-radius: 8px;
    }

    .page-8k8-7__promo-button:hover {
      background-color: #e6b800;
    }

    .page-8k8-7__heading {
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-7-primary-color);
    }

    .page-8k8-7__heading--light {
      color: var(--page-8k8-7-secondary-color);
    }

    .page-8k8-7__text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

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

    .page-8k8-7__game-card {
      background-color: var(--page-8k8-7-light-text);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-7__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-7__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-7__game-content {
      padding: 20px;
    }

    .page-8k8-7__game-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-8k8-7-primary-color);
    }

    .page-8k8-7__game-description {
      font-size: 0.95em;
      color: var(--page-8k8-7-dark-text);
      margin-bottom: 15px;
    }

    .page-8k8-7__list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 800px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-8k8-7__list-item {
      background-color: var(--page-8k8-7-light-text);
      border: 1px solid var(--page-8k8-7-border-color);
      border-radius: 8px;
      padding: 15px 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-size: 1.05em;
      color: var(--page-8k8-7-dark-text);
      text-align: center;
      flex: 1 1 calc(33% - 30px); /* Three items per row */
      box-sizing: border-box;
      min-width: 280px; /* Ensure minimum width for smaller screens */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-7__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-7__payment-card {
      background-color: var(--page-8k8-7-light-text);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      box-sizing: border-box;
    }

    .page-8k8-7__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      display: block; /* Ensure no extra space below image */
      width: 200px; /* Minimum width for payment logos */
      min-height: 80px;
    }

    .page-8k8-7__payment-name {
      font-weight: bold;
      color: var(--page-8k8-7-dark-text);
      font-size: 1em;
    }

    .page-8k8-7__faq-section {
      background-color: var(--page-8k8-7-background-light);
      padding: 60px 20px;
    }

    .page-8k8-7__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-7__faq-item {
      background-color: var(--page-8k8-7-light-text);
      border: 1px solid var(--page-8k8-7-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-7__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-8k8-7-background-light);
      color: var(--page-8k8-7-dark-text);
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-7__faq-item.active .page-8k8-7__faq-question {
      border-bottom-color: var(--page-8k8-7-border-color);
    }

    .page-8k8-7__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-8k8-7-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-7__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-7-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-7__faq-item.active .page-8k8-7__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
    }

    .page-8k8-7__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(--page-8k8-7-dark-text);
      text-align: left;
    }

    .page-8k8-7__faq-item.active .page-8k8-7__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8k8-7__cta-section {
      background-color: var(--page-8k8-7-primary-color);
      color: var(--page-8k8-7-light-text);
      padding: 50px 20px;
      text-align: center;
    }

    .page-8k8-7__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-7-secondary-color);
    }

    .page-8k8-7__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-7__social-media-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 20px;
    }

    .page-8k8-7__social-link {
      background-color: var(--page-8k8-7-secondary-color);
      color: var(--page-8k8-7-dark-text);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-7__social-link:hover {
      background-color: #e6b800;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-7__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-7__heading {
        font-size: 2em;
      }
      .page-8k8-7__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-8k8-7__list-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-7__section {
        padding: 30px 15px;
      }
      .page-8k8-7__hero-section {
        padding: 40px 15px;
      }
      .page-8k8-7__hero-title {
        font-size: 2em;
      }
      .page-8k8-7__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-7__heading {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-8k8-7__text {
        font-size: 1em;
      }
      .page-8k8-7__game-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
      }
      .page-8k8-7__list {
        flex-direction: column;
        gap: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-7__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-7__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      .page-8k8-7__payment-card {
        padding: 15px;
      }
      .page-8k8-7__payment-logo {
        max-height: 60px;
        width: 150px;
        min-height: 60px;
      }
      .page-8k8-7__faq-section {
        padding: 40px 15px;
      }
      .page-8k8-7__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-7__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-7__faq-answer {
        padding: 15px 15px !important;
      }
      .page-8k8-7__cta-title {
        font-size: 2em;
      }
      .page-8k8-7__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-7__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-7__heading {
        font-size: 1.6em;
      }
      .page-8k8-7__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-7__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-7__payment-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
      }
      .page-8k8-7__payment-logo {
        width: 100% !important;
        height: auto !important;
        max-width: 200px !important;
        max-height: 70px !important;
      }
    }
  