
    :root {
      --page-8k8-5-primary-color: #e44d26; /* A vibrant, energetic color */
      --page-8k8-5-secondary-color: #f7931e; /* A complementary warm color */
      --page-8k8-5-accent-color: #333;
      --page-8k8-5-text-color: #f0f0f0;
      --page-8k8-5-background-dark: #1a1a1a;
      --page-8k8-5-background-light: #2c2c2c;
      --page-8k8-5-border-color: #444;
      --page-8k8-5-button-hover: #ff6633;
    }

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

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

    /* Hero Section */
    .page-8k8-5__hero-section {
      position: relative;
      width: 100%;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Adhering to fixed nav bar spacing */
      box-sizing: border-box;
    }

    .page-8k8-5__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%;
    }
    @media (max-width: 768px) {
      .page-8k8-5__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    .page-8k8-5__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      max-width: 800px;
    }

    .page-8k8-5__hero-content h1 {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-8k8-5-primary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      line-height: 1.2;
    }
    .page-8k8-5__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

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

    .page-8k8-5__button {
      background-color: var(--page-8k8-5-primary-color);
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none; /* For potential external links */
      display: inline-block;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

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

    /* Section Styling */
    .page-8k8-5__section {
      padding: 60px 20px;
      text-align: center;
      border-bottom: 1px solid var(--page-8k8-5-border-color);
    }
    .page-8k8-5__section:last-of-type {
        border-bottom: none;
    }

    .page-8k8-5__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-5-primary-color);
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }
    .page-8k8-5__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-5-secondary-color);
      border-radius: 2px;
    }

    .page-8k8-5__text-content {
      max-width: 900px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--page-8k8-5-text-color);
    }

    /* Game Categories / Product Grid */
    .page-8k8-5__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

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

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

    .page-8k8-5__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      display: block;
    }
    @media (max-width: 768px) {
      .page-8k8-5__game-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

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

    .page-8k8-5__game-card-content h3 {
      font-size: 1.5em;
      color: var(--page-8k8-5-secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-5__game-card-content p {
      font-size: 0.95em;
      color: var(--page-8k8-5-text-color);
    }

    /* Promotions Section */
    .page-8k8-5__promo-banner {
      background: linear-gradient(90deg, var(--page-8k8-5-primary-color) 0%, var(--page-8k8-5-secondary-color) 100%);
      padding: 40px 20px;
      border-radius: 10px;
      margin-top: 40px;
      text-align: center;
    }

    .page-8k8-5__promo-banner h2 {
      color: #fff;
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .page-8k8-5__promo-banner p {
      color: #fff;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Why Choose Us List */
    .page-8k8-5__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-5__feature-item {
      background-color: var(--page-8k8-5-background-light);
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-5__feature-item h3 {
      color: var(--page-8k8-5-primary-color);
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-8k8-5__feature-item p {
      font-size: 1em;
      color: var(--page-8k8-5-text-color);
    }

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

    .page-8k8-5__payment-item {
      background-color: var(--page-8k8-5-background-light);
      padding: 15px 25px;
      border-radius: 8px;
      color: var(--page-8k8-5-text-color);
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      min-width: 120px; /* Ensure minimum width for readability */
      text-align: center;
    }

    /* FAQ Section */
    .page-8k8-5__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      list-style: none;
      padding: 0;
      box-sizing: border-box; /* Crucial for list container responsiveness */
    }

    .page-8k8-5__faq-item {
      background-color: var(--page-8k8-5-background-light);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-5-accent-color);
      color: var(--page-8k8-5-text-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }
    .page-8k8-5__faq-item.active .page-8k8-5__faq-question {
      background-color: var(--page-8k8-5-primary-color);
    }
    .page-8k8-5__faq-item.active .page-8k8-5__faq-question h3 {
      color: #fff;
    }
    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
      color: #fff;
    }


    .page-8k8-5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will be 0 on mobile */
      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-5-text-color);
      text-align: left;
      box-sizing: border-box;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-5__container {
        padding: 15px;
      }

      .page-8k8-5__hero-section {
        height: 450px;
        padding-top: 10px;
      }

      .page-8k8-5__hero-content h1 {
        font-size: 2em;
      }
      .page-8k8-5__hero-content p {
        font-size: 1em;
      }
      .page-8k8-5__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-5__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

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

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

      .page-8k8-5__text-content {
        font-size: 1em;
      }

      .page-8k8-5__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-5__promo-banner h2 {
        font-size: 1.8em;
      }
      .page-8k8-5__promo-banner p {
        font-size: 1em;
      }

      .page-8k8-5__feature-list {
        grid-template-columns: 1fr;
        padding: 0 !important; /* Ensure list container padding is 0 */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-5__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-5__payment-grid {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-5__payment-item {
        width: 100%;
        max-width: 250px; /* Limit width for payment items to prevent excessive stretching */
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-8k8-5__faq-list {
        padding: 0 !important; /* Ensure list container padding is 0 */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-5__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-5__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-5__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-5__faq-answer {
        padding: 0 20px; /* Adjust for mobile */
      }
      .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
        padding: 15px 20px !important; /* Adjust for mobile */
      }
    }
  