
    /* Fixed navigation bar spacing:
       The shared.css is expected to contain :root { --header-offset: ... } and body { padding-top: var(--header-offset); }.
       Therefore, the main content area should not duplicate this padding.
       A small decorative padding-top is acceptable for hero/first sections.
       As a fallback, if shared.css doesn't set body padding, apply it to the main page wrapper.
    */
    .page-8k8-com-ph-2 {
        padding-top: var(--header-offset, 122px); /* Fallback for body padding, if not set by shared.css */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #e0e0e0;
        background-color: #1a1a2e; /* Dark background for gaming theme */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    /* Hero Section */
    .page-8k8-com-ph-2__hero-section {
        position: relative;
        text-align: center;
        color: white;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 500px;
        background-color: #0d0d1a; /* Darker background for hero */
        overflow: hidden;
        padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-8k8-com-ph-2__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.4;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .page-8k8-com-ph-2__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #ffcc00; /* Gold color for emphasis */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: #f0f0f0;
    }

    .page-8k8-com-ph-2__cta-button {
        display: inline-block;
        background-color: #ffcc00;
        color: #1a1a2e;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-com-ph-2__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-com-ph-2__section {
        padding: 60px 20px;
        text-align: center;
    }

    .page-8k8-com-ph-2__section--dark {
        background-color: #1a1a2e;
    }

    .page-8k8-com-ph-2__section--light {
        background-color: #2a2a4a;
    }

    .page-8k8-com-ph-2__section-title {
        font-size: 2.5em;
        color: #ffcc00;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    /* Promotions */
    .page-8k8-com-ph-2__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-com-ph-2__promotion-card {
        background-color: #2a2a4a;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        color: #f0f0f0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__promotion-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-com-ph-2__promotion-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__promotion-content {
        padding: 25px;
    }

    .page-8k8-com-ph-2__promotion-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-8k8-com-ph-2__promotion-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Game Categories */
    .page-8k8-com-ph-2__game-categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-8k8-com-ph-2__game-category-card {
        background-color: #333355;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, background-color 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__game-category-card:hover {
        transform: translateY(-5px);
        background-color: #444466;
    }

    .page-8k8-com-ph-2__game-category-image {
        width: 150px;
        height: 150px;
        object-fit: contain;
        margin-bottom: 15px;
        border-radius: 8px; /* Slightly rounded corners for game icons */
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__game-category-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-8k8-com-ph-2__game-category-description {
        font-size: 0.95em;
        color: #cccccc;
    }

    /* Features List */
    .page-8k8-com-ph-2__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-com-ph-2__feature-item {
        background-color: #2a2a4a;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-8k8-com-ph-2__feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__feature-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-8k8-com-ph-2__feature-description {
        font-size: 1em;
        color: #cccccc;
    }

    /* Payment Methods & Game Providers */
    .page-8k8-com-ph-2__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-items: center;
    }

    .page-8k8-com-ph-2__logo-item {
        background-color: #333355;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 80px; /* Ensure consistent height for logos */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__logo-image {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
        transition: transform 0.3s ease;
        height: auto;
        box-sizing: border-box;
    }
    .page-8k8-com-ph-2__logo-image:hover {
        transform: scale(1.05);
    }


    /* FAQ Section */
    .page-8k8-com-ph-2__faq-section {
        padding: 60px 20px;
        background-color: #2a2a4a;
        text-align: center;
    }

    .page-8k8-com-ph-2__faq-list {
        max-width: 800px;
        margin: 40px auto 0;
        text-align: left;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-8k8-com-ph-2__faq-item {
        background-color: #1a1a2e;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-8k8-com-ph-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #333355;
        transition: background-color 0.3s ease;
    }

    .page-8k8-com-ph-2__faq-question:hover {
        background-color: #444466;
    }

    .page-8k8-com-ph-2__faq-question-text {
        font-size: 1.2em;
        color: #ffcc00;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-com-ph-2__faq-toggle {
        font-size: 1.8em;
        color: #ffcc00;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
    }

    .page-8k8-com-ph-2__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: 1em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

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

    /* Floating Buttons */
    .page-8k8-com-ph-2__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-8k8-com-ph-2__floating-button {
        background-color: #ffcc00;
        color: #1a1a2e;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
    }

    .page-8k8-com-ph-2__floating-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-com-ph-2__hero-title {
            font-size: 3em;
        }
        .page-8k8-com-ph-2__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-com-ph-2__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-com-ph-2 {
            padding-top: var(--header-offset, 122px) !important; /* Ensure mobile padding-top if not set by body */
        }
        .page-8k8-com-ph-2__hero-section {
            padding: 60px 15px;
            min-height: 400px;
            padding-top: 10px; /* Small decorative padding */
        }
        .page-8k8-com-ph-2__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-com-ph-2__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-com-ph-2__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-com-ph-2__section {
            padding: 40px 15px;
        }
        .page-8k8-com-ph-2__section-title {
            font-size: 1.8em;
        }

        /* List items mobile responsive */
        .page-8k8-com-ph-2__promotions-grid,
        .page-8k8-com-ph-2__game-categories-grid,
        .page-8k8-com-ph-2__features-grid,
        .page-8k8-com-ph-2__logo-grid {
            grid-template-columns: 1fr; /* Stack items */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .page-8k8-com-ph-2__promotion-card,
        .page-8k8-com-ph-2__game-category-card,
        .page-8k8-com-ph-2__feature-item,
        .page-8k8-com-ph-2__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 not too wide */
            padding-right: 15px !important;
        }
        
        .page-8k8-com-ph-2__promotion-description,
        .page-8k8-com-ph-2__game-category-description,
        .page-8k8-com-ph-2__feature-description,
        .page-8k8-com-ph-2__faq-answer {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com-ph-2__faq-question {
            padding: 15px 20px;
        }
        .page-8k8-com-ph-2__faq-question-text {
            font-size: 1.1em;
        }
        .page-8k8-com-ph-2__faq-answer {
            padding: 0 20px;
        }
        .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8k8-com-ph-2__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            bottom: 15px;
        }

        .page-8k8-com-ph-2__floating-button {
            flex: 1;
            margin: 0 5px; /* Adjust spacing between buttons */
            min-width: unset;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com-ph-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-com-ph-2__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-com-ph-2__floating-button {
            font-size: 0.9em;
            padding: 10px 15px;
        }
    }
  