
    :root {
        --primary-color: #e63946; /* A vibrant red, common in gaming */
        --secondary-color: #f1faee; /* Light background */
        --accent-color: #457b9d; /* A complementary blue */
        --dark-color: #1d3557; /* Dark text/background */
        --text-color: #333333;
        --light-text-color: #f9f9f9;
        --border-radius-small: 8px;
        --border-radius-medium: 12px;
        --spacing-unit: 16px;
    }

    .page-jilihot-ph {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        background-color: var(--secondary-color);
        padding-top: var(--header-offset, 122px); /* Fallback for safe measure, though body should handle */
    }

    .page-jilihot-ph__section {
        padding: calc(2 * var(--spacing-unit)) var(--spacing-unit);
        margin: 0 auto;
        max-width: 1200px;
    }

    .page-jilihot-ph__section--dark {
        background-color: var(--dark-color);
        color: var(--light-text-color);
    }

    .page-jilihot-ph__heading {
        font-size: 2.5em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: var(--spacing-unit);
        font-weight: bold;
    }

    .page-jilihot-ph__subheading {
        font-size: 1.8em;
        color: var(--accent-color);
        text-align: center;
        margin-bottom: calc(1.5 * var(--spacing-unit));
    }

    .page-jilihot-ph__paragraph {
        font-size: 1.1em;
        margin-bottom: var(--spacing-unit);
        text-align: center;
    }

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

    .page-jilihot-ph__button:hover {
        background-color: #c02a35;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-jilihot-ph__hero-section {
        position: relative;
        overflow: hidden;
        color: var(--light-text-color);
        text-align: center;
        padding: 10px 0 0 0; /* Small decorative padding, body handles main offset */
    }

    .page-jilihot-ph__hero-background {
        width: 100%;
        height: 600px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        filter: brightness(0.7); /* Allowed for background images to enhance text readability */
    }

    .page-jilihot-ph__hero-content {
        position: relative;
        z-index: 1;
        padding: calc(4 * var(--spacing-unit)) var(--spacing-unit);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 500px; /* Ensure content is visible */
    }

    .page-jilihot-ph__hero-title {
        font-size: 3.5em;
        margin-bottom: var(--spacing-unit);
        font-weight: bold;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-jilihot-ph__hero-description {
        font-size: 1.3em;
        margin-bottom: calc(2 * var(--spacing-unit));
        max-width: 800px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    /* Info Card Grid */
    .page-jilihot-ph__info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: calc(1.5 * var(--spacing-unit));
        margin-top: calc(2 * var(--spacing-unit));
    }

    .page-jilihot-ph__info-card {
        background-color: #ffffff;
        padding: calc(1.5 * var(--spacing-unit));
        border-radius: var(--border-radius-medium);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jilihot-ph__info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-jilihot-ph__info-icon {
        width: 80px;
        height: 80px;
        margin-bottom: var(--spacing-unit);
        object-fit: contain;
    }

    .page-jilihot-ph__info-title {
        font-size: 1.4em;
        color: var(--dark-color);
        margin-bottom: var(--spacing-unit);
        font-weight: bold;
    }

    .page-jilihot-ph__info-text {
        font-size: 1em;
        color: var(--text-color);
    }

    /* Game Categories */
    .page-jilihot-ph__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: calc(1.5 * var(--spacing-unit));
        margin-top: calc(2 * var(--spacing-unit));
    }

    .page-jilihot-ph__game-card {
        background-color: #ffffff;
        border-radius: var(--border-radius-medium);
        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;
    }

    .page-jilihot-ph__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

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

    .page-jilihot-ph__game-content {
        padding: var(--spacing-unit);
    }

    .page-jilihot-ph__game-title {
        font-size: 1.3em;
        color: var(--dark-color);
        margin-bottom: var(--spacing-unit);
        font-weight: bold;
    }

    /* Promotions Section */
    .page-jilihot-ph__promo-card {
        background-color: #ffffff;
        border-radius: var(--border-radius-medium);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: calc(1.5 * var(--spacing-unit));
        margin-bottom: calc(1.5 * var(--spacing-unit));
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-jilihot-ph__promo-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: var(--border-radius-small);
        margin-bottom: var(--spacing-unit);
        object-fit: cover;
    }

    .page-jilihot-ph__promo-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: var(--spacing-unit);
        font-weight: bold;
    }

    .page-jilihot-ph__promo-description {
        font-size: 1em;
        color: var(--text-color);
        margin-bottom: var(--spacing-unit);
    }

    /* Payment Methods & Game Providers */
    .page-jilihot-ph__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-unit);
        margin-top: calc(1.5 * var(--spacing-unit));
        justify-items: center;
        align-items: center;
    }

    .page-jilihot-ph__logo-item {
        background-color: #ffffff;
        padding: var(--spacing-unit);
        border-radius: var(--border-radius-small);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
        width: 100%;
        max-width: 180px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
    }

    .page-jilihot-ph__logo-image {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-jilihot-ph__faq-list {
        margin-top: calc(2 * var(--spacing-unit));
        border-top: 1px solid #ddd;
    }

    .page-jilihot-ph__faq-item {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        margin-bottom: var(--spacing-unit);
        border-radius: var(--border-radius-small);
        overflow: hidden;
    }

    .page-jilihot-ph__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        padding: 15px;
        background-color: #f9f9f9;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
    }
    .page-jilihot-ph__faq-question:hover {
        background-color: #e0e0e0;
    }
    .page-jilihot-ph__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        font-weight: bold;
        color: var(--dark-color);
        pointer-events: none; /* Crucial for click handling */
        display: flex; /* To align text and toggle */
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .page-jilihot-ph__faq-question-text {
        pointer-events: none; /* Ensure text doesn't block click */
    }
    .page-jilihot-ph__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        pointer-events: none; /* Crucial for click handling */
        margin-left: 10px;
        transition: transform 0.3s ease;
    }
    .page-jilihot-ph__faq-item.active .page-jilihot-ph__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
        color: var(--accent-color);
    }

    .page-jilihot-ph__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(--text-color);
        background-color: #ffffff;
    }

    .page-jilihot-ph__faq-item.active .page-jilihot-ph__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important;
        opacity: 1;
    }
    .page-jilihot-ph__faq-answer p {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* General Image Styling */
    .page-jilihot-ph img {
        display: block;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-jilihot-ph__hero-title {
            font-size: 2.8em;
        }
        .page-jilihot-ph__hero-description {
            font-size: 1.1em;
        }
        .page-jilihot-ph__heading {
            font-size: 2em;
        }
        .page-jilihot-ph__subheading {
            font-size: 1.5em;
        }
    }

    @media (max-width: 768px) {
        .page-jilihot-ph__hero-section {
            padding-top: 10px !important; /* Ensure consistency */
        }
        .page-jilihot-ph__hero-title {
            font-size: 2.2em;
        }
        .page-jilihot-ph__hero-description {
            font-size: 1em;
        }
        .page-jilihot-ph__heading {
            font-size: 1.8em;
        }
        .page-jilihot-ph__subheading {
            font-size: 1.3em;
        }
        .page-jilihot-ph__button {
            padding: 10px 20px;
            font-size: 1em;
        }

        /* For list items (e.g., info cards, game cards, logo items) */
        .page-jilihot-ph__info-card,
        .page-jilihot-ph__game-card,
        .page-jilihot-ph__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Adjust padding to ensure content is visible */
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* For list containers (e.g., grids) */
        .page-jilihot-ph__info-grid,
        .page-jilihot-ph__games-grid,
        .page-jilihot-ph__logo-grid,
        .page-jilihot-ph__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            display: block !important; /* Ensure items stack vertically */
        }
        .page-jilihot-ph__info-grid > div,
        .page-jilihot-ph__games-grid > div,
        .page-jilihot-ph__logo-grid > div {
             margin-bottom: var(--spacing-unit); /* Add vertical spacing between stacked items */
        }
        .page-jilihot-ph__promo-card {
            padding: var(--spacing-unit);
        }

        /* For all images */
        .page-jilihot-ph img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-jilihot-ph__image-container { /* If images are wrapped */
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-jilihot-ph__hero-title {
            font-size: 1.8em;
        }
        .page-jilihot-ph__hero-description {
            font-size: 0.9em;
        }
        .page-jilihot-ph__heading {
            font-size: 1.5em;
        }
        .page-jilihot-ph__subheading {
            font-size: 1.2em;
        }
        .page-jilihot-ph__section {
            padding: var(--spacing-unit) 10px;
        }
    }
  