.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#F8F9FA;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- STREAMING_CHUNK: Global Styles & Variables --- */
        :root {
            --lao-red: #c8102e;
            --lao-dark-red: #a00d25;
            --lao-navy: #002868;
            --lao-dark-navy: #001a45;
            --lao-bg-light: #f8f9fa;
            --lao-text-main: #333333;
            --lao-text-muted: #666666;
            --lao-white: #ffffff;
            --lao-border: #e0e0e0;
            --lao-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --lao-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
            --lao-radius: 8px;
            --lao-radius-lg: 12px;
            --lao-font: 'Noto Sans Lao', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .lao-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- STREAMING_CHUNK: Header Section --- */
        .lao-header {
            background-color: var(--lao-white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .lao-header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--lao-border);
        }

        .lao-logo {
            font-size: 26px;
            font-weight: 800;
            color: var(--lao-red);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.5px;
        }
        
        .lao-logo span {
            color: var(--lao-navy);
        }

        .lao-nav {
            display: none;
        }

        @media (min-width: 992px) {
            .lao-nav {
                display: flex;
                gap: 20px;
            }
            .lao-nav a {
                font-size: 14px;
                font-weight: 500;
                color: var(--lao-text-muted);
                transition: color 0.2s;
            }
            .lao-nav a:hover, .lao-nav a.active {
                color: var(--lao-red);
            }
        }

        .lao-header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .lao-visitor-count {
            font-size: 12px;
            color: var(--lao-text-muted);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .lao-visitor-count i { color: #28a745; }

        .lao-lang-switch {
            font-size: 12px;
            color: var(--lao-text-muted);
            cursor: pointer;
        }
        .lao-lang-switch span { font-weight: bold; color: var(--lao-text-main); }

        .lao-btn-login {
            background-color: var(--lao-red);
            color: var(--lao-white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .lao-btn-login:hover {
            background-color: var(--lao-dark-red);
        }

        .lao-sub-header {
            padding: 10px 0;
            font-size: 12px;
            color: var(--lao-text-muted);
            text-align: left;
        }

        /* --- STREAMING_CHUNK: Hero Section (Countdown & Check) --- */
        .lao-hero-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            margin: 20px 0;
            border-radius: var(--lao-radius-lg);
            overflow: hidden;
            box-shadow: var(--lao-shadow);
        }

        @media (min-width: 768px) {
            .lao-hero-section {
                grid-template-columns: 1fr 2fr;
            }
        }

        /* Countdown Box */
        .lao-countdown-box {
            background-color: var(--lao-navy);
            color: var(--lao-white);
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .lao-countdown-title {
            font-size: 14px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .lao-countdown-timer {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .lao-time-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lao-time-value {
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
            font-family: monospace;
        }

        .lao-time-label {
            font-size: 10px;
            opacity: 0.7;
            margin-top: 5px;
        }

        .lao-draw-date {
            font-size: 12px;
            opacity: 0.8;
        }

        /* Check Results Box */
        .lao-check-box {
            background-color: var(--lao-red);
            color: var(--lao-white);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lao-check-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .lao-check-subtitle {
            font-size: 12px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .lao-check-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .lao-input-group {
            display: flex;
            gap: 5px;
            flex: 1;
            min-width: 200px;
        }

        .lao-digit-input {
            width: 45px!important;
            height: 45px;
            border: 2px solid transparent!important;
            border-radius: 6px;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--lao-text-main);
            outline: none;
            transition: border-color 0.2s;
        }
        .lao-digit-input:focus {
            border-color: var(--lao-navy);
        }

        .lao-btn-check {
            background-color: var(--lao-white);
            color: var(--lao-red);
            padding: 0 20px;
            height: 45px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .lao-btn-check:hover {
            background-color: #f0f0f0!important;
            color: #c8102e!important;;
        }

        /* --- STREAMING_CHUNK: Banners Grid --- */
        .lao-banner-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        @media (min-width: 768px) {
            .lao-banner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .lao-banner-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .lao-banner-grid .wide-banner {
                grid-column: span 2;
            }
        }

        .lao-banner-item {
            border-radius: var(--lao-radius);
            overflow: hidden;
            box-shadow: var(--lao-shadow);
            transition: transform 0.2s;
            background-color: var(--lao-navy); /* Fallback */
            position: relative;
        }

        .lao-banner-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--lao-shadow-hover);
        }

        .lao-banner-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Notice text below banners */
        .lao-notice-text {
            font-size: 12px;
            color: var(--lao-text-muted);
            margin-bottom: 30px;
        }

        /* --- STREAMING_CHUNK: News & Articles Section --- */
        .lao-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--lao-border);
        }

        .lao-section-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--lao-navy);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lao-section-title i {
            color: var(--lao-red);
        }

        .lao-view-all {
            font-size: 14px;
            color: var(--lao-red);
            font-weight: 500;
        }
        .lao-view-all:hover { text-decoration: underline; }

        .lao-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .lao-news-card {
            background-color: var(--lao-white);
            border-radius: var(--lao-radius);
            overflow: hidden;
            box-shadow: var(--lao-shadow);
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .lao-news-card:hover {
            box-shadow: var(--lao-shadow-hover);
            transform: translateY(-4px);
        }

        .lao-news-img-wrap {
            height: 180px;
            overflow: hidden;
        }

        .lao-news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .lao-news-card:hover .lao-news-img { transform: scale(1.05); }

        .lao-news-content {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .lao-news-category {
            font-size: 11px;
            color: var(--lao-red);
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .lao-news-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--lao-text-main);
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .lao-news-desc {
            font-size: 13px;
            color: var(--lao-text-muted);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .lao-news-meta {
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 11px;
            color: var(--lao-text-muted);
        }
        
        .lao-news-meta i { color: #f39c12; }

        /* --- STREAMING_CHUNK: Footer Section --- */
        .lao-footer {
            background-color: var(--lao-dark-red);
            color: var(--lao-white);
            text-align: center;
            padding: 20px 0;
            font-size: 13px;
        }/* End custom CSS */