
        :root {
            --page-2hm88-primary-color: #e44d26; /* A vibrant orange-red for betting */
            --page-2hm88-secondary-color: #333;
            --page-2hm88-accent-color: #ffcc00; /* Gold for highlights */
            --page-2hm88-text-color: #f0f0f0;
            --page-2hm88-dark-bg: #1a1a1a;
            --page-2hm88-light-bg: #2b2b2b;
            --page-2hm88-border-color: #444;
            --page-2hm88-button-hover: #ff6600;
        }

        .page-2hm88 {
            font-family: 'Arial', sans-serif;
            color: var(--page-2hm88-text-color);
            background-color: var(--page-2hm88-dark-bg);
            line-height: 1.6;
            padding-top: var(--header-offset, 122px); /* Fallback for body padding, if not handled by shared.css */
        }

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

        @media (max-width: 768px) {
            .page-2hm88__container {
                padding: 10px;
            }
        }

        /* Hero Section */
        .page-2hm88__hero-section {
            background-color: var(--page-2hm88-dark-bg);
            text-align: center;
            padding: 60px 20px 40px;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid var(--page-2hm88-border-color);
            padding-top: 10px; /* Small decorative top padding, as body padding handles header offset */
        }

        .page-2hm88__hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.2; /* Subtle background */
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-2hm88__hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-2hm88__hero-brand {
            font-size: 3.5em;
            color: var(--page-2hm88-accent-color);
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
            font-weight: bold;
            letter-spacing: 2px;
            animation: pulse 2s infinite alternate;
            line-height: 1.2;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        .page-2hm88__hero-title {
            font-size: 2.2em;
            color: var(--page-2hm88-primary-color);
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.3;
        }

        .page-2hm88__hero-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: var(--page-2hm88-text-color);
        }

        .page-2hm88__hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .page-2hm88__button {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--page-2hm88-primary-color);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1em;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .page-2hm88__button:hover {
            background-color: var(--page-2hm88-button-hover);
            transform: translateY(-2px);
        }

        /* Floating buttons for mobile */
        .page-2hm88__floating-buttons {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 1000;
            background-color: rgba(26, 26, 26, 0.9);
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            max-width: 90%;
            box-sizing: border-box;
            justify-content: center;
        }

        .page-2hm88__floating-button {
            padding: 10px 20px;
            font-size: 1em;
            flex-grow: 1;
            text-align: center;
        }

        /* Product Categories */
        .page-2hm88__section {
            padding: 50px 0;
            background-color: var(--page-2hm88-light-bg);
            border-bottom: 1px solid var(--page-2hm88-border-color);
        }

        .page-2hm88__section:nth-of-type(even) {
            background-color: var(--page-2hm88-dark-bg);
        }

        .page-2hm88__section-title {
            text-align: center;
            font-size: 2.5em;
            color: var(--page-2hm88-accent-color);
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
            line-height: 1.2;
        }

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

        .page-2hm88__category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .page-2hm88__category-card {
            background-color: var(--page-2hm88-dark-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 1px solid var(--page-2hm88-border-color);
        }

        .page-2hm88__category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
        }

        .page-2hm88__category-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid var(--page-2hm88-border-color);
            max-width: 100% !important; /* Ensure responsiveness */
            height: auto !important; /* Maintain aspect ratio */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-2hm88__category-content {
            padding: 20px;
        }

        .page-2hm88__category-title {
            font-size: 1.5em;
            color: var(--page-2hm88-primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.3;
        }

        .page-2hm88__category-description {
            font-size: 0.95em;
            color: var(--page-2hm88-text-color);
            margin-bottom: 20px;
        }

        /* Why Choose Section */
        .page-2hm88__features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-2hm88__feature-item {
            background-color: var(--page-2hm88-dark-bg);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
            border: 1px solid var(--page-2hm88-border-color);
            transition: background-color 0.3s ease;
        }

        .page-2hm88__feature-item:hover {
            background-color: #262626;
        }

        .page-2hm88__feature-icon {
            width: 80px; /* Base size */
            height: 80px; /* Base size */
            margin: 0 auto 20px;
            object-fit: contain;
            filter: none; /* Ensure no color filters */
            max-width: 100% !important; /* Ensure responsiveness */
            height: auto !important; /* Maintain aspect ratio */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-2hm88__feature-title {
            font-size: 1.3em;
            color: var(--page-2hm88-accent-color);
            margin-bottom: 10px;
            font-weight: bold;
            line-height: 1.3;
        }

        .page-2hm88__feature-description {
            font-size: 0.9em;
            color: var(--page-2hm88-text-color);
        }

        /* Promotions Section */
        .page-2hm88__promo-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-2hm88__promo-item {
            background-color: var(--page-2hm88-dark-bg);
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            width: calc(33% - 17px); /* Three items per row */
            box-sizing: border-box !important;
            padding: 25px;
            border: 1px solid var(--page-2hm88-border-color);
            transition: transform 0.3s ease, background-color 0.3s ease;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-2hm88__promo-item:hover {
            transform: translateY(-5px);
            background-color: #262626;
        }

        .page-2hm88__promo-title {
            font-size: 1.4em;
            color: var(--page-2hm88-primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.3;
        }

        .page-2hm88__promo-description {
            font-size: 0.95em;
            color: var(--page-2hm88-text-color);
            margin-bottom: 15px;
        }

        .page-2hm88__promo-cta {
            padding: 8px 18px;
            font-size: 0.9em;
            background-color: var(--page-2hm88-accent-color);
            color: var(--page-2hm88-dark-bg);
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
            user-select: none; /* Make it feel like a button */
        }

        .page-2hm88__promo-cta:hover {
            background-color: #ffd700;
        }

        /* News Section */
        .page-2hm88__news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-2hm88__news-card {
            background-color: var(--page-2hm88-dark-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 1px solid var(--page-2hm88-border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .page-2hm88__news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
        }

        .page-2hm88__news-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid var(--page-2hm88-border-color);
            max-width: 100% !important; /* Ensure responsiveness */
            height: auto !important; /* Maintain aspect ratio */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-2hm88__news-content {
            padding: 20px;
        }

        .page-2hm88__news-date {
            font-size: 0.85em;
            color: #aaa;
            margin-bottom: 10px;
        }

        .page-2hm88__news-title {
            font-size: 1.3em;
            color: var(--page-2hm88-primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.3;
        }

        .page-2hm88__news-excerpt {
            font-size: 0.9em;
            color: var(--page-2hm88-text-color);
        }

        /* FAQ Section */
        .page-2hm88__faq-section {
            padding: 50px 0;
            background-color: var(--page-2hm88-light-bg);
        }

        .page-2hm88__faq-list {
            max-width: 800px;
            margin: 0 auto;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .page-2hm88__faq-item {
            background-color: var(--page-2hm88-dark-bg);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--page-2hm88-border-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-2hm88__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            background-color: #222;
            color: var(--page-2hm88-accent-color);
            font-size: 1.15em;
            font-weight: bold;
            user-select: none;
            transition: background-color 0.3s ease;
            line-height: 1.4;
        }

        .page-2hm88__faq-question:hover {
            background-color: #2c2c2c;
        }

        .page-2hm88__faq-question h3 {
            margin: 0;
            color: inherit;
            pointer-events: none; /* Prevent h3 from intercepting click */
            flex-grow: 1;
        }

        .page-2hm88__faq-toggle {
            font-size: 1.5em;
            margin-left: 15px;
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevent toggle from intercepting click */
            color: var(--page-2hm88-primary-color);
            line-height: 1;
        }

        .page-2hm88__faq-item.active .page-2hm88__faq-toggle {
            transform: rotate(45deg); /* Plus to X / Minus */
        }

        .page-2hm88__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: var(--page-2hm88-text-color);
            font-size: 0.95em;
            background-color: var(--page-2hm88-dark-bg);
        }

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

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-2hm88__category-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page-2hm88__promo-item {
                width: calc(50% - 12.5px); /* Two items per row */
            }
        }

        @media (max-width: 768px) {
            .page-2hm88__hero-brand {
                font-size: 2.8em;
            }
            .page-2hm88__hero-title {
                font-size: 1.8em;
            }
            .page-2hm88__hero-description {
                font-size: 1em;
            }
            .page-2hm88__hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .page-2hm88__button {
                width: 80%;
                margin: 0 auto;
            }
            .page-2hm88__section-title {
                font-size: 2em;
            }
            .page-2hm88__category-grid,
            .page-2hm88__features-grid,
            .page-2hm88__news-grid {
                grid-template-columns: 1fr;
            }
            .page-2hm88__promo-list {
                flex-direction: column;
                align-items: center;
            }
            .page-2hm88__promo-item {
                width: 90% !important; /* Single item per row, important for lists */
                max-width: 90% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 15px;
            }
            .page-2hm88__faq-question {
                padding: 15px 20px;
                font-size: 1.05em;
            }
            .page-2hm88__faq-answer {
                padding: 0 20px;
            }
            .page-2hm88__faq-item.active .page-2hm88__faq-answer {
                padding: 15px 20px !important;
            }
            .page-2hm88__floating-buttons {
                width: 100%;
                left: 0;
                transform: translateX(0);
                border-radius: 0;
                bottom: 0;
                padding: 10px;
                gap: 10px;
            }
            .page-2hm88__floating-button {
                padding: 8px 15px;
                font-size: 0.95em;
            }
        }

        /* Ensure all images are responsive on mobile */
        .page-2hm88 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Specific styles for floating buttons for better contrast */
        .page-2hm88__floating-button--register {
            background-color: var(--page-2hm88-primary-color);
            color: #fff;
        }
        .page-2hm88__floating-button--register:hover {
            background-color: var(--page-2hm88-button-hover);
        }
        .page-2hm88__floating-button--login {
            background-color: var(--page-2hm88-accent-color);
            color: var(--page-2hm88-dark-bg);
        }
        .page-2hm88__floating-button--login:hover {
            background-color: #ffd700;
        }
    