
    :root {
      --jiliko-primary: #e60000; /* A vibrant red for Jiliko branding */
      --jiliko-secondary: #ff9900; /* An orange for accents */
      --jiliko-dark: #222222;
      --jiliko-light: #ffffff;
      --jiliko-grey: #f0f0f0;
      --jiliko-text: #333333;
      --jiliko-shadow: rgba(0, 0, 0, 0.1);
      --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
    }

    .page-jiliko-slot {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--jiliko-text);
      background-color: var(--jiliko-light);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-jiliko-slot__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-jiliko-slot__header-brand {
      text-align: center;
      padding: 10px 0;
      background-color: var(--jiliko-dark);
      color: var(--jiliko-light);
      font-size: 1.8em;
      font-weight: bold;
      letter-spacing: 1px;
      margin-bottom: 20px;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .page-jiliko-slot__hero-section {
      position: relative;
      text-align: center;
      color: var(--jiliko-light);
      padding: 100px 20px 60px; /* Adjusted padding-top to avoid double header offset */
      background-color: var(--jiliko-dark);
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px var(--jiliko-shadow);
    }

    .page-jiliko-slot__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-jiliko-slot__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-jiliko-slot__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--jiliko-light);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-jiliko-slot__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--jiliko-light);
      text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    }

    .page-jiliko-slot__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--jiliko-primary);
      color: var(--jiliko-light);
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
    }

    .page-jiliko-slot__button:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    .page-jiliko-slot__section {
      background-color: var(--jiliko-light);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--jiliko-shadow);
    }

    .page-jiliko-slot__section-title {
      font-size: 2.5em;
      color: var(--jiliko-primary);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-jiliko-slot__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--jiliko-secondary);
      border-radius: 2px;
    }

    .page-jiliko-slot__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-jiliko-slot__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-jiliko-slot__card {
      background-color: var(--jiliko-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--jiliko-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-jiliko-slot__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--jiliko-shadow);
    }

    .page-jiliko-slot__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-jiliko-slot__card-content {
      padding: 20px;
    }

    .page-jiliko-slot__card-title {
      font-size: 1.5em;
      color: var(--jiliko-dark);
      margin-bottom: 10px;
    }

    .page-jiliko-slot__card-description {
      font-size: 0.95em;
      color: var(--jiliko-text);
      margin-bottom: 15px;
    }

    .page-jiliko-slot__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-jiliko-slot__list-item {
      background-color: var(--jiliko-grey);
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
      font-size: 1.05em;
      display: flex;
      align-items: center;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-jiliko-slot__list-item strong {
      color: var(--jiliko-primary);
      margin-right: 8px;
    }

    .page-jiliko-slot__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-jiliko-slot__floating-button {
      padding: 12px 25px;
      background-color: var(--jiliko-secondary);
      color: var(--jiliko-light);
      border: none;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-jiliko-slot__floating-button:hover {
      background-color: #e68a00;
      transform: translateY(-2px);
    }

    .page-jiliko-slot__faq-section {
      background-color: var(--jiliko-grey);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px var(--jiliko-shadow);
    }

    .page-jiliko-slot__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--jiliko-light);
    }

    .page-jiliko-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--jiliko-primary);
      color: var(--jiliko-light);
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jiliko-slot__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-jiliko-slot__faq-question:hover {
      background-color: #cc0000;
    }

    .page-jiliko-slot__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-jiliko-slot__faq-item.active .page-jiliko-slot__faq-toggle {
      transform: rotate(45deg);
    }

    .page-jiliko-slot__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: var(--jiliko-text);
      background-color: #fcfcfc;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jiliko-slot__hero-title {
        font-size: 2.2em;
      }

      .page-jiliko-slot__hero-description {
        font-size: 1em;
      }

      .page-jiliko-slot__section-title {
        font-size: 2em;
      }

      .page-jiliko-slot__grid {
        grid-template-columns: 1fr;
      }

      .page-jiliko-slot__list {
        grid-template-columns: 1fr;
        padding: 0; /* Adjust list container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jiliko-slot__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important; /* Reduce padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jiliko-slot__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-jiliko-slot__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-jiliko-slot__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-jiliko-slot__faq-answer {
        padding: 15px 15px !important; /* Adjusted padding for smaller screens */
      }
    }

    @media (max-width: 480px) {
      .page-jiliko-slot__hero-section {
        padding: 80px 15px 40px;
      }

      .page-jiliko-slot__hero-title {
        font-size: 1.8em;
      }

      .page-jiliko-slot__section {
        padding: 30px 15px;
      }

      .page-jiliko-slot__section-title {
        font-size: 1.8em;
      }
    }
  