
        .page-67 {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

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

        .page-67__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 20px 60px 20px;
            text-align: center;
            box-sizing: border-box;
        }

        .page-67__hero-image {
            width: 100%;
            max-width: 1920px;
            height: auto;
            display: block;
            margin-bottom: 30px;
            border-radius: 10px;
        }

        .page-67__hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .page-67__main-title {
            font-size: clamp(2.5rem, 5vw, 3.2rem);
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .page-67__description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            color: #f0f0f0;
        }

        .page-67__cta-button {
            display: inline-block;
            background-color: #FFD700;
            color: #000000;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-67__cta-button:hover {
            background-color: #e6c200;
            transform: translateY(-2px);
        }

        .page-67__sub-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: #FFD700;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }

        .page-67__text-block {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

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

        .page-67__game-card {
            background-color: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            padding-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

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

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

        .page-67__game-title {
            font-size: 1.4rem;
            color: #FFD700;
            margin: 15px 10px 10px 10px;
            font-weight: bold;
        }

        .page-67__game-description {
            font-size: 0.95rem;
            color: #cccccc;
            padding: 0 15px;
            flex-grow: 1;
        }

        .page-67__game-link {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 90%;
        }

        .page-67__game-link:hover {
            background-color: #1e40af;
        }

        .page-67__providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
            justify-items: center;
            align-items: center;
        }

        .page-67__provider-logo {
            width: 120px; /* Adjust as needed */
            height: auto;
            object-fit: contain;
            filter: brightness(0.8) grayscale(0.2);
            transition: filter 0.3s ease;
        }

        .page-67__provider-logo:hover {
            filter: brightness(1) grayscale(0);
        }

        .page-67__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #FFD700;
            color: #000000;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: calc(100% - 40px); /* Adjust for padding */
            text-align: center;
        }

        .page-67__floating-button:hover {
            background-color: #e6c200;
            transform: translateY(-3px);
        }

        .page-67__faq-list {
            margin-top: 40px;
            border-top: 1px solid #333;
        }

        .page-67__faq-item {
            background-color: #1a1a1a;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .page-67__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            background-color: #2a2a2a;
            color: #FFD700;
            font-weight: bold;
            font-size: 1.15rem;
            user-select: none;
            transition: background-color 0.3s ease;
        }

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

        .page-67__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            pointer-events: none; /* Prevent h3 from blocking click */
            color: inherit;
            font-size: inherit;
        }

        .page-67__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle from blocking click */
            color: #FFD700;
        }

        .page-67__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            color: #cccccc;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        }

        .page-67__faq-item.active .page-67__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-67__social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .page-67__social-link {
            display: inline-flex;
            align-items: center;
            background-color: #2a2a2a;
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-67__social-link:hover {
            background-color: #3a3a3a;
            transform: translateY(-2px);
        }

        .page-67__social-icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .page-67__section,
            .page-67__hero-section {
                padding: 20px 15px;
            }

            .page-67__hero-section {
                padding-top: 10px !important;
                padding-bottom: 40px;
            }

            .page-67__main-title {
                font-size: clamp(2rem, 8vw, 2.5rem);
            }

            .page-67__description {
                font-size: clamp(0.9rem, 3vw, 1.1rem);
            }

            .page-67__sub-title {
                font-size: clamp(1.8rem, 6vw, 2.2rem);
            }

            .page-67__game-grid {
                grid-template-columns: 1fr;
            }

            .page-67__cta-button,
            .page-67__game-link,
            .page-67__social-link {
                max-width: 100% !important;
                width: 100% !important;
                padding-left: 15px;
                padding-right: 15px;
                box-sizing: border-box !important;
                text-align: center;
            }

            .page-67__floating-button {
                max-width: calc(100% - 30px) !important;
                left: 15px;
                right: 15px;
                bottom: 15px;
                font-size: 1rem;
                padding: 12px 20px;
            }

            .page-67 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
                box-sizing: border-box !important;
            }

            .page-67__game-image {
                height: 180px;
            }

            .page-67__providers-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }

            .page-67__provider-logo {
                width: 90px;
            }

            .page-67__faq-question {
                font-size: 1rem;
                padding: 15px 20px;
            }

            .page-67__faq-answer {
                padding: 0 20px;
            }

            .page-67__faq-item.active .page-67__faq-answer {
                padding: 15px 20px !important;
            }
            
            .page-67__text-block, .page-67 p, .page-67 li {
                font-size: 1rem;
            }

            .page-67__social-links {
                flex-direction: column;
                align-items: center;
            }
        }
    