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

        .page-lottery__hero-section {
            position: relative;
            padding-top: 10px; /* Small offset for fixed header */
            padding-bottom: 40px;
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
            overflow: hidden;
        }

        .page-lottery__hero-image-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
            margin-bottom: 20px;
        }

        .page-lottery__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 450px; /* Limit height for hero image */
        }

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

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

        .page-lottery__hero-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-lottery__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            padding: 0 15px;
        }

        .page-lottery__btn-primary,
        .page-lottery__btn-secondary {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .page-lottery__btn-primary {
            background-color: #ffc107; /* Brighter yellow for CTA */
            color: #2563eb;
            border: 2px solid #ffc107;
        }

        .page-lottery__btn-primary:hover {
            background-color: #e0a800;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .page-lottery__btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .page-lottery__btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .page-lottery__section {
            padding: 60px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 15px;
            box-sizing: border-box;
        }

        .page-lottery__section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .page-lottery__section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #ffc107;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .page-lottery__text-content {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

        .page-lottery__feature-item,
        .page-lottery__game-type-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
            box-sizing: border-box;
        }

        .page-lottery__feature-item:hover,
        .page-lottery__game-type-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .page-lottery__feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: block;
            object-fit: contain;
        }

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

        .page-lottery__game-type-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            display: block;
        }

        .page-lottery__how-to-play-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }

        .page-lottery__step-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            border: 1px solid #e0e0e0;
        }

        .page-lottery__step-number {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: #2563eb;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .page-lottery__step-content h3 {
            font-size: 1.4rem;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-lottery__step-content p {
            font-size: 1.0rem;
            color: #555555;
        }

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

        .page-lottery__tip-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #ffc107;
            box-sizing: border-box;
        }

        .page-lottery__tip-card h3 {
            font-size: 1.3rem;
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-lottery__promotions-section {
            background-color: #e3f2fd;
            padding: 60px 0;
            text-align: center;
        }

        .page-lottery__promotions-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page-lottery__promotions-text {
            font-size: 1.15rem;
            margin-bottom: 30px;
            color: #333333;
        }

        .page-lottery__faq-section {
            background-color: #ffffff;
            padding: 60px 0;
        }

        .page-lottery__faq-list {
            max-width: 900px;
            margin: 40px auto 0;
        }

        .page-lottery__faq-item {
            border-bottom: 1px solid #eeeeee;
            padding: 20px 0;
        }

        .page-lottery__faq-item:last-child {
            border-bottom: none;
        }

        .page-lottery__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: #2563eb;
            padding: 10px 0;
            user-select: none;
            transition: color 0.3s ease;
        }

        .page-lottery__faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
            pointer-events: none;
            flex-grow: 1;
        }

        .page-lottery__faq-toggle {
            font-size: 2rem;
            line-height: 1;
            margin-left: 15px;
            color: #ffc107;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page-lottery__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            font-size: 1.0rem;
            color: #555555;
            box-sizing: border-box;
        }

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

        .page-lottery__conclusion-section {
            text-align: center;
            padding: 60px 0;
            background-color: #f0f8ff;
        }

        .page-lottery__conclusion-text {
            font-size: 1.15rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 15px;
        }

        .page-lottery__internal-links-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }

        .page-lottery__internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page-lottery__internal-link-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
        }

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

        .page-lottery__internal-link-card a {
            text-decoration: none;
            color: #2563eb;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }

        .page-lottery__internal-link-card a:hover {
            color: #ffc107;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .page-lottery__main-title {
                font-size: clamp(2rem, 6vw, 2.8rem);
            }

            .page-lottery__section-title {
                font-size: 2rem;
            }

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

            .page-lottery__step-item {
                flex-direction: column;
                text-align: center;
            }

            .page-lottery__step-number {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .page-lottery {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-lottery__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }

            .page-lottery__main-title {
                font-size: clamp(1.8rem, 7vw, 2.5rem);
                margin-bottom: 10px;
            }

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

            .page-lottery__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }

            .page-lottery__btn-primary,
            .page-lottery__btn-secondary {
                padding: 12px 20px;
                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-lottery__section {
                padding: 40px 15px;
            }

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

            .page-lottery__text-content {
                font-size: 0.95rem;
            }

            .page-lottery__features-grid,
            .page-lottery__game-types-grid,
            .page-lottery__tips-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-lottery__feature-item,
            .page-lottery__game-type-card,
            .page-lottery__tip-card {
                padding: 20px;
            }

            .page-lottery__feature-title,
            .page-lottery__game-type-title {
                font-size: 1.3rem;
            }

            .page-lottery__game-type-image {
                height: 180px;
            }

            .page-lottery__step-item {
                padding: 25px;
            }

            .page-lottery__step-content h3 {
                font-size: 1.2rem;
            }

            .page-lottery__promotions-section {
                padding: 40px 0;
            }

            .page-lottery__promotions-text {
                font-size: 1rem;
            }

            .page-lottery__faq-section {
                padding: 40px 0;
            }

            .page-lottery__faq-question {
                font-size: 1.05rem;
            }

            .page-lottery__faq-question h3 {
                font-size: 1.05rem;
            }

            .page-lottery__faq-toggle {
                font-size: 1.8rem;
            }

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

            .page-lottery__conclusion-section {
                padding: 40px 0;
            }

            .page-lottery__conclusion-text {
                font-size: 1rem;
            }

            .page-lottery__internal-links-section {
                padding: 30px 0;
            }

            .page-lottery__internal-links-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .page-lottery__internal-link-card a {
                font-size: 1rem;
            }

            /* General image responsive styles */
            .page-lottery img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-lottery__section,
            .page-lottery__card,
            .page-lottery__container,
            .page-lottery__promotions-inner,
            .page-lottery__faq-list,
            .page-lottery__conclusion-text,
            .page-lottery__internal-links-grid {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
        }
    