
        .page-online {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-online__hero-section {
            position: relative;
            padding-top: 10px; /* Small decorative padding, body handles --header-offset */
            padding-bottom: 60px;
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
            overflow: hidden;
        }

        .page-online__hero-image-wrapper {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        .page-online__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
            border-radius: 8px;
        }

        .page-online__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-online__main-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-online__hero-description {
            font-size: 1.25rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e7ff;
        }

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

        .page-online__cta-button:hover {
            background-color: #475569;
            transform: translateY(-2px);
        }

        .page-online__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-online__section--light {
            background-color: #ffffff;
        }

        .page-online__section--dark {
            background-color: #f0f0f0;
        }

        .page-online__section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: #2563eb;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-online__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .page-online__feature-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-height: 250px;
        }

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

        .page-online__feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            object-fit: contain;
            border-radius: 50%;
            background-color: #e0e7ff;
            padding: 10px;
        }

        .page-online__feature-title {
            font-size: 1.5rem;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-online__feature-description {
            font-size: 1rem;
            color: #555555;
        }

        .page-online__process-step {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .page-online__step-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2563eb;
            line-height: 1;
        }

        .page-online__step-content {
            text-align: left;
        }

        .page-online__step-title {
            font-size: 1.3rem;
            color: #333333;
            margin-bottom: 5px;
        }

        .page-online__step-description {
            font-size: 0.95rem;
            color: #666666;
        }

        .page-online__game-providers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .page-online__provider-logo {
            width: 120px;
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }

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

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

        .page-online__game-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .page-online__game-card:hover {
            transform: translateY(-5px);
        }

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

        .page-online__game-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-online__game-title {
            font-size: 1.3rem;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-online__game-description {
            font-size: 0.95rem;
            color: #666666;
            margin-bottom: 15px;
        }

        .page-online__game-play-button {
            display: inline-block;
            background-color: #64748b;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .page-online__game-play-button:hover {
            background-color: #475569;
        }

        .page-online__review-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            text-align: left;
            transition: transform 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-online__review-card:hover {
            transform: translateY(-5px);
        }

        .page-online__review-logo {
            width: 100px;
            height: auto;
            margin-bottom: 15px;
        }

        .page-online__review-title {
            font-size: 1.4rem;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-online__review-excerpt {
            font-size: 0.95rem;
            color: #666666;
            margin-bottom: 15px;
        }

        .page-online__read-more-button {
            display: inline-block;
            color: #2563eb;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .page-online__read-more-button:hover {
            color: #1a4f9f;
        }

        .page-online__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-online__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            user-select: none;
            font-size: 1.15rem;
            font-weight: 600;
            color: #333333;
            background-color: #fcfcfc;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s ease;
        }

        .page-online__faq-question h3 {
            margin: 0;
            font-size: 1.15rem;
            font-weight: 600;
            color: #333333;
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-online__faq-question:hover {
            background-color: #f0f0f0;
        }

        .page-online__faq-toggle {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2563eb;
            pointer-events: none; /* Prevent toggle icon from blocking click event */
        }

        .page-online__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: #555555;
            font-size: 1rem;
            text-align: left;
        }

        .page-online__faq-item.active .page-online__faq-answer {
            max-height: 2000px !important; /* Use !important to ensure override */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-online__contact-section {
            background-color: #2563eb;
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
        }

        .page-online__contact-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 20px;
            font-weight: 700;
            color: #ffffff;
        }

        .page-online__contact-description {
            font-size: 1.15rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e7ff;
        }

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

        .page-online__cta-buttons-group .page-online__cta-button {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #ffffff;
        }

        .page-online__cta-buttons-group .page-online__cta-button:hover {
            background-color: #e0e7ff;
            color: #1a4f9f;
        }

        .page-online img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .page-online__products-section .page-online__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .page-online__main-title {
                font-size: 3rem;
            }

            .page-online__hero-description {
                font-size: 1.15rem;
            }

            .page-online__section-title {
                font-size: 2.2rem;
            }

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

            .page-online__game-showcase-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-online__hero-section {
                padding-top: 10px !important; /* Small decorative padding */
                padding-bottom: 40px;
            }

            .page-online__main-title {
                font-size: 2rem !important;
            }

            .page-online__hero-description {
                font-size: 1rem !important;
                margin-bottom: 20px;
            }

            .page-online__cta-button {
                padding: 12px 25px !important;
                font-size: 1rem !important;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-online__section {
                padding: 40px 15px;
            }

            .page-online__section-title {
                font-size: 1.8rem !important;
                margin-bottom: 30px;
            }

            .page-online__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-online__feature-card {
                padding: 25px;
                min-height: auto;
            }

            .page-online__feature-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .page-online__feature-title {
                font-size: 1.3rem;
            }

            .page-online__process-step {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 20px;
            }

            .page-online__step-number {
                font-size: 2rem;
            }

            .page-online__step-title {
                font-size: 1.2rem;
            }

            .page-online__step-description {
                font-size: 0.9rem;
            }

            .page-online__game-showcase-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-online__game-image {
                height: 180px;
            }

            .page-online__game-title {
                font-size: 1.2rem;
            }

            .page-online__review-card {
                padding: 20px;
            }

            .page-online__review-title {
                font-size: 1.3rem;
            }

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

            .page-online__faq-question h3 {
                font-size: 1rem;
            }

            .page-online__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.95rem;
            }

            .page-online__contact-title {
                font-size: 2rem !important;
            }

            .page-online__contact-description {
                font-size: 1rem !important;
            }

            .page-online__cta-buttons-group {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }

            .page-online__cta-buttons-group .page-online__cta-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-online img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-online__products-section .page-online__game-image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            
            .page-online__section,
            .page-online__feature-card,
            .page-online__process-step,
            .page-online__game-card,
            .page-online__review-card,
            .page-online__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
             .page-online ul,
            .page-online ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .page-online li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }

        @media (max-width: 480px) {
            .page-online__hero-section {
                padding-bottom: 30px;
            }
            .page-online__cta-button {
                font-size: 0.95rem !important;
            }
            .page-online__section {
                padding: 30px 10px;
            }
            .page-online__section-title {
                font-size: 1.6rem !important;
                margin-bottom: 25px;
            }
            .page-online__feature-title {
                font-size: 1.2rem;
            }
            .page-online__feature-description {
                font-size: 0.9rem;
            }
            .page-online__game-image {
                height: 150px;
            }
            .page-online__game-title {
                font-size: 1.1rem;
            }
            .page-online__game-description {
                font-size: 0.85rem;
            }
            .page-online__faq-question h3 {
                font-size: 0.95rem;
            }
            .page-online__faq-answer {
                font-size: 0.9rem;
            }
            .page-online__contact-title {
                font-size: 1.8rem !important;
            }
            .page-online__contact-description {
                font-size: 0.95rem !important;
            }
        }
    