
    /* Base styles for the page */
    .page-www-8k8 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

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

    .page-www-8k8__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e0e0;
    }

    .page-www-8k8__section-title {
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }

    .page-www-8k8__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #ffffff;
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      border-radius: 0 0 20px 20px;
      margin-bottom: 30px;
      overflow: hidden;
      position: relative;
    }

    .page-www-8k8__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-www-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    }

    .page-www-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 400;
      opacity: 0.9;
    }

    .page-www-8k8__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 30px auto 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      object-fit: cover;
    }

    .page-www-8k8__cta-button {
      display: inline-block;
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
    }

    .page-www-8k8__cta-button:hover {
      background-color: #e74c3c;
      color: #ffffff;
      transform: translateY(-3px);
    }

    /* General Paragraphs */
    .page-www-8k8__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    /* Game Categories Section */
    .page-www-8k8__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-www-8k8__game-card {
      background-color: #fcfcfc;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-www-8k8__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-www-8k8__game-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-www-8k8__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-www-8k8__game-card-title {
      font-size: 1.6em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-www-8k8__game-card-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Promotions Section */
    .page-www-8k8__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-www-8k8__promo-item {
      background-color: #f9f9f9;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      border-left: 5px solid #e74c3c;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-www-8k8__promo-item-icon {
      flex-shrink: 0;
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-www-8k8__promo-item-content h3 {
      color: #e74c3c;
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-www-8k8__promo-item-content p {
      font-size: 1em;
      color: #555;
      margin-bottom: 0;
    }

    /* Payment and Provider Sections */
    .page-www-8k8__list-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
    }

    .page-www-8k8__list-item {
      background-color: #f9f9f9;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
      box-sizing: border-box;
    }

    .page-www-8k8__list-item-image {
      width: 120px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
    }

    .page-www-8k8__list-item-text {
      font-weight: 600;
      color: #333;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-www-8k8__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-www-8k8__faq-item {
      background-color: #fcfcfc;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      border: 1px solid #eee;
    }

    .page-www-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e74c3c;
      color: #ffffff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: 600;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-www-8k8__faq-question:hover {
      background-color: #c0392b;
    }

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg);
    }

    .page-www-8k8__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.3s ease;
      background-color: #fcfcfc;
      color: #333;
      font-size: 1em;
    }

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

    /* Social Media Section */
    .page-www-8k8__social-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-www-8k8__social-item {
      background-color: #f9f9f9;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-www-8k8__hero-title {
        font-size: 3em;
      }

      .page-www-8k8__hero-subtitle {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8__container {
        padding: 15px;
      }

      .page-www-8k8__section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-www-8k8__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-www-8k8__hero-section {
        padding: 10px 0 40px 0;
        border-radius: 0 0 15px 15px;
      }

      .page-www-8k8__hero-title {
        font-size: 2.5em;
      }

      .page-www-8k8__hero-subtitle {
        font-size: 1.1em;
      }

      .page-www-8k8__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-www-8k8__paragraph {
        font-size: 1em;
      }

      .page-www-8k8__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-www-8k8__promo-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 10px;
      }

      .page-www-8k8__promo-item-icon {
        width: 80px;
        height: 80px;
      }

      .page-www-8k8__promo-item-content h3 {
        font-size: 1.3em;
      }

      .page-www-8k8__list-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
      }
      
      .page-www-8k8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-www-8k8__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      
      .page-www-8k8__faq-question h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-www-8k8__faq-answer {
        padding: 15px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-www-8k8__social-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }
      
      /* Image responsiveness for mobile */
      .page-www-8k8__hero-image,
      .page-www-8k8__game-card-image,
      .page-www-8k8__promo-item-icon,
      .page-www-8k8__list-item-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-www-8k8__game-card,
      .page-www-8k8__promo-item,
      .page-www-8k8__faq-item,
      .page-www-8k8__social-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8__hero-title {
        font-size: 2em;
      }

      .page-www-8k8__hero-subtitle {
        font-size: 1em;
      }

      .page-www-8k8__section-title {
        font-size: 1.8em;
      }
    }
  