
    /* Base styles for the page-jilihot-casino component */
    .page-jilihot-casino {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    /* Section styling */
    .page-jilihot-casino__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-jilihot-casino__section-title {
      font-size: 2.5em;
      color: #0056b3; /* Darker blue for contrast */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-jilihot-casino__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
      color: #555;
    }

    /* Hero Section */
    .page-jilihot-casino__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body handles main offset */
      box-sizing: border-box;
    }

    .page-jilihot-casino__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-jilihot-casino__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-jilihot-casino__hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      padding: 20px;
    }

    .page-jilihot-casino__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
      color: #ffd700; /* Gold color for highlight */
    }

    .page-jilihot-casino__hero-description {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

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

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

    /* Game Categories / Features */
    .page-jilihot-casino__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-jilihot-casino__game-card {
      background-color: #f0f8ff; /* Light blue background */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-jilihot-casino__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-jilihot-casino__game-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #007bff;
    }

    .page-jilihot-casino__game-title {
      font-size: 1.8em;
      color: #0056b3;
      margin: 20px 10px 10px;
      font-weight: bold;
    }

    .page-jilihot-casino__game-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
    }

    /* Promotions */
    .page-jilihot-casino__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-jilihot-casino__promo-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-jilihot-casino__promo-item:hover {
      transform: scale(1.02);
    }

    .page-jilihot-casino__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-jilihot-casino__promo-content {
      padding: 20px;
    }

    .page-jilihot-casino__promo-title {
      font-size: 1.6em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jilihot-casino__promo-description {
      font-size: 1em;
      color: #666;
    }

    /* Payment Methods & Providers */
    .page-jilihot-casino__payment-methods-grid,
    .page-jilihot-casino__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      padding: 0 20px;
    }

    .page-jilihot-casino__payment-icon-wrapper,
    .page-jilihot-casino__provider-logo-wrapper {
      width: 120px; /* Ensure minimum size */
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden; /* Ensure image fits */
      box-sizing: border-box;
    }

    .page-jilihot-casino__payment-icon,
    .page-jilihot-casino__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-jilihot-casino__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-jilihot-casino__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-jilihot-casino__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-jilihot-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      background-color: #fff;
      transition: background-color 0.3s ease;
      color: #333; /* Ensure contrast */
    }

    .page-jilihot-casino__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-jilihot-casino__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      font-weight: bold;
      color: #0056b3; /* Question color */
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-jilihot-casino__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-jilihot-casino__faq-item.active .page-jilihot-casino__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' effect, or simply change to '-' */
    }

    .page-jilihot-casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555; /* Answer text color */
      font-size: 1em;
    }

    .page-jilihot-casino__faq-item.active .page-jilihot-casino__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 15px !important; /* Expanded padding */
      opacity: 1;
    }

    /* General text formatting */
    .page-jilihot-casino p {
      margin-bottom: 1em;
    }

    .page-jilihot-casino strong {
      color: #0056b3;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-jilihot-casino__hero-title {
        font-size: 2.5em;
      }

      .page-jilihot-casino__hero-description {
        font-size: 1.2em;
      }

      .page-jilihot-casino__section-title {
        font-size: 2em;
      }

      .page-jilihot-casino__game-categories,
      .page-jilihot-casino__promo-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-jilihot-casino__game-card,
      .page-jilihot-casino__promo-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
      }

      .page-jilihot-casino__game-image,
      .page-jilihot-casino__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-jilihot-casino__payment-methods-grid,
      .page-jilihot-casino__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        padding: 0 10px;
      }

      .page-jilihot-casino__payment-icon-wrapper,
      .page-jilihot-casino__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 60px; /* Ensure minimum height */
        box-sizing: border-box !important;
        padding: 5px !important;
      }

      .page-jilihot-casino__payment-icon,
      .page-jilihot-casino__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-jilihot-casino__faq-section {
        padding: 20px 15px;
      }

      .page-jilihot-casino__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jilihot-casino__faq-answer {
        padding: 0 10px;
      }

      .page-jilihot-casino__faq-item.active .page-jilihot-casino__faq-answer {
        padding: 15px 10px !important;
      }
    }

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

      .page-jilihot-casino__hero-description {
        font-size: 1em;
      }

      .page-jilihot-casino__call-to-action-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  