
    :root {
        --page-28bet2-primary-color: #e44d26; /* A vibrant, energetic color for betting */
        --page-28bet2-secondary-color: #333;
        --page-28bet2-accent-color: #f7b32b; /* Gold/yellow for highlights */
        --page-28bet2-text-light: #f8f8f8;
        --page-28bet2-text-dark: #1a1a1a;
        --page-28bet2-bg-dark: #0f0f0f;
        --page-28bet2-bg-light: #1a1a1a;
        --page-28bet2-border-color: #444;
    }

    .page-28bet2 {
        font-family: 'Arial', sans-serif;
        color: var(--page-28bet2-text-light);
        background-color: var(--page-28bet2-bg-dark);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    /* General Section Styling */
    .page-28bet2__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--page-28bet2-bg-light);
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .page-28bet2__section--dark {
        background-color: var(--page-28bet2-bg-dark);
    }
    .page-28bet2__section-title {
        text-align: center;
        color: var(--page-28bet2-accent-color);
        font-size: 2.5em;
        margin-bottom: 30px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    .page-28bet2__section-subtitle {
        text-align: center;
        color: var(--page-28bet2-text-light);
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-28bet2__hero-section {
        position: relative;
        overflow: hidden;
        text-align: center;
        padding: 80px 20px 60px;
        background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
        border-radius: 0; /* No border-radius for hero */
        margin-bottom: 0;
        box-sizing: border-box;
    }
    .page-28bet2__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 30px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    .page-28bet2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }
    .page-28bet2__hero-title {
        font-size: 3em;
        color: var(--page-28bet2-primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    }
    .page-28bet2__hero-description {
        font-size: 1.3em;
        color: var(--page-28bet2-text-light);
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Buttons */
    .page-28bet2__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: 90%;
        max-width: 380px;
        justify-content: center;
    }
    .page-28bet2__floating-button {
        display: block;
        width: 100%;
        padding: 15px 25px;
        background-color: var(--page-28bet2-primary-color);
        color: var(--page-28bet2-text-light);
        text-align: center;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        border: none;
        cursor: pointer;
        box-sizing: border-box;
    }
    .page-28bet2__floating-button:hover {
        background-color: #c43a1a;
        transform: translateY(-3px);
    }
    .page-28bet2__floating-button--secondary {
        background-color: var(--page-28bet2-accent-color);
        color: var(--page-28bet2-text-dark);
    }
    .page-28bet2__floating-button--secondary:hover {
        background-color: #e0a125;
    }

    /* Game Categories Section */
    .page-28bet2__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-28bet2__game-card {
        background-color: var(--page-28bet2-bg-dark);
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--page-28bet2-border-color);
        box-sizing: border-box;
    }
    .page-28bet2__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
    .page-28bet2__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #2a2a2a;
    }
    .page-28bet2__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .page-28bet2__game-card-content {
        padding: 20px;
    }
    .page-28bet2__game-card-title {
        font-size: 1.5em;
        color: var(--page-28bet2-primary-color);
        margin-bottom: 10px;
    }
    .page-28bet2__game-card-description {
        font-size: 0.95em;
        color: var(--page-28bet2-text-light);
    }

    /* Promotions Section */
    .page-28bet2__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-28bet2__promotion-card {
        background-color: var(--page-28bet2-bg-dark);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--page-28bet2-border-color);
        box-sizing: border-box;
    }
    .page-28bet2__promotion-card-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #2a2a2a;
    }
    .page-28bet2__promotion-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .page-28bet2__promotion-card-content {
        padding: 20px;
    }
    .page-28bet2__promotion-card-title {
        font-size: 1.4em;
        color: var(--page-28bet2-accent-color);
        margin-bottom: 10px;
    }
    .page-28bet2__promotion-card-description {
        font-size: 0.95em;
        color: var(--page-28bet2-text-light);
        margin-bottom: 15px;
    }
    .page-28bet2__promotion-card-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--page-28bet2-primary-color);
        color: var(--page-28bet2-text-light);
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .page-28bet2__promotion-card-button:hover {
        background-color: #c43a1a;
    }

    /* How-to Section */
    .page-28bet2__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-28bet2__step-card {
        background-color: var(--page-28bet2-bg-dark);
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--page-28bet2-border-color);
        box-sizing: border-box;
    }
    .page-28bet2__step-number {
        font-size: 2.5em;
        color: var(--page-28bet2-primary-color);
        font-weight: bold;
        margin-bottom: 15px;
    }
    .page-28bet2__step-title {
        font-size: 1.3em;
        color: var(--page-28bet2-accent-color);
        margin-bottom: 10px;
    }
    .page-28bet2__step-description {
        font-size: 0.95em;
        color: var(--page-28bet2-text-light);
    }

    /* Features Section */
    .page-28bet2__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-28bet2__feature-item {
        background-color: var(--page-28bet2-bg-dark);
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--page-28bet2-border-color);
        box-sizing: border-box;
    }
    .page-28bet2__feature-icon {
        width: 80px; /* This is a placeholder for the icon container size */
        height: 80px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--page-28bet2-primary-color);
        color: var(--page-28bet2-text-light);
        font-size: 2.5em;
        font-weight: bold;
        overflow: hidden; /* Ensure image fits */
    }
    .page-28bet2__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
        min-width: 200px; /* Enforce minimum image size */
        min-height: 200px;
        object-fit: cover; /* Ensure image covers the area */
    }
    .page-28bet2__feature-title {
        font-size: 1.3em;
        color: var(--page-28bet2-accent-color);
        margin-bottom: 10px;
    }
    .page-28bet2__feature-description {
        font-size: 0.95em;
        color: var(--page-28bet2-text-light);
    }

    /* FAQ Section */
    .page-28bet2__faq-list {
        margin-top: 30px;
        list-style: none;
        padding: 0;
    }
    .page-28bet2__faq-item {
        background-color: var(--page-28bet2-bg-dark);
        border: 1px solid var(--page-28bet2-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }
    .page-28bet2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #2a2a2a;
        transition: background-color 0.3s ease;
    }
    .page-28bet2__faq-question:hover {
        background-color: #3a3a3a;
    }
    .page-28bet2__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-28bet2-accent-color);
        pointer-events: none; /* Crucial for click event to pass to parent */
    }
    .page-28bet2__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-28bet2-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event to pass to parent */
    }
    .page-28bet2__faq-item.active .page-28bet2__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }
    .page-28bet2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: var(--page-28bet2-text-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }
    .page-28bet2__faq-item.active .page-28bet2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Call to Action Section */
    .page-28bet2__cta-section {
        text-align: center;
        padding: 50px 20px;
        background-color: var(--page-28bet2-primary-color);
        border-radius: 8px;
        margin-top: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .page-28bet2__cta-title {
        font-size: 2.5em;
        color: var(--page-28bet2-text-light);
        margin-bottom: 20px;
    }
    .page-28bet2__cta-description {
        font-size: 1.2em;
        color: var(--page-28bet2-text-light);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-28bet2__cta-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: var(--page-28bet2-accent-color);
        color: var(--page-28bet2-text-dark);
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .page-28bet2__cta-button:hover {
        background-color: #e0a125;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-28bet2__section {
            padding: 30px 15px;
        }
        .page-28bet2__section-title {
            font-size: 2em;
            margin-bottom: 20px;
        }
        .page-28bet2__section-subtitle {
            font-size: 1em;
            margin-bottom: 30px;
        }

        .page-28bet2__hero-section {
            padding: 60px 15px 40px;
        }
        .page-28bet2__hero-title {
            font-size: 2.2em;
        }
        .page-28bet2__hero-description {
            font-size: 1.1em;
        }

        .page-28bet2__floating-buttons {
            flex-direction: row; /* Keep row for small screens, ensure width 100% */
            width: 95%;
            gap: 10px;
            bottom: 15px;
        }
        .page-28bet2__floating-button {
            font-size: 1em;
            padding: 12px 15px;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-28bet2__game-categories,
        .page-28bet2__promotion-grid,
        .page-28bet2__steps-grid,
        .page-28bet2__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-28bet2__game-card,
        .page-28bet2__promotion-card,
        .page-28bet2__step-card,
        .page-28bet2__feature-item,
        .page-28bet2__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-28bet2__faq-question {
            padding: 15px 20px;
        }
        .page-28bet2__faq-question h3 {
            font-size: 1.1em;
        }
        .page-28bet2__faq-answer {
            padding: 0 20px;
        }
        .page-28bet2__faq-item.active .page-28bet2__faq-answer {
            padding: 15px 20px !important;
        }

        .page-28bet2__cta-section {
            padding: 40px 15px;
        }
        .page-28bet2__cta-title {
            font-size: 2em;
        }
        .page-28bet2__cta-description {
            font-size: 1em;
        }
        .page-28bet2__cta-button {
            padding: 12px 30px;
            font-size: 1.1em;
        }
    }

    /* Ensure all images are responsive */
    .page-28bet2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-28bet2__game-card-image-wrapper,
    .page-28bet2__promotion-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* For list containers, ensure padding/margin is reset on mobile */
    .page-28bet2__game-categories,
    .page-28bet2__promotion-grid,
    .page-28bet2__steps-grid,
    .page-28bet2__features-grid,
    .page-28bet2__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    /* Text wrapping for list items and general text */
    .page-28bet2 p,
    .page-28bet2 h1,
    .page-28bet2 h2,
    .page-28bet2 h3,
    .page-28bet2 h4,
    .page-28bet2 h5,
    .page-28bet2 h6,
    .page-28bet2 li,
    .page-28bet2 div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
  