
    /* General styles for the page-88jun scope */
    .page-88jun {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background for betting theme */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero section, relying on body for header offset */
    }

    .page-88jun__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-88jun__section-title {
        font-size: 2.5em;
        color: #FF6B6B; /* Accent color */
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    .page-88jun__paragraph {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #cccccc;
    }

    /* Hero Section */
    .page-88jun__hero-section {
        background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
        padding: 60px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        color: #ffffff;
    }

    .page-88jun__hero-content {
        max-width: 900px;
        margin-bottom: 30px;
        z-index: 1;
    }

    .page-88jun__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #f0f0f0;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-88jun__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-88jun__hero-image-wrapper {
        width: 100%;
        max-width: 1000px; /* Centered product display */
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .page-88jun__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* About Section */
    .page-88jun__about-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    /* Products Section */
    .page-88jun__products-section {
        padding: 60px 0;
        background-color: #0f3460;
    }

    .page-88jun__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-88jun__product-item {
        background-color: #16213e;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88jun__product-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88jun__product-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-bottom: 3px solid #FF6B6B;
    }

    .page-88jun__product-title {
        font-size: 1.8em;
        color: #FF6B6B;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

    .page-88jun__product-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-88jun__promotions-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-88jun__promo-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-88jun__promo-item {
        background-color: #0f3460;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

    .page-88jun__promo-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88jun__promo-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-bottom: 3px solid #FF6B6B;
    }

    .page-88jun__promo-title {
        font-size: 1.6em;
        color: #FF6B6B;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

    .page-88jun__promo-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px;
    }

    /* Payment Methods Section */
    .page-88jun__payment-section {
        padding: 60px 0;
        background-color: #0f3460;
    }

    .page-88jun__payment-methods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-88jun__payment-item {
        background-color: #16213e;
        border-radius: 8px;
        padding: 15px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        width: 150px; /* Fixed width for better alignment */
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .page-88jun__payment-item:hover {
        transform: translateY(-5px);
    }

    .page-88jun__payment-logo {
        max-width: 100px;
        height: auto;
        margin-bottom: 10px;
        filter: brightness(1.2); /* Slight brightness for visibility, not changing color */
        max-height: 50px; /* Ensure logos are not too large */
    }

    .page-88jun__payment-name {
        font-size: 1.1em;
        color: #f0f0f0;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-88jun__faq-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-88jun__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-88jun__faq-item {
        background-color: #0f3460;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    .page-88jun__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #16213e;
        transition: background-color 0.3s ease;
    }

    .page-88jun__faq-question:hover {
        background-color: #1f2f50;
    }

    .page-88jun__faq-title {
        font-size: 1.3em;
        color: #f0f0f0;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
        text-align: left;
    }

    .page-88jun__faq-toggle {
        font-size: 1.8em;
        color: #FF6B6B;
        font-weight: bold;
        margin-left: 20px;
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

    .page-88jun__faq-item.active .page-88jun__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-88jun__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding for collapsed state */
        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;
        text-align: left;
    }

    .page-88jun__faq-item.active .page-88jun__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Final padding for expanded state */
        opacity: 1;
    }

    .page-88jun__faq-answer p {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Floating Buttons */
    .page-88jun__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-88jun__floating-button {
        display: block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
        min-width: 120px;
    }

    .page-88jun__floating-button--register {
        background-color: #FF6B6B; /* Accent color */
        color: #ffffff;
    }

    .page-88jun__floating-button--login {
        background-color: #3498db; /* Another accent color */
        color: #ffffff;
    }

    .page-88jun__floating-button:hover {
        transform: translateY(-5px);
        opacity: 0.9;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-88jun__hero-title {
            font-size: 2.5em;
        }

        .page-88jun__hero-description {
            font-size: 1.1em;
        }

        .page-88jun__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-88jun__paragraph {
            font-size: 1em;
            padding: 0 10px;
        }

        .page-88jun__product-grid,
        .page-88jun__promo-list {
            grid-template-columns: 1fr; /* Single column for small screens */
            padding: 0 10px;
        }

        .page-88jun__product-item,
        .page-88jun__promo-item {
            width: 100% !important; /* Force full width for list items */
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important; /* Text wrapping */
            overflow-wrap: break-word !important;
        }

        .page-88jun__promo-list {
            padding: 0 !important; /* Remove padding from list container */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-88jun__promo-item .page-88jun__promo-description,
        .page-88jun__product-item .page-88jun__product-description {
            padding: 0 10px; /* Adjust padding for smaller screens */
        }

        .page-88jun__payment-methods {
            flex-direction: column;
            align-items: center;
        }

        .page-88jun__payment-item {
            width: 90%;
            max-width: 300px;
        }

        .page-88jun__faq-question {
            padding: 15px 20px;
        }

        .page-88jun__faq-title {
            font-size: 1.1em;
        }

        .page-88jun__faq-answer {
            padding: 15px 20px;
        }

        .page-88jun__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            bottom: 10px;
            left: 20px;
            right: 20px;
            justify-content: space-around;
            gap: 10px;
        }

        .page-88jun__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 1em;
        }

        .page-88jun__hero-image,
        .page-88jun__product-image,
        .page-88jun__promo-image,
        .page-88jun__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-88jun__container {
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        .page-88jun__hero-title {
            font-size: 2em;
        }
        .page-88jun__hero-description {
            font-size: 0.95em;
        }
        .page-88jun__section-title {
            font-size: 1.8em;
        }
        .page-88jun__faq-title {
            font-size: 1em;
        }
        .page-88jun__faq-toggle {
            font-size: 1.5em;
        }
        .page-88jun__floating-button {
            font-size: 0.9em;
            padding: 8px 10px;
        }
    }
  