
    /* General Styling */
    .page-123bet-im {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        padding-top: 10px; /* Small padding as body already has var(--header-offset) */
    }

    .page-123bet-im__section-title {
        font-size: 2.5em;
        color: #ffd700; /* Gold */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-123bet-im__section-description {
        font-size: 1.1em;
        color: #cccccc;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px auto;
        padding: 0 15px;
    }

    .page-123bet-im__brand-highlight {
        color: #ffd700; /* Gold */
    }

    .page-123bet-im__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
        border: none;
        font-size: 1em;
    }

    .page-123bet-im__button--primary {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
    }

    .page-123bet-im__button--primary:hover {
        background-color: #e0b800; /* Darker Gold */
    }

    .page-123bet-im__button--secondary {
        background-color: transparent;
        color: #ffd700; /* Gold */
        border: 2px solid #ffd700;
    }

    .page-123bet-im__button--secondary:hover {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
    }

    .page-123bet-im__button--small {
        padding: 8px 18px;
        font-size: 0.9em;
    }

    .page-123bet-im__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Floating Buttons */
    .page-123bet-im__floating-buttons {
        position: fixed;
        top: 120px; /* Adjust based on header height, should be below header */
        right: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-123bet-im__floating-buttons .page-123bet-im__button {
        padding: 10px 20px;
        font-size: 0.9em;
        border-radius: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-123bet-im__floating-buttons .page-123bet-im__button--register {
        background-color: #007bff; /* Blue */
        color: #ffffff;
    }
    .page-123bet-im__floating-buttons .page-123bet-im__button--register:hover {
        background-color: #0056b3;
    }

    .page-123bet-im__floating-buttons .page-123bet-im__button--login {
        background-color: #28a745; /* Green */
        color: #ffffff;
    }
    .page-123bet-im__floating-buttons .page-123bet-im__button--login:hover {
        background-color: #1e7e34;
    }


    /* Hero Section */
    .page-123bet-im__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
        gap: 30px;
    }

    .page-123bet-im__hero-content {
        max-width: 900px;
    }

    .page-123bet-im__hero-title {
        font-size: 3.5em;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-123bet-im__hero-description {
        font-size: 1.3em;
        color: #cccccc;
        margin-bottom: 30px;
    }

    .page-123bet-im__hero-cta {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-123bet-im__hero-image-container {
        width: 100%;
        max-width: 800px;
        margin-top: 30px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-123bet-im__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* About Section */
    .page-123bet-im__about-section {
        padding: 50px 20px;
        background-color: #222222;
    }

    .page-123bet-im__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-123bet-im__feature-item {
        background-color: #333333;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-123bet-im__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-123bet-im__feature-icon {
        width: 200px; /* Min size */
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-123bet-im__feature-title {
        font-size: 1.5em;
        color: #ffd700;
        margin-bottom: 10px;
    }

    .page-123bet-im__feature-text {
        font-size: 1em;
        color: #cccccc;
    }

    /* Games Section */
    .page-123bet-im__games-section {
        padding: 50px 20px;
        background-color: #1a1a1a;
    }

    .page-123bet-im__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 50px auto;
    }

    .page-123bet-im__game-category {
        background-color: #333333;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-123bet-im__game-category:hover {
        transform: translateY(-5px);
    }

    .page-123bet-im__game-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-123bet-im__game-title {
        font-size: 1.4em;
        color: #ffd700;
        margin: 15px 0 10px 0;
        padding: 0 15px;
    }

    .page-123bet-im__game-description {
        font-size: 0.95em;
        color: #cccccc;
        padding: 0 15px 20px 15px;
    }

    .page-123bet-im__cta-bottom {
        text-align: center;
        margin-top: 40px;
    }

    /* Providers Section */
    .page-123bet-im__providers-section {
        padding: 50px 20px;
        background-color: #222222;
    }

    .page-123bet-im__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-123bet-im__provider-item {
        background-color: #333333;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .page-123bet-im__provider-logo {
        width: 100px; /* Visual scaling, actual image size is 200x200 */
        height: 100px;
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .page-123bet-im__provider-name {
        font-size: 0.9em;
        color: #ffffff;
        font-weight: bold;
    }

    /* Promotions Section */
    .page-123bet-im__promotions-section {
        padding: 50px 20px;
        background-color: #1a1a1a;
    }

    .page-123bet-im__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-123bet-im__promo-item {
        background-color: #333333;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
        box-sizing: border-box;
    }

    .page-123bet-im__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-123bet-im__promo-title {
        font-size: 1.4em;
        color: #ffd700;
        margin: 15px 0 10px 0;
        padding: 0 15px;
    }

    .page-123bet-im__promo-text {
        font-size: 0.95em;
        color: #cccccc;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .page-123bet-im__button-container {
        padding-bottom: 20px;
    }

    /* Payments Section */
    .page-123bet-im__payments-section {
        padding: 50px 20px;
        background-color: #222222;
    }

    .page-123bet-im__payment-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-123bet-im__payment-item {
        background-color: #333333;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .page-123bet-im__payment-logo {
        width: 80px; /* Visual scaling, actual image size is 200x200 */
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .page-123bet-im__payment-name {
        font-size: 0.9em;
        color: #ffffff;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-123bet-im__faq-section {
        padding: 50px 20px;
        background-color: #1a1a1a;
    }

    .page-123bet-im__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-123bet-im__faq-item {
        background-color: #333333;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-123bet-im__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #444444;
        color: #ffffff;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-123bet-im__faq-question:hover {
        background-color: #555555;
    }

    .page-123bet-im__faq-title {
        font-size: 1.2em;
        margin: 0;
        flex-grow: 1;
        color: #ffffff;
        pointer-events: none; /* Prevents event blocking */
    }

    .page-123bet-im__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        color: #ffd700;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents event blocking */
    }

    .page-123bet-im__faq-item.active .page-123bet-im__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-123bet-im__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding 0 to animate */
        opacity: 0;
        color: #cccccc;
        background-color: #3a3a3a;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-123bet-im__faq-answer p {
        margin: 0;
        font-size: 1em;
    }

    /* Final CTA Section */
    .page-123bet-im__cta-final-section {
        padding: 60px 20px;
        background: linear-gradient(135deg, #0a0a0a, #2a2a2a);
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-123bet-im__hero-title {
            font-size: 3em;
        }
        .page-123bet-im__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-123bet-im__floating-buttons {
            flex-direction: row;
            width: calc(100% - 30px);
            bottom: 15px;
            top: auto;
            right: 15px;
            left: 15px;
            justify-content: space-around;
        }
        .page-123bet-im__floating-buttons .page-123bet-im__button {
            flex: 1;
            max-width: 48%;
            padding: 10px 15px;
            font-size: 0.85em;
        }

        .page-123bet-im__hero-section {
            padding: 40px 15px;
        }
        .page-123bet-im__hero-title {
            font-size: 2.5em;
        }
        .page-123bet-im__hero-description {
            font-size: 1.1em;
        }
        .page-123bet-im__hero-cta {
            flex-direction: column;
            gap: 15px;
        }
        .page-123bet-im__button {
            width: 100%;
            max-width: 280px;
        }
        .page-123bet-im__section-title {
            font-size: 1.8em;
        }
        .page-123bet-im__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* List items mobile responsiveness */
        .page-123bet-im__features-grid,
        .page-123bet-im__game-categories,
        .page-123bet-im__providers-grid,
        .page-123bet-im__promo-grid,
        .page-123bet-im__payment-methods {
            grid-template-columns: 1fr; /* Single column */
            gap: 20px;
        }

        .page-123bet-im__feature-item,
        .page-123bet-im__game-category,
        .page-123bet-im__provider-item,
        .page-123bet-im__promo-item,
        .page-123bet-im__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px; /* Adjust padding */
        }

        /* Ensure images are responsive */
        .page-123bet-im__hero-image,
        .page-123bet-im__feature-icon,
        .page-123bet-im__game-image,
        .page-123bet-im__provider-logo,
        .page-123bet-im__promo-image,
        .page-123bet-im__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-123bet-im__game-image,
        .page-123bet-im__promo-image {
            height: 180px !important; /* Adjust height for smaller screens */
        }

        .page-123bet-im__feature-icon,
        .page-123bet-im__provider-logo,
        .page-123bet-im__payment-logo {
            width: 120px !important; /* Visual scaling, actual image size is 200x200 */
            height: 120px !important;
        }

        .page-123bet-im__faq-question {
            padding: 15px 20px;
        }

        .page-123bet-im__faq-title {
            font-size: 1.1em;
        }

        .page-123bet-im__faq-answer {
            padding: 0 20px;
        }

        .page-123bet-im__faq-item.active .page-123bet-im__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-123bet-im__hero-title {
            font-size: 2em;
        }
        .page-123bet-im__hero-description {
            font-size: 1em;
        }
        .page-123bet-im__section-title {
            font-size: 1.6em;
        }
        .page-123bet-im__floating-buttons {
            gap: 8px;
        }
        .page-123bet-im__floating-buttons .page-123bet-im__button {
            padding: 8px 10px;
            font-size: 0.8em;
        }
    }

    /* Ensure text wrapping for all elements */
    .page-123bet-im p,
    .page-123bet-im h1,
    .page-123bet-im h2,
    .page-123bet-im h3,
    .page-123bet-im__button,
    .page-123bet-im__feature-text,
    .page-123bet-im__game-description,
    .page-123bet-im__promo-text,
    .page-123bet-im__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Ensure list containers are also responsive */
    .page-123bet-im__features-grid,
    .page-123bet-im__game-categories,
    .page-123bet-im__providers-grid,
    .page-123bet-im__promo-grid,
    .page-123bet-im__payment-methods {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding to match section padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
  