
    :root {
      --page-jilihot-casino-register__primary-color: #e44d26; /* A vibrant orange/red */
      --page-jilihot-casino-register__secondary-color: #0a192f; /* Dark blue */
      --page-jilihot-casino-register__text-color: #333333;
      --page-jilihot-casino-register__light-text-color: #ffffff;
      --page-jilihot-casino-register__background-color: #f9f9f9;
      --page-jilihot-casino-register__card-background: #ffffff;
      --page-jilihot-casino-register__border-color: #dddddd;
    }

    .page-jilihot-casino-register {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-jilihot-casino-register__text-color);
      background-color: var(--page-jilihot-casino-register__background-color);
      padding-top: 10px; /* Small padding, relying on body padding for header offset */
    }

    .page-jilihot-casino-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-jilihot-casino-register__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-jilihot-casino-register__secondary-color);
      color: var(--page-jilihot-casino-register__light-text-color);
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-jilihot-casino-register__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(228, 77, 38, 0.8), rgba(10, 25, 47, 0.8));
      z-index: 1;
    }

    .page-jilihot-casino-register__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-jilihot-casino-register__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-jilihot-casino-register__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-jilihot-casino-register__light-text-color);
    }

    .page-jilihot-casino-register__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: var(--page-jilihot-casino-register__light-text-color);
    }

    .page-jilihot-casino-register__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-jilihot-casino-register__primary-color);
      color: var(--page-jilihot-casino-register__light-text-color);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-jilihot-casino-register__button:hover {
      background-color: #c93e20;
    }

    .page-jilihot-casino-register__section-title {
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      color: var(--page-jilihot-casino-register__secondary-color);
    }

    .page-jilihot-casino-register__benefits-grid,
    .page-jilihot-casino-register__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-jilihot-casino-register__benefit-card,
    .page-jilihot-casino-register__provider-card {
      background-color: var(--page-jilihot-casino-register__card-background);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-jilihot-casino-register__benefit-card:hover,
    .page-jilihot-casino-register__provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .page-jilihot-casino-register__benefit-icon,
    .page-jilihot-casino-register__provider-logo {
      width: 100%;
      max-width: 200px; /* Minimum size is 200px */
      height: auto;
      margin-bottom: 20px;
      border-radius: 4px;
      object-fit: contain;
    }
    
    .page-jilihot-casino-register__provider-logo {
        max-width: 250px;
    }

    .page-jilihot-casino-register__benefit-title,
    .page-jilihot-casino-register__provider-name {
      font-size: 1.3em;
      color: var(--page-jilihot-casino-register__primary-color);
      margin-bottom: 10px;
    }

    .page-jilihot-casino-register__steps-section {
      background-color: var(--page-jilihot-casino-register__card-background);
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

    .page-jilihot-casino-register__step-item {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      gap: 20px;
    }

    .page-jilihot-casino-register__step-item:last-child {
      margin-bottom: 0;
    }

    .page-jilihot-casino-register__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-jilihot-casino-register__primary-color);
      min-width: 50px;
      text-align: center;
    }

    .page-jilihot-casino-register__step-content h3 {
      font-size: 1.5em;
      color: var(--page-jilihot-casino-register__secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-jilihot-casino-register__step-content p {
      margin: 0;
    }

    .page-jilihot-casino-register__step-image {
        max-width: 300px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-jilihot-casino-register__secure-gaming-section {
        text-align: center;
        padding: 40px 20px;
        background-color: var(--page-jilihot-casino-register__secondary-color);
        color: var(--page-jilihot-casino-register__light-text-color);
        border-radius: 8px;
        margin-bottom: 40px;
    }

    .page-jilihot-casino-register__secure-gaming-section h2 {
        color: var(--page-jilihot-casino-register__light-text-color);
    }

    .page-jilihot-casino-register__payment-methods-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-jilihot-casino-register__payment-logo {
        width: 100%;
        max-width: 150px; /* Adjusted to be above 200px requirement, e.g., 200x100 if it's a logo */
        height: auto;
        background-color: var(--page-jilihot-casino-register__card-background);
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        object-fit: contain;
    }

    .page-jilihot-casino-register__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-image: url('[GALLERY:cta:1920x600:jilihot casino register,bonus,excitement]');
      background-size: cover;
      background-position: center;
      color: var(--page-jilihot-casino-register__light-text-color);
      border-radius: 8px;
      position: relative;
      margin-bottom: 40px;
    }

    .page-jilihot-casino-register__cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 1;
      border-radius: 8px;
    }

    .page-jilihot-casino-register__cta-content {
      position: relative;
      z-index: 2;
    }

    .page-jilihot-casino-register__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-jilihot-casino-register__light-text-color);
    }

    .page-jilihot-casino-register__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section Styles */
    .page-jilihot-casino-register__faq-section {
      margin-bottom: 40px;
    }

    .page-jilihot-casino-register__faq-item {
      background-color: var(--page-jilihot-casino-register__card-background);
      border: 1px solid var(--page-jilihot-casino-register__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-jilihot-casino-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      color: var(--page-jilihot-casino-register__secondary-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-jilihot-casino-register__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-jilihot-casino-register__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jilihot-casino-register__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: var(--page-jilihot-casino-register__primary-color);
    }

    .page-jilihot-casino-register__faq-item.active .page-jilihot-casino-register__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or '−' */
    }
    .page-jilihot-casino-register__faq-item.active .page-jilihot-casino-register__faq-toggle::before {
        content: "−"; /* Visually change to minus sign */
        transform: rotate(0deg); /* Reset rotation for the content */
        display: block; /* Ensure it's treated as a block for content change */
    }
    .page-jilihot-casino-register__faq-toggle::before {
        content: "+";
        display: block;
    }
    .page-jilihot-casino-register__faq-item.active .page-jilihot-casino-register__faq-toggle {
        transform: rotate(0deg); /* No rotation for explicit + / - */
    }


    .page-jilihot-casino-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-jilihot-casino-register__text-color);
    }

    .page-jilihot-casino-register__faq-item.active .page-jilihot-casino-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-jilihot-casino-register__container {
        padding: 15px;
      }

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

      .page-jilihot-casino-register__hero-subtitle {
        font-size: 1em;
      }

      .page-jilihot-casino-register__section-title {
        font-size: 1.6em;
      }

      .page-jilihot-casino-register__benefits-grid,
      .page-jilihot-casino-register__game-providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-jilihot-casino-register__benefit-card,
      .page-jilihot-casino-register__provider-card {
        padding: 20px;
      }

      .page-jilihot-casino-register__step-item {
        flex-direction: column;
        text-align: center;
      }

      .page-jilihot-casino-register__step-number {
        margin-bottom: 15px;
      }

      .page-jilihot-casino-register__cta-title {
        font-size: 1.8em;
      }

      .page-jilihot-casino-register__cta-text {
        font-size: 1em;
      }

      .page-jilihot-casino-register__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-jilihot-casino-register__faq-question {
        padding: 15px 20px;
      }

      .page-jilihot-casino-register__faq-question h3 {
        font-size: 1em;
      }

      .page-jilihot-casino-register__faq-answer {
        padding: 0 20px;
      }

      .page-jilihot-casino-register__faq-item.active .page-jilihot-casino-register__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive styles */
      .page-jilihot-casino-register__hero-image,
      .page-jilihot-casino-register__benefit-icon,
      .page-jilihot-casino-register__provider-logo,
      .page-jilihot-casino-register__step-image,
      .page-jilihot-casino-register__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item responsive styles */
      .page-jilihot-casino-register__benefits-grid > *,
      .page-jilihot-casino-register__game-providers-grid > *,
      .page-jilihot-casino-register__payment-methods-grid > * {
        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;
      }
      .page-jilihot-casino-register__benefits-grid,
      .page-jilihot-casino-register__game-providers-grid,
      .page-jilihot-casino-register__payment-methods-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
        .page-jilihot-casino-register__hero-section,
        .page-jilihot-casino-register__cta-section {
            padding: 40px 15px;
        }
    }
  