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

        .page-gambling-guides__top-text {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 15px 30px;
            text-align: center;
        }

        .page-gambling-guides__main-title {
            font-size: 38px;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .page-gambling-guides__description {
            font-size: 18px;
            color: #64748b;
            max-width: 900px;
            margin: 0 auto 30px;
        }

        .page-gambling-guides__button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .page-gambling-guides__cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #2563eb;
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-gambling-guides__cta-button:hover {
            background-color: #1a4ed8;
            transform: translateY(-2px);
        }

        .page-gambling-guides__cta-button--secondary {
            background-color: #64748b;
        }

        .page-gambling-guides__cta-button--secondary:hover {
            background-color: #4a5460;
        }

        .page-gambling-guides__section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px 15px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-gambling-guides__section-title {
            font-size: 32px;
            color: #2563eb;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-gambling-guides__subsection-title {
            font-size: 24px;
            color: #333333;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-gambling-guides__content-text {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .page-gambling-guides__image-container {
            text-align: center;
            margin: 30px 0;
        }

        .page-gambling-guides__image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: block;
            margin: 0 auto;
        }

        .page-gambling-guides__list {
            list-style-type: disc;
            padding-left: 25px;
            margin-bottom: 20px;
        }

        .page-gambling-guides__list-item {
            margin-bottom: 10px;
            font-size: 16px;
        }

        .page-gambling-guides__highlight-box {
            background-color: #e0f2fe;
            border-left: 5px solid #2563eb;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
            font-style: italic;
            color: #1e40af;
        }

        .page-gambling-guides__step-list {
            counter-reset: step-counter;
            list-style: none;
            padding: 0;
        }

        .page-gambling-guides__step-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }

        .page-gambling-guides__step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            background-color: #2563eb;
            color: #ffffff;
            font-size: 20px;
            font-weight: bold;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            margin-right: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .page-gambling-guides__step-content h4 {
            font-size: 18px;
            color: #333333;
            margin-top: 0;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .page-gambling-guides__step-content p {
            font-size: 16px;
            margin-bottom: 0;
        }

        .page-gambling-guides__faq-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px 15px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        details.page-gambling-guides__faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            background: #fff;
        }
        details.page-gambling-guides__faq-item summary.page-gambling-guides__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
        }
        details.page-gambling-guides__faq-item summary.page-gambling-guides__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-gambling-guides__faq-item summary.page-gambling-guides__faq-question:hover {
            background: #f5f5f5;
        }
        .page-gambling-guides__faq-qtext {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: #333333;
        }
        .page-gambling-guides__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: #666;
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-gambling-guides__faq-item .page-gambling-guides__faq-answer {
            padding: 0 20px 20px;
            background: #f9f9f9;
            border-radius: 0 0 5px 5px;
        }
        .page-gambling-guides__faq-answer p {
            margin-top: 10px;
            margin-bottom: 0;
            color: #555555;
            font-size: 15px;
        }

        .page-gambling-guides__internal-link-card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .page-gambling-guides__internal-link-card {
            background-color: #f0f8ff;
            border: 1px solid #cceeff;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-decoration: none;
            color: #2563eb;
            font-weight: 600;
        }

        .page-gambling-guides__internal-link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .page-gambling-guides__internal-link-card h4 {
            font-size: 18px;
            margin: 0;
            color: #2563eb;
        }

        @media (max-width: 1024px) {
            .page-gambling-guides__main-title {
                font-size: 32px;
            }
            .page-gambling-guides__section-title {
                font-size: 28px;
            }
            .page-gambling-guides__subsection-title {
                font-size: 22px;
            }
            .page-gambling-guides__description, .page-gambling-guides__content-text, .page-gambling-guides__list-item, .page-gambling-guides__step-content p {
                font-size: 15px;
            }
            .page-gambling-guides__cta-button {
                padding: 12px 25px;
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .page-gambling-guides__top-text {
                padding: 10px 15px 20px;
            }
            .page-gambling-guides__main-title {
                font-size: 26px;
            }
            .page-gambling-guides__description {
                font-size: 15px;
                margin-bottom: 20px;
            }
            .page-gambling-guides__button-group {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 30px;
                padding: 0 15px;
                width: 100%;
                box-sizing: border-box;
            }
            .page-gambling-guides__cta-button {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                font-size: 16px;
            }
            .page-gambling-guides__section, .page-gambling-guides__faq-section {
                margin: 30px auto;
                padding: 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-gambling-guides__section-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
            .page-gambling-guides__subsection-title {
                font-size: 20px;
                margin-top: 25px;
                margin-bottom: 12px;
            }
            .page-gambling-guides__content-text, .page-gambling-guides__list-item, .page-gambling-guides__step-content p {
                font-size: 14px;
            }
            .page-gambling-guides__image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-gambling-guides__list {
                padding-left: 20px;
            }
            .page-gambling-guides__step-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .page-gambling-guides__step-item::before {
                margin-bottom: 10px;
                margin-right: 0;
            }
            details.page-gambling-guides__faq-item summary.page-gambling-guides__faq-question {
                padding: 15px;
            }
            .page-gambling-guides__faq-qtext {
                font-size: 15px;
            }
            details.page-gambling-guides__faq-item .page-gambling-guides__faq-answer {
                padding: 0 15px 15px;
            }
            .page-gambling-guides__internal-link-card-container {
                grid-template-columns: 1fr;
                padding: 0 15px;
                width: 100%;
                box-sizing: border-box;
            }
            .page-gambling-guides__internal-link-card {
                width: 100%;
                box-sizing: border-box;
            }
            .page-gambling-guides img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-gambling-guides__section, .page-gambling-guides__faq-section, .page-gambling-guides__internal-link-card-container {
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-gambling-guides__list-item, .page-gambling-guides__step-content {
              box-sizing: border-box !important;
              word-wrap: break-word !important;
              overflow-wrap: break-word !important;
              word-break: break-word !important;
              width: 100% !important;
              max-width: 100% !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
            }
            .page-gambling-guides__list {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              padding: 0 !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
            }
        }
    