
        /* style/bet11.css */
        :root {
            --primary-color: #ffdd00;
            --secondary-color: #ffffff;
            --background-color: #000000;
            --text-color-dark: #333333;
            --text-color-light: #ffffff;
            --accent-color: #2563eb;
            --header-offset: 122px; /* Default for desktop, adjusted in shared.css for mobile */
        }

        .page-bet11 {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        .page-bet11__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px 20px 60px; /* Small top padding, more bottom padding */
            background-color: #1a1a1a; /* Slightly lighter black for hero */
        }

        .page-bet11__hero-image {
            width: 100%;
            max-width: 1200px; /* Ensure image doesn't stretch beyond max width */
            height: auto;
            display: block;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
        }

        .page-bet11__hero-content {
            max-width: 800px;
        }

        .page-bet11__main-title {
            font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size */
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .page-bet11__subtitle {
            font-size: clamp(1em, 2.5vw, 1.3em);
            color: var(--secondary-color);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-bet11__cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .page-bet11__btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            box-sizing: border-box;
            max-width: 100%;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
        }

        .page-bet11__btn-primary {
            background-color: var(--primary-color);
            color: var(--text-color-dark);
        }

        .page-bet11__btn-primary:hover {
            background-color: #e6c200;
            transform: translateY(-3px);
        }

        .page-bet11__btn-secondary {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            border: 2px solid var(--accent-color);
        }

        .page-bet11__btn-secondary:hover {
            background-color: #1e40af;
            transform: translateY(-3px);
        }

        .page-bet11__section {
            padding: 60px 0;
            text-align: center;
        }

        .page-bet11__section-title {
            font-size: clamp(1.8em, 4vw, 2.5em);
            color: var(--primary-color);
            margin-bottom: 40px;
            font-weight: bold;
            position: relative;
            padding-bottom: 15px;
        }

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

        .page-bet11__text-content {
            max-width: 900px;
            margin: 0 auto 30px;
            font-size: 1.1em;
            color: #ccc;
        }

        .page-bet11__text-content p {
            margin-bottom: 15px;
        }

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

        .page-bet11__game-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-bet11__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
        }

        .page-bet11__game-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-bet11__game-card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .page-bet11__game-card-title {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .page-bet11__game-card-description {
            font-size: 0.95em;
            color: #bbb;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-bet11__game-card-link {
            display: inline-block;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 0.95em;
            transition: color 0.3s ease;
        }

        .page-bet11__game-card-link:hover {
            color: var(--primary-color);
        }

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

        .page-bet11__feature-item {
            background-color: #1a1a1a;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .page-bet11__feature-item:hover {
            background-color: #2a2a2a;
        }

        .page-bet11__feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: inline-block;
            object-fit: contain;
        }

        .page-bet11__feature-title {
            font-size: 1.4em;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .page-bet11__feature-description {
            color: #bbb;
            font-size: 1em;
        }

        .page-bet11__provider-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .page-bet11__provider-logo {
            height: 80px; /* Specific height for gamelogo */
            width: auto; /* Maintain aspect ratio */
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }

        .page-bet11__provider-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .page-bet11__download-section {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            padding: 80px 20px;
            text-align: center;
            margin-top: 60px;
        }

        .page-bet11__download-title {
            font-size: clamp(1.8em, 4vw, 2.8em);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .page-bet11__download-description {
            font-size: 1.1em;
            max-width: 700px;
            margin: 0 auto 40px;
        }

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

        .page-bet11__download-btn {
            background-color: var(--primary-color);
            color: var(--text-color-dark);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            box-sizing: border-box;
            max-width: 100%;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
        }

        .page-bet11__download-btn:hover {
            background-color: #e6c200;
            transform: translateY(-3px);
        }

        .page-bet11__faq-section {
            background-color: #0d0d0d;
            padding: 60px 0;
        }

        .page-bet11__faq-item {
            background-color: #1a1a1a;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            text-align: left;
        }

        .page-bet11__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            background-color: #2a2a2a;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page-bet11__faq-question:hover {
            background-color: #3a3a3a;
        }

        .page-bet11__faq-question h3 {
            margin: 0;
            color: inherit;
            font-size: inherit;
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-bet11__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle icon from blocking click event */
        }

        .page-bet11__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            background-color: #1a1a1a;
            color: #bbb;
            font-size: 0.95em;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            text-align: left;
        }

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

        .page-bet11__responsible-gambling {
            background-color: #000000;
            color: #bbb;
            padding: 60px 0;
        }

        .page-bet11__social-media-section {
            background-color: #1a1a1a;
            padding: 40px 0;
            text-align: center;
        }

        .page-bet11__social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 20px;
        }

        .page-bet11__social-link {
            color: var(--secondary-color);
            font-size: 2.2em;
            transition: color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }

        .page-bet11__social-link:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .page-bet11__hero-section {
                padding-top: 10px;
            }
        }

        @media (max-width: 768px) {
            .page-bet11__container,
            .page-bet11__hero-section,
            .page-bet11__section,
            .page-bet11__download-section,
            .page-bet11__faq-section,
            .page-bet11__responsible-gambling,
            .page-bet11__social-media-section {
                padding-left: 15px !important;
                padding-right: 15px !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            .page-bet11__main-title {
                font-size: clamp(1.8em, 7vw, 2.5em);
            }

            .page-bet11__subtitle {
                font-size: clamp(0.9em, 3.5vw, 1.1em);
            }

            .page-bet11__section-title {
                font-size: clamp(1.6em, 6vw, 2em);
            }

            .page-bet11__text-content {
                font-size: 0.95em;
            }

            .page-bet11__game-categories,
            .page-bet11__features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-bet11__btn,
            .page-bet11__download-btn {
                padding: 12px 20px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-bet11__cta-buttons,
            .page-bet11__download-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .page-bet11__game-card-image {
                height: 180px;
            }

            .page-bet11__provider-logo {
                height: 60px;
            }

            .page-bet11__faq-question {
                font-size: 1em;
                padding: 15px 20px;
            }

            .page-bet11__faq-answer {
                padding: 15px 20px;
                font-size: 0.9em;
            }

            /* Images responsive */
            .page-bet11 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            /* Video responsive */
            .page-bet11 video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
        }

        @media (max-width: 480px) {
            .page-bet11__hero-section {
                padding-top: 10px;
                padding-bottom: 40px;
            }
            .page-bet11__main-title {
                font-size: clamp(1.5em, 8vw, 2em);
            }
            .page-bet11__subtitle {
                font-size: clamp(0.8em, 4vw, 1em);
            }
            .page-bet11__section-title {
                font-size: clamp(1.4em, 7vw, 1.8em);
            }
        }
    