
    /* General page styling */
    .page-jilihot-5 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #121212;
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-jilihot-5__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-5__section--dark {
        background-color: #1a1a1a;
    }

    .page-jilihot-5__section-title {
        font-size: 2.8em;
        color: #ffcc00; /* Gold */
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-jilihot-5__section-subtitle {
        font-size: 1.5em;
        color: #e0e0e0;
        margin-bottom: 40px;
    }

    .page-jilihot-5__paragraph {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #cccccc;
    }

    /* Buttons */
    .page-jilihot-5__button {
        display: inline-block;
        background-color: #ffcc00; /* Gold */
        color: #121212;
        padding: 15px 35px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .page-jilihot-5__button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* Image responsiveness */
    .page-jilihot-5 img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        display: block; /* Remove extra space below images */
        margin: 0 auto; /* Center images */
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-jilihot-5__hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:jilihot,gaming,casino,promotion]') no-repeat center center/cover;
        padding-top: 10px; /* Decorative top spacing, assuming body padding-top is handled by shared CSS */
        padding-bottom: 80px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
        text-align: center;
    }

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

    .page-jilihot-5__hero-subtitle {
        font-size: 1.8em;
        margin-bottom: 40px;
        max-width: 800px;
        color: #e0e0e0;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

    /* About Section */
    .page-jilihot-5__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        text-align: left;
    }

    .page-jilihot-5__about-text {
        flex: 1;
        min-width: 300px;
    }

    .page-jilihot-5__about-image-container {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

    .page-jilihot-5__game-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        text-align: center;
        box-sizing: border-box; /* Important for mobile list item rule */
    }

    .page-jilihot-5__game-item:hover {
        transform: translateY(-5px);
    }

    .page-jilihot-5__game-item-image-container {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box; /* Important for mobile image container rule */
    }

    .page-jilihot-5__game-item-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-jilihot-5__game-item-content {
        padding: 20px;
    }

    .page-jilihot-5__game-item-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-jilihot-5__game-item-description {
        font-size: 0.95em;
        color: #cccccc;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-jilihot-5__promotion-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        margin-bottom: 30px;
        text-align: left;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-jilihot-5__promotion-image-container {
        width: 100%;
        height: 250px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .page-jilihot-5__promotion-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-jilihot-5__promotion-content {
        padding: 25px;
    }

    .page-jilihot-5__promotion-title {
        font-size: 1.8em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-jilihot-5__promotion-description {
        font-size: 1.1em;
        color: #cccccc;
        margin-bottom: 25px;
    }

    /* Why Choose Us Section */
    .page-jilihot-5__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-jilihot-5__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-5__feature-icon {
        font-size: 3em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-jilihot-5__feature-title {
        font-size: 1.5em;
        color: #f0f0f0;
        margin-bottom: 10px;
    }

    .page-jilihot-5__feature-description {
        font-size: 0.95em;
        color: #cccccc;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Call to Action Section */
    .page-jilihot-5__cta-section {
        background-color: #0d0d0d;
        padding: 80px 20px;
        text-align: center;
    }

    .page-jilihot-5__cta-title {
        font-size: 2.5em;
        color: #ffcc00;
        margin-bottom: 20px;
    }

    .page-jilihot-5__cta-description {
        font-size: 1.2em;
        color: #e0e0e0;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FAQ Section */
    .page-jilihot-5__faq-section {
        padding: 40px 20px;
        background-color: #1a1a1a;
        color: #f0f0f0;
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-5__faq-heading {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffcc00; /* Gold color for headings */
    }

    .page-jilihot-5__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-jilihot-5__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    .page-jilihot-5__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #3a3a3a;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-jilihot-5__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-jilihot-5__faq-question-title {
        margin: 0;
        font-size: 1.3em;
        color: #f0f0f0;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-jilihot-5__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-jilihot-5__faq-item.active .page-jilihot-5__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-jilihot-5__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: #cccccc;
        font-size: 1.1em;
    }

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

    .page-jilihot-5__faq-answer p {
        margin: 0;
        line-height: 1.6;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .page-jilihot-5__section {
            padding: 40px 15px;
        }

        .page-jilihot-5__hero-section {
            min-height: 50vh;
            padding-bottom: 60px;
        }

        .page-jilihot-5__hero-title {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .page-jilihot-5__hero-subtitle {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .page-jilihot-5__section-title {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .page-jilihot-5__section-subtitle {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .page-jilihot-5__paragraph {
            font-size: 1em;
        }

        .page-jilihot-5__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        /* Enforce image responsiveness with !important for mobile */
        .page-jilihot-5 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-jilihot-5__image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-jilihot-5__about-content {
            flex-direction: column;
        }

        .page-jilihot-5__game-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
        }
        .page-jilihot-5__game-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            padding: 0 !important;
        }
        .page-jilihot-5__game-item-image-container {
            width: 100% !important;
            max-width: 100% !important;
            height: 180px; /* Slightly smaller height on mobile */
            box-sizing: border-box !important;
        }
        .page-jilihot-5__game-item-content {
            padding: 15px;
        }
        .page-jilihot-5__game-item-title {
            font-size: 1.2em;
        }
        .page-jilihot-5__game-item-description {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-jilihot-5__promotion-item {
            flex-direction: column;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            padding: 0 !important;
        }
        .page-jilihot-5__promotion-image-container {
            height: 200px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-jilihot-5__promotion-content {
            padding: 20px;
        }
        .page-jilihot-5__promotion-title {
            font-size: 1.5em;
        }
        .page-jilihot-5__promotion-description {
            font-size: 1em;
        }

        .page-jilihot-5__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-jilihot-5__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            padding: 25px;
        }
        .page-jilihot-5__feature-title {
            font-size: 1.3em;
        }
        .page-jilihot-5__feature-description {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-jilihot-5__cta-section {
            padding: 60px 15px;
        }
        .page-jilihot-5__cta-title {
            font-size: 2em;
        }
        .page-jilihot-5__cta-description {
            font-size: 1.1em;
        }

        .page-jilihot-5__faq-section {
            padding: 30px 15px;
        }

        .page-jilihot-5__faq-heading {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-jilihot-5__faq-question {
            padding: 15px 20px;
        }

        .page-jilihot-5__faq-question-title {
            font-size: 1.1em;
        }

        .page-jilihot-5__faq-toggle {
            font-size: 1.5em;
        }

        .page-jilihot-5__faq-answer {
            padding: 0 20px;
        }

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