/* roulang page: index */
:root {
            --lottery-red: #D8402F;
            --lottery-red-deep: #B53025;
            --lottery-red-soft: rgba(216, 64, 47, 0.08);
            --lottery-gold: #E5B84B;
            --lottery-gold-soft: rgba(229, 184, 75, 0.15);
            --lottery-green: #1C3A32;
            --lottery-green-light: #2C5046;
            --lottery-bg: #F7F4ED;
            --lottery-white: #FFFFFF;
            --lottery-border: #E9E2D2;
            --lottery-text: #252525;
            --lottery-text-secondary: #6B6B6B;
            --lottery-text-inverse: #FFF9F0;
            --lottery-radius-sm: 8px;
            --lottery-radius-md: 12px;
            --lottery-radius-lg: 14px;
            --lottery-radius-xl: 20px;
            --lottery-radius-pill: 999px;
            --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
            --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
            --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
            --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
            --lottery-container: 1200px;
            --lottery-gutter: 24px;
            --lottery-section-gap: 80px;
            --lottery-section-gap-mobile: 48px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--lottery-font);
            font-size: 16px;
            line-height: 1.8;
            color: var(--lottery-text);
            background-color: var(--lottery-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--lottery-red);
            text-decoration: none;
            transition: var(--lottery-transition);
        }

        a:hover,
        a:focus {
            color: var(--lottery-red-deep);
            outline: none;
        }

        a:focus-visible {
            outline: 3px solid rgba(216, 64, 47, 0.35);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .lottery-container {
            max-width: var(--lottery-container);
            margin: 0 auto;
            padding: 0 var(--lottery-gutter);
        }

        .lottery-section {
            padding: var(--lottery-section-gap) 0;
            position: relative;
        }

        .lottery-section--alt {
            background-color: var(--lottery-white);
            border-top: 1px solid var(--lottery-border);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-section--dark {
            background-color: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-section--gold-soft {
            background-color: var(--lottery-gold-soft);
        }

        .lottery-section__header {
            margin-bottom: 36px;
        }

        .lottery-section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 12px;
        }

        .lottery-section__title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-section__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            max-width: 720px;
            line-height: 1.7;
        }

        .lottery-section--dark .lottery-section__title,
        .lottery-section--dark .lottery-section__subtitle {
            color: var(--lottery-text-inverse);
        }

        .lottery-section--dark .lottery-section__subtitle {
            color: rgba(255, 249, 240, 0.75);
        }

        /* ========== Header / Navigation ========== */
        .lottery-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
        }

        .lottery-header__top-strip {
            height: 4px;
            background: var(--lottery-red);
        }

        .lottery-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
            gap: 20px;
        }

        .lottery-header__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__logo-icon {
            width: 40px;
            height: 40px;
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .lottery-header__brand-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            letter-spacing: 0.5px;
        }

        .lottery-header__brand-sub {
            font-size: 11px;
            color: var(--lottery-text-secondary);
            letter-spacing: 1px;
            display: block;
            line-height: 1.2;
            margin-top: 2px;
        }

        .lottery-header__nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            justify-content: center;
            flex-wrap: wrap;
        }

        .lottery-header__nav-link {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-header__nav-link:hover,
        .lottery-header__nav-link:focus {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-header__nav-link.is-active {
            color: var(--lottery-red);
            font-weight: 700;
            background: var(--lottery-red-soft);
        }

        .lottery-header__actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--lottery-green);
            background: transparent;
            color: var(--lottery-green);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--lottery-transition);
            font-size: 15px;
        }

        .lottery-header__search-btn:hover,
        .lottery-header__search-btn:focus {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-header__hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--lottery-radius-sm);
        }

        .lottery-header__hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--lottery-text);
            margin: 5px 0;
            border-radius: 3px;
            transition: var(--lottery-transition);
        }

        /* ========== Buttons ========== */
        .lottery-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--lottery-radius-pill);
            border: none;
            cursor: pointer;
            transition: var(--lottery-transition);
            text-align: center;
            line-height: 1.4;
        }

        .lottery-btn--primary {
            background: var(--lottery-red);
            color: #fff;
            box-shadow: 0 6px 18px rgba(216, 64, 47, 0.25);
        }

        .lottery-btn--primary:hover,
        .lottery-btn--primary:focus {
            background: var(--lottery-red-deep);
            color: #fff;
            box-shadow: 0 8px 24px rgba(216, 64, 47, 0.35);
            transform: translateY(-1px);
        }

        .lottery-btn--outline {
            background: transparent;
            color: var(--lottery-green);
            border: 2px solid var(--lottery-green);
        }

        .lottery-btn--outline:hover,
        .lottery-btn--outline:focus {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-btn--light {
            background: var(--lottery-white);
            color: var(--lottery-red);
            border: 2px solid var(--lottery-white);
        }

        .lottery-btn--light:hover,
        .lottery-btn--light:focus {
            background: transparent;
            color: var(--lottery-text-inverse);
            border-color: var(--lottery-text-inverse);
        }

        .lottery-btn--sm {
            padding: 9px 18px;
            font-size: 13px;
        }

        .lottery-btn--lg {
            padding: 16px 36px;
            font-size: 17px;
        }

        .lottery-btn--block {
            width: 100%;
        }

        /* ========== Hero ========== */
        .lottery-hero {
            position: relative;
            min-height: 68vh;
            display: flex;
            align-items: center;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 80px 0 60px;
        }

        .lottery-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(28, 58, 50, 0.68);
            z-index: 1;
        }

        .lottery-hero .lottery-container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .lottery-hero__grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 40px;
            align-items: center;
        }

        .lottery-hero__title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--lottery-text-inverse);
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }

        .lottery-hero__title .highlight {
            color: var(--lottery-gold);
            font-weight: 800;
        }

        .lottery-hero__desc {
            font-size: 17px;
            line-height: 1.75;
            color: rgba(255, 249, 240, 0.85);
            max-width: 560px;
            margin-bottom: 28px;
        }

        .lottery-hero__cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .lottery-hero__badge-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .lottery-hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 249, 240, 0.14);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 249, 240, 0.25);
            color: var(--lottery-text-inverse);
            padding: 8px 16px;
            border-radius: var(--lottery-radius-pill);
            font-size: 13px;
            font-weight: 500;
        }

        .lottery-hero__badge i {
            color: var(--lottery-gold);
        }

        .lottery-hero__card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 28px 26px;
            box-shadow: var(--lottery-shadow-lg);
            border: 1px solid var(--lottery-border);
        }

        .lottery-hero__card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .lottery-hero__card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-green);
        }

        .lottery-hero__card-tag {
            font-size: 11px;
            font-weight: 700;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 4px 10px;
            border-radius: var(--lottery-radius-pill);
            letter-spacing: 0.5px;
        }

        .lottery-hero__draw-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-hero__draw-numbers {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin: 16px 0;
            flex-wrap: wrap;
        }

        .lottery-hero__number-ball {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: var(--lottery-gold);
            font-family: var(--lottery-font-number);
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-variant-numeric: tabular-nums;
            box-shadow: 0 4px 10px rgba(28, 58, 50, 0.2);
            transition: var(--lottery-transition);
        }

        .lottery-hero__number-ball--red {
            background: var(--lottery-red);
            color: #fff;
        }

        .lottery-hero__number-ball:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 16px rgba(28, 58, 50, 0.3);
        }

        .lottery-hero__quick-switch {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .lottery-hero__quick-btn {
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--lottery-radius-pill);
            border: 1px solid var(--lottery-border);
            background: var(--lottery-bg);
            color: var(--lottery-text-secondary);
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-hero__quick-btn:hover,
        .lottery-hero__quick-btn:focus,
        .lottery-hero__quick-btn.is-active {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-hero__apply-btn-row {
            margin-top: 18px;
            display: flex;
            gap: 10px;
        }

        .lottery-hero__apply-btn-row .lottery-btn {
            flex: 1;
        }

        /* ========== Founder Grid / Cards ========== */
        .lottery-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            padding: 26px 24px;
            transition: var(--lottery-transition);
            position: relative;
            overflow: hidden;
        }

        .lottery-card:hover {
            border-color: rgba(216, 64, 47, 0.25);
            box-shadow: var(--lottery-shadow-lg);
            transform: translateY(-4px);
        }

        .lottery-card__icon {
            width: 52px;
            height: 52px;
            border-radius: var(--lottery-radius-md);
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .lottery-card__title {
            font-size: 19px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-card__desc {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .lottery-card__link {
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .lottery-card__tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-gold-soft);
            color: #8B6B1A;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        /* ========== Pain Points ========== */
        .lottery-pain__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .lottery-pain__item {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px 22px;
            border: 1px solid var(--lottery-border);
            border-left: 4px solid var(--lottery-red);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-pain__item:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateX(4px);
        }

        .lottery-pain__num {
            font-size: 13px;
            font-weight: 700;
            color: var(--lottery-red);
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .lottery-pain__title {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-pain__text {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
        }

        .lottery-pain__img {
            border-radius: var(--lottery-radius-md);
            overflow: hidden;
            margin-top: 14px;
            aspect-ratio: 16/9;
        }

        .lottery-pain__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--lottery-transition);
        }

        .lottery-pain__item:hover .lottery-pain__img img {
            transform: scale(1.03);
        }

        /* ========== Solution ========== */
        .lottery-solution__bento {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .lottery-solution__bento-item {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .lottery-solution__bento-item:hover {
            box-shadow: var(--lottery-shadow-md);
            border-color: rgba(216, 64, 47, 0.2);
        }

        .lottery-solution__bento-item--wide {
            grid-column: span 2;
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            border-color: var(--lottery-green);
        }

        .lottery-solution__bento-item--wide .lottery-solution__bento-title {
            color: var(--lottery-text-inverse);
        }

        .lottery-solution__bento-item--wide .lottery-solution__bento-text {
            color: rgba(255, 249, 240, 0.75);
        }

        .lottery-solution__bento-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--lottery-radius-md);
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .lottery-solution__bento-item--wide .lottery-solution__bento-icon {
            background: rgba(255, 249, 240, 0.15);
            color: var(--lottery-gold);
        }

        .lottery-solution__bento-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 6px;
        }

        .lottery-solution__bento-text {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.65;
        }

        .lottery-solution__bento-link {
            display: inline-block;
            margin-top: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--lottery-red);
        }

        .lottery-solution__bento-item--wide .lottery-solution__bento-link {
            color: var(--lottery-gold);
        }

        /* ========== Scenario Demo ========== */
        .lottery-scenario {
            background: var(--lottery-white);
        }

        .lottery-scenario__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .lottery-scenario__img-wrap {
            border-radius: var(--lottery-radius-lg);
            overflow: hidden;
            box-shadow: var(--lottery-shadow-lg);
            position: relative;
        }

        .lottery-scenario__img-wrap img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }

        .lottery-scenario__content-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-scenario__content-text {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .lottery-scenario__stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .lottery-scenario__stat {
            flex: 1;
            min-width: 80px;
        }

        .lottery-scenario__stat-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--lottery-red);
            font-family: var(--lottery-font-number);
            line-height: 1.2;
        }

        .lottery-scenario__stat-label {
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        /* ========== Results / Achievements ========== */
        .lottery-results__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .lottery-results__card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px 22px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            text-align: center;
            transition: var(--lottery-transition);
        }

        .lottery-results__card:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateY(-3px);
        }

        .lottery-results__big-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--lottery-red);
            font-family: var(--lottery-font-number);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .lottery-results__big-num--gold {
            color: #B8860B;
        }

        .lottery-results__label {
            font-size: 14px;
            font-weight: 600;
            color: var(--lottery-text);
            margin-bottom: 6px;
        }

        .lottery-results__desc {
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-results__badge-row {
            display: flex;
            gap: 6px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .lottery-results__mini-ball {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: var(--lottery-gold);
            font-size: 13px;
            font-weight: 700;
            font-family: var(--lottery-font-number);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ========== Testimonials ========== */
        .lottery-testimonials__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .lottery-testimonial-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px 20px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-testimonial-card:hover {
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-testimonial-card__quote {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
            position: relative;
            padding-left: 16px;
            border-left: 3px solid var(--lottery-gold);
        }

        .lottery-testimonial-card__user {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lottery-testimonial-card__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: var(--lottery-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .lottery-testimonial-card__name {
            font-size: 14px;
            font-weight: 700;
            color: var(--lottery-text);
        }

        .lottery-testimonial-card__role {
            font-size: 12px;
            color: var(--lottery-text-secondary);
        }

        /* ========== Deep Content ========== */
        .lottery-deep__block {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 36px 32px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            margin-bottom: 28px;
        }

        .lottery-deep__block:last-child {
            margin-bottom: 0;
        }

        .lottery-deep__title {
            font-size: 22px;
            font-weight: 700;
            color: var(--lottery-green);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .lottery-deep__body {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.85;
        }

        .lottery-deep__body p {
            margin-bottom: 14px;
        }

        .lottery-deep__body p:last-child {
            margin-bottom: 0;
        }

        .lottery-deep__body strong {
            color: var(--lottery-text);
            font-weight: 700;
        }

        /* ========== News ========== */
        .lottery-news__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .lottery-news-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            overflow: hidden;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
            display: flex;
            flex-direction: column;
        }

        .lottery-news-card:hover {
            box-shadow: var(--lottery-shadow-lg);
            transform: translateY(-3px);
        }

        .lottery-news-card__img {
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .lottery-news-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--lottery-transition);
        }

        .lottery-news-card:hover .lottery-news-card__img img {
            transform: scale(1.04);
        }

        .lottery-news-card__body {
            padding: 20px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .lottery-news-card__meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .lottery-news-card__date {
            font-size: 12px;
            font-weight: 700;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 4px 10px;
            border-radius: var(--lottery-radius-pill);
        }

        .lottery-news-card__tag {
            font-size: 12px;
            color: var(--lottery-text-secondary);
            font-weight: 500;
        }

        .lottery-news-card__title {
            font-size: 17px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .lottery-news-card__summary {
            font-size: 13px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 12px;
        }

        .lottery-news-card__read-more {
            font-size: 13px;
            font-weight: 600;
            color: var(--lottery-red);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ========== Version Update / Changelog ========== */
        .lottery-changelog {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-changelog__list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 800px;
        }

        .lottery-changelog__item {
            display: flex;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 249, 240, 0.12);
        }

        .lottery-changelog__item:last-child {
            border-bottom: none;
        }

        .lottery-changelog__version {
            font-size: 13px;
            font-weight: 700;
            color: var(--lottery-gold);
            min-width: 60px;
            flex-shrink: 0;
        }

        .lottery-changelog__content-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .lottery-changelog__content-text {
            font-size: 14px;
            color: rgba(255, 249, 240, 0.72);
            line-height: 1.6;
        }

        /* ========== Timeline ========== */
        .lottery-timeline__wrap {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .lottery-timeline__wrap::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--lottery-border);
            border-radius: 3px;
        }

        .lottery-timeline__item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 28px;
        }

        .lottery-timeline__item:last-child {
            margin-bottom: 0;
        }

        .lottery-timeline__dot {
            position: absolute;
            left: 14px;
            top: 4px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--lottery-red);
            border: 4px solid var(--lottery-bg);
            z-index: 1;
        }

        .lottery-timeline__time {
            font-size: 13px;
            font-weight: 700;
            color: var(--lottery-red);
            letter-spacing: 1px;
            margin-bottom: 4px;
            display: block;
        }

        .lottery-timeline__title {
            font-size: 17px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 4px;
        }

        .lottery-timeline__text {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.6;
        }

        .lottery-timeline__action {
            font-size: 13px;
            font-weight: 600;
            color: var(--lottery-red);
            display: inline-block;
            margin-top: 6px;
        }

        /* ========== Festival / Campaign ========== */
        .lottery-festival {
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
            position: relative;
            overflow: hidden;
        }

        .lottery-festival::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(229, 184, 75, 0.15);
            border-radius: 50%;
            pointer-events: none;
        }

        .lottery-festival__grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .lottery-festival__title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--lottery-text-inverse);
        }

        .lottery-festival__text {
            font-size: 15px;
            color: rgba(255, 249, 240, 0.85);
            line-height: 1.7;
            max-width: 560px;
        }

        .lottery-festival__gift-badge {
            background: var(--lottery-gold);
            color: var(--lottery-green);
            font-weight: 800;
            font-size: 18px;
            padding: 18px 28px;
            border-radius: var(--lottery-radius-lg);
            text-align: center;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
            flex-shrink: 0;
        }

        .lottery-festival__gift-badge small {
            display: block;
            font-size: 12px;
            font-weight: 600;
            margin-top: 4px;
        }

        /* ========== Reward Preview ========== */
        .lottery-reward__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .lottery-reward-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px 18px;
            text-align: center;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-reward-card:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateY(-4px);
        }

        .lottery-reward-card__icon {
            font-size: 32px;
            color: var(--lottery-gold);
            margin-bottom: 10px;
        }

        .lottery-reward-card__name {
            font-size: 15px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 4px;
        }

        .lottery-reward-card__desc {
            font-size: 12px;
            color: var(--lottery-text-secondary);
        }

        .lottery-reward__progress {
            margin-top: 24px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .lottery-reward__progress-track {
            flex: 1;
            height: 8px;
            background: var(--lottery-border);
            border-radius: 4px;
            overflow: hidden;
        }

        .lottery-reward__progress-fill {
            height: 100%;
            background: var(--lottery-red);
            border-radius: 4px;
            width: 65%;
            transition: var(--lottery-transition);
        }

        .lottery-reward__progress-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--lottery-text-secondary);
            white-space: nowrap;
        }

        /* ========== Brand Intro ========== */
        .lottery-brand__block {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 36px 32px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-md);
            display: flex;
            gap: 28px;
            align-items: flex-start;
        }

        .lottery-brand__icon {
            width: 64px;
            height: 64px;
            border-radius: var(--lottery-radius-md);
            background: var(--lottery-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }

        .lottery-brand__title {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-brand__text {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.8;
        }

        /* ========== FAQ ========== */
        .lottery-faq__wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .lottery-faq__item {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-md);
            border: 1px solid var(--lottery-border);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--lottery-transition);
        }

        .lottery-faq__item.is-open {
            border-color: var(--lottery-red);
            box-shadow: var(--lottery-shadow-sm);
        }

        .lottery-faq__question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            color: var(--lottery-text);
            text-align: left;
            transition: var(--lottery-transition);
            gap: 12px;
        }

        .lottery-faq__question:hover {
            color: var(--lottery-red);
        }

        .lottery-faq__question i {
            flex-shrink: 0;
            transition: var(--lottery-transition);
            font-size: 14px;
            color: var(--lottery-text-secondary);
        }

        .lottery-faq__item.is-open .lottery-faq__question i {
            transform: rotate(180deg);
            color: var(--lottery-red);
        }

        .lottery-faq__answer {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.75;
            display: none;
        }

        .lottery-faq__item.is-open .lottery-faq__answer {
            display: block;
        }

        /* ========== CTA / Form ========== */
        .lottery-cta {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            position: relative;
            overflow: hidden;
        }

        .lottery-cta::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 350px;
            height: 350px;
            background: rgba(216, 64, 47, 0.2);
            border-radius: 50%;
            pointer-events: none;
        }

        .lottery-cta__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .lottery-cta__title {
            font-size: 26px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 10px;
        }

        .lottery-cta__text {
            font-size: 15px;
            color: rgba(255, 249, 240, 0.8);
            line-height: 1.7;
        }

        .lottery-cta__form-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 28px 24px;
            box-shadow: var(--lottery-shadow-lg);
        }

        .lottery-cta__form-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 14px;
        }

        .lottery-form-group {
            margin-bottom: 14px;
        }

        .lottery-form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--lottery-text);
            margin-bottom: 6px;
        }

        .lottery-form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--lottery-border);
            border-radius: 10px;
            font-size: 14px;
            color: var(--lottery-text);
            background: var(--lottery-bg);
            transition: var(--lottery-transition);
            outline: none;
        }

        .lottery-form-input:focus {
            border-color: var(--lottery-red);
            box-shadow: 0 0 0 4px rgba(216, 64, 47, 0.1);
            background: var(--lottery-white);
        }

        .lottery-form-input::placeholder {
            color: #aaa;
        }

        /* ========== Footer ========== */
        .lottery-footer {
            background: var(--lottery-green);
            color: rgba(255, 249, 240, 0.75);
            padding: 56px 0 28px;
            border-top: 4px solid var(--lottery-red);
        }

        .lottery-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .lottery-footer__brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 10px;
        }

        .lottery-footer__brand-desc {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 249, 240, 0.6);
            max-width: 280px;
        }

        .lottery-footer__title {
            font-size: 15px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .lottery-footer__link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lottery-footer__link-list li {
            margin-bottom: 8px;
        }

        .lottery-footer__link-list a {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.6);
            transition: var(--lottery-transition);
        }

        .lottery-footer__link-list a:hover,
        .lottery-footer__link-list a:focus {
            color: var(--lottery-gold);
        }

        .lottery-footer__subscribe-input {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }

        .lottery-footer__subscribe-input input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid rgba(255, 249, 240, 0.25);
            border-radius: var(--lottery-radius-sm);
            background: rgba(255, 249, 240, 0.08);
            color: var(--lottery-text-inverse);
            font-size: 13px;
            outline: none;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-input input:focus {
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.15);
        }

        .lottery-footer__subscribe-input input::placeholder {
            color: rgba(255, 249, 240, 0.4);
        }

        .lottery-footer__subscribe-btn {
            padding: 10px 18px;
            background: var(--lottery-gold);
            color: var(--lottery-green);
            font-weight: 700;
            font-size: 13px;
            border: none;
            border-radius: var(--lottery-radius-sm);
            cursor: pointer;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-footer__subscribe-btn:hover,
        .lottery-footer__subscribe-btn:focus {
            background: #d4a836;
            transform: translateY(-1px);
        }

        .lottery-footer__bottom {
            border-top: 1px solid rgba(255, 249, 240, 0.12);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-footer__bottom-links {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .lottery-footer__bottom-links a {
            color: rgba(255, 249, 240, 0.5);
            font-size: 12px;
        }

        .lottery-footer__bottom-links a:hover,
        .lottery-footer__bottom-links a:focus {
            color: var(--lottery-gold);
        }

        /* ========== Off-canvas ========== */
        .lottery-offcanvas {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: var(--lottery-white);
            z-index: 2000;
            box-shadow: var(--lottery-shadow-lg);
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px;
            overflow-y: auto;
        }

        .lottery-offcanvas.is-open {
            left: 0;
        }

        .lottery-offcanvas__overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(28, 58, 50, 0.6);
            z-index: 1900;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .lottery-offcanvas__overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .lottery-offcanvas__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-offcanvas__brand {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
        }

        .lottery-offcanvas__close {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: var(--lottery-text-secondary);
            padding: 4px 8px;
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__close:hover {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-offcanvas__nav-link {
            display: flex;
            align-items: center;
            padding: 12px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
            margin-bottom: 4px;
        }

        .lottery-offcanvas__nav-link:hover,
        .lottery-offcanvas__nav-link:focus {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-offcanvas__nav-link.is-active {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            font-weight: 700;
        }

        /* ========== Pagination ========== */
        .lottery-pagination {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 28px;
        }

        .lottery-pagination__btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-text);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-pagination__btn:hover,
        .lottery-pagination__btn:focus,
        .lottery-pagination__btn.is-active {
            background: var(--lottery-red);
            border-color: var(--lottery-red);
            color: #fff;
        }

        /* ========== Foundation Overrides ========== */
        .top-bar,
        .top-bar ul {
            background: transparent;
        }

        .top-bar a {
            color: var(--lottery-text);
        }

        .button,
        .foundation .button {
            font-family: var(--lottery-font);
        }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) {
            :root {
                --lottery-section-gap: 64px;
                --lottery-gutter: 20px;
            }

            .lottery-hero__grid {
                grid-template-columns: 1fr 340px;
                gap: 28px;
            }

            .lottery-hero__title {
                font-size: 34px;
            }

            .lottery-results__grid,
            .lottery-testimonials__grid,
            .lottery-news__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lottery-reward__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lottery-footer__grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --lottery-section-gap: 48px;
                --lottery-gutter: 16px;
            }

            .lottery-header__nav {
                display: none;
            }

            .lottery-header__hamburger {
                display: block;
            }

            .lottery-header__search-btn {
                display: none;
            }

            .lottery-header__actions .lottery-btn {
                display: none;
            }

            .lottery-hero {
                min-height: auto;
                padding: 56px 0 48px;
            }

            .lottery-hero__grid {
                grid-template-columns: 1fr;
            }

            .lottery-hero__title {
                font-size: 28px;
            }

            .lottery-hero__desc {
                font-size: 15px;
            }

            .lottery-pain__grid {
                grid-template-columns: 1fr;
            }

            .lottery-solution__bento {
                grid-template-columns: 1fr;
            }

            .lottery-solution__bento-item--wide {
                grid-column: span 1;
            }

            .lottery-scenario__grid {
                grid-template-columns: 1fr;
            }

            .lottery-results__grid,
            .lottery-testimonials__grid,
            .lottery-news__grid {
                grid-template-columns: 1fr;
            }

            .lottery-section__title {
                font-size: 24px;
            }

            .lottery-cta__grid {
                grid-template-columns: 1fr;
            }

            .lottery-festival__grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .lottery-festival__gift-badge {
                justify-self: center;
            }

            .lottery-footer__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .lottery-brand__block {
                flex-direction: column;
                gap: 16px;
            }

            .lottery-deep__block {
                padding: 24px 18px;
            }

            .lottery-reward__grid {
                grid-template-columns: 1fr;
            }

            .lottery-timeline__wrap::before {
                left: 14px;
            }

            .lottery-timeline__item {
                padding-left: 44px;
            }

            .lottery-timeline__dot {
                left: 6px;
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 520px) {
            .lottery-hero__title {
                font-size: 24px;
            }

            .lottery-hero__cta-row {
                flex-direction: column;
            }

            .lottery-section {
                padding: 36px 0;
            }

            .lottery-section__title {
                font-size: 21px;
            }

            .lottery-btn--lg {
                padding: 13px 24px;
                font-size: 15px;
            }

            .lottery-footer__bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .lottery-footer__bottom-links {
                justify-content: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }

/* roulang page: category3 */
:root {
            --lottery-red: #D8402F;
            --lottery-red-deep: #B53025;
            --lottery-red-soft: rgba(216, 64, 47, 0.08);
            --lottery-gold: #E5B84B;
            --lottery-gold-soft: rgba(229, 184, 75, 0.15);
            --lottery-green: #1C3A32;
            --lottery-green-light: #2C5046;
            --lottery-bg: #F7F4ED;
            --lottery-white: #FFFFFF;
            --lottery-border: #E9E2D2;
            --lottery-text: #252525;
            --lottery-text-secondary: #6B6B6B;
            --lottery-text-inverse: #FFF9F0;
            --lottery-radius-sm: 8px;
            --lottery-radius-md: 12px;
            --lottery-radius-lg: 14px;
            --lottery-radius-xl: 20px;
            --lottery-radius-pill: 999px;
            --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
            --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
            --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
            --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
            --lottery-container: 1200px;
            --lottery-gutter: 24px;
            --lottery-section-gap: 64px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--lottery-font);
            font-size: 16px;
            line-height: 1.8;
            color: var(--lottery-text);
            background-color: var(--lottery-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--lottery-red);
            text-decoration: none;
            transition: var(--lottery-transition);
        }

        a:hover,
        a:focus {
            color: var(--lottery-red-deep);
            outline: none;
        }

        a:focus-visible {
            outline: 3px solid rgba(216, 64, 47, 0.35);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .lottery-container {
            max-width: var(--lottery-container);
            margin: 0 auto;
            padding: 0 var(--lottery-gutter);
        }

        .lottery-section {
            padding: var(--lottery-section-gap) 0;
            position: relative;
        }

        .lottery-section--alt {
            background-color: var(--lottery-white);
            border-top: 1px solid var(--lottery-border);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-section--dark {
            background-color: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-section--gold-soft {
            background-color: var(--lottery-gold-soft);
        }

        .lottery-section__header {
            margin-bottom: 36px;
        }

        .lottery-section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 12px;
        }

        .lottery-section__title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-section__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            max-width: 720px;
            line-height: 1.7;
        }

        .lottery-section--dark .lottery-section__title,
        .lottery-section--dark .lottery-section__subtitle {
            color: var(--lottery-text-inverse);
        }

        .lottery-section--dark .lottery-section__subtitle {
            color: rgba(255, 249, 240, 0.75);
        }

        /* ========== Header / Navigation ========== */
        .lottery-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
        }

        .lottery-header__top-strip {
            height: 4px;
            background: var(--lottery-red);
        }

        .lottery-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
            gap: 20px;
        }

        .lottery-header__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__logo-icon {
            width: 40px;
            height: 40px;
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lottery-gold);
            font-size: 18px;
            font-weight: 700;
            font-family: var(--lottery-font-number);
        }

        .lottery-header__brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .lottery-header__brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
            letter-spacing: 0.5px;
        }

        .lottery-header__brand-sub {
            font-size: 11px;
            color: var(--lottery-text-secondary);
            letter-spacing: 1px;
        }

        .lottery-header__nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .lottery-header__nav-link {
            display: inline-flex;
            align-items: center;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            white-space: nowrap;
            transition: var(--lottery-transition);
        }

        .lottery-header__nav-link:hover {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-header__nav-link.is-active {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            font-weight: 700;
        }

        .lottery-header__actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__search-btn {
            width: 38px;
            height: 38px;
            border: 1px solid var(--lottery-green);
            border-radius: var(--lottery-radius-sm);
            background: transparent;
            color: var(--lottery-green);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-header__search-btn:hover {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-header__cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-pill);
            white-space: nowrap;
            transition: var(--lottery-transition);
        }

        .lottery-header__cta-btn:hover {
            background: var(--lottery-red-deep);
            color: var(--lottery-text-inverse);
            transform: translateY(-1px);
        }

        .lottery-header__hamburger {
            display: none;
            width: 40px;
            height: 40px;
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-sm);
            background: transparent;
            color: var(--lottery-green);
            font-size: 18px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: var(--lottery-transition);
        }

        .lottery-header__hamburger:hover {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        /* ========== Breadcrumb ========== */
        .lottery-breadcrumb {
            padding: 16px 0;
            background: var(--lottery-bg);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-breadcrumb__list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__list li {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .lottery-breadcrumb__list li:not(:last-child)::after {
            content: '›';
            color: var(--lottery-text-secondary);
            font-weight: 700;
            margin-left: 6px;
        }

        .lottery-breadcrumb__list a {
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__list a:hover {
            color: var(--lottery-red);
        }

        .lottery-breadcrumb__list .is-current {
            color: var(--lottery-red);
            font-weight: 600;
        }

        /* ========== Category Hero ========== */
        .lottery-cat-hero {
            background: var(--lottery-green);
            padding: 48px 0;
            position: relative;
            overflow: hidden;
        }

        .lottery-cat-hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(229, 184, 75, 0.06);
            border-radius: 50%;
            pointer-events: none;
        }

        .lottery-cat-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: 20%;
            width: 300px;
            height: 300px;
            background: rgba(216, 64, 47, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .lottery-cat-hero__inner {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .lottery-cat-hero__title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--lottery-text-inverse);
            margin-bottom: 16px;
        }

        .lottery-cat-hero__title .highlight {
            color: var(--lottery-gold);
        }

        .lottery-cat-hero__desc {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 249, 240, 0.8);
            max-width: 560px;
        }

        .lottery-cat-hero__stats {
            display: flex;
            gap: 24px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .lottery-cat-hero__stat {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--lottery-radius-md);
            padding: 14px 20px;
            min-width: 100px;
        }

        .lottery-cat-hero__stat-num {
            font-family: var(--lottery-font-number);
            font-size: 24px;
            font-weight: 700;
            color: var(--lottery-gold);
            line-height: 1.2;
        }

        .lottery-cat-hero__stat-label {
            font-size: 12px;
            color: rgba(255, 249, 240, 0.7);
            margin-top: 4px;
        }

        .lottery-cat-hero__panel {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-xl);
            padding: 28px;
            box-shadow: var(--lottery-shadow-lg);
        }

        .lottery-cat-hero__panel-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lottery-cat-hero__panel-title i {
            color: var(--lottery-red);
        }

        .lottery-prediction-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .lottery-prediction-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 700;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-prediction-badge--gold {
            background: var(--lottery-gold-soft);
            color: var(--lottery-green);
        }

        .lottery-prediction-badge--outline {
            background: transparent;
            border: 1px solid var(--lottery-border);
            color: var(--lottery-text-secondary);
        }

        .lottery-cat-hero__panel-nums {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .lottery-num-ball {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: var(--lottery-gold);
            font-family: var(--lottery-font-number);
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lottery-num-ball--red {
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
        }

        .lottery-num-ball--gold {
            background: var(--lottery-gold);
            color: var(--lottery-green);
        }

        .lottery-cat-hero__panel-footer {
            font-size: 12px;
            color: var(--lottery-text-secondary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ========== Cards ========== */
        .lottery-card {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-lg);
            box-shadow: var(--lottery-shadow-sm);
            overflow: hidden;
            transition: var(--lottery-transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .lottery-card:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateY(-3px);
        }

        .lottery-card__image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
        }

        .lottery-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .lottery-card:hover .lottery-card__image img {
            transform: scale(1.03);
        }

        .lottery-card__badge {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 700;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
        }

        .lottery-card__badge--gold {
            background: var(--lottery-gold);
            color: var(--lottery-green);
        }

        .lottery-card__badge--green {
            background: var(--lottery-green);
            color: var(--lottery-gold);
        }

        .lottery-card__body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .lottery-card__title {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-card__title a {
            color: var(--lottery-text);
        }

        .lottery-card__title a:hover {
            color: var(--lottery-red);
        }

        .lottery-card__summary {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 14px;
        }

        .lottery-card__meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--lottery-text-secondary);
            padding-top: 12px;
            border-top: 1px solid var(--lottery-border);
        }

        .lottery-card__meta i {
            margin-right: 3px;
        }

        .lottery-heat {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-weight: 600;
            color: var(--lottery-red);
        }

        .lottery-heat--medium {
            color: var(--lottery-gold);
        }

        .lottery-heat--low {
            color: var(--lottery-text-secondary);
        }

        /* ========== Featured Card ========== */
        .lottery-featured-card {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-xl);
            box-shadow: var(--lottery-shadow-md);
            overflow: hidden;
            transition: var(--lottery-transition);
            display: grid;
            grid-template-columns: 1.1fr 1fr;
        }

        .lottery-featured-card:hover {
            box-shadow: var(--lottery-shadow-lg);
            transform: translateY(-3px);
        }

        .lottery-featured-card__image {
            position: relative;
            min-height: 320px;
            overflow: hidden;
        }

        .lottery-featured-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .lottery-featured-card:hover .lottery-featured-card__image img {
            transform: scale(1.02);
        }

        .lottery-featured-card__badge {
            position: absolute;
            top: 16px;
            left: 16px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 12px;
            font-size: 13px;
            font-weight: 700;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
        }

        .lottery-featured-card__body {
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lottery-featured-card__label {
            font-size: 13px;
            font-weight: 700;
            color: var(--lottery-red);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .lottery-featured-card__title {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-featured-card__summary {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .lottery-featured-card__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .lottery-featured-card__meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--lottery-text-secondary);
            padding-top: 14px;
            border-top: 1px solid var(--lottery-border);
        }

        /* ========== Buttons ========== */
        .lottery-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            font-size: 15px;
            font-weight: 700;
            border-radius: var(--lottery-radius-pill);
            border: none;
            cursor: pointer;
            transition: var(--lottery-transition);
            text-align: center;
        }

        .lottery-btn--primary {
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
        }

        .lottery-btn--primary:hover {
            background: var(--lottery-red-deep);
            color: var(--lottery-text-inverse);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(216, 64, 47, 0.3);
        }

        .lottery-btn--outline {
            background: transparent;
            border: 1px solid var(--lottery-green);
            color: var(--lottery-green);
        }

        .lottery-btn--outline:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-btn--text {
            background: transparent;
            border: none;
            color: var(--lottery-red);
            padding: 6px 0;
            font-weight: 600;
        }

        .lottery-btn--text:hover {
            color: var(--lottery-green);
        }

        /* ========== Pagination ========== */
        .lottery-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 36px;
            flex-wrap: wrap;
        }

        .lottery-pagination__item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 8px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-sm);
            color: var(--lottery-text);
            background: var(--lottery-white);
            transition: var(--lottery-transition);
        }

        .lottery-pagination__item:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
        }

        .lottery-pagination__item.is-active {
            background: var(--lottery-red);
            border-color: var(--lottery-red);
            color: var(--lottery-text-inverse);
        }

        .lottery-pagination__item.is-disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* ========== Strategy Deep Dive ========== */
        .lottery-deep-bg {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            border-radius: var(--lottery-radius-xl);
            padding: 40px 36px;
        }

        .lottery-deep-bg h3 {
            color: var(--lottery-gold);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .lottery-deep-bg p {
            color: rgba(255, 249, 240, 0.8);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .lottery-deep-bg ul {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }

        .lottery-deep-bg ul li {
            padding: 8px 0 8px 28px;
            position: relative;
            font-size: 15px;
            color: rgba(255, 249, 240, 0.85);
            line-height: 1.7;
        }

        .lottery-deep-bg ul li::before {
            content: '★';
            position: absolute;
            left: 0;
            color: var(--lottery-gold);
        }

        /* ========== FAQ ========== */
        .lottery-faq-item {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-faq-item:hover {
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-faq-item__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            color: var(--lottery-text);
            transition: var(--lottery-transition);
        }

        .lottery-faq-item__header:hover {
            color: var(--lottery-red);
        }

        .lottery-faq-item__header i {
            transition: transform 0.3s ease;
            color: var(--lottery-text-secondary);
        }

        .lottery-faq-item.is-open .lottery-faq-item__header i {
            transform: rotate(180deg);
        }

        .lottery-faq-item__body {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.8;
            display: none;
        }

        .lottery-faq-item.is-open .lottery-faq-item__body {
            display: block;
        }

        /* ========== CTA ========== */
        .lottery-cta-box {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-xl);
            padding: 40px 36px;
            text-align: center;
            box-shadow: var(--lottery-shadow-md);
            position: relative;
            overflow: hidden;
        }

        .lottery-cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: var(--lottery-red-soft);
            border-radius: 50%;
            pointer-events: none;
        }

        .lottery-cta-box__title {
            font-size: 24px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .lottery-cta-box__desc {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            max-width: 520px;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .lottery-subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .lottery-subscribe-form input {
            flex: 1;
            padding: 12px 18px;
            font-size: 15px;
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-bg);
            color: var(--lottery-text);
            transition: var(--lottery-transition);
        }

        .lottery-subscribe-form input:focus {
            outline: none;
            border-color: var(--lottery-red);
            box-shadow: 0 0 0 3px rgba(216, 64, 47, 0.12);
            background: var(--lottery-white);
        }

        /* ========== Footer ========== */
        .lottery-footer {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            padding: 56px 0 24px;
            margin-top: 0;
        }

        .lottery-footer__grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .lottery-footer__brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 10px;
        }

        .lottery-footer__brand-desc {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 249, 240, 0.6);
            max-width: 320px;
        }

        .lottery-footer__title {
            font-size: 14px;
            font-weight: 700;
            color: var(--lottery-gold);
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .lottery-footer__link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lottery-footer__link-list li {
            margin-bottom: 8px;
        }

        .lottery-footer__link-list a {
            font-size: 14px;
            color: rgba(255, 249, 240, 0.7);
            transition: var(--lottery-transition);
        }

        .lottery-footer__link-list a:hover {
            color: var(--lottery-gold);
            padding-left: 4px;
        }

        .lottery-footer__subscribe-input {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .lottery-footer__subscribe-input input {
            flex: 1;
            padding: 10px 14px;
            font-size: 13px;
            border: 1px solid rgba(255, 249, 240, 0.2);
            border-radius: var(--lottery-radius-sm);
            background: rgba(255, 255, 255, 0.05);
            color: var(--lottery-text-inverse);
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-input input:focus {
            outline: none;
            border-color: var(--lottery-gold);
            background: rgba(255, 255, 255, 0.1);
        }

        .lottery-footer__subscribe-btn {
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 700;
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
            border: none;
            border-radius: var(--lottery-radius-sm);
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-btn:hover {
            background: var(--lottery-red-deep);
        }

        .lottery-footer__bottom {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 249, 240, 0.1);
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-footer__bottom-links {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .lottery-footer__bottom-links a {
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-footer__bottom-links a:hover {
            color: var(--lottery-gold);
        }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) {
            .lottery-header__nav {
                gap: 2px;
            }
            .lottery-header__nav-link {
                padding: 6px 8px;
                font-size: 13px;
            }
            .lottery-footer__grid {
                grid-template-columns: 1fr 1fr;
            }
            .lottery-featured-card {
                grid-template-columns: 1fr;
            }
            .lottery-featured-card__image {
                min-height: 220px;
            }
            .lottery-cat-hero__inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .lottery-header__nav {
                display: none;
            }
            .lottery-header__hamburger {
                display: flex;
            }
            .lottery-header__cta-btn {
                display: none;
            }
            .lottery-section__title {
                font-size: 24px;
            }
            .lottery-cat-hero__title {
                font-size: 26px;
            }
            .lottery-cat-hero__stats {
                gap: 10px;
            }
            .lottery-cat-hero__stat {
                min-width: 80px;
                padding: 10px 12px;
            }
            .lottery-featured-card__body {
                padding: 20px;
            }
            .lottery-cta-box {
                padding: 28px 20px;
            }
            .lottery-subscribe-form {
                flex-direction: column;
            }
            .lottery-footer__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .lottery-footer__bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }

        @media (max-width: 520px) {
            :root {
                --lottery-gutter: 16px;
                --lottery-section-gap: 40px;
            }
            .lottery-cat-hero {
                padding: 32px 0;
            }
            .lottery-cat-hero__title {
                font-size: 22px;
            }
            .lottery-cat-hero__stat-num {
                font-size: 18px;
            }
            .lottery-num-ball {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }
            .lottery-featured-card__title {
                font-size: 18px;
            }
        }

        /* Mobile Off-canvas Menu */
        .lottery-offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .lottery-offcanvas-overlay.is-visible {
            opacity: 1;
            pointer-events: all;
        }

        .lottery-offcanvas {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background: var(--lottery-white);
            z-index: 1200;
            box-shadow: var(--lottery-shadow-lg);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 20px;
        }

        .lottery-offcanvas.is-open {
            left: 0;
        }

        .lottery-offcanvas__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--lottery-border);
            margin-bottom: 16px;
        }

        .lottery-offcanvas__brand {
            font-size: 16px;
            font-weight: 700;
            color: var(--lottery-text);
        }

        .lottery-offcanvas__close {
            width: 36px;
            height: 36px;
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-sm);
            background: transparent;
            color: var(--lottery-text);
            font-size: 16px;
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__close:hover {
            background: var(--lottery-red);
            color: var(--lottery-text-inverse);
        }

        .lottery-offcanvas__nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .lottery-offcanvas__nav a {
            display: block;
            padding: 12px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__nav a:hover {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-offcanvas__nav a.is-active {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            font-weight: 700;
        }

/* roulang page: category1 */
:root {
            --lottery-red: #D8402F;
            --lottery-red-deep: #B53025;
            --lottery-red-soft: rgba(216, 64, 47, 0.08);
            --lottery-gold: #E5B84B;
            --lottery-gold-soft: rgba(229, 184, 75, 0.15);
            --lottery-green: #1C3A32;
            --lottery-green-light: #2C5046;
            --lottery-bg: #F7F4ED;
            --lottery-white: #FFFFFF;
            --lottery-border: #E9E2D2;
            --lottery-text: #252525;
            --lottery-text-secondary: #6B6B6B;
            --lottery-text-inverse: #FFF9F0;
            --lottery-radius-sm: 8px;
            --lottery-radius-md: 12px;
            --lottery-radius-lg: 14px;
            --lottery-radius-xl: 20px;
            --lottery-radius-pill: 999px;
            --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
            --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
            --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
            --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
            --lottery-container: 1200px;
            --lottery-gutter: 24px;
            --lottery-section-gap: 64px;
            --lottery-section-gap-mobile: 48px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--lottery-font);
            font-size: 16px;
            line-height: 1.8;
            color: var(--lottery-text);
            background-color: var(--lottery-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--lottery-red);
            text-decoration: none;
            transition: var(--lottery-transition);
        }

        a:hover,
        a:focus {
            color: var(--lottery-red-deep);
            outline: none;
        }

        a:focus-visible {
            outline: 3px solid rgba(216, 64, 47, 0.35);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button {
            cursor: pointer;
        }

        .lottery-container {
            max-width: var(--lottery-container);
            margin: 0 auto;
            padding: 0 var(--lottery-gutter);
        }

        .lottery-section {
            padding: var(--lottery-section-gap) 0;
            position: relative;
        }

        .lottery-section--alt {
            background-color: var(--lottery-white);
            border-top: 1px solid var(--lottery-border);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-section--dark {
            background-color: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-section--gold-soft {
            background-color: var(--lottery-gold-soft);
        }

        .lottery-section--red-soft {
            background-color: var(--lottery-red-soft);
        }

        .lottery-section__header {
            margin-bottom: 36px;
        }

        .lottery-section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 12px;
        }

        .lottery-section__title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-section__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            max-width: 720px;
            line-height: 1.7;
        }

        .lottery-section--dark .lottery-section__title,
        .lottery-section--dark .lottery-section__subtitle {
            color: var(--lottery-text-inverse);
        }

        .lottery-section--dark .lottery-section__subtitle {
            color: rgba(255, 249, 240, 0.75);
        }

        /* ========== Header / Navigation ========== */
        .lottery-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
        }

        .lottery-header__top-strip {
            height: 4px;
            background: var(--lottery-red);
        }

        .lottery-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
            gap: 20px;
        }

        .lottery-header__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__logo-icon {
            width: 40px;
            height: 40px;
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            font-family: var(--lottery-font-number);
            letter-spacing: 1px;
        }

        .lottery-header__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            letter-spacing: 1px;
        }

        .lottery-header__brand-sub {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--lottery-text-secondary);
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .lottery-header__nav {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .lottery-header__nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
            transition: var(--lottery-transition);
        }

        .lottery-header__nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--lottery-red);
            border-radius: 2px;
            transition: var(--lottery-transition);
        }

        .lottery-header__nav-link:hover,
        .lottery-header__nav-link.is-active {
            color: var(--lottery-red);
        }

        .lottery-header__nav-link:hover::after,
        .lottery-header__nav-link.is-active::after {
            width: 100%;
        }

        .lottery-header__actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .lottery-header__search-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1.5px solid var(--lottery-green);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lottery-green);
            font-size: 15px;
            transition: var(--lottery-transition);
        }

        .lottery-header__search-icon:hover {
            background: var(--lottery-green);
            color: #fff;
            border-color: var(--lottery-green);
        }

        .lottery-header__cta {
            display: inline-block;
            background: var(--lottery-red);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: var(--lottery-radius-pill);
            border: none;
            white-space: nowrap;
            transition: var(--lottery-transition);
        }

        .lottery-header__cta:hover {
            background: var(--lottery-red-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(216, 64, 47, 0.25);
        }

        .lottery-header__hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border: 1.5px solid var(--lottery-green);
            border-radius: var(--lottery-radius-sm);
            background: transparent;
            color: var(--lottery-green);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            transition: var(--lottery-transition);
        }

        .lottery-header__hamburger:hover {
            background: var(--lottery-green);
            color: #fff;
        }

        /* ========== Breadcrumb ========== */
        .lottery-breadcrumb {
            font-size: 13px;
            color: var(--lottery-text-secondary);
            padding: 16px 0;
            border-bottom: 1px solid var(--lottery-border);
            background: var(--lottery-white);
        }

        .lottery-breadcrumb__inner {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .lottery-breadcrumb a {
            color: var(--lottery-text-secondary);
            font-weight: 400;
        }

        .lottery-breadcrumb a:hover {
            color: var(--lottery-red);
        }

        .lottery-breadcrumb__sep {
            color: var(--lottery-border);
            font-size: 12px;
        }

        .lottery-breadcrumb__current {
            color: var(--lottery-red);
            font-weight: 600;
        }

        /* ========== Hero ========== */
        .lottery-hero--category {
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            padding: 36px 0 28px;
            position: relative;
            overflow: hidden;
        }

        .lottery-hero--category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--lottery-red) 0%, var(--lottery-gold) 50%, var(--lottery-green) 100%);
        }

        .lottery-hero__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
        }

        .lottery-hero__title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-hero__title span {
            color: var(--lottery-red);
        }

        .lottery-hero__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            line-height: 1.75;
            margin-bottom: 16px;
            max-width: 520px;
        }

        .lottery-hero__badge-list {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .lottery-hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-hero__badge--gold {
            background: var(--lottery-gold-soft);
            color: #8A6D1A;
        }

        .lottery-hero__badge--green {
            background: rgba(28, 58, 50, 0.08);
            color: var(--lottery-green);
        }

        .lottery-hero__actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .lottery-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--lottery-radius-pill);
            border: none;
            transition: var(--lottery-transition);
            text-decoration: none;
        }

        .lottery-btn--primary {
            background: var(--lottery-red);
            color: #fff;
        }

        .lottery-btn--primary:hover {
            background: var(--lottery-red-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(216, 64, 47, 0.25);
        }

        .lottery-btn--outline {
            background: transparent;
            color: var(--lottery-green);
            border: 1.5px solid var(--lottery-green);
        }

        .lottery-btn--outline:hover {
            background: var(--lottery-green);
            color: #fff;
            border-color: var(--lottery-green);
            transform: translateY(-2px);
        }

        .lottery-hero__filter-card {
            background: var(--lottery-bg);
            border-radius: var(--lottery-radius-lg);
            padding: 24px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-hero__filter-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--lottery-green);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .lottery-hero__filter-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .lottery-hero__filter-group {
            flex: 1;
            min-width: 120px;
        }

        .lottery-hero__filter-group label {
            display: block;
            font-size: 12px;
            color: var(--lottery-text-secondary);
            margin-bottom: 4px;
            font-weight: 500;
        }

        .lottery-hero__select,
        .lottery-hero__input {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid var(--lottery-border);
            border-radius: var(--lottery-radius-md);
            background: var(--lottery-white);
            font-size: 14px;
            color: var(--lottery-text);
            transition: var(--lottery-transition);
            appearance: none;
            -webkit-appearance: none;
        }

        .lottery-hero__select:focus,
        .lottery-hero__input:focus {
            outline: none;
            border-color: var(--lottery-red);
            box-shadow: 0 0 0 3px rgba(216, 64, 47, 0.12);
        }

        .lottery-hero__date-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .lottery-hero__date-tab {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--lottery-radius-pill);
            border: 1.5px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-text-secondary);
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-hero__date-tab:hover,
        .lottery-hero__date-tab.is-active {
            background: var(--lottery-red);
            color: #fff;
            border-color: var(--lottery-red);
        }

        .lottery-hero__query-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-green);
            color: #fff;
            border: none;
            transition: var(--lottery-transition);
        }

        .lottery-hero__query-btn:hover {
            background: var(--lottery-green-light);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(28, 58, 50, 0.2);
        }

        /* ========== Number Badges ========== */
        .lottery-number-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .lottery-number-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-family: var(--lottery-font-number);
            font-size: 19px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #fff;
            background: var(--lottery-red);
            box-shadow: 0 4px 10px rgba(216, 64, 47, 0.25);
            transition: var(--lottery-transition);
        }

        .lottery-number-badge--gold {
            background: var(--lottery-gold);
            color: #1C3A32;
            box-shadow: 0 4px 10px rgba(229, 184, 75, 0.3);
        }

        .lottery-number-badge--green {
            background: var(--lottery-green);
            color: var(--lottery-gold);
            box-shadow: 0 4px 10px rgba(28, 58, 50, 0.25);
        }

        .lottery-number-badge:hover {
            transform: scale(1.08);
        }

        .lottery-number-badge--small {
            width: 36px;
            height: 36px;
            font-size: 15px;
        }

        .lottery-number-badge--large {
            width: 56px;
            height: 56px;
            font-size: 22px;
        }

        /* ========== Stat Cards ========== */
        .lottery-stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .lottery-stat-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            text-align: center;
            transition: var(--lottery-transition);
        }

        .lottery-stat-card:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateY(-4px);
        }

        .lottery-stat-card__number {
            font-family: var(--lottery-font-number);
            font-size: 36px;
            font-weight: 700;
            color: var(--lottery-red);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .lottery-stat-card__number--gold {
            color: #8A6D1A;
        }

        .lottery-stat-card__number--green {
            color: var(--lottery-green);
        }

        .lottery-stat-card__label {
            font-size: 13px;
            color: var(--lottery-text-secondary);
            font-weight: 500;
        }

        /* ========== Table ========== */
        .lottery-table-wrap {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            overflow: hidden;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
        }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
        }

        .lottery-table thead {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-table th {
            font-size: 13px;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            letter-spacing: 0.5px;
        }

        .lottery-table td {
            padding: 14px 16px;
            font-size: 14px;
            border-bottom: 1px solid var(--lottery-border);
            color: var(--lottery-text);
            vertical-align: middle;
        }

        .lottery-table tbody tr:nth-child(even) {
            background: rgba(247, 244, 237, 0.5);
        }

        .lottery-table tbody tr:hover {
            background: var(--lottery-red-soft);
        }

        .lottery-table__lottery-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-table__lottery-tag--gold {
            background: var(--lottery-gold-soft);
            color: #8A6D1A;
        }

        .lottery-table__lottery-tag--green {
            background: rgba(28, 58, 50, 0.08);
            color: var(--lottery-green);
        }

        /* ========== Result List ========== */
        .lottery-result-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .lottery-result-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 20px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-result-card:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateY(-4px);
        }

        .lottery-result-card__top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .lottery-result-card__lottery {
            font-size: 16px;
            font-weight: 700;
            color: var(--lottery-green);
        }

        .lottery-result-card__date {
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-result-card__codes {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

        .lottery-result-card__code {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: var(--lottery-radius-sm);
            font-family: var(--lottery-font-number);
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            background: var(--lottery-red);
            box-shadow: 0 2px 8px rgba(216, 64, 47, 0.2);
        }

        .lottery-result-card__code--gold {
            background: var(--lottery-gold);
            color: #1C3A32;
        }

        .lottery-result-card__preview {
            font-size: 13px;
            color: var(--lottery-text-secondary);
            line-height: 1.5;
            margin-top: 6px;
        }

        /* ========== Pagination ========== */
        .lottery-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            padding: 20px 0;
        }

        .lottery-pagination a,
        .lottery-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 10px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--lottery-radius-sm);
            border: 1.5px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-text);
            transition: var(--lottery-transition);
        }

        .lottery-pagination a:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-pagination .current {
            background: var(--lottery-red);
            color: #fff;
            border-color: var(--lottery-red);
        }

        .lottery-pagination .dots {
            border: none;
            background: transparent;
            color: var(--lottery-text-secondary);
        }

        /* ========== FAQ ========== */
        .lottery-faq {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            overflow: hidden;
        }

        .lottery-faq__item {
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-faq__item:last-child {
            border-bottom: none;
        }

        .lottery-faq__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            color: var(--lottery-text);
            transition: var(--lottery-transition);
            gap: 12px;
        }

        .lottery-faq__header:hover {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-faq__icon {
            font-size: 14px;
            color: var(--lottery-red);
            transition: var(--lottery-transition);
            flex-shrink: 0;
        }

        .lottery-faq__item.is-active .lottery-faq__icon {
            transform: rotate(180deg);
        }

        .lottery-faq__content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 24px;
            color: var(--lottery-text-secondary);
            font-size: 15px;
            line-height: 1.8;
        }

        .lottery-faq__item.is-active .lottery-faq__content {
            max-height: 600px;
            padding: 0 24px 18px;
        }

        /* ========== CTA ========== */
        .lottery-cta {
            background: var(--lottery-green);
            border-radius: var(--lottery-radius-xl);
            padding: 48px;
            color: var(--lottery-text-inverse);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lottery-cta::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(229, 184, 75, 0.1);
            pointer-events: none;
        }

        .lottery-cta::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(216, 64, 47, 0.15);
            pointer-events: none;
        }

        .lottery-cta__title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--lottery-text-inverse);
        }

        .lottery-cta__subtitle {
            font-size: 15px;
            color: rgba(255, 249, 240, 0.75);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }

        .lottery-cta__form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .lottery-cta__form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: var(--lottery-radius-pill);
            border: 1.5px solid rgba(255, 249, 240, 0.25);
            background: rgba(255, 255, 255, 0.08);
            color: var(--lottery-text-inverse);
            font-size: 14px;
            transition: var(--lottery-transition);
        }

        .lottery-cta__form input::placeholder {
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-cta__form input:focus {
            outline: none;
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.2);
        }

        .lottery-cta__form button {
            padding: 14px 28px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-gold);
            color: #1C3A32;
            font-weight: 700;
            font-size: 14px;
            border: none;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-cta__form button:hover {
            background: #D4A83C;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(229, 184, 75, 0.3);
        }

        /* ========== Rule Section ========== */
        .lottery-rule-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .lottery-rule-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px;
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
        }

        .lottery-rule-card__icon {
            width: 48px;
            height: 48px;
            border-radius: var(--lottery-radius-sm);
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 14px;
        }

        .lottery-rule-card__icon--green {
            background: rgba(28, 58, 50, 0.08);
            color: var(--lottery-green);
        }

        .lottery-rule-card__icon--gold {
            background: var(--lottery-gold-soft);
            color: #8A6D1A;
        }

        .lottery-rule-card__title {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-rule-card__text {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.75;
        }

        /* ========== Data Info Section ========== */
        .lottery-info-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .lottery-info-block__text {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.85;
        }

        .lottery-info-block__text h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-info-block__image {
            border-radius: var(--lottery-radius-lg);
            overflow: hidden;
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-info-block__image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .lottery-info-block__image:hover img {
            transform: scale(1.03);
        }

        /* ========== Footer ========== */
        .lottery-footer {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .lottery-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .lottery-footer__brand {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--lottery-text-inverse);
        }

        .lottery-footer__brand-desc {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.6);
            line-height: 1.65;
            max-width: 280px;
        }

        .lottery-footer__title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--lottery-gold);
        }

        .lottery-footer__link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .lottery-footer__link-list li {
            margin-bottom: 8px;
        }

        .lottery-footer__link-list a {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.7);
            transition: var(--lottery-transition);
        }

        .lottery-footer__link-list a:hover {
            color: var(--lottery-gold);
            padding-left: 4px;
        }

        .lottery-footer__subscribe-input {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .lottery-footer__subscribe-input input {
            flex: 1;
            padding: 10px 14px;
            border-radius: var(--lottery-radius-pill);
            border: 1.5px solid rgba(255, 249, 240, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: var(--lottery-text-inverse);
            font-size: 13px;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-input input::placeholder {
            color: rgba(255, 249, 240, 0.4);
        }

        .lottery-footer__subscribe-input input:focus {
            outline: none;
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.15);
        }

        .lottery-footer__subscribe-btn {
            padding: 10px 18px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-gold);
            color: #1C3A32;
            font-weight: 700;
            font-size: 13px;
            border: none;
            white-space: nowrap;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-btn:hover {
            background: #D4A83C;
            transform: translateY(-2px);
        }

        .lottery-footer__bottom {
            border-top: 1px solid rgba(255, 249, 240, 0.15);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-footer__bottom-links {
            display: flex;
            gap: 12px;
        }

        .lottery-footer__bottom-links a {
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
            transition: var(--lottery-transition);
        }

        .lottery-footer__bottom-links a:hover {
            color: var(--lottery-gold);
        }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) {
            .lottery-hero__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .lottery-hero__title {
                font-size: 30px;
            }

            .lottery-stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lottery-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .lottery-rule-grid {
                grid-template-columns: 1fr;
            }

            .lottery-info-block {
                grid-template-columns: 1fr;
            }

            .lottery-result-grid {
                grid-template-columns: 1fr;
            }

            .lottery-section {
                padding: 48px 0;
            }
        }

        @media (max-width: 768px) {
            .lottery-header__inner {
                min-height: 56px;
                gap: 10px;
            }

            .lottery-header__brand-name {
                font-size: 17px;
            }

            .lottery-header__logo-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }

            .lottery-header__nav {
                display: none;
            }

            .lottery-header__actions {
                gap: 8px;
            }

            .lottery-header__cta {
                display: none;
            }

            .lottery-header__hamburger {
                display: flex;
            }

            .lottery-header__search-icon {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }

            .lottery-hero--category {
                padding: 24px 0 20px;
            }

            .lottery-hero__title {
                font-size: 26px;
            }

            .lottery-hero__subtitle {
                font-size: 14px;
            }

            .lottery-hero__filter-card {
                padding: 16px;
            }

            .lottery-hero__filter-row {
                flex-direction: column;
                gap: 8px;
            }

            .lottery-hero__filter-group {
                min-width: 100%;
            }

            .lottery-section__title {
                font-size: 24px;
            }

            .lottery-stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .lottery-stat-card__number {
                font-size: 28px;
            }

            .lottery-number-badge {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .lottery-table-wrap {
                overflow-x: auto;
            }

            .lottery-table th,
            .lottery-table td {
                padding: 10px 12px;
                font-size: 12px;
                white-space: nowrap;
            }

            .lottery-cta {
                padding: 32px 20px;
            }

            .lottery-cta__title {
                font-size: 22px;
            }

            .lottery-cta__form {
                flex-direction: column;
            }

            .lottery-cta__form input {
                min-width: 100%;
            }

            .lottery-cta__form button {
                width: 100%;
            }

            .lottery-footer {
                padding: 32px 0 20px;
            }

            .lottery-footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .lottery-footer__bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                align-items: center;
            }

            .lottery-footer__bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .lottery-section {
                padding: 40px 0;
            }
        }

        @media (max-width: 520px) {
            .lottery-container {
                padding: 0 16px;
            }

            .lottery-hero__title {
                font-size: 22px;
                line-height: 1.4;
            }

            .lottery-hero__badge-list {
                gap: 6px;
            }

            .lottery-hero__badge {
                font-size: 11px;
                padding: 4px 10px;
            }

            .lottery-btn {
                font-size: 13px;
                padding: 10px 18px;
            }

            .lottery-stat-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .lottery-stat-card {
                padding: 16px;
            }

            .lottery-stat-card__number {
                font-size: 24px;
            }

            .lottery-section__title {
                font-size: 20px;
            }

            .lottery-faq__header {
                padding: 14px 16px;
                font-size: 14px;
            }

            .lottery-faq__content {
                padding: 0 16px;
                font-size: 13px;
            }

            .lottery-faq__item.is-active .lottery-faq__content {
                padding: 0 16px 14px;
            }

            .lottery-number-badge {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .lottery-number-badge--small {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }

            .lottery-hero__date-tabs {
                gap: 6px;
            }

            .lottery-hero__date-tab {
                padding: 6px 12px;
                font-size: 12px;
            }

            .lottery-pagination a,
            .lottery-pagination span {
                min-width: 34px;
                height: 34px;
                font-size: 12px;
                padding: 0 8px;
            }

            .lottery-result-card {
                padding: 16px;
            }

            .lottery-result-card__code {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }
        }

        /* Mobile off-canvas */
        .lottery-offcanvas {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            background: var(--lottery-white);
            box-shadow: var(--lottery-shadow-lg);
            z-index: 2000;
            transition: left 0.35s ease;
            overflow-y: auto;
            padding: 20px;
        }

        .lottery-offcanvas.is-open {
            left: 0;
        }

        .lottery-offcanvas__overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .lottery-offcanvas__overlay.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        .lottery-offcanvas__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-offcanvas__close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1.5px solid var(--lottery-border);
            background: transparent;
            color: var(--lottery-text);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__close:hover {
            background: var(--lottery-red);
            color: #fff;
            border-color: var(--lottery-red);
        }

        .lottery-offcanvas__nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .lottery-offcanvas__nav-link {
            display: block;
            padding: 12px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__nav-link:hover,
        .lottery-offcanvas__nav-link.is-active {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-offcanvas__cta {
            margin-top: 16px;
            display: block;
            text-align: center;
            background: var(--lottery-red);
            color: #fff;
            padding: 12px 20px;
            border-radius: var(--lottery-radius-pill);
            font-weight: 600;
            font-size: 14px;
        }

/* roulang page: category2 */
:root {
      --lottery-red: #D8402F;
      --lottery-red-deep: #B53025;
      --lottery-red-soft: rgba(216, 64, 47, 0.08);
      --lottery-gold: #E5B84B;
      --lottery-gold-soft: rgba(229, 184, 75, 0.15);
      --lottery-green: #1C3A32;
      --lottery-green-light: #2C5046;
      --lottery-bg: #F7F4ED;
      --lottery-white: #FFFFFF;
      --lottery-border: #E9E2D2;
      --lottery-text: #252525;
      --lottery-text-secondary: #6B6B6B;
      --lottery-text-inverse: #FFF9F0;
      --lottery-radius-sm: 8px;
      --lottery-radius-md: 12px;
      --lottery-radius-lg: 14px;
      --lottery-radius-xl: 20px;
      --lottery-radius-pill: 999px;
      --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
      --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
      --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
      --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
      --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
      --lottery-container: 1200px;
      --lottery-gutter: 24px;
      --lottery-section-gap: 64px;
      --lottery-section-gap-mobile: 48px;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--lottery-font);
      font-size: 16px;
      line-height: 1.8;
      color: var(--lottery-text);
      background-color: var(--lottery-bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: var(--lottery-red);
      text-decoration: none;
      transition: var(--lottery-transition);
    }

    a:hover,
    a:focus {
      color: var(--lottery-red-deep);
      outline: none;
    }

    a:focus-visible {
      outline: 3px solid rgba(216, 64, 47, 0.35);
      outline-offset: 2px;
      border-radius: 4px;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
    }

    .lottery-container {
      max-width: var(--lottery-container);
      margin: 0 auto;
      padding: 0 var(--lottery-gutter);
    }

    .lottery-section {
      padding: var(--lottery-section-gap) 0;
      position: relative;
    }

    .lottery-section--alt {
      background-color: var(--lottery-white);
      border-top: 1px solid var(--lottery-border);
      border-bottom: 1px solid var(--lottery-border);
    }

    .lottery-section--dark {
      background-color: var(--lottery-green);
      color: var(--lottery-text-inverse);
    }

    .lottery-section--gold-soft {
      background-color: var(--lottery-gold-soft);
    }

    .lottery-section__header {
      margin-bottom: 36px;
    }

    .lottery-section__label {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--lottery-red);
      background: var(--lottery-red-soft);
      padding: 6px 14px;
      border-radius: var(--lottery-radius-pill);
      margin-bottom: 12px;
    }

    .lottery-section__title {
      font-size: 30px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--lottery-text);
      margin-bottom: 12px;
    }

    .lottery-section__subtitle {
      font-size: 16px;
      color: var(--lottery-text-secondary);
      max-width: 720px;
      line-height: 1.7;
    }

    .lottery-section--dark .lottery-section__title,
    .lottery-section--dark .lottery-section__subtitle {
      color: var(--lottery-text-inverse);
    }

    .lottery-section--dark .lottery-section__subtitle {
      color: rgba(255, 249, 240, 0.75);
    }

    .lottery-section__title--center {
      text-align: center;
    }

    .lottery-section__subtitle--center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* ========== Header / Navigation ========== */
    .lottery-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--lottery-white);
      border-bottom: 1px solid var(--lottery-border);
      box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
    }

    .lottery-header__top-strip {
      height: 4px;
      background: var(--lottery-red);
    }

    .lottery-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 68px;
      gap: 20px;
    }

    .lottery-header__brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      color: var(--lottery-text);
    }

    .lottery-header__brand:hover,
    .lottery-header__brand:focus {
      color: var(--lottery-text);
    }

    .lottery-header__logo-icon {
      width: 42px;
      height: 42px;
      background: var(--lottery-red);
      border-radius: var(--lottery-radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      box-shadow: var(--lottery-shadow-sm);
    }

    .lottery-header__brand-text {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 1px;
      line-height: 1.2;
      display: flex;
      flex-direction: column;
    }

    .lottery-header__brand-text small {
      font-size: 12px;
      font-weight: 400;
      color: var(--lottery-text-secondary);
      letter-spacing: 2px;
    }

    .lottery-header__nav {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .lottery-header__nav-link {
      font-size: 15px;
      font-weight: 500;
      color: var(--lottery-text);
      padding: 8px 4px;
      position: relative;
      white-space: nowrap;
    }

    .lottery-header__nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--lottery-red);
      transition: var(--lottery-transition);
    }

    .lottery-header__nav-link:hover,
    .lottery-header__nav-link:focus {
      color: var(--lottery-red);
    }

    .lottery-header__nav-link:hover::after,
    .lottery-header__nav-link:focus::after {
      width: 100%;
    }

    .lottery-header__nav-link.is-active {
      color: var(--lottery-red);
      font-weight: 700;
    }

    .lottery-header__nav-link.is-active::after {
      width: 100%;
    }

    .lottery-header__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .lottery-header__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--lottery-red);
      color: #fff;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: var(--lottery-radius-pill);
      box-shadow: var(--lottery-shadow-sm);
      border: 1px solid var(--lottery-red);
      transition: var(--lottery-transition);
      font-size: 14px;
      white-space: nowrap;
    }

    .lottery-header__btn:hover,
    .lottery-header__btn:focus {
      background: var(--lottery-red-deep);
      border-color: var(--lottery-red-deep);
      color: #fff;
      box-shadow: 0 8px 18px rgba(216, 64, 47, 0.22);
    }

    .lottery-header__search {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--lottery-green);
      color: var(--lottery-green);
      background: transparent;
      border-radius: 50%;
      transition: var(--lottery-transition);
    }

    .lottery-header__search:hover,
    .lottery-header__search:focus {
      background: var(--lottery-green);
      color: #fff;
    }

    .lottery-header__hamburger {
      display: none;
      width: 42px;
      height: 42px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      background: transparent;
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-sm);
      cursor: pointer;
      transition: var(--lottery-transition);
    }

    .lottery-header__hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--lottery-green);
      border-radius: 2px;
      transition: var(--lottery-transition);
    }

    .lottery-header__hamburger:hover,
    .lottery-header__hamburger:focus {
      border-color: var(--lottery-red);
    }

    .lottery-header__hamburger:hover span,
    .lottery-header__hamburger:focus span {
      background: var(--lottery-red);
    }

    .lottery-offcanvas {
      position: fixed;
      top: 0;
      right: -320px;
      width: 300px;
      max-width: 85vw;
      height: 100vh;
      background: var(--lottery-white);
      z-index: 1200;
      box-shadow: -8px 0 24px rgba(28, 58, 50, 0.12);
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 24px 20px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .lottery-offcanvas.is-open {
      right: 0;
    }

    .lottery-offcanvas__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .lottery-offcanvas__title {
      font-size: 20px;
      font-weight: 700;
      color: var(--lottery-text);
    }

    .lottery-offcanvas__close {
      width: 40px;
      height: 40px;
      border: 1px solid var(--lottery-border);
      background: transparent;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lottery-text);
      transition: var(--lottery-transition);
      cursor: pointer;
    }

    .lottery-offcanvas__close:hover,
    .lottery-offcanvas__close:focus {
      border-color: var(--lottery-red);
      color: var(--lottery-red);
    }

    .lottery-offcanvas__nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .lottery-offcanvas__nav-link {
      display: block;
      padding: 12px 10px;
      font-size: 16px;
      color: var(--lottery-text);
      border-radius: var(--lottery-radius-sm);
      transition: var(--lottery-transition);
    }

    .lottery-offcanvas__nav-link.is-active {
      background: var(--lottery-red-soft);
      color: var(--lottery-red);
      font-weight: 700;
    }

    .lottery-offcanvas__nav-link:hover,
    .lottery-offcanvas__nav-link:focus {
      background: var(--lottery-red-soft);
      color: var(--lottery-red);
    }

    .lottery-offcanvas__mask {
      position: fixed;
      inset: 0;
      background: rgba(28, 58, 50, 0.45);
      z-index: 1100;
      opacity: 0;
      visibility: hidden;
      transition: var(--lottery-transition);
    }

    .lottery-offcanvas__mask.is-visible {
      opacity: 1;
      visibility: visible;
    }

    body.no-scroll {
      overflow: hidden;
    }

    /* ========== Buttons & Badges ========== */
    .lottery-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--lottery-red);
      color: #fff;
      font-weight: 700;
      padding: 12px 26px;
      border-radius: var(--lottery-radius-pill);
      border: 1px solid var(--lottery-red);
      transition: var(--lottery-transition);
      cursor: pointer;
      font-size: 15px;
      line-height: 1.4;
    }

    .lottery-btn:hover,
    .lottery-btn:focus {
      background: var(--lottery-red-deep);
      border-color: var(--lottery-red-deep);
      color: #fff;
      box-shadow: 0 10px 22px rgba(216, 64, 47, 0.22);
    }

    .lottery-btn--outline {
      background: transparent;
      color: var(--lottery-green);
      border-color: var(--lottery-green);
    }

    .lottery-btn--outline:hover,
    .lottery-btn--outline:focus {
      background: var(--lottery-red);
      border-color: var(--lottery-red);
      color: #fff;
      box-shadow: 0 10px 22px rgba(216, 64, 47, 0.15);
    }

    .lottery-btn--white {
      background: #fff;
      color: var(--lottery-green);
      border-color: #fff;
    }

    .lottery-btn--white:hover,
    .lottery-btn--white:focus {
      background: var(--lottery-gold);
      border-color: var(--lottery-gold);
      color: var(--lottery-green);
      box-shadow: 0 10px 22px rgba(229, 184, 75, 0.25);
    }

    .lottery-btn--text {
      background: transparent;
      color: var(--lottery-red);
      border: none;
      padding: 6px 0;
      font-weight: 600;
      box-shadow: none;
    }

    .lottery-btn--text:hover,
    .lottery-btn--text:focus {
      color: var(--lottery-green);
      box-shadow: none;
    }

    .lottery-badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: var(--lottery-radius-pill);
      background: var(--lottery-red-soft);
      color: var(--lottery-red);
      letter-spacing: 0.5px;
    }

    .lottery-badge--gold {
      background: var(--lottery-gold-soft);
      color: #9C7C2A;
    }

    .lottery-badge--green {
      background: rgba(28, 58, 50, 0.1);
      color: var(--lottery-green);
    }

    .lottery-badge--hot {
      background: var(--lottery-red);
      color: #fff;
    }

    .lottery-badge--new {
      background: var(--lottery-gold);
      color: var(--lottery-green);
    }

    /* ========== Cards ========== */
    .lottery-card {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      box-shadow: var(--lottery-shadow-sm);
      padding: 24px;
      transition: var(--lottery-transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .lottery-card:hover {
      box-shadow: var(--lottery-shadow-lg);
      transform: translateY(-4px);
    }

    .lottery-card__media {
      border-radius: var(--lottery-radius-md);
      overflow: hidden;
      margin-bottom: 16px;
    }

    .lottery-card__media img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .lottery-card:hover .lottery-card__media img {
      transform: scale(1.02);
    }

    .lottery-card__title {
      font-size: 20px;
      font-weight: 700;
      color: var(--lottery-text);
      margin-bottom: 8px;
    }

    .lottery-card__text {
      color: var(--lottery-text-secondary);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    .lottery-card__link {
      align-self: flex-start;
      font-weight: 700;
      color: var(--lottery-red);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .lottery-card__link:hover,
    .lottery-card__link:focus {
      color: var(--lottery-green);
    }

    /* ========== Breadcrumb ========== */
    .lottery-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--lottery-text-secondary);
      flex-wrap: wrap;
    }

    .lottery-breadcrumb a {
      color: var(--lottery-red);
    }

    .lottery-breadcrumb a:hover {
      color: var(--lottery-red-deep);
    }

    .lottery-breadcrumb .separator {
      color: var(--lottery-border);
    }

    /* ========== Hero Inner ========== */
    .lottery-hero-inner {
      background: linear-gradient(135deg, #fffdf8 0%, #f7f4ed 100%);
      border-bottom: 1px solid var(--lottery-border);
      overflow: hidden;
      position: relative;
    }

    .lottery-hero-inner__content {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      padding: 48px 0 64px;
      position: relative;
      z-index: 1;
    }

    .lottery-hero-inner__title {
      font-size: 38px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--lottery-text);
      margin-bottom: 16px;
    }

    .lottery-hero-inner__subtitle {
      font-size: 17px;
      color: var(--lottery-text-secondary);
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 560px;
    }

    .lottery-hero-inner__cta-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .lottery-countdown-bar {
      background: var(--lottery-green);
      color: var(--lottery-text-inverse);
      border-radius: var(--lottery-radius-md);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 20px;
      box-shadow: var(--lottery-shadow-md);
    }

    .lottery-countdown-bar__label {
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .lottery-countdown-bar__time {
      font-family: var(--lottery-font-number);
      font-size: 20px;
      font-weight: 700;
      color: var(--lottery-gold);
      background: rgba(255, 255, 255, 0.08);
      padding: 6px 14px;
      border-radius: var(--lottery-radius-sm);
      letter-spacing: 1px;
    }

    .lottery-featured-card {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      box-shadow: var(--lottery-shadow-lg);
      overflow: hidden;
      transition: var(--lottery-transition);
    }

    .lottery-featured-card:hover {
      box-shadow: 0 18px 36px rgba(28, 58, 50, 0.16);
      transform: translateY(-4px);
    }

    .lottery-featured-card__media {
      position: relative;
    }

    .lottery-featured-card__media img {
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    .lottery-featured-card__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--lottery-red);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: var(--lottery-radius-pill);
      letter-spacing: 0.5px;
    }

    .lottery-featured-card__body {
      padding: 20px;
    }

    .lottery-featured-card__title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--lottery-text);
    }

    .lottery-featured-card__text {
      color: var(--lottery-text-secondary);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .lottery-featured-card__meta {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--lottery-text-secondary);
      margin-bottom: 16px;
    }

    .lottery-featured-card__meta i {
      color: var(--lottery-gold);
    }

    /* ========== Metric Cards ========== */
    .lottery-metric-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .lottery-metric-card {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      padding: 24px;
      box-shadow: var(--lottery-shadow-sm);
      transition: var(--lottery-transition);
      text-align: center;
    }

    .lottery-metric-card:hover {
      box-shadow: var(--lottery-shadow-md);
      transform: translateY(-3px);
    }

    .lottery-metric-card__number {
      font-family: var(--lottery-font-number);
      font-size: 34px;
      font-weight: 700;
      color: var(--lottery-red);
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .lottery-metric-card__label {
      font-size: 15px;
      font-weight: 700;
      color: var(--lottery-text);
      margin-bottom: 4px;
    }

    .lottery-metric-card__desc {
      font-size: 13px;
      color: var(--lottery-text-secondary);
      line-height: 1.6;
    }

    .lottery-metric-card--gold .lottery-metric-card__number {
      color: #9C7C2A;
    }

    .lottery-metric-card--green .lottery-metric-card__number {
      color: var(--lottery-green);
    }

    /* ========== Chart Analysis Section ========== */
    .lottery-chart-analysis__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
    }

    .lottery-chart-analysis__image {
      border-radius: var(--lottery-radius-lg);
      overflow: hidden;
      box-shadow: var(--lottery-shadow-lg);
    }

    .lottery-chart-analysis__image img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
    }

    .lottery-summary-card {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      padding: 24px;
      box-shadow: var(--lottery-shadow-md);
      margin-bottom: 20px;
    }

    .lottery-summary-card__title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--lottery-text);
    }

    .lottery-summary-card__list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .lottery-summary-card__list li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px dashed var(--lottery-border);
      font-size: 14px;
      color: var(--lottery-text-secondary);
    }

    .lottery-summary-card__list li:last-child {
      border-bottom: none;
    }

    .lottery-summary-card__list strong {
      color: var(--lottery-text);
    }

    .lottery-analysis-text {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      padding: 28px;
      box-shadow: var(--lottery-shadow-sm);
      line-height: 1.9;
      color: var(--lottery-text);
    }

    .lottery-analysis-text p {
      margin-bottom: 16px;
    }

    .lottery-analysis-text p:last-child {
      margin-bottom: 0;
    }

    .lottery-analysis-text h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--lottery-text);
    }

    /* ========== Steps ========== */
    .lottery-steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .lottery-step-card {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      padding: 26px;
      box-shadow: var(--lottery-shadow-sm);
      transition: var(--lottery-transition);
      height: 100%;
      position: relative;
    }

    .lottery-step-card:hover {
      box-shadow: var(--lottery-shadow-md);
      transform: translateY(-3px);
    }

    .lottery-step-card__number {
      width: 40px;
      height: 40px;
      background: var(--lottery-red);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 16px;
      box-shadow: var(--lottery-shadow-sm);
    }

    .lottery-step-card__title {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--lottery-text);
    }

    .lottery-step-card__text {
      color: var(--lottery-text-secondary);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ========== Hot/Cold Numbers ========== */
    .lottery-hotcold-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .lottery-number-group {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      padding: 24px;
      box-shadow: var(--lottery-shadow-sm);
    }

    .lottery-number-group__title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--lottery-text);
    }

    .lottery-number-group__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .lottery-number-chip {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--lottery-font-number);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.5px;
      transition: var(--lottery-transition);
    }

    .lottery-number-chip--hot {
      background: var(--lottery-red);
      color: #fff;
      border: 1px solid var(--lottery-red);
    }

    .lottery-number-chip--hot:hover {
      background: var(--lottery-red-deep);
      transform: scale(1.05);
    }

    .lottery-number-chip--cold {
      background: var(--lottery-white);
      color: var(--lottery-green);
      border: 1px solid var(--lottery-green);
    }

    .lottery-number-chip--cold:hover {
      background: var(--lottery-green);
      color: #fff;
      transform: scale(1.05);
    }

    .lottery-number-group__note {
      font-size: 13px;
      color: var(--lottery-text-secondary);
      margin-top: 12px;
    }

    /* ========== Common Charts ========== */
    .lottery-charts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .lottery-chart-thumb {
      display: flex;
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      overflow: hidden;
      box-shadow: var(--lottery-shadow-sm);
      transition: var(--lottery-transition);
      min-height: 160px;
    }

    .lottery-chart-thumb:hover {
      box-shadow: var(--lottery-shadow-md);
      transform: translateY(-3px);
    }

    .lottery-chart-thumb__img {
      flex: 0 0 180px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .lottery-chart-thumb__body {
      flex: 1;
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
    }

    .lottery-chart-thumb__title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--lottery-text);
    }

    .lottery-chart-thumb__text {
      font-size: 14px;
      color: var(--lottery-text-secondary);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 10px;
    }

    .lottery-chart-thumb__link {
      align-self: flex-start;
      font-weight: 700;
      color: var(--lottery-red);
      font-size: 14px;
    }

    .lottery-chart-thumb__link:hover,
    .lottery-chart-thumb__link:focus {
      color: var(--lottery-green);
    }

    /* ========== Pagination ========== */
    .lottery-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .lottery-pagination a,
    .lottery-pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: var(--lottery-radius-sm);
      border: 1px solid var(--lottery-border);
      background: var(--lottery-white);
      color: var(--lottery-text);
      font-weight: 600;
      font-size: 14px;
      transition: var(--lottery-transition);
    }

    .lottery-pagination a:hover,
    .lottery-pagination a:focus {
      border-color: var(--lottery-red);
      color: var(--lottery-red);
      background: var(--lottery-red-soft);
    }

    .lottery-pagination .current {
      background: var(--lottery-red);
      border-color: var(--lottery-red);
      color: #fff;
    }

    .lottery-pagination .dots {
      border-color: transparent;
      background: transparent;
    }

    /* ========== Deep Article ========== */
    .lottery-deep-article {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-lg);
      padding: 36px;
      box-shadow: var(--lottery-shadow-sm);
      line-height: 1.9;
      color: var(--lottery-text);
    }

    .lottery-deep-article h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .lottery-deep-article p {
      margin-bottom: 16px;
    }

    .lottery-deep-article blockquote {
      border-left: 4px solid var(--lottery-gold);
      padding: 12px 20px;
      margin: 20px 0;
      background: var(--lottery-gold-soft);
      border-radius: 0 var(--lottery-radius-sm) var(--lottery-radius-sm) 0;
      color: var(--lottery-text);
      font-style: normal;
    }

    /* ========== FAQ ========== */
    .lottery-faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .lottery-faq-item {
      background: var(--lottery-white);
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-md);
      margin-bottom: 12px;
      box-shadow: var(--lottery-shadow-sm);
      overflow: hidden;
      transition: var(--lottery-transition);
    }

    .lottery-faq-item:hover {
      box-shadow: var(--lottery-shadow-md);
    }

    .lottery-faq-item__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      cursor: pointer;
      gap: 16px;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      font-weight: 700;
      font-size: 16px;
      color: var(--lottery-text);
      transition: var(--lottery-transition);
    }

    .lottery-faq-item__header:hover,
    .lottery-faq-item__header:focus {
      color: var(--lottery-red);
      outline: none;
    }

    .lottery-faq-item__header i {
      color: var(--lottery-red);
      transition: var(--lottery-transition);
      flex-shrink: 0;
    }

    .lottery-faq-item.is-open .lottery-faq-item__header i {
      transform: rotate(180deg);
    }

    .lottery-faq-item__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .lottery-faq-item.is-open .lottery-faq-item__body {
      max-height: 400px;
    }

    .lottery-faq-item__content {
      padding: 0 22px 20px;
      color: var(--lottery-text-secondary);
      font-size: 15px;
      line-height: 1.8;
      border-top: 1px dashed var(--lottery-border);
      padding-top: 16px;
    }

    /* ========== CTA / Form ========== */
    .lottery-cta__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .lottery-cta__title {
      font-size: 32px;
      font-weight: 700;
      color: var(--lottery-text-inverse);
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .lottery-cta__text {
      color: rgba(255, 249, 240, 0.8);
      font-size: 16px;
      line-height: 1.8;
    }

    .lottery-form {
      background: var(--lottery-white);
      border-radius: var(--lottery-radius-lg);
      padding: 28px;
      box-shadow: var(--lottery-shadow-lg);
    }

    .lottery-form__label {
      font-size: 14px;
      font-weight: 700;
      color: var(--lottery-text);
      display: block;
      margin-bottom: 8px;
    }

    .lottery-form__input {
      width: 100%;
      height: 48px;
      border: 1px solid var(--lottery-border);
      border-radius: var(--lottery-radius-sm);
      padding: 0 16px;
      font-size: 15px;
      color: var(--lottery-text);
      background: #fff;
      transition: var(--lottery-transition);
      margin-bottom: 16px;
    }

    .lottery-form__input:focus {
      outline: none;
      border-color: var(--lottery-red);
      box-shadow: 0 0 0 3px rgba(216, 64, 47, 0.15);
    }

    .lottery-form__input::placeholder {
      color: #A6A6A6;
    }

    .lottery-form__hint {
      font-size: 13px;
      color: var(--lottery-text-secondary);
      margin-top: 12px;
      text-align: center;
    }

    /* ========== Footer ========== */
    .lottery-footer {
      background: var(--lottery-green);
      color: var(--lottery-text-inverse);
      padding: 48px 0 28px;
      font-size: 14px;
      line-height: 1.7;
    }

    .lottery-footer__grid {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
      gap: 36px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 249, 240, 0.12);
      margin-bottom: 28px;
    }

    .lottery-footer__brand {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .lottery-footer__brand-desc {
      color: rgba(255, 249, 240, 0.65);
      font-size: 14px;
      line-height: 1.8;
    }

    .lottery-footer__title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--lottery-gold);
    }

    .lottery-footer__link-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .lottery-footer__link-list li {
      margin-bottom: 8px;
    }

    .lottery-footer__link-list a {
      color: rgba(255, 249, 240, 0.75);
      transition: var(--lottery-transition);
    }

    .lottery-footer__link-list a:hover,
    .lottery-footer__link-list a:focus {
      color: var(--lottery-gold);
    }

    .lottery-footer__subscribe-input {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .lottery-footer__subscribe-input input {
      flex: 1;
      height: 44px;
      border: 1px solid rgba(255, 249, 240, 0.25);
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--lottery-radius-sm);
      padding: 0 14px;
      color: var(--lottery-text-inverse);
      font-size: 14px;
      transition: var(--lottery-transition);
    }

    .lottery-footer__subscribe-input input::placeholder {
      color: rgba(255, 249, 240, 0.5);
    }

    .lottery-footer__subscribe-input input:focus {
      outline: none;
      border-color: var(--lottery-gold);
      box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.2);
    }

    .lottery-footer__subscribe-btn {
      height: 44px;
      padding: 0 18px;
      background: var(--lottery-gold);
      color: var(--lottery-green);
      border: none;
      border-radius: var(--lottery-radius-sm);
      font-weight: 700;
      cursor: pointer;
      transition: var(--lottery-transition);
    }

    .lottery-footer__subscribe-btn:hover,
    .lottery-footer__subscribe-btn:focus {
      background: #F0C86A;
    }

    .lottery-footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
      color: rgba(255, 249, 240, 0.6);
    }

    .lottery-footer__bottom-links a {
      color: rgba(255, 249, 240, 0.75);
      transition: var(--lottery-transition);
    }

    .lottery-footer__bottom-links a:hover,
    .lottery-footer__bottom-links a:focus {
      color: var(--lottery-gold);
    }

    /* ========== Foundation Override ========== */
    button,
    .button {
      background: var(--lottery-red);
      color: #fff;
    }

    button:hover,
    .button:hover {
      background: var(--lottery-red-deep);
      color: #fff;
    }

    .pagination .current {
      background: var(--lottery-red);
    }

    .pagination a {
      color: var(--lottery-red);
    }

    input[type="email"],
    input[type="text"],
    select,
    textarea {
      border-color: var(--lottery-border);
      box-shadow: none;
    }

    input[type="email"]:focus,
    input[type="text"]:focus,
    select:focus,
    textarea:focus {
      border-color: var(--lottery-red);
      box-shadow: 0 0 0 3px rgba(216, 64, 47, 0.15);
    }

    /* ========== Responsive ========== */
    @media screen and (max-width: 1024px) {
      .lottery-header__nav {
        gap: 10px;
      }

      .lottery-header__nav-link {
        font-size: 14px;
      }

      .lottery-metric-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .lottery-chart-analysis__grid {
        grid-template-columns: 1fr;
      }

      .lottery-steps-grid {
        grid-template-columns: 1fr;
      }

      .lottery-cta__inner {
        grid-template-columns: 1fr;
      }

      .lottery-footer__grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media screen and (max-width: 768px) {
      :root {
        --lottery-section-gap: var(--lottery-section-gap-mobile);
        --lottery-gutter: 16px;
      }

      .lottery-header__nav {
        display: none;
      }

      .lottery-header__hamburger {
        display: inline-flex;
      }

      .lottery-header__btn {
        padding: 8px 14px;
        font-size: 13px;
      }

      .lottery-header__search {
        display: none;
      }

      .lottery-hero-inner__content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 48px;
      }

      .lottery-hero-inner__title {
        font-size: 30px;
      }

      .lottery-hotcold-grid {
        grid-template-columns: 1fr;
      }

      .lottery-charts-grid {
        grid-template-columns: 1fr;
      }

      .lottery-chart-thumb {
        flex-direction: column;
      }

      .lottery-chart-thumb__img {
        flex: none;
        height: 160px;
      }

      .lottery-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .lottery-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }

    @media screen and (max-width: 520px) {
      .lottery-hero-inner__title {
        font-size: 26px;
      }

      .lottery-hero-inner__cta-group {
        flex-direction: column;
      }

      .lottery-btn {
        width: 100%;
        justify-content: center;
      }

      .lottery-metric-grid {
        grid-template-columns: 1fr;
      }

      .lottery-countdown-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      .lottery-featured-card__body {
        padding: 16px;
      }

      .lottery-section__title {
        font-size: 24px;
      }

      .lottery-deep-article {
        padding: 24px 18px;
      }

      .lottery-form {
        padding: 20px;
      }
    }

/* roulang page: category6 */
:root {
            --lottery-red: #D8402F;
            --lottery-red-deep: #B53025;
            --lottery-red-soft: rgba(216, 64, 47, 0.08);
            --lottery-gold: #E5B84B;
            --lottery-gold-soft: rgba(229, 184, 75, 0.15);
            --lottery-green: #1C3A32;
            --lottery-green-light: #2C5046;
            --lottery-bg: #F7F4ED;
            --lottery-white: #FFFFFF;
            --lottery-border: #E9E2D2;
            --lottery-text: #252525;
            --lottery-text-secondary: #6B6B6B;
            --lottery-text-inverse: #FFF9F0;
            --lottery-radius-sm: 8px;
            --lottery-radius-md: 12px;
            --lottery-radius-lg: 14px;
            --lottery-radius-xl: 20px;
            --lottery-radius-pill: 999px;
            --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
            --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
            --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
            --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
            --lottery-container: 1200px;
            --lottery-gutter: 24px;
            --lottery-section-gap: 64px;
            --lottery-section-gap-mobile: 48px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--lottery-font);
            font-size: 16px;
            line-height: 1.8;
            color: var(--lottery-text);
            background-color: var(--lottery-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--lottery-red);
            text-decoration: none;
            transition: var(--lottery-transition);
        }

        a:hover,
        a:focus {
            color: var(--lottery-red-deep);
            outline: none;
        }

        a:focus-visible {
            outline: 3px solid rgba(216, 64, 47, 0.35);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .lottery-container {
            max-width: var(--lottery-container);
            margin: 0 auto;
            padding: 0 var(--lottery-gutter);
        }

        .lottery-section {
            padding: var(--lottery-section-gap) 0;
            position: relative;
        }

        .lottery-section--alt {
            background-color: var(--lottery-white);
            border-top: 1px solid var(--lottery-border);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-section--dark {
            background-color: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-section--gold-soft {
            background-color: var(--lottery-gold-soft);
        }

        .lottery-section--red-soft {
            background-color: var(--lottery-red-soft);
        }

        .lottery-section__header {
            margin-bottom: 36px;
        }

        .lottery-section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 12px;
        }

        .lottery-section__title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-section__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            max-width: 720px;
            line-height: 1.7;
        }

        .lottery-section--dark .lottery-section__title,
        .lottery-section--dark .lottery-section__subtitle {
            color: var(--lottery-text-inverse);
        }

        .lottery-section--dark .lottery-section__subtitle {
            color: rgba(255, 249, 240, 0.75);
        }

        /* Header / Navigation */
        .lottery-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
        }

        .lottery-header__top-strip {
            height: 4px;
            background: var(--lottery-red);
        }

        .lottery-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
            gap: 20px;
        }

        .lottery-header__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__logo-icon {
            width: 40px;
            height: 40px;
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .lottery-header__logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            letter-spacing: 0.5px;
        }

        .lottery-header__logo-sub {
            font-size: 12px;
            color: var(--lottery-text-secondary);
            display: block;
            line-height: 1.2;
            margin-top: 2px;
        }

        .lottery-header__nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .lottery-header__nav-link {
            display: inline-block;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-pill);
            white-space: nowrap;
            transition: var(--lottery-transition);
        }

        .lottery-header__nav-link:hover {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-header__nav-link.is-active {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            font-weight: 700;
            position: relative;
        }

        .lottery-header__nav-link.is-active::after {
            content: '';
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 2px;
            background: var(--lottery-red);
            border-radius: 1px;
        }

        .lottery-header__actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__search-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--lottery-green);
            background: transparent;
            color: var(--lottery-green);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--lottery-transition);
            font-size: 14px;
        }

        .lottery-header__search-btn:hover {
            background: var(--lottery-green);
            color: #fff;
            border-color: var(--lottery-green);
        }

        .lottery-header__hamburger {
            width: 40px;
            height: 40px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-text);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: var(--lottery-transition);
        }

        .lottery-header__hamburger:hover {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--lottery-radius-pill);
            border: none;
            cursor: pointer;
            transition: var(--lottery-transition);
            text-align: center;
            line-height: 1.4;
        }

        .lottery-btn--primary {
            background: var(--lottery-red);
            color: #fff;
        }

        .lottery-btn--primary:hover,
        .lottery-btn--primary:focus {
            background: var(--lottery-red-deep);
            color: #fff;
            box-shadow: 0 6px 16px rgba(216, 64, 47, 0.3);
        }

        .lottery-btn--outline {
            background: transparent;
            border: 1.5px solid var(--lottery-green);
            color: var(--lottery-green);
        }

        .lottery-btn--outline:hover,
        .lottery-btn--outline:focus {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-btn--sm {
            padding: 8px 16px;
            font-size: 13px;
        }

        /* Breadcrumb */
        .lottery-breadcrumb {
            padding: 18px 0 0;
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px;
        }

        .lottery-breadcrumb__item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .lottery-breadcrumb__item a {
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__item a:hover {
            color: var(--lottery-red);
        }

        .lottery-breadcrumb__item--current {
            color: var(--lottery-text);
            font-weight: 600;
        }

        .lottery-breadcrumb__sep {
            color: var(--lottery-border);
            font-size: 11px;
        }

        /* Hero for Story Community */
        .lottery-story-hero {
            position: relative;
            padding: 0;
            min-height: 560px;
            display: flex;
            align-items: center;
            background: var(--lottery-green);
            overflow: hidden;
        }

        .lottery-story-hero__bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 1;
        }

        .lottery-story-hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(28, 58, 50, 0.88) 0%, rgba(28, 58, 50, 0.62) 50%, rgba(216, 64, 47, 0.38) 100%);
        }

        .lottery-story-hero__content {
            position: relative;
            z-index: 2;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 40px;
            align-items: center;
            padding: 60px 0;
        }

        .lottery-story-hero__text h1 {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin: 0 0 16px;
        }

        .lottery-story-hero__text h1 span {
            color: var(--lottery-gold);
        }

        .lottery-story-hero__text p {
            font-size: 17px;
            color: rgba(255, 249, 240, 0.85);
            max-width: 520px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .lottery-story-hero__actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .lottery-story-hero__panel {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-xl);
            padding: 28px;
            box-shadow: var(--lottery-shadow-lg);
        }

        .lottery-story-hero__panel-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lottery-story-hero__panel-title i {
            color: var(--lottery-gold);
        }

        .lottery-story-hero__number-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .lottery-story-hero__number-list li {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: var(--lottery-gold);
            font-family: var(--lottery-font-number);
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(229, 184, 75, 0.4);
        }

        .lottery-story-hero__panel-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid var(--lottery-border);
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-story-hero__panel-meta strong {
            color: var(--lottery-red);
            font-weight: 700;
        }

        /* Story cards masonry-like layout */
        .lottery-story-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }

        .lottery-story-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            overflow: hidden;
            box-shadow: var(--lottery-shadow-sm);
            border: 1px solid var(--lottery-border);
            transition: var(--lottery-transition);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .lottery-story-card:hover {
            box-shadow: var(--lottery-shadow-lg);
            transform: translateY(-4px);
            border-color: rgba(216, 64, 47, 0.2);
        }

        .lottery-story-card--wide {
            grid-column: span 12;
            flex-direction: row;
        }

        .lottery-story-card--wide .lottery-story-card__image {
            width: 45%;
            min-height: 320px;
            flex-shrink: 0;
        }

        .lottery-story-card--wide .lottery-story-card__body {
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lottery-story-card--half {
            grid-column: span 6;
        }

        .lottery-story-card--third {
            grid-column: span 4;
        }

        .lottery-story-card--quarter {
            grid-column: span 3;
        }

        .lottery-story-card__image {
            position: relative;
            overflow: hidden;
            min-height: 200px;
        }

        .lottery-story-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .lottery-story-card:hover .lottery-story-card__image img {
            transform: scale(1.04);
        }

        .lottery-story-card__badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--lottery-red);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--lottery-radius-pill);
            letter-spacing: 1px;
        }

        .lottery-story-card__body {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .lottery-story-card__title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.5;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-story-card__title a {
            color: inherit;
        }

        .lottery-story-card__title a:hover {
            color: var(--lottery-red);
        }

        .lottery-story-card__excerpt {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
            flex: 1;
        }

        .lottery-story-card__meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--lottery-text-secondary);
            padding-top: 12px;
            border-top: 1px solid var(--lottery-border);
        }

        .lottery-story-card__meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .lottery-story-card__meta-item i {
            color: var(--lottery-gold);
            font-size: 12px;
        }

        .lottery-story-card__amount {
            font-family: var(--lottery-font-number);
            font-weight: 700;
            color: var(--lottery-red);
            font-size: 20px;
        }

        /* Quote / testimonial section */
        .lottery-quote-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .lottery-quote-card {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 28px;
            border-left: 4px solid var(--lottery-gold);
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-quote-card:hover {
            box-shadow: var(--lottery-shadow-md);
            transform: translateY(-2px);
        }

        .lottery-quote-card__text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--lottery-text);
            margin-bottom: 16px;
            font-style: italic;
        }

        .lottery-quote-card__text::before {
            content: '"';
            font-size: 30px;
            font-weight: 700;
            color: var(--lottery-gold);
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .lottery-quote-card__author {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--lottery-text-secondary);
        }

        .lottery-quote-card__author-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Stats section */
        .lottery-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .lottery-stat-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--lottery-radius-lg);
            padding: 28px 20px;
            text-align: center;
            transition: var(--lottery-transition);
        }

        .lottery-stat-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .lottery-stat-card__number {
            font-size: 32px;
            font-weight: 700;
            font-family: var(--lottery-font-number);
            color: var(--lottery-gold);
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .lottery-stat-card__label {
            font-size: 14px;
            color: rgba(255, 249, 240, 0.7);
        }

        /* Comment section appearance */
        .lottery-comment-thread {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .lottery-comment {
            display: flex;
            gap: 14px;
            padding: 18px;
            background: var(--lottery-bg);
            border-radius: var(--lottery-radius-md);
            transition: var(--lottery-transition);
        }

        .lottery-comment:hover {
            background: var(--lottery-white);
            box-shadow: var(--lottery-shadow-sm);
        }

        .lottery-comment__avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .lottery-comment__avatar--red {
            background: var(--lottery-red);
        }

        .lottery-comment__avatar--gold {
            background: var(--lottery-gold);
            color: var(--lottery-green);
        }

        .lottery-comment__body {
            flex: 1;
        }

        .lottery-comment__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
        }

        .lottery-comment__name {
            font-size: 14px;
            font-weight: 700;
            color: var(--lottery-text);
        }

        .lottery-comment__time {
            font-size: 12px;
            color: var(--lottery-text-secondary);
        }

        .lottery-comment__content {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
        }

        .lottery-comment__actions {
            display: flex;
            gap: 12px;
            margin-top: 6px;
            font-size: 12px;
            color: var(--lottery-text-secondary);
        }

        .lottery-comment__actions button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--lottery-text-secondary);
            font-size: 12px;
            padding: 0;
            transition: var(--lottery-transition);
        }

        .lottery-comment__actions button:hover {
            color: var(--lottery-red);
        }

        /* Pagination */
        .lottery-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 20px 0;
        }

        .lottery-pagination a,
        .lottery-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 12px;
            border-radius: var(--lottery-radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--lottery-text);
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            transition: var(--lottery-transition);
        }

        .lottery-pagination a:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-pagination .is-current {
            background: var(--lottery-red);
            color: #fff;
            border-color: var(--lottery-red);
            font-weight: 700;
        }

        /* FAQ */
        .lottery-faq {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }

        .lottery-faq__item {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-md);
            border: 1px solid var(--lottery-border);
            overflow: hidden;
            transition: var(--lottery-transition);
            box-shadow: var(--lottery-shadow-sm);
        }

        .lottery-faq__item:hover {
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-faq__question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            color: var(--lottery-text);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            gap: 12px;
        }

        .lottery-faq__question i {
            color: var(--lottery-red);
            transition: var(--lottery-transition);
            font-size: 14px;
            flex-shrink: 0;
        }

        .lottery-faq__item.is-open .lottery-faq__question i {
            transform: rotate(180deg);
        }

        .lottery-faq__answer {
            padding: 0 20px 18px;
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.8;
        }

        /* CTA section */
        .lottery-cta {
            background: var(--lottery-green);
            border-radius: var(--lottery-radius-xl);
            padding: 48px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .lottery-cta::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(229, 184, 75, 0.15);
        }

        .lottery-cta::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 20%;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(216, 64, 47, 0.2);
        }

        .lottery-cta__content {
            position: relative;
            z-index: 1;
            flex: 1;
            min-width: 260px;
        }

        .lottery-cta__title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .lottery-cta__text {
            font-size: 15px;
            color: rgba(255, 249, 240, 0.8);
            line-height: 1.7;
        }

        .lottery-cta__actions {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .lottery-cta__actions .lottery-btn--primary {
            background: var(--lottery-gold);
            color: var(--lottery-green);
        }

        .lottery-cta__actions .lottery-btn--primary:hover {
            background: #d4a836;
            color: var(--lottery-green);
        }

        .lottery-cta__actions .lottery-btn--outline {
            border-color: rgba(255, 249, 240, 0.5);
            color: #fff;
        }

        .lottery-cta__actions .lottery-btn--outline:hover {
            border-color: var(--lottery-gold);
            color: var(--lottery-gold);
            background: rgba(229, 184, 75, 0.1);
        }

        /* Form */
        .lottery-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .lottery-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border: 1.5px solid var(--lottery-border);
            border-radius: var(--lottery-radius-pill);
            font-size: 14px;
            color: var(--lottery-text);
            background: var(--lottery-white);
            transition: var(--lottery-transition);
        }

        .lottery-form input::placeholder {
            color: #9a9a9a;
        }

        .lottery-form input:focus {
            outline: none;
            border-color: var(--lottery-red);
            box-shadow: 0 0 0 4px rgba(216, 64, 47, 0.12);
        }

        .lottery-form--dark input {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        .lottery-form--dark input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .lottery-form--dark input:focus {
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 4px rgba(229, 184, 75, 0.15);
        }

        /* Footer */
        .lottery-footer {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            padding: 48px 0 24px;
            position: relative;
        }

        .lottery-footer__grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .lottery-footer__brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .lottery-footer__brand-desc {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.65);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .lottery-footer__title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .lottery-footer__link-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .lottery-footer__link-list li {
            margin-bottom: 8px;
        }

        .lottery-footer__link-list a {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.7);
            transition: var(--lottery-transition);
        }

        .lottery-footer__link-list a:hover {
            color: var(--lottery-gold);
        }

        .lottery-footer__subscribe-input {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .lottery-footer__subscribe-input input {
            flex: 1;
            min-width: 150px;
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--lottery-radius-pill);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 13px;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-input input::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .lottery-footer__subscribe-input input:focus {
            outline: none;
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 4px rgba(229, 184, 75, 0.15);
        }

        .lottery-footer__subscribe-btn {
            padding: 10px 18px;
            background: var(--lottery-red);
            color: #fff;
            border: none;
            border-radius: var(--lottery-radius-pill);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-footer__subscribe-btn:hover {
            background: var(--lottery-red-deep);
        }

        .lottery-footer__bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .lottery-footer__bottom-links {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .lottery-footer__bottom-links a {
            font-size: 12px;
            color: rgba(255, 249, 240, 0.6);
        }

        .lottery-footer__bottom-links a:hover {
            color: var(--lottery-gold);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --lottery-section-gap: 48px;
                --lottery-gutter: 20px;
            }

            .lottery-header__nav {
                display: none;
            }

            .lottery-header__hamburger {
                display: flex;
            }

            .lottery-story-hero__content {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 40px 0;
            }

            .lottery-story-hero__text h1 {
                font-size: 32px;
            }

            .lottery-story-card--wide {
                flex-direction: column;
            }

            .lottery-story-card--wide .lottery-story-card__image {
                width: 100%;
                min-height: 240px;
            }

            .lottery-quote-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lottery-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .lottery-footer__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --lottery-section-gap: 40px;
                --lottery-gutter: 16px;
            }

            .lottery-section__title {
                font-size: 24px;
            }

            .lottery-story-hero {
                min-height: auto;
            }

            .lottery-story-hero__text h1 {
                font-size: 26px;
            }

            .lottery-story-hero__panel {
                padding: 20px;
            }

            .lottery-story-card--half,
            .lottery-story-card--third,
            .lottery-story-card--quarter {
                grid-column: span 12;
            }

            .lottery-story-card--wide .lottery-story-card__image {
                min-height: 180px;
            }

            .lottery-quote-grid {
                grid-template-columns: 1fr;
            }

            .lottery-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .lottery-stat-card__number {
                font-size: 24px;
            }

            .lottery-footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .lottery-footer__bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .lottery-cta {
                padding: 32px 24px;
                flex-direction: column;
                align-items: flex-start;
            }

            .lottery-header__actions .lottery-btn {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 520px) {
            .lottery-story-hero__text h1 {
                font-size: 22px;
            }

            .lottery-section__title {
                font-size: 20px;
            }

            .lottery-stats-grid {
                grid-template-columns: 1fr;
            }

            .lottery-header__logo-text {
                font-size: 17px;
            }

            .lottery-header__logo-sub {
                display: none;
            }

            .lottery-header__logo-icon {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }
        }

/* roulang page: category5 */
:root {
            --lottery-red: #D8402F;
            --lottery-red-deep: #B53025;
            --lottery-red-soft: rgba(216, 64, 47, 0.08);
            --lottery-gold: #E5B84B;
            --lottery-gold-soft: rgba(229, 184, 75, 0.15);
            --lottery-green: #1C3A32;
            --lottery-green-light: #2C5046;
            --lottery-bg: #F7F4ED;
            --lottery-white: #FFFFFF;
            --lottery-border: #E9E2D2;
            --lottery-text: #252525;
            --lottery-text-secondary: #6B6B6B;
            --lottery-text-inverse: #FFF9F0;
            --lottery-radius-sm: 8px;
            --lottery-radius-md: 12px;
            --lottery-radius-lg: 14px;
            --lottery-radius-xl: 20px;
            --lottery-radius-pill: 999px;
            --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
            --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
            --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
            --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
            --lottery-container: 1200px;
            --lottery-gutter: 24px;
            --lottery-section-gap: 64px;
            --lottery-section-gap-mobile: 48px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--lottery-font);
            font-size: 16px;
            line-height: 1.8;
            color: var(--lottery-text);
            background-color: var(--lottery-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--lottery-red);
            text-decoration: none;
            transition: var(--lottery-transition);
        }

        a:hover,
        a:focus {
            color: var(--lottery-red-deep);
            outline: none;
        }

        a:focus-visible {
            outline: 3px solid rgba(216, 64, 47, 0.35);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        ul,
        ol {
            margin-top: 0;
        }

        .lottery-container {
            max-width: var(--lottery-container);
            margin: 0 auto;
            padding: 0 var(--lottery-gutter);
        }

        .lottery-section {
            padding: var(--lottery-section-gap) 0;
            position: relative;
        }

        .lottery-section--alt {
            background-color: var(--lottery-white);
            border-top: 1px solid var(--lottery-border);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-section--dark {
            background-color: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-section--gold-soft {
            background-color: var(--lottery-gold-soft);
        }

        .lottery-section__header {
            margin-bottom: 36px;
        }

        .lottery-section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 12px;
        }

        .lottery-section__title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-section__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            max-width: 720px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .lottery-section--dark .lottery-section__title,
        .lottery-section--dark .lottery-section__subtitle {
            color: var(--lottery-text-inverse);
        }

        .lottery-section--dark .lottery-section__subtitle {
            color: rgba(255, 249, 240, 0.75);
        }

        /* ========== Header / Navigation ========== */
        .lottery-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
        }

        .lottery-header__top-strip {
            height: 4px;
            background: var(--lottery-red);
        }

        .lottery-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
            gap: 16px;
        }

        .lottery-header__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__logo-icon {
            width: 40px;
            height: 40px;
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -1px;
            flex-shrink: 0;
        }

        .lottery-header__brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .lottery-header__brand-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            letter-spacing: 0.5px;
        }

        .lottery-header__brand-sub {
            font-size: 12px;
            color: var(--lottery-text-secondary);
            letter-spacing: 1px;
        }

        .lottery-header__nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            margin: 0 auto;
        }

        .lottery-header__nav::-webkit-scrollbar {
            display: none;
        }

        .lottery-header__nav-link {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--lottery-text-secondary);
            border-radius: var(--lottery-radius-sm);
            white-space: nowrap;
            transition: var(--lottery-transition);
            position: relative;
        }

        .lottery-header__nav-link:hover {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-header__nav-link.is-active {
            color: var(--lottery-red);
            font-weight: 700;
            background: var(--lottery-red-soft);
        }

        .lottery-header__actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .lottery-header__search-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-green);
            background: transparent;
            color: var(--lottery-green);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--lottery-transition);
            font-size: 14px;
        }

        .lottery-header__search-btn:hover {
            background: var(--lottery-green);
            color: #fff;
        }

        .lottery-header__cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            background: var(--lottery-red);
            color: #fff;
            border-radius: var(--lottery-radius-pill);
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-header__cta:hover {
            background: var(--lottery-red-deep);
            color: #fff;
            box-shadow: 0 6px 16px rgba(216, 64, 47, 0.3);
        }

        .lottery-hamburger {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-border);
            background: transparent;
            color: var(--lottery-text);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: var(--lottery-transition);
            flex-shrink: 0;
        }

        .lottery-hamburger:hover {
            background: var(--lottery-green);
            color: #fff;
            border-color: var(--lottery-green);
        }

        .lottery-offcanvas {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            max-width: 85vw;
            height: 100vh;
            background: var(--lottery-white);
            z-index: 2000;
            box-shadow: 4px 0 32px rgba(28, 58, 50, 0.18);
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 20px 16px;
        }

        .lottery-offcanvas.is-open {
            transform: translateX(0);
        }

        .lottery-offcanvas__overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(28, 58, 50, 0.45);
            z-index: 1900;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lottery-offcanvas__overlay.is-visible {
            opacity: 1;
        }

        .lottery-offcanvas__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-offcanvas__brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
        }

        .lottery-offcanvas__close {
            margin-left: auto;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .lottery-offcanvas__nav {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .lottery-offcanvas__nav-link {
            padding: 12px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .lottery-offcanvas__nav-link:hover {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-offcanvas__nav-link.is-active {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            font-weight: 700;
        }

        .lottery-offcanvas__cta {
            margin-top: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 14px 20px;
            background: var(--lottery-red);
            color: #fff;
            border-radius: var(--lottery-radius-pill);
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            width: 100%;
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__cta:hover {
            background: var(--lottery-red-deep);
        }

        /* ========== Breadcrumb ========== */
        .lottery-breadcrumb {
            padding: 16px 0;
            background: var(--lottery-bg);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-breadcrumb__list {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .lottery-breadcrumb__item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__item a {
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__item a:hover {
            color: var(--lottery-red);
        }

        .lottery-breadcrumb__item--current {
            color: var(--lottery-text);
            font-weight: 600;
        }

        .lottery-breadcrumb__separator {
            color: var(--lottery-border);
            font-size: 12px;
        }

        /* ========== Hero ========== */
        .lottery-hero {
            position: relative;
            min-height: 320px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .lottery-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(28, 58, 50, 0.42);
            z-index: 1;
        }

        .lottery-hero__content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            width: 100%;
        }

        .lottery-hero__title {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }

        .lottery-hero__title .lottery-hero__highlight {
            color: var(--lottery-gold);
        }

        .lottery-hero__subtitle {
            font-size: 16px;
            color: rgba(255, 249, 240, 0.85);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== Buttons ========== */
        .lottery-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: var(--lottery-radius-pill);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--lottery-transition);
            border: none;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .lottery-btn--primary {
            background: var(--lottery-red);
            color: #fff;
        }

        .lottery-btn--primary:hover {
            background: var(--lottery-red-deep);
            color: #fff;
            box-shadow: 0 8px 20px rgba(216, 64, 47, 0.3);
            transform: translateY(-1px);
        }

        .lottery-btn--outline {
            background: transparent;
            color: var(--lottery-green);
            border: 2px solid var(--lottery-green);
        }

        .lottery-btn--outline:hover {
            background: var(--lottery-green);
            color: #fff;
            border-color: var(--lottery-green);
        }

        .lottery-btn--ghost {
            background: transparent;
            color: var(--lottery-red);
            border: 1px solid var(--lottery-red);
        }

        .lottery-btn--ghost:hover {
            background: var(--lottery-red-soft);
            border-color: var(--lottery-red);
            color: var(--lottery-red-deep);
        }

        .lottery-btn--light {
            background: #fff;
            color: var(--lottery-green);
        }

        .lottery-btn--light:hover {
            background: var(--lottery-gold);
            color: var(--lottery-green);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* ========== Cards ========== */
        .lottery-card {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-lg);
            padding: 24px;
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-card:hover {
            box-shadow: var(--lottery-shadow-lg);
            border-color: rgba(216, 64, 47, 0.2);
            transform: translateY(-2px);
        }

        /* ========== Play Type Cards ========== */
        .lottery-play-card {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-lg);
            padding: 28px;
            box-shadow: var(--lottery-shadow-md);
            transition: var(--lottery-transition);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .lottery-play-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--lottery-red);
            border-radius: 0 4px 4px 0;
        }

        .lottery-play-card:hover {
            box-shadow: var(--lottery-shadow-lg);
            transform: translateY(-3px);
        }

        .lottery-play-card__tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            background: var(--lottery-red);
            padding: 4px 12px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 14px;
            letter-spacing: 1px;
        }

        .lottery-play-card__title {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 10px;
        }

        .lottery-play-card__desc {
            font-size: 14px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .lottery-play-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .lottery-play-card__badge {
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--lottery-radius-sm);
            background: var(--lottery-gold-soft);
            color: #8B6914;
            letter-spacing: 0.5px;
        }

        /* ========== Step Cards ========== */
        .lottery-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 32px;
        }

        .lottery-step {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            padding: 24px 20px;
            border: 1px solid var(--lottery-border);
            transition: var(--lottery-transition);
            position: relative;
        }

        .lottery-step:hover {
            border-color: var(--lottery-red);
            box-shadow: var(--lottery-shadow-lg);
            transform: translateY(-2px);
        }

        .lottery-step__number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: var(--lottery-red);
            color: #fff;
            border-radius: 50%;
            font-size: 18px;
            font-weight: 700;
            font-family: var(--lottery-font-number);
            margin-bottom: 14px;
            flex-shrink: 0;
        }

        .lottery-step__title {
            font-size: 16px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 8px;
        }

        .lottery-step__desc {
            font-size: 13px;
            color: var(--lottery-text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .lottery-step__icon {
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 20px;
            color: var(--lottery-gold);
            opacity: 0.6;
        }

        /* ========== Number Badges ========== */
        .lottery-number-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--lottery-green);
            color: var(--lottery-gold);
            font-family: var(--lottery-font-number);
            font-weight: 700;
            font-size: 16px;
            margin: 0 3px;
            letter-spacing: 0;
            flex-shrink: 0;
        }

        /* ========== FAQ ========== */
        .lottery-faq {
            background: var(--lottery-white);
            border-radius: var(--lottery-radius-lg);
            border: 1px solid var(--lottery-border);
            box-shadow: var(--lottery-shadow-sm);
            overflow: hidden;
        }

        .lottery-faq__item {
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-faq__item:last-child {
            border-bottom: none;
        }

        .lottery-faq__question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            cursor: pointer;
            transition: var(--lottery-transition);
            gap: 12px;
            font-weight: 600;
            font-size: 16px;
            color: var(--lottery-text);
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            line-height: 1.5;
        }

        .lottery-faq__question:hover {
            background: var(--lottery-bg);
        }

        .lottery-faq__question-icon {
            font-size: 14px;
            color: var(--lottery-red);
            transition: transform 0.28s ease;
            flex-shrink: 0;
        }

        .lottery-faq__item.is-open .lottery-faq__question-icon {
            transform: rotate(180deg);
        }

        .lottery-faq__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.8;
        }

        .lottery-faq__item.is-open .lottery-faq__answer {
            max-height: 600px;
            padding: 0 24px 20px;
        }

        /* ========== Pagination ========== */
        .lottery-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
            margin: 40px 0 20px;
        }

        .lottery-pagination__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 10px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-text);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-pagination__btn:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
        }

        .lottery-pagination__btn--active {
            background: var(--lottery-red);
            border-color: var(--lottery-red);
            color: #fff;
            font-weight: 700;
        }

        .lottery-pagination__btn--active:hover {
            background: var(--lottery-red-deep);
            border-color: var(--lottery-red-deep);
            color: #fff;
        }

        .lottery-pagination__btn--disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* ========== CTA ========== */
        .lottery-cta {
            background: var(--lottery-green);
            border-radius: var(--lottery-radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lottery-cta::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(229, 184, 75, 0.15);
        }

        .lottery-cta::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(216, 64, 47, 0.2);
        }

        .lottery-cta__title {
            font-size: 26px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .lottery-cta__desc {
            font-size: 15px;
            color: rgba(255, 249, 240, 0.75);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .lottery-cta__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* ========== Footer ========== */
        .lottery-footer {
            background: var(--lottery-green);
            color: rgba(255, 249, 240, 0.75);
            padding: 56px 0 20px;
        }

        .lottery-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .lottery-footer__brand {
            font-size: 22px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .lottery-footer__brand-desc {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 249, 240, 0.6);
            max-width: 300px;
            margin-bottom: 0;
        }

        .lottery-footer__title {
            font-size: 15px;
            font-weight: 700;
            color: var(--lottery-text-inverse);
            margin-bottom: 14px;
        }

        .lottery-footer__link-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .lottery-footer__link-list a {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.6);
            transition: var(--lottery-transition);
        }

        .lottery-footer__link-list a:hover {
            color: var(--lottery-gold);
        }

        .lottery-footer__subscribe-input {
            display: flex;
            gap: 6px;
            margin-top: 8px;
        }

        .lottery-footer__subscribe-input input {
            flex: 1;
            padding: 10px 14px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid rgba(255, 249, 240, 0.25);
            background: rgba(255, 255, 255, 0.08);
            color: var(--lottery-text-inverse);
            font-size: 13px;
            outline: none;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-input input::placeholder {
            color: rgba(255, 249, 240, 0.4);
        }

        .lottery-footer__subscribe-input input:focus {
            border-color: var(--lottery-gold);
            background: rgba(255, 255, 255, 0.12);
        }

        .lottery-footer__subscribe-btn {
            padding: 10px 18px;
            background: var(--lottery-red);
            color: #fff;
            border: none;
            border-radius: var(--lottery-radius-sm);
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-footer__subscribe-btn:hover {
            background: var(--lottery-red-deep);
        }

        .lottery-footer__bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 249, 240, 0.12);
            font-size: 12px;
            color: rgba(255, 249, 240, 0.45);
        }

        .lottery-footer__bottom-links a {
            color: rgba(255, 249, 240, 0.5);
            font-size: 12px;
        }

        .lottery-footer__bottom-links a:hover {
            color: var(--lottery-gold);
        }

        /* ========== Responsive ========== */
        @media (max-width: 1200px) {
            .lottery-container {
                padding: 0 20px;
            }
            .lottery-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .lottery-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 1024px) {
            .lottery-header__nav {
                gap: 0;
            }
            .lottery-header__nav-link {
                padding: 8px 10px;
                font-size: 13px;
            }
            .lottery-hero__title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .lottery-header__nav {
                display: none;
            }
            .lottery-hamburger {
                display: flex;
            }
            .lottery-offcanvas {
                display: block;
                transform: translateX(-100%);
            }
            .lottery-offcanvas__overlay {
                display: block;
                opacity: 0;
                pointer-events: none;
            }
            .lottery-offcanvas__overlay.is-visible {
                opacity: 1;
                pointer-events: auto;
            }
            .lottery-hero__title {
                font-size: 28px;
            }
            .lottery-section {
                padding: var(--lottery-section-gap-mobile) 0;
            }
            .lottery-section__title {
                font-size: 24px;
            }
            .lottery-steps {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .lottery-footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .lottery-cta {
                padding: 32px 20px;
            }
            .lottery-cta__title {
                font-size: 22px;
            }
            .lottery-header__cta {
                padding: 8px 14px;
                font-size: 13px;
            }
            .lottery-header__actions {
                gap: 4px;
            }
            .lottery-footer__bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            .lottery-hero__title {
                font-size: 24px;
            }
            .lottery-hero__subtitle {
                font-size: 14px;
            }
            .lottery-section__title {
                font-size: 20px;
            }
            .lottery-container {
                padding: 0 16px;
            }
            .lottery-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            .lottery-play-card {
                padding: 20px;
            }
            .lottery-pagination__btn {
                min-width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .lottery-faq__question {
                padding: 14px 16px;
                font-size: 14px;
            }
            .lottery-faq__answer {
                padding: 0 16px;
                font-size: 13px;
            }
            .lottery-faq__item.is-open .lottery-faq__answer {
                padding: 0 16px 14px;
            }
            .lottery-header__brand-name {
                font-size: 17px;
            }
            .lottery-hamburger {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }

        @media (max-width: 360px) {
            .lottery-header__logo-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            .lottery-header__brand-name {
                font-size: 15px;
            }
            .lottery-header__cta {
                display: none;
            }
            .lottery-hero__title {
                font-size: 21px;
            }
        }

/* roulang page: category4 */
:root {
            --lottery-red: #D8402F;
            --lottery-red-deep: #B53025;
            --lottery-red-soft: rgba(216, 64, 47, 0.08);
            --lottery-gold: #E5B84B;
            --lottery-gold-soft: rgba(229, 184, 75, 0.15);
            --lottery-green: #1C3A32;
            --lottery-green-light: #2C5046;
            --lottery-bg: #F7F4ED;
            --lottery-white: #FFFFFF;
            --lottery-border: #E9E2D2;
            --lottery-text: #252525;
            --lottery-text-secondary: #6B6B6B;
            --lottery-text-inverse: #FFF9F0;
            --lottery-radius-sm: 8px;
            --lottery-radius-md: 12px;
            --lottery-radius-lg: 14px;
            --lottery-radius-xl: 20px;
            --lottery-radius-pill: 999px;
            --lottery-shadow-sm: 0 4px 12px rgba(28, 58, 50, 0.06);
            --lottery-shadow-md: 0 8px 24px rgba(28, 58, 50, 0.08);
            --lottery-shadow-lg: 0 12px 32px rgba(28, 58, 50, 0.14);
            --lottery-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --lottery-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', sans-serif;
            --lottery-font-number: 'Libre Franklin', 'DIN Alternate', 'Helvetica Neue', sans-serif;
            --lottery-container: 1200px;
            --lottery-gutter: 24px;
            --lottery-section-gap: 64px;
            --lottery-section-gap-mobile: 48px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--lottery-font);
            font-size: 16px;
            line-height: 1.8;
            color: var(--lottery-text);
            background-color: var(--lottery-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--lottery-red);
            text-decoration: none;
            transition: var(--lottery-transition);
        }

        a:hover,
        a:focus {
            color: var(--lottery-red-deep);
            outline: none;
        }

        a:focus-visible {
            outline: 3px solid rgba(216, 64, 47, 0.35);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .lottery-container {
            max-width: var(--lottery-container);
            margin: 0 auto;
            padding: 0 var(--lottery-gutter);
        }

        .lottery-section {
            padding: var(--lottery-section-gap) 0;
            position: relative;
        }

        .lottery-section--alt {
            background-color: var(--lottery-white);
            border-top: 1px solid var(--lottery-border);
            border-bottom: 1px solid var(--lottery-border);
        }

        .lottery-section--dark {
            background-color: var(--lottery-green);
            color: var(--lottery-text-inverse);
        }

        .lottery-section--gold-soft {
            background-color: var(--lottery-gold-soft);
        }

        .lottery-section__header {
            margin-bottom: 36px;
        }

        .lottery-section__label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 14px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 12px;
        }

        .lottery-section__title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--lottery-text);
            margin-bottom: 12px;
        }

        .lottery-section__subtitle {
            font-size: 16px;
            color: var(--lottery-text-secondary);
            max-width: 720px;
            line-height: 1.7;
        }

        .lottery-section--dark .lottery-section__title,
        .lottery-section--dark .lottery-section__subtitle {
            color: var(--lottery-text-inverse);
        }

        .lottery-section--dark .lottery-section__subtitle {
            color: rgba(255, 249, 240, 0.75);
        }

        /* Header / Navigation */
        .lottery-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--lottery-white);
            border-bottom: 1px solid var(--lottery-border);
            box-shadow: 0 2px 8px rgba(28, 58, 50, 0.04);
        }

        .lottery-header__top-strip {
            height: 4px;
            background: var(--lottery-red);
        }

        .lottery-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 64px;
            gap: 20px;
        }

        .lottery-header__brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .lottery-header__logo-icon {
            width: 40px;
            height: 40px;
            background: var(--lottery-red);
            border-radius: var(--lottery-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
        }

        .lottery-header__brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .lottery-header__brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--lottery-text);
            letter-spacing: 1px;
        }

        .lottery-header__brand-sub {
            font-size: 11px;
            color: var(--lottery-text-secondary);
            letter-spacing: 1px;
        }

        .lottery-header__nav {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .lottery-header__nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--lottery-text);
            padding: 8px 10px;
            border-radius: var(--lottery-radius-sm);
            white-space: nowrap;
            position: relative;
            transition: var(--lottery-transition);
        }

        .lottery-header__nav-link:hover {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-header__nav-link.is-active {
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            font-weight: 700;
        }

        .lottery-header__nav-link.is-active::after {
            content: '';
            position: absolute;
            bottom: -13px;
            left: 10px;
            right: 10px;
            height: 3px;
            background: var(--lottery-red);
            border-radius: 2px 2px 0 0;
        }

        .lottery-header__actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .lottery-header__search-btn {
            width: 40px;
            height: 40px;
            border-radius: var(--lottery-radius-pill);
            border: 1px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-green);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-header__search-btn:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-header__cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--lottery-red);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: var(--lottery-radius-pill);
            border: none;
            cursor: pointer;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-header__cta:hover {
            background: var(--lottery-red-deep);
            color: #fff;
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-header__hamburger {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-border);
            background: var(--lottery-white);
            color: var(--lottery-text);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: var(--lottery-transition);
        }

        .lottery-header__hamburger:hover {
            color: var(--lottery-red);
            border-color: var(--lottery-red);
        }

        /* Hero */
        .lottery-page-hero {
            position: relative;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            padding: 72px 0 56px;
            color: var(--lottery-text-inverse);
            overflow: hidden;
        }

        .lottery-page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(28, 58, 50, 0.62);
            z-index: 1;
        }

        .lottery-page-hero__content {
            position: relative;
            z-index: 2;
            max-width: 820px;
        }

        .lottery-page-hero__title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .lottery-page-hero__title .highlight {
            color: var(--lottery-gold);
        }

        .lottery-page-hero__subtitle {
            font-size: 17px;
            color: rgba(255, 249, 240, 0.85);
            line-height: 1.8;
            max-width: 680px;
        }

        .lottery-page-hero__actions {
            display: flex;
            gap: 12px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .lottery-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--lottery-radius-pill);
            border: none;
            cursor: pointer;
            transition: var(--lottery-transition);
            white-space: nowrap;
        }

        .lottery-btn--primary {
            background: var(--lottery-red);
            color: #fff;
        }

        .lottery-btn--primary:hover {
            background: var(--lottery-red-deep);
            color: #fff;
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-btn--outline-light {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .lottery-btn--outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        /* Breadcrumb */
        .lottery-breadcrumb {
            background: var(--lottery-bg);
            border-bottom: 1px solid var(--lottery-border);
            padding: 12px 0;
        }

        .lottery-breadcrumb__list {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
            color: var(--lottery-text-secondary);
            flex-wrap: wrap;
        }

        .lottery-breadcrumb__list li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lottery-breadcrumb__list li + li::before {
            content: '/';
            color: var(--lottery-border);
        }

        .lottery-breadcrumb__list a {
            color: var(--lottery-text-secondary);
        }

        .lottery-breadcrumb__list a:hover {
            color: var(--lottery-red);
        }

        .lottery-breadcrumb__list .is-current {
            color: var(--lottery-red);
            font-weight: 600;
        }

        /* Timeline / News Feed */
        .lottery-timeline {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .lottery-timeline__item {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-lg);
            padding: 28px 32px;
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
            position: relative;
        }

        .lottery-timeline__item:hover {
            box-shadow: var(--lottery-shadow-md);
            border-color: rgba(216, 64, 47, 0.2);
        }

        .lottery-timeline__item:hover .lottery-timeline__read-more {
            color: var(--lottery-red);
            border-color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        .lottery-timeline__date-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: var(--lottery-red);
            background: var(--lottery-red-soft);
            padding: 6px 12px;
            border-radius: var(--lottery-radius-pill);
            margin-bottom: 14px;
        }

        .lottery-timeline__title {
            font-size: 20px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .lottery-timeline__title a {
            color: inherit;
        }

        .lottery-timeline__title a:hover {
            color: var(--lottery-red);
        }

        .lottery-timeline__summary {
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .lottery-timeline__meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .lottery-timeline__tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--lottery-radius-pill);
            background: var(--lottery-gold-soft);
            color: #8B6F1E;
        }

        .lottery-timeline__tag--hot {
            background: rgba(216, 64, 47, 0.12);
            color: var(--lottery-red);
        }

        .lottery-timeline__tag--new {
            background: rgba(28, 58, 50, 0.08);
            color: var(--lottery-green);
        }

        .lottery-timeline__read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--lottery-text-secondary);
            border: 1px solid var(--lottery-border);
            padding: 8px 16px;
            border-radius: var(--lottery-radius-pill);
            transition: var(--lottery-transition);
        }

        .lottery-timeline__read-more:hover {
            color: var(--lottery-red);
            border-color: var(--lottery-red);
            background: var(--lottery-red-soft);
        }

        /* Pagination */
        .lottery-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .lottery-pagination__item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid var(--lottery-border);
            color: var(--lottery-text);
            background: var(--lottery-white);
            transition: var(--lottery-transition);
            cursor: pointer;
        }

        .lottery-pagination__item:hover {
            border-color: var(--lottery-red);
            color: var(--lottery-red);
        }

        .lottery-pagination__item.is-active {
            background: var(--lottery-red);
            color: #fff;
            border-color: var(--lottery-red);
        }

        /* Policy Deep Dive */
        .lottery-policy-deep {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-xl);
            padding: 40px;
            box-shadow: var(--lottery-shadow-sm);
        }

        .lottery-policy-deep__title {
            font-size: 24px;
            font-weight: 700;
            color: var(--lottery-text);
            margin-bottom: 20px;
        }

        .lottery-policy-deep__body {
            font-size: 16px;
            line-height: 1.9;
            color: var(--lottery-text);
        }

        .lottery-policy-deep__body p {
            margin-bottom: 16px;
        }

        .lottery-policy-deep__body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-top: 24px;
            margin-bottom: 12px;
            color: var(--lottery-green);
        }

        /* Highlight Box */
        .lottery-highlight-box {
            background: var(--lottery-gold-soft);
            border-left: 4px solid var(--lottery-gold);
            border-radius: var(--lottery-radius-md);
            padding: 20px 24px;
            margin: 20px 0;
        }

        .lottery-highlight-box p {
            margin: 0;
            font-size: 15px;
            color: var(--lottery-text);
            line-height: 1.8;
        }

        /* FAQ */
        .lottery-faq {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .lottery-faq__item {
            background: var(--lottery-white);
            border: 1px solid var(--lottery-border);
            border-radius: var(--lottery-radius-md);
            overflow: hidden;
            box-shadow: var(--lottery-shadow-sm);
            transition: var(--lottery-transition);
        }

        .lottery-faq__item.is-open {
            border-color: rgba(216, 64, 47, 0.3);
            box-shadow: var(--lottery-shadow-md);
        }

        .lottery-faq__question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--lottery-text);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            transition: var(--lottery-transition);
        }

        .lottery-faq__question:hover {
            color: var(--lottery-red);
        }

        .lottery-faq__icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lottery-red);
            font-size: 14px;
            transition: var(--lottery-transition);
        }

        .lottery-faq__item.is-open .lottery-faq__icon {
            transform: rotate(180deg);
            background: var(--lottery-red-soft);
        }

        .lottery-faq__answer {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--lottery-text-secondary);
            line-height: 1.8;
            display: none;
        }

        .lottery-faq__item.is-open .lottery-faq__answer {
            display: block;
        }

        /* CTA */
        .lottery-cta {
            background: var(--lottery-green);
            border-radius: var(--lottery-radius-xl);
            padding: 48px;
            color: var(--lottery-text-inverse);
            text-align: center;
            box-shadow: var(--lottery-shadow-lg);
        }

        .lottery-cta__title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .lottery-cta__subtitle {
            font-size: 16px;
            color: rgba(255, 249, 240, 0.75);
            max-width: 600px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }

        .lottery-cta__form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .lottery-cta__input {
            flex: 1;
            min-width: 220px;
            padding: 14px 18px;
            border-radius: var(--lottery-radius-pill);
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 14px;
            transition: var(--lottery-transition);
        }

        .lottery-cta__input::placeholder {
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-cta__input:focus {
            outline: none;
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.25);
        }

        /* Footer */
        .lottery-footer {
            background: var(--lottery-green);
            color: var(--lottery-text-inverse);
            padding: 56px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .lottery-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .lottery-footer__brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .lottery-footer__brand-desc {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.6);
            line-height: 1.7;
            max-width: 320px;
        }

        .lottery-footer__title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .lottery-footer__link-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .lottery-footer__link-list a {
            font-size: 13px;
            color: rgba(255, 249, 240, 0.65);
            transition: var(--lottery-transition);
        }

        .lottery-footer__link-list a:hover {
            color: var(--lottery-gold);
            padding-left: 4px;
        }

        .lottery-footer__subscribe-input {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .lottery-footer__subscribe-input input {
            flex: 1;
            padding: 10px 14px;
            border-radius: var(--lottery-radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 13px;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-input input::placeholder {
            color: rgba(255, 249, 240, 0.4);
        }

        .lottery-footer__subscribe-input input:focus {
            outline: none;
            border-color: var(--lottery-gold);
            box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.2);
        }

        .lottery-footer__subscribe-btn {
            padding: 10px 18px;
            background: var(--lottery-red);
            color: #fff;
            border: none;
            border-radius: var(--lottery-radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--lottery-transition);
        }

        .lottery-footer__subscribe-btn:hover {
            background: var(--lottery-red-deep);
        }

        .lottery-footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 249, 240, 0.5);
        }

        .lottery-footer__bottom-links a {
            color: rgba(255, 249, 240, 0.5);
            font-size: 12px;
        }

        .lottery-footer__bottom-links a:hover {
            color: var(--lottery-gold);
        }

        /* Off-canvas mobile */
        .lottery-offcanvas {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: var(--lottery-white);
            z-index: 2000;
            padding: 24px;
            box-shadow: var(--lottery-shadow-lg);
            transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .lottery-offcanvas.is-open {
            right: 0;
        }

        .lottery-offcanvas__close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--lottery-border);
            background: none;
            color: var(--lottery-text);
            font-size: 18px;
            cursor: pointer;
            margin-bottom: 20px;
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__close:hover {
            color: var(--lottery-red);
            border-color: var(--lottery-red);
        }

        .lottery-offcanvas__nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .lottery-offcanvas__nav a {
            padding: 12px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--lottery-text);
            border-radius: var(--lottery-radius-sm);
            transition: var(--lottery-transition);
        }

        .lottery-offcanvas__nav a:hover {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
        }

        .lottery-offcanvas__nav a.is-active {
            background: var(--lottery-red-soft);
            color: var(--lottery-red);
            font-weight: 700;
        }

        .lottery-offcanvas__overlay {
            position: fixed;
            inset: 0;
            background: rgba(28, 58, 50, 0.5);
            z-index: 1500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease;
        }

        .lottery-offcanvas__overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .lottery-header__nav {
                gap: 10px;
            }
            .lottery-header__nav-link {
                font-size: 13px;
                padding: 6px 8px;
            }
            .lottery-header__nav-link.is-active::after {
                bottom: -10px;
            }
            .lottery-footer__grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
            .lottery-footer__grid > div:last-child {
                grid-column: span 3;
            }
            .lottery-page-hero__title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --lottery-section-gap: 48px;
                --lottery-gutter: 16px;
            }
            .lottery-header__nav {
                display: none;
            }
            .lottery-header__hamburger {
                display: flex;
            }
            .lottery-header__cta {
                display: none;
            }
            .lottery-header__search-btn {
                display: none;
            }
            .lottery-page-hero {
                padding: 48px 0 40px;
            }
            .lottery-page-hero__title {
                font-size: 28px;
            }
            .lottery-page-hero__subtitle {
                font-size: 15px;
            }
            .lottery-section__title {
                font-size: 24px;
            }
            .lottery-timeline__item {
                padding: 20px;
            }
            .lottery-timeline__title {
                font-size: 18px;
            }
            .lottery-policy-deep {
                padding: 24px 20px;
            }
            .lottery-policy-deep__title {
                font-size: 20px;
            }
            .lottery-cta {
                padding: 32px 24px;
            }
            .lottery-cta__title {
                font-size: 24px;
            }
            .lottery-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .lottery-footer__grid > div:last-child {
                grid-column: span 2;
            }
            .lottery-footer__bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        @media (max-width: 520px) {
            .lottery-page-hero__title {
                font-size: 24px;
            }
            .lottery-page-hero__actions {
                flex-direction: column;
            }
            .lottery-btn {
                justify-content: center;
                width: 100%;
            }
            .lottery-footer__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .lottery-footer__grid > div:last-child {
                grid-column: span 1;
            }
            .lottery-timeline__summary {
                font-size: 14px;
            }
            .lottery-timeline__read-more {
                font-size: 12px;
                padding: 6px 12px;
            }
            .lottery-pagination__item {
                min-width: 34px;
                height: 34px;
                font-size: 12px;
                padding: 0 8px;
            }
            .lottery-faq__question {
                font-size: 14px;
                padding: 16px 18px;
            }
            .lottery-faq__answer {
                padding: 0 18px 16px;
                font-size: 14px;
            }
        }
