
    :root {
      --page-8k8-5-primary-color: #e44d26; /* A vibrant orange-red */
      --page-8k8-5-secondary-color: #f7931e; /* A brighter orange */
      --page-8k8-5-text-color: #333;
      --page-8k8-5-light-text-color: #f0f0f0;
      --page-8k8-5-background-color: #f8f8f8;
      --page-8k8-5-dark-background: #2c3e50; /* Dark blue-gray */
      --page-8k8-5-card-background: #ffffff;
      --page-8k8-5-border-color: #ddd;
      --page-8k8-5-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      --page-8k8-5-transition-speed: 0.3s ease-in-out;
    }

    .page-8k8-5 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-5-text-color);
      background-color: var(--page-8k8-5-background-color);
      overflow-x: hidden;
    }

    .page-8k8-5__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-5-dark-background);
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-5__section-title strong {
      color: var(--page-8k8-5-primary-color);
    }

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

    .page-8k8-5__section-subtitle {
      font-size: 1.2em;
      text-align: center;
      color: var(--page-8k8-5-text-color);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-5 section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Hero Section */
    .page-8k8-5__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: linear-gradient(135deg, var(--page-8k8-5-dark-background) 0%, #34495e 100%);
      color: var(--page-8k8-5-light-text-color);
      padding: 70px 20px; /* Adjusted padding-top to 70px as per instruction for hero section */
      min-height: 60vh;
      justify-content: center;
      gap: 40px;
    }

    .page-8k8-5__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-8k8-5__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-8k8-5-light-text-color);
    }

    .page-8k8-5__hero-title strong {
      color: var(--page-8k8-5-secondary-color);
    }

    .page-8k8-5__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-5__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-5__hero-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: all var(--page-8k8-5-transition-speed);
      cursor: pointer;
      border: none;
    }

    .page-8k8-5__hero-button--primary {
      background-color: var(--page-8k8-5-primary-color);
      color: var(--page-8k8-5-light-text-color);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-5__hero-button--primary:hover {
      background-color: #c9411d;
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-5__hero-button--secondary {
      background-color: transparent;
      color: var(--page-8k8-5-secondary-color);
      border: 2px solid var(--page-8k8-5-secondary-color);
    }

    .page-8k8-5__hero-button--secondary:hover {
      background-color: var(--page-8k8-5-secondary-color);
      color: var(--page-8k8-5-dark-background);
      transform: translateY(-3px);
    }

    .page-8k8-5__hero-image-container {
      margin-top: 40px;
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--page-8k8-5-box-shadow);
    }

    .page-8k8-5__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    /* About Section */
    .page-8k8-5__about-section {
      background-color: var(--page-8k8-5-card-background);
      padding-top: 80px;
      padding-bottom: 80px;
    }

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

    .page-8k8-5__about-item {
      background-color: var(--page-8k8-5-background-color);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: var(--page-8k8-5-box-shadow);
      transition: transform var(--page-8k8-5-transition-speed);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-5__about-item:hover {
      transform: translateY(-10px);
    }

    .page-8k8-5__about-icon {
      width: 200px; /* Minimum size requirement */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      border-radius: 8px;
    }

    .page-8k8-5__about-item-title {
      font-size: 1.8em;
      color: var(--page-8k8-5-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-5__about-item p {
      color: var(--page-8k8-5-text-color);
    }

    /* Game Categories Section */
    .page-8k8-5__games-section {
      background-color: var(--page-8k8-5-background-color);
    }

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

    .page-8k8-5__game-card {
      background-color: var(--page-8k8-5-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--page-8k8-5-box-shadow);
      text-align: center;
      transition: transform var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__game-card:hover {
      transform: translateY(-10px);
    }

    .page-8k8-5__game-card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-5__game-card-title {
      font-size: 1.6em;
      color: var(--page-8k8-5-dark-background);
      margin: 20px 15px 10px;
    }

    .page-8k8-5__game-card p {
      padding: 0 15px 20px;
      color: var(--page-8k8-5-text-color);
    }

    .page-8k8-5__game-card-button {
      display: inline-block;
      background-color: var(--page-8k8-5-primary-color);
      color: var(--page-8k8-5-light-text-color);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color var(--page-8k8-5-transition-speed);
      border: none;
      cursor: pointer;
    }

    .page-8k8-5__game-card-button:hover {
      background-color: #c9411d;
    }

    /* Providers Section */
    .page-8k8-5__providers-section {
      background-color: var(--page-8k8-5-dark-background);
      color: var(--page-8k8-5-light-text-color);
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .page-8k8-5__providers-section .page-8k8-5__section-title,
    .page-8k8-5__providers-section .page-8k8-5__section-subtitle {
      color: var(--page-8k8-5-light-text-color);
    }

    .page-8k8-5__providers-section .page-8k8-5__section-title strong {
      color: var(--page-8k8-5-secondary-color);
    }

    .page-8k8-5__providers-section .page-8k8-5__section-title::after {
      background-color: var(--page-8k8-5-secondary-color);
    }

    .page-8k8-5__providers-list {
      list-style: none;
      padding: 0;
      margin: 40px 0 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-8k8-5__provider-item {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      flex: 1 1 200px; /* Adjust for responsiveness */
      box-sizing: border-box;
      text-align: center;
      transition: background-color var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__provider-item:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .page-8k8-5__provider-logo {
      max-width: 200px; /* Minimum size requirement */
      height: auto;
      margin-bottom: 15px;
      filter: grayscale(100%) brightness(1.5); /* Example: make logos stand out on dark background, but no color change filter */
      transition: filter var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__provider-item:hover .page-8k8-5__provider-logo {
      filter: grayscale(0%) brightness(1);
    }

    .page-8k8-5__provider-name {
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-5-light-text-color);
    }

    /* Promotions Section */
    .page-8k8-5__promotions-section {
      background-color: var(--page-8k8-5-background-color);
    }

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

    .page-8k8-5__promo-card {
      background-color: var(--page-8k8-5-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--page-8k8-5-box-shadow);
      text-align: center;
      transition: transform var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-8k8-5__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-5__promo-title {
      font-size: 1.6em;
      color: var(--page-8k8-5-dark-background);
      margin: 20px 15px 10px;
    }

    .page-8k8-5__promo-card p {
      padding: 0 15px 20px;
      color: var(--page-8k8-5-text-color);
    }

    .page-8k8-5__promo-button {
      display: inline-block;
      background-color: var(--page-8k8-5-secondary-color);
      color: var(--page-8k8-5-dark-background);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color var(--page-8k8-5-transition-speed);
      border: none;
      cursor: pointer;
    }

    .page-8k8-5__promo-button:hover {
      background-color: #e6800c;
    }

    /* Payments Section */
    .page-8k8-5__payments-section {
      background-color: var(--page-8k8-5-card-background);
    }

    .page-8k8-5__payments-list {
      list-style: none;
      padding: 0;
      margin: 40px 0 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-8k8-5__payment-item {
      background-color: var(--page-8k8-5-background-color);
      border-radius: 10px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      flex: 1 1 180px; /* Adjust for responsiveness */
      box-sizing: border-box;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: transform var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-5__payment-logo {
      max-width: 150px; /* Minimum size requirement */
      height: auto;
      margin-bottom: 10px;
      display: block;
    }

    .page-8k8-5__payment-name {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-8k8-5-dark-background);
    }

    /* FAQ Section */
    .page-8k8-5__faq-section {
      background-color: var(--page-8k8-5-background-color);
    }

    .page-8k8-5__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-5__faq-item {
      background-color: var(--page-8k8-5-card-background);
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-8k8-5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-5-card-background);
      border-bottom: 1px solid var(--page-8k8-5-border-color);
      transition: background-color var(--page-8k8-5-transition-speed);
      user-select: none;
    }

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

    .page-8k8-5__faq-item.active .page-8k8-5__faq-question {
      background-color: var(--page-8k8-5-primary-color);
      color: var(--page-8k8-5-light-text-color);
      border-bottom: none;
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-question h3 {
      color: var(--page-8k8-5-light-text-color);
    }

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

    .page-8k8-5__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-5-primary-color);
      min-width: 20px;
      text-align: center;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform var(--page-8k8-5-transition-speed), color var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
      color: var(--page-8k8-5-light-text-color);
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-8k8-5-card-background);
    }

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

    .page-8k8-5__faq-answer p {
      margin: 0;
      color: var(--page-8k8-5-text-color);
    }

    /* Final Call to Action Section */
    .page-8k8-5__cta-section {
      background: linear-gradient(135deg, #34495e 0%, var(--page-8k8-5-dark-background) 100%);
      color: var(--page-8k8-5-light-text-color);
      text-align: center;
      padding: 80px 20px;
    }

    .page-8k8-5__cta-section .page-8k8-5__section-title,
    .page-8k8-5__cta-section .page-8k8-5__section-subtitle {
      color: var(--page-8k8-5-light-text-color);
    }

    .page-8k8-5__cta-section .page-8k8-5__section-title strong {
      color: var(--page-8k8-5-secondary-color);
    }

    .page-8k8-5__cta-section .page-8k8-5__section-title::after {
      background-color: var(--page-8k8-5-secondary-color);
    }

    .page-8k8-5__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-5-primary-color);
      color: var(--page-8k8-5-light-text-color);
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      margin-top: 30px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      transition: all var(--page-8k8-5-transition-speed);
    }

    .page-8k8-5__cta-button:hover {
      background-color: #c9411d;
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-5__hero-title {
        font-size: 3em;
      }
      .page-8k8-5__section-title {
        font-size: 2em;
      }
      .page-8k8-5__hero-section {
        padding: 60px 20px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-5__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 15px;
      }

      .page-8k8-5__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-5__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-5__hero-actions {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-5__hero-button {
        width: 100%;
        max-width: 300px;
      }

      .page-8k8-5__section-title {
        font-size: 1.8em;
      }

      .page-8k8-5__section-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
      }

      .page-8k8-5 section {
        padding: 40px 15px;
      }

      /* List item responsiveness */
      .page-8k8-5__providers-list,
      .page-8k8-5__payments-list {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-5__provider-item,
      .page-8k8-5__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-5__provider-logo,
      .page-8k8-5__payment-logo,
      .page-8k8-5__about-icon,
      .page-8k8-5__hero-image,
      .page-8k8-5__game-card-image,
      .page-8k8-5__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-5__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-5__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-5__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-5__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-5__hero-title {
        font-size: 2em;
      }
      .page-8k8-5__section-title {
        font-size: 1.6em;
      }
      .page-8k8-5__hero-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  