
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f9f9f9;
            --bg-white: #ffffff;
            --border-light: #e0e0e0;
            --shadow-light: rgba(0, 0, 0, 0.1);
            --header-offset: 122px; /* Placeholder, actual value from shared.css */
        }

        /* Base styles for the page */
        .page-game-guides-lottery {
            font-family: 'Arial', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
            padding-bottom: 60px;
        }

        .page-game-guides-lottery__hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--text-light);
            padding: 60px 20px;
            padding-top: 10px; /* body already handles --header-offset */
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .page-game-guides-lottery__hero-image {
            width: 100%;
            max-width: 1200px;
            height: auto;
            display: block;
            margin: 0 auto 30px auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .page-game-guides-lottery__hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-game-guides-lottery__hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page-game-guides-lottery__hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .page-game-guides-lottery__cta-button {
            display: inline-block;
            background-color: var(--text-light);
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .page-game-guides-lottery__cta-button:hover {
            background-color: #e0e0e0;
            transform: translateY(-3px);
        }

        .page-game-guides-lottery__section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--bg-white);
            border-radius: 12px;
            box-shadow: 0 5px 20px var(--shadow-light);
            margin-top: 30px;
        }

        .page-game-guides-lottery__section-title {
            font-size: 2.2rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-game-guides-lottery__section-subtitle {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-top: 30px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-game-guides-lottery__content-block p {
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .page-game-guides-lottery__content-block ul {
            list-style: disc inside;
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .page-game-guides-lottery__content-block ol {
            list-style: decimal inside;
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .page-game-guides-lottery__content-block li {
            margin-bottom: 8px;
            color: var(--text-dark);
            box-sizing: border-box;
        }

        .page-game-guides-lottery__image-container {
            text-align: center;
            margin: 40px 0;
        }

        .page-game-guides-lottery__image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px var(--shadow-light);
            display: block;
            margin: 0 auto;
        }

        .page-game-guides-lottery__faq-section {
            background-color: var(--bg-white);
            padding: 50px 20px;
            max-width: 1200px;
            margin: 30px auto;
            border-radius: 12px;
            box-shadow: 0 5px 20px var(--shadow-light);
        }

        .page-game-guides-lottery__faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            overflow: hidden;
        }

        .page-game-guides-lottery__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            background-color: var(--bg-light);
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-color);
            transition: background-color 0.3s ease;
        }

        .page-game-guides-lottery__faq-question:hover {
            background-color: #e6eefc;
        }

        .page-game-guides-lottery__faq-question h3 {
            margin: 0;
            font-size: 1.15rem;
            pointer-events: none; /* Prevent h3 from blocking click */
            color: var(--primary-color);
        }

        .page-game-guides-lottery__faq-toggle {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            pointer-events: none; /* Prevent toggle from blocking click */
            transition: transform 0.3s ease;
        }

        .page-game-guides-lottery__faq-item.active .page-game-guides-lottery__faq-toggle {
            transform: rotate(45deg);
        }

        .page-game-guides-lottery__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            background-color: var(--bg-white);
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            color: var(--text-dark);
        }

        .page-game-guides-lottery__faq-item.active .page-game-guides-lottery__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to cover all content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-game-guides-lottery__strategy-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .page-game-guides-lottery__strategy-link:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-game-guides-lottery__hero-section {
                padding: 50px 20px;
            }
            .page-game-guides-lottery__section,
            .page-game-guides-lottery__faq-section {
                margin-left: 15px;
                margin-right: 15px;
            }
        }

        @media (max-width: 768px) {
            .page-game-guides-lottery {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-game-guides-lottery__hero-section {
                padding: 40px 15px;
            }
            .page-game-guides-lottery__hero-content h1 {
                font-size: clamp(1.8rem, 7vw, 2.5rem);
            }
            .page-game-guides-lottery__hero-content p {
                font-size: clamp(0.9rem, 3.5vw, 1.1rem);
            }
            .page-game-guides-lottery__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-game-guides-lottery__section,
            .page-game-guides-lottery__faq-section {
                padding: 30px 15px;
                margin-left: 10px;
                margin-right: 10px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-game-guides-lottery__section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            .page-game-guides-lottery__section-subtitle {
                font-size: 1.4rem;
            }

            .page-game-guides-lottery__image-container img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
                box-sizing: border-box !important;
            }
            .page-game-guides-lottery__content-block 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;
            }
            .page-game-guides-lottery__content-block ul,
            .page-game-guides-lottery__content-block ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 10px !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-game-guides-lottery__faq-question {
                padding: 15px 20px;
            }
            .page-game-guides-lottery__faq-question h3 {
                font-size: 1rem;
            }
            .page-game-guides-lottery__faq-answer {
                padding: 15px 20px !important;
            }
        }

        @media (max-width: 480px) {
            .page-game-guides-lottery__hero-section {
                padding: 30px 10px;
            }
            .page-game-guides-lottery__section,
            .page-game-guides-lottery__faq-section {
                padding: 25px 10px;
                margin-left: 5px;
                margin-right: 5px;
            }
            .page-game-guides-lottery__section-title {
                font-size: 1.5rem;
            }
            .page-game-guides-lottery__section-subtitle {
                font-size: 1.2rem;
            }
        }
    