
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, often associated with gaming/energy */
      --secondary-color: #333; /* Dark grey for text */
      --accent-color: #ffcc00; /* Gold/yellow for highlights */
      --background-light: #f9f9f9;
      --background-dark: #222;
      --text-light: #f9f9f9;
      --text-dark: #333;
      --border-color: #ddd;
      --spacing-unit: 1rem;
    }

    /* Base styles for the page */
    .page-jiliko-org {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--background-light);
      padding-top: 10px; /* Small top padding, assuming body handles main header offset */
    }

    /* Section styles */
    .page-jiliko-org__section {
      padding: 40px var(--spacing-unit) 60px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-jiliko-org__section--dark {
      background-color: var(--background-dark);
      color: var(--text-light);
    }

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

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

    /* Hero Section */
    .page-jiliko-org__hero-section {
      background-color: #1a1a1a;
      color: var(--text-light);
      text-align: center;
      padding: 60px var(--spacing-unit);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

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

    .page-jiliko-org__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-jiliko-org__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-jiliko-org__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--text-light);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-jiliko-org__cta-button:hover {
      background-color: #ff6633;
      transform: translateY(-3px);
    }

    /* Floating Buttons (Register/Login) */
    .page-jiliko-org__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-jiliko-org__floating-button {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jiliko-org__floating-button:hover {
      background-color: #ff6633;
      transform: scale(1.05);
    }

    .page-jiliko-org__floating-button--login {
      background-color: var(--accent-color);
      color: var(--text-dark);
    }

    .page-jiliko-org__floating-button--login:hover {
      background-color: #ffdb4d;
    }

    /* Game Categories Section */
    .page-jiliko-org__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jiliko-org__category-card {
      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-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-jiliko-org__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

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

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

    .page-jiliko-org__category-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

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

    /* Promotions Section */
    .page-jiliko-org__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jiliko-org__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jiliko-org__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

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

    .page-jiliko-org__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

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

    .page-jiliko-org__promo-button {
      background-color: var(--accent-color);
      color: var(--text-dark);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      align-self: flex-start;
      border: none;
      cursor: pointer;
    }

    .page-jiliko-org__promo-button:hover {
      background-color: #ffdb4d;
    }

    /* Payment Methods Section */
    .page-jiliko-org__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-jiliko-org__payment-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 180px; /* Limit width for larger screens */
      box-sizing: border-box;
    }

    .page-jiliko-org__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-jiliko-org__payment-logo {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jiliko-org__payment-name {
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-jiliko-org__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-jiliko-org__provider-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 220px; /* Limit width for larger screens */
      box-sizing: border-box;
    }

    .page-jiliko-org__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-jiliko-org__provider-logo {
      max-width: 120px;
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jiliko-org__provider-name {
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 1em;
    }

    /* FAQ Section */
    .page-jiliko-org__faq-container {
      max-width: 900px;
      margin: 40px auto 0;
    }

    .page-jiliko-org__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .page-jiliko-org__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jiliko-org__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-jiliko-org__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-jiliko-org__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-jiliko-org__faq-item.active .page-jiliko-org__faq-toggle {
      transform: rotate(45deg); /* Plus becomes an X or similar */
    }

    .page-jiliko-org__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.4s ease;
      color: var(--secondary-color);
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-jiliko-org__hero-title {
        font-size: 3em;
      }
      .page-jiliko-org__hero-subtitle {
        font-size: 1.3em;
      }
      .page-jiliko-org__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-jiliko-org__hero-section {
        padding: 40px var(--spacing-unit);
        min-height: 300px;
      }
      .page-jiliko-org__hero-title {
        font-size: 2.5em;
      }
      .page-jiliko-org__hero-subtitle {
        font-size: 1.1em;
      }
      .page-jiliko-org__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-jiliko-org__section {
        padding: 30px var(--spacing-unit) 40px;
      }
      .page-jiliko-org__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      /* List item responsive requirements */
      .page-jiliko-org__categories-grid,
      .page-jiliko-org__promotions-grid,
      .page-jiliko-org__payment-methods-grid,
      .page-jiliko-org__providers-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-jiliko-org__category-card,
      .page-jiliko-org__promo-card,
      .page-jiliko-org__payment-item,
      .page-jiliko-org__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
      }

      .page-jiliko-org__category-description,
      .page-jiliko-org__promo-description,
      .page-jiliko-org__payment-name,
      .page-jiliko-org__provider-name,
      .page-jiliko-org__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jiliko-org__faq-question {
        padding: 12px 15px;
      }
      .page-jiliko-org__faq-question h3 {
        font-size: 1em;
      }
      .page-jiliko-org__faq-answer {
        padding: 15px 15px !important;
      }

      .page-jiliko-org__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-jiliko-org__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-jiliko-org__hero-title {
        font-size: 2em;
      }
      .page-jiliko-org__hero-subtitle {
        font-size: 0.9em;
      }
      .page-jiliko-org__section-title {
        font-size: 1.5em;
      }
      .page-jiliko-org__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  