
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #DC143C; /* Crimson */
      --text-color: #E0E0E0;
      --background-dark: #1A1A1A;
      --background-medium: #2C2C2C;
      --background-light: #3A3A3A;
      --border-color: #444444;
      --shadow-color: rgba(0, 0, 0, 0.5);
      --button-hover-darken: 10%;
    }

    /* Base styles for the specific page */
    .page-jilihot-register-online {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 40px;
    }

    .page-jilihot-register-online__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .page-jilihot-register-online__hero-section {
      position: relative;
      background-color: var(--background-medium);
      padding: 10px 0 60px; /* Small padding-top, relying on body for header offset */
      text-align: center;
      overflow: hidden;
    }

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

    .page-jilihot-register-online__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-jilihot-register-online__hero-title {
      font-size: 3.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px var(--shadow-color);
    }

    .page-jilihot-register-online__hero-subtitle {
      font-size: 1.4em;
      color: var(--text-color);
      margin-bottom: 30px;
    }

    .page-jilihot-register-online__cta-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px var(--shadow-color);
    }

    .page-jilihot-register-online__cta-button:hover {
      background-color: #B20027; /* Darker crimson */
      transform: translateY(-2px);
    }

    /* Features Section */
    .page-jilihot-register-online__features-section {
      padding: 60px 0;
      background-color: var(--background-medium);
      text-align: center;
    }

    .page-jilihot-register-online__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px var(--shadow-color);
    }

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

    .page-jilihot-register-online__feature-card {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px var(--shadow-color);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-jilihot-register-online__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px var(--shadow-color);
    }

    .page-jilihot-register-online__feature-icon {
      width: 250px; /* Min size */
      height: 180px; /* Min size */
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-jilihot-register-online__feature-card h3 {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-jilihot-register-online__feature-card p {
      font-size: 1em;
      color: var(--text-color);
    }

    /* How-To Section */
    .page-jilihot-register-online__how-to-section {
      padding: 60px 0;
      background-color: var(--background-dark);
      text-align: center;
    }

    .page-jilihot-register-online__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .page-jilihot-register-online__step-item {
      background-color: var(--background-medium);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px var(--shadow-color);
      text-align: left;
      display: flex;
      align-items: center;
      gap: 25px;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-register-online__step-number {
      background-color: var(--primary-color);
      color: var(--background-dark);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-jilihot-register-online__step-content h3 {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-jilihot-register-online__step-content p {
      font-size: 1.1em;
      color: var(--text-color);
    }

    /* Game Providers Section */
    .page-jilihot-register-online__providers-section {
      padding: 60px 0;
      background-color: var(--background-light);
      text-align: center;
    }

    .page-jilihot-register-online__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-jilihot-register-online__provider-logo {
      background-color: var(--background-medium);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px var(--shadow-color);
      transition: transform 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid var(--border-color);
    }

    .page-jilihot-register-online__provider-logo:hover {
      transform: translateY(-3px);
    }

    .page-jilihot-register-online__provider-logo img {
      max-width: 100%;
      height: 100px; /* Ensure minimum height */
      object-fit: contain;
    }

    /* FAQ Section */
    .page-jilihot-register-online__faq-section {
      padding: 60px 0;
      background-color: var(--background-dark);
    }

    .page-jilihot-register-online__faq-list {
      margin-top: 40px;
    }

    .page-jilihot-register-online__faq-item {
      background-color: var(--background-medium);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--shadow-color);
      border: 1px solid var(--border-color);
    }

    .page-jilihot-register-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jilihot-register-online__faq-question:hover {
      background-color: var(--background-dark);
    }

    .page-jilihot-register-online__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jilihot-register-online__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      font-weight: bold;
    }

    .page-jilihot-register-online__faq-item.active .page-jilihot-register-online__faq-toggle {
      transform: rotate(45deg); /* Change + to X or rotate for - */
    }

    .page-jilihot-register-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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(--text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-jilihot-register-online__hero-title {
        font-size: 2.8em;
      }

      .page-jilihot-register-online__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-jilihot-register-online__container {
        padding: 0 15px;
      }

      .page-jilihot-register-online__hero-title {
        font-size: 2.2em;
      }

      .page-jilihot-register-online__hero-subtitle {
        font-size: 1.2em;
      }

      .page-jilihot-register-online__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-jilihot-register-online__section-title {
        font-size: 1.8em;
      }

      .page-jilihot-register-online__features-grid {
        grid-template-columns: 1fr;
      }

      .page-jilihot-register-online__feature-card {
        padding: 25px;
      }

      .page-jilihot-register-online__feature-icon {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto 20px;
        display: block;
      }

      .page-jilihot-register-online__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        box-sizing: border-box !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
      }

      .page-jilihot-register-online__step-number {
        margin-bottom: 15px;
      }

      .page-jilihot-register-online__step-content {
        width: 100%;
      }

      .page-jilihot-register-online__steps-list {
        width: 100% !important; /* List container responsive */
        max-width: 100% !important; /* List container responsive */
        box-sizing: border-box !important; /* List container responsive */
        padding: 0 !important; /* List container responsive */
        margin-left: 0 !important; /* List container responsive */
        margin-right: 0 !important; /* List container responsive */
      }

      .page-jilihot-register-online__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }

      .page-jilihot-register-online__provider-logo img {
        height: 80px;
      }

      .page-jilihot-register-online__faq-question {
        padding: 15px 20px;
      }

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

      .page-jilihot-register-online__faq-toggle {
        font-size: 1.5em;
      }

      .page-jilihot-register-online__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsive styles */
      .page-jilihot-register-online__hero-background-image,
      .page-jilihot-register-online__feature-icon,
      .page-jilihot-register-online__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jilihot-register-online__hero-section,
      .page-jilihot-register-online__features-section,
      .page-jilihot-register-online__how-to-section,
      .page-jilihot-register-online__providers-section,
      .page-jilihot-register-online__faq-section {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

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

      .page-jilihot-register-online__hero-subtitle {
        font-size: 1em;
      }

      .page-jilihot-register-online__section-title {
        font-size: 1.5em;
      }

      .page-jilihot-register-online__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
    }
  