
    /* General Styling */
    .page-jilihot-2 {
      font-family: 'Arial', sans-serif;
      color: #F0F0F0; /* Light grey for text */
      background-color: #1A1A2E; /* Dark background for gaming theme */
      line-height: 1.6;
      padding-top: 10px; /* As per fixed navbar spacing requirement */
    }

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

    .page-jilihot-2__section {
      padding: 60px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      background-color: #1A1A2E; /* Ensure sections maintain dark background */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }
    
    .page-jilihot-2__section--dark {
        background-color: #0F0F1A;
    }

    .page-jilihot-2__section-title {
      font-size: 2.8em;
      color: #FFD700; /* Gold for titles */
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-jilihot-2__text {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    /* Hero Section */
    .page-jilihot-2__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      background-color: #1A1A2E; /* Dark background */
      padding: 10px 20px 60px 20px; /* 10px top padding as per requirement */
      text-align: center;
    }

    .page-jilihot-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken background image */
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-jilihot-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-2__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-jilihot-2__hero-subtitle {
      font-size: 1.5em;
      color: #FFF;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-2__cta-button {
      display: inline-block;
      background-color: #00BFFF; /* Deep Sky Blue for CTA */
      color: #1A1A2E;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 191, 255, 0.4);
    }

    .page-jilihot-2__cta-button:hover {
      background-color: #009ACD; /* Darker blue on hover */
      transform: translateY(-3px);
    }

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

    .page-jilihot-2__game-card {
      background-color: #2C2C4A; /* Slightly lighter dark for cards */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-2__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-jilihot-2__game-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-jilihot-2__game-content {
      padding: 25px;
      flex-grow: 1;
    }

    .page-jilihot-2__game-title {
      font-size: 1.6em;
      color: #FFD700;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-jilihot-2__game-description {
      font-size: 1em;
      color: #D0D0D0;
      line-height: 1.5;
    }

    /* Promotions Section */
    .page-jilihot-2__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-jilihot-2__promo-item {
      background-color: #2C2C4A;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-2__promo-item:hover {
      background-color: #3A3A5A;
    }

    .page-jilihot-2__promo-title {
      font-size: 1.8em;
      color: #00BFFF;
      margin-bottom: 15px;
    }

    .page-jilihot-2__promo-text {
      font-size: 1.05em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-jilihot-2__promo-button {
      display: inline-block;
      background-color: #FFD700;
      color: #1A1A2E;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jilihot-2__promo-button:hover {
      background-color: #E0C000;
    }

    /* Payment Methods Section */
    .page-jilihot-2__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-jilihot-2__payment-method {
      background-color: #2C2C4A;
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      color: #FFD700;
      font-weight: bold;
      font-size: 1.2em;
      text-align: center;
      min-width: 150px;
      flex-basis: calc(33.333% - 25px); /* For larger screens */
      box-sizing: border-box; /* Required for list items (even if div) */
    }
    
    /* Why Choose Us Section */
    .page-jilihot-2__feature-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-jilihot-2__feature-item {
        background-color: #2C2C4A;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-2__feature-icon {
        width: 80px; /* Display size, image source is 200x200 */
        height: 80px;
        margin-bottom: 20px;
        object-fit: contain;
        border-radius: 50%;
        background-color: #00BFFF;
        padding: 10px;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Ensure responsiveness */
    }

    .page-jilihot-2__feature-title {
        font-size: 1.6em;
        color: #FFD700;
        margin-bottom: 10px;
    }

    .page-jilihot-2__feature-description {
        font-size: 1.05em;
        color: #D0D0D0;
        line-height: 1.5;
    }

    /* FAQ Section */
    .page-jilihot-2__faq-section {
        text-align: left;
    }

    .page-jilihot-2__faq-list {
        margin-top: 40px;
        padding: 0;
        list-style: none;
    }

    .page-jilihot-2__faq-item {
        background-color: #2C2C4A;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #3A3A5A;
        color: #FFD700;
        font-size: 1.3em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-jilihot-2__faq-question:hover {
        background-color: #4A4A6A;
    }

    .page-jilihot-2__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        color: #FFD700;
        font-size: 1.3em; /* Ensure consistent font size */
    }

    .page-jilihot-2__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-jilihot-2__faq-item.active .page-jilihot-2__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }
    
    .page-jilihot-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #2C2C4A;
        color: #E0E0E0;
        font-size: 1.1em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        line-height: 1.6;
    }

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

    /* Final Call to Action Section */
    .page-jilihot-2__final-cta-section {
        background-color: #00BFFF; /* Bright blue for emphasis */
        color: #1A1A2E;
        padding: 80px 20px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-jilihot-2__final-cta-title {
        font-size: 3em;
        color: #1A1A2E;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    }

    .page-jilihot-2__final-cta-text {
        font-size: 1.3em;
        color: #1A1A2E;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-jilihot-2__final-cta-button {
        display: inline-block;
        background-color: #FFD700;
        color: #1A1A2E;
        padding: 18px 50px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.5em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-jilihot-2__final-cta-button:hover {
        background-color: #E0C000;
        transform: translateY(-5px);
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-jilihot-2__hero-title {
        font-size: 3em;
      }
      .page-jilihot-2__hero-subtitle {
        font-size: 1.3em;
      }
      .page-jilihot-2__section-title {
        font-size: 2.4em;
      }
      .page-jilihot-2__game-image {
        height: 220px;
      }
      .page-jilihot-2__game-title {
        font-size: 1.4em;
      }
      .page-jilihot-2__promo-title {
        font-size: 1.6em;
      }
      .page-jilihot-2__final-cta-title {
        font-size: 2.5em;
      }
    }

    @media (max-width: 768px) {
      .page-jilihot-2__container {
        padding: 15px;
      }
      .page-jilihot-2__section {
        padding: 40px 15px;
      }
      .page-jilihot-2__hero-section {
        min-height: 50vh;
        padding-bottom: 40px;
      }
      .page-jilihot-2__hero-title {
        font-size: 2.5em;
      }
      .page-jilihot-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-jilihot-2__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-jilihot-2__section-title {
        font-size: 2em;
      }
      .page-jilihot-2__text {
        font-size: 1em;
      }

      .page-jilihot-2__game-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }
      .page-jilihot-2__game-card {
        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-2__game-image {
        height: 200px;
      }
      .page-jilihot-2__game-title {
        font-size: 1.3em;
      }

      .page-jilihot-2__promo-list {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }
      .page-jilihot-2__promo-item {
        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;
        padding: 20px; /* Adjust padding for mobile */
      }
      .page-jilihot-2__promo-title {
        font-size: 1.4em;
      }
      .page-jilihot-2__promo-text {
        font-size: 0.95em;
      }

      .page-jilihot-2__payment-method {
        flex-basis: calc(50% - 15px); /* Two columns for smaller mobile */
        min-width: unset;
        font-size: 1.1em;
        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-2__feature-list {
          grid-template-columns: 1fr; /* Single column for mobile */
          gap: 20px;
      }
      .page-jilihot-2__feature-item {
          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;
          padding: 25px;
      }
      .page-jilihot-2__feature-icon {
          width: 60px;
          height: 60px;
          margin-bottom: 15px;
      }
      .page-jilihot-2__feature-title {
          font-size: 1.4em;
      }

      .page-jilihot-2__faq-question {
          font-size: 1.1em;
          padding: 15px 20px;
      }
      .page-jilihot-2__faq-question h3 {
          font-size: 1.1em;
      }
      .page-jilihot-2__faq-toggle {
          font-size: 1.5em;
      }
      .page-jilihot-2__faq-answer {
          font-size: 1em;
          padding: 0 20px;
      }
      .page-jilihot-2__faq-item.active .page-jilihot-2__faq-answer {
          padding: 15px 20px !important;
      }

      .page-jilihot-2__final-cta-section {
        padding: 60px 15px;
      }
      .page-jilihot-2__final-cta-title {
        font-size: 2em;
      }
      .page-jilihot-2__final-cta-text {
        font-size: 1.1em;
      }
      .page-jilihot-2__final-cta-button {
        font-size: 1.3em;
        padding: 15px 40px;
      }
    }

    @media (max-width: 480px) {
      .page-jilihot-2__hero-title {
        font-size: 2em;
      }
      .page-jilihot-2__hero-subtitle {
        font-size: 1em;
      }
      .page-jilihot-2__cta-button {
        font-size: 1em;
        padding: 10px 25px;
      }
      .page-jilihot-2__section-title {
        font-size: 1.8em;
      }
      .page-jilihot-2__payment-method {
        flex-basis: 100%; /* Single column for very small screens */
      }
      .page-jilihot-2__final-cta-title {
        font-size: 1.8em;
      }
      .page-jilihot-2__final-cta-text {
        font-size: 1em;
      }
      .page-jilihot-2__final-cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
      }
    }
  