
    /* CSS for page-8k8-app4 */
    .page-8k8-app4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Hero Section */
    .page-8k8-app4__hero-section {
      background-color: #0d1a26; /* Dark blue/black for betting theme */
      color: #fff;
      text-align: center;
      padding: 60px 20px 80px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body has main offset */
    }

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

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

    .page-8k8-app4__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #ffd700; /* Gold color for highlights */
    }

    .page-8k8-app4__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-app4__call-to-action-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .page-8k8-app4__call-to-action-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-app4__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-app4__section:nth-of-type(even) {
      background-color: #eef2f6;
    }

    .page-8k8-app4__section-title {
      font-size: 2.5em;
      color: #0d1a26;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-app4__section-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-app4__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-app4__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-app4__feature-icon {
      width: 200px; /* Min 200x200 requirement */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 8px;
    }

    .page-8k8-app4__feature-title {
      font-size: 1.6em;
      color: #0d1a26;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-app4__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Game Providers Section */
    .page-8k8-app4__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-app4__provider-logo {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      transition: transform 0.3s ease;
    }

    .page-8k8-app4__provider-logo:hover {
      transform: translateY(-3px);
    }

    .page-8k8-app4__provider-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      border-radius: 4px;
    }

    /* Promotions Section */
    .page-8k8-app4__promo-card {
      background: linear-gradient(135deg, #ffd700, #ffa500); /* Gold to Orange gradient */
      color: #333;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      margin-top: 40px;
      text-align: center;
    }

    .page-8k8-app4__promo-title {
      font-size: 2.2em;
      color: #0d1a26;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-app4__promo-description {
      font-size: 1.2em;
      color: #444;
      margin-bottom: 30px;
    }

    .page-8k8-app4__promo-button {
      background-color: #0d1a26;
      color: #ffd700;
      padding: 15px 35px;
      border-radius: 8px;
      font-size: 1.2em;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .page-8k8-app4__promo-button:hover {
      background-color: #2a3e52;
      color: #fff;
    }

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

    .page-8k8-app4__payment-method-item {
      background-color: #fff;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      color: #333;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-app4__payment-method-icon {
      width: 200px; /* Min 200x200 requirement */
      height: 200px;
      object-fit: contain;
      border-radius: 4px;
    }

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

    .page-8k8-app4__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .page-8k8-app4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f4f8;
      font-size: 1.2em;
      color: #0d1a26;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-app4__faq-question:hover {
      background-color: #e2eaf2;
    }

    .page-8k8-app4__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #0d1a26; /* Ensure good contrast */
    }

    .page-8k8-app4__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-app4__faq-item.active .page-8k8-app4__faq-toggle {
      transform: rotate(45deg); /* Plus to X/minus for visual effect */
      color: #dc3545; /* Red for active */
    }

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-app4__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-app4__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-8k8-app4__features-grid,
      .page-8k8-app4__providers-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-app4__feature-item,
      .page-8k8-app4__provider-logo,
      .page-8k8-app4__payment-method-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; /* Ensure text wraps */
        padding: 20px !important; /* Adjust padding for mobile */
      }

      .page-8k8-app4__payment-methods-list {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-app4__promo-card {
        padding: 30px 20px;
      }

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

      .page-8k8-app4__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-app4__faq-answer {
        padding: 0 20px; /* Adjust initial padding for mobile */
      }

      .page-8k8-app4__faq-item.active .page-8k8-app4__faq-answer {
        padding: 15px 20px !important; /* Adjust expanded padding for mobile */
      }

      .page-8k8-app4__feature-icon,
      .page-8k8-app4__provider-image,
      .page-8k8-app4__payment-method-icon {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-app4__faq-container {
        padding: 0 10px;
      }
    }
  