/*
 * ระบบหวย — ล็อบบี้ หน้าแทง โพยของฉัน ผลรางวัล
 *
 * ต่อยอดจากคำศัพท์หน้าสมาชิก (member.css) ทุก selector ขึ้นต้น .lt-
 * สีมาจากตัวแปรธีมชุดเดียวกัน จึงเข้ากับทุกชุดสีที่แอดมินเลือกโดยไม่ต้องแก้ไฟล์นี้
 *
 * แนวคิดหน้าแทง: ตัวเลขคือพระเอก — ช่องเลข ปุ่มกด และเลขในโพยใช้ตัวเลขกว้างเท่ากัน
 * (tabular-nums) ขนาดใหญ่ สีอื่นทั้งหมดถอยไปเป็นพื้น ให้สายตาลูกค้าอยู่กับเลขที่กำลังแทง
 */

:root {
    --lt-num-font: 'Anuphan', ui-monospace, 'SF Mono', Menlo, monospace;
    --lt-ok-rgb: 74, 222, 128;
}

/* ── ล็อบบี้ ────────────────────────────────────────────────── */

.lt-lobby {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 12px 40px;
}

@media (min-width: 768px) {
    .lt-lobby { padding: 16px 16px 48px; }
}

/* แถบกลุ่มหวย — เลื่อนแนวนอนได้ เพราะกลุ่มมีได้ถึง 7-8 กลุ่ม ยัดลง m-tabs ไม่ไหว */
.lt-groups {
    display: flex;
    gap: 8px;
    margin: 0 -12px 16px;
    padding: 2px 12px 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lt-groups::-webkit-scrollbar { display: none; }

.lt-group {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--m-line-strong);
    background: rgba(0, 0, 0, .38);
    color: var(--ink-soft);
    font: inherit;
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .15s, border-color .15s, color .15s, transform .15s var(--m-ease);
}

.lt-group:hover { border-color: rgba(var(--m-accent-rgb), .5); color: var(--ink); }
.lt-group:active { transform: scale(.96); }

.lt-group[aria-pressed="true"] {
    background: rgba(var(--m-accent-rgb), .16);
    border-color: var(--gold);
    color: var(--gold-light);
    font-weight: 600;
}

.lt-group small {
    font-size: var(--text-xs);
    font-weight: 500;
    opacity: .75;
}

.lt-lobby__title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin: 0 2px 10px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink);
}

.lt-lobby__title span {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--ink-muted);
}

.lt-lobby__title a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gold-light);
    text-decoration: none;
}

.lt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

@media (max-width: 560px) {
    .lt-grid { grid-template-columns: 1fr; }
}

/* การ์ดหวยหนึ่งใบ — ทั้งใบคือลิงก์ */
.lt-mk {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--m-line);
    border-radius: 18px;
    background: var(--m-card-bg);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    animation: lt-in .32s var(--m-ease) both;
    animation-delay: calc(var(--i, 0) * 28ms);
    transition: transform .18s var(--m-ease), border-color .18s, box-shadow .18s;
}

/* เอียงตามเมาส์ (v-tilt) + แสงตามจุดที่ชี้ — เหมือนการ์ดค่ายเกม */
.lt-mk:hover {
    transform: perspective(700px) rotateX(var(--ty, 0deg)) rotateY(var(--tx, 0deg)) translateY(-2px);
    border-color: rgba(var(--m-accent-rgb), .5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35), 0 0 0 1px rgba(var(--m-accent-rgb), .15);
}

.lt-mk::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(200px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .14), transparent 65%);
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

.lt-mk:hover::after { opacity: 1; }

/* โครงตอนโหลด */
.lt-mk-skel { height: 82px; border-radius: 18px; animation-delay: calc(var(--i, 0) * 60ms); }

.lt-mk:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

.lt-mk--off { opacity: .6; }
.lt-mk--off:hover { transform: none; border-color: var(--m-line); box-shadow: none; }

.lt-mk__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    font-size: 1.75rem;
    overflow: hidden;
}

.lt-mk__icon img { width: 100%; height: 100%; object-fit: cover; }

.lt-mk__main { min-width: 0; }

/* ลูกของ <a> เป็น span ทั้งหมด (ลิงก์ห้ามมี div ซ้อนแบบ block ในบางเบราว์เซอร์) — จัดบรรทัดเอง */
.lt-mk__name,
.lt-mk__sub { display: block; }

.lt-mk__name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-mk__sub {
    margin-top: 2px;
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

.lt-mk__end { text-align: right; }

.lt-mk__rate {
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

.lt-mk__rate strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--gold-light);
    font-variant-numeric: tabular-nums;
}

/* นับถอยหลัง — เขียวเมื่อยังรับ แดงช่วง 5 นาทีสุดท้าย เทาเมื่อปิด */
.lt-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(var(--lt-ok-rgb), .14);
    color: var(--m-ok);
    font-size: var(--text-xs);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lt-count::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: lt-pulse 1.2s ease-in-out infinite;
}

.lt-count--soon { background: var(--m-bad-bg); color: var(--m-bad); }
.lt-count--off { background: rgba(255, 255, 255, .08); color: var(--ink-soft); }
.lt-count--off::before { animation: none; }

/* 60 วินาทีสุดท้าย — ป้ายเต้นตามวินาที ให้รีบส่งโพย */
.lt-count--urgent { animation: lt-tick 1s var(--m-ease) infinite; }
.lt-count--urgent::before { animation-duration: .5s; }

@keyframes lt-tick {
    0%   { transform: scale(1.06); }
    30%  { transform: scale(1); }
    100% { transform: scale(1); }
}

@keyframes lt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

/* การ์ดทยอยขึ้น — keyframes ของ GameLobby เป็น scoped ใช้ข้ามไฟล์ไม่ได้ จึงประกาศเอง */
@keyframes lt-in {
    from { opacity: 0; transform: translateY(10px) scale(.97); }
    to   { opacity: 1; transform: none; }
}

/* ── ทางเข้าตามกลุ่ม (แท็บ "หวย" บนหน้าแรก) — ช่องเหมือนค่ายเกม ─── */

.lt-gt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .lt-gt-grid { grid-template-columns: repeat(auto-fill, minmax(136px, 1fr)); gap: 14px; }
}

.lt-gt {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--m-line);
    border-radius: 16px;
    background: var(--m-card-bg);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    animation: lt-in .32s var(--m-ease) both;
    animation-delay: calc(var(--i, 0) * 28ms);
    transition: transform .18s var(--m-ease), border-color .18s, box-shadow .18s;
}

.lt-gt:hover {
    transform: perspective(700px) rotateX(var(--ty, 0deg)) rotateY(var(--tx, 0deg)) translateY(-2px);
    border-color: rgba(var(--m-accent-rgb), .5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35), 0 0 0 1px rgba(var(--m-accent-rgb), .15);
}

.lt-gt::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(160px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .16), transparent 65%);
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

.lt-gt:hover::after { opacity: 1; }

.lt-gt:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

.lt-gt__thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    margin: 8px 8px 0;
    border-radius: 10px;
    background: radial-gradient(80% 80% at 50% 30%, rgba(var(--m-accent-rgb), .22), rgba(255, 255, 255, .04) 70%);
    overflow: hidden;
}

.lt-gt__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lt-gt__thumb svg { width: 44%; height: 44%; color: var(--gold-light); }

.lt-gt__emoji {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
    line-height: 1;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .35));
}

.lt-gt__name {
    padding: 8px 8px 2px;
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-gt__sub {
    padding: 0 8px 10px;
    font-size: var(--text-xs);
    color: var(--ink-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-gt__sub em { font-style: normal; color: var(--m-ok); }

.lt-gt--alt .lt-gt__thumb { background: rgba(255, 255, 255, .05); }

.lt-gt-skel { aspect-ratio: 1 / 1.35; border-radius: 16px; animation-delay: calc(var(--i, 0) * 60ms); }

/* ── แถบบน: งวดที่ใกล้ปิดที่สุด ─────────────────────────────────── */

.lt-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 18px;
    border: 1px solid rgba(var(--m-accent-rgb), .35);
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(var(--m-accent-rgb), .18), transparent 55%),
        var(--m-card-bg);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
}

.lt-strip .lt-mk__icon { flex-shrink: 0; width: 46px; height: 46px; }

.lt-strip__main { flex: 1; min-width: 180px; }

.lt-strip__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--m-bad);
}

.lt-strip__label i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: lt-pulse 1.2s ease-in-out infinite;
}

.lt-strip__name {
    display: block;
    margin-top: 2px;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink);
}

.lt-strip__clock { display: flex; gap: 6px; }

.lt-strip__clock span {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.lt-strip__clock b {
    padding: 6px 8px;
    min-width: 46px;
    border-radius: 10px;
    border: 1px solid rgba(var(--m-accent-rgb), .35);
    background: rgba(var(--m-accent-rgb), .12);
    font-family: var(--lt-num-font);
    font-size: 1.25rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
    color: var(--gold-light);
}

.lt-strip__clock small {
    margin-top: 3px;
    font-size: 0.7rem;
    color: var(--ink-muted);
}

.lt-strip__cta { flex-shrink: 0; }

@media (max-width: 560px) {
    .lt-strip__cta { width: 100%; }
}

.lt-strip-skel { height: 78px; border-radius: 18px; margin-bottom: 16px; }

/* ── รายกลุ่ม: หัวกลุ่ม + การ์ดเลื่อนแนวนอน ──────────────────────── */

.lt-sec { margin-top: 6px; }
.lt-sec + .lt-sec { margin-top: 16px; }

.lt-sec__head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 2px 4px;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ink);
}

.lt-sec__head small {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--ink-muted);
}

.lt-sec__head a {
    margin-left: auto;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gold-light);
    text-decoration: none;
}

/* รางเลื่อน — ปาดด้วยนิ้ว snap ทีละใบ; เว้นบน 26px ให้เหรียญที่ยื่นออกจากการ์ดไม่ถูกตัด */
.lt-rail {
    display: flex;
    gap: 14px;
    margin: 0 -12px;
    padding: 28px 12px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lt-rail::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
    .lt-rail { margin: 0 -16px; padding: 28px 16px 14px; }
}

/* การ์ดหวยหนึ่งใบ — เหรียญประจำหวยยื่นออกด้านบน */
.lt-mc {
    position: relative;
    flex: 0 0 218px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    padding: 30px 16px 16px;
    border: 1px solid var(--m-line);
    border-radius: 20px;
    background: var(--m-card-bg);
    color: inherit;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 12px 30px rgba(0, 0, 0, .28);
    animation: lt-in .32s var(--m-ease) both;
    animation-delay: calc(var(--i, 0) * 40ms);
    transition: transform .18s var(--m-ease), border-color .18s, box-shadow .18s;
}

.lt-mc:hover {
    transform: perspective(800px) rotateX(var(--ty, 0deg)) rotateY(var(--tx, 0deg)) translateY(-3px);
    border-color: rgba(var(--m-accent-rgb), .5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(var(--m-accent-rgb), .15);
}

.lt-mc:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }

.lt-mc--off { opacity: .72; }

.lt-mc__badge {
    position: absolute;
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary, #01143d);
    border: 3px solid rgba(var(--m-accent-rgb), .8);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .45);
    font-size: 1.5rem;
    overflow: hidden;
}

.lt-mc__badge img { width: 100%; height: 100%; object-fit: cover; }

.lt-mc__status {
    position: absolute;
    right: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
}

.lt-mc__status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.lt-mc__status.is-on { background: var(--m-ok-bg); color: var(--m-ok); }
.lt-mc__status.is-on::before { animation: lt-pulse 1.2s ease-in-out infinite; }
.lt-mc__status.is-off { background: rgba(255, 255, 255, .08); color: var(--ink-soft); }

.lt-mc__name {
    margin-top: 6px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-mc__sub {
    margin-top: 2px;
    font-size: var(--text-xs);
    color: var(--ink-muted);
    text-align: center;
}

.lt-mc__divider {
    display: block;
    height: 0;
    margin: 14px -16px;
    border-top: 2px dashed var(--m-line-strong);
}

.lt-mc__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(var(--lt-ok-rgb), .14);
    color: var(--m-ok);
    font-family: var(--lt-num-font);
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .03em;
}

.lt-mc__count svg { width: 16px; height: 16px; }
.lt-mc__count--soon { background: var(--m-bad-bg); color: var(--m-bad); }
.lt-mc__count--off { background: rgba(255, 255, 255, .06); color: var(--ink-soft); font-family: inherit; font-weight: 500; letter-spacing: 0; }

.lt-mc__meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 12px 2px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.lt-mc__meta span:last-child { text-align: right; }

.lt-mc__meta strong {
    display: block;
    margin-top: 1px;
    font-size: var(--text-base);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

.lt-mc__meta .lt-mc__rate { color: var(--gold-light); }

.lt-mc__cta {
    margin-top: auto;
    min-height: 42px;
    font-size: var(--text-sm);
}

.lt-mc__cta--off {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--m-r-md);
    border: 1px solid var(--m-line-strong);
    color: var(--ink-soft);
    font-weight: 600;
}

.lt-mc-skel { flex: 0 0 218px; height: 250px; border-radius: 20px; animation-delay: calc(var(--i, 0) * 60ms); }

/* ── ผลล่าสุด (ล็อบบี้) — เลขเป็นช่องละหลัก ─────────────────────── */

.lt-rs-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.lt-rs-mini {
    padding: 14px;
    border: 1px solid var(--m-line);
    border-radius: 18px;
    background: var(--m-card-bg);
}

.lt-rs-mini__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lt-rs-mini__head .lt-mk__icon { width: 38px; height: 38px; font-size: 1.25rem; border-radius: 12px; }

.lt-rs-mini__name {
    flex: 1;
    min-width: 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-rs-mini__name small { display: block; font-size: var(--text-xs); font-weight: 400; color: var(--ink-muted); }

.lt-rs-mini__nums { display: flex; gap: 8px; }

.lt-rs-mini__box {
    flex: 1;
    padding: 9px 8px;
    border-radius: 14px;
    border: 1px solid rgba(var(--m-accent-rgb), .25);
    background: rgba(var(--m-accent-rgb), .08);
    text-align: center;
}

.lt-rs-mini__box--bottom { flex: 0 0 96px; border-color: var(--m-line-strong); background: rgba(255, 255, 255, .04); }

.lt-rs-mini__box span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.lt-rs-mini__box b { display: flex; justify-content: center; gap: 5px; }

.lt-rs-mini__box i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .35);
    font-family: var(--lt-num-font);
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.lt-rs-mini__box--bottom i { color: var(--ink); }

/* ── ผลล่าสุดบนล็อบบี้ — แถวเล็กใต้ตารางหวย ──────────────────── */

.lt-recent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.lt-recent__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--m-line);
    border-radius: 14px;
    background: rgba(0, 0, 0, .22);
}

.lt-recent__name {
    flex: 1;
    min-width: 0;
    font-size: var(--text-xs);
    color: var(--ink-soft);
}

.lt-recent__name strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ตัวเลขผล — ใช้ทั้งล็อบบี้ หน้าผล และในโพย */
.lt-num {
    font-family: var(--lt-num-font);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gold-light);
}

.lt-num--lg { font-size: 1.5rem; line-height: 1.1; }
.lt-num--xl { font-size: 2.25rem; line-height: 1.05; }

/* ── หน้าแทง ─────────────────────────────────────────────────── */

.lt-bet {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 12px 120px;
    animation: m-in .28s var(--m-ease) both;
}

/* มือถือไม่มีกล่องข้าง — โพยอยู่ในชีตที่เปิดจากแถบล่างแทน */
.lt-bet__aside { display: none; }

@media (min-width: 900px) {
    .lt-bet {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 16px;
        align-items: start;
        padding: 20px 16px 48px;
    }

    .lt-bet__aside {
        display: block;
        position: sticky;
        top: 84px;
    }
}

.lt-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 12px;
    color: var(--ink-soft);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
}

.lt-back:hover { color: var(--ink); }

/* หัวหน้าแทง: ชื่อหวย + งวด + นับถอยหลัง */
.lt-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid var(--m-line);
    border-radius: 18px;
    background: var(--m-card-bg);
}

.lt-head .lt-mk__icon { flex-shrink: 0; width: 48px; height: 48px; }

.lt-head__main { flex: 1; min-width: 0; }

.lt-head__name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
}

.lt-head__sub {
    margin: 2px 0 0;
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

.lt-head__timer {
    flex-shrink: 0;
    text-align: right;
}

.lt-head__timer span {
    display: block;
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

.lt-head__timer strong {
    font-family: var(--lt-num-font);
    font-size: 1.375rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--m-ok);
}

.lt-head__timer--soon strong { color: var(--m-bad); }
.lt-head__timer--off strong { color: var(--ink-soft); font-size: 1rem; }

/* 60 วินาทีสุดท้าย — ตัวเลขกระตุกทุกวินาทีพร้อมแสงแดง */
.lt-head__timer--urgent strong {
    display: inline-block;
    animation: lt-tick 1s var(--m-ease) infinite;
    text-shadow: 0 0 14px rgba(248, 113, 113, .6);
}

.lt-block { margin-bottom: 18px; }

.lt-block__title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin: 0 2px 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-soft);
}

.lt-block__title small {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--ink-muted);
}

/*
 * ประเภทแทง — แผงเดียว แบ่งเป็นแถวตามจำนวนหลัก หลักเดียวกันเลือกพร้อมกันได้
 *
 * ชิปกว้างเท่ากันทุกใบเป็นตาราง (3/4/5 คอลัมน์ตามจอ) ป้ายหลักเป็นหัวแถวมีเส้นคั่น
 * ของเดิมป้ายอยู่ซ้ายกับชิปกว้างตามข้อความ พอตกบรรทัดแล้วเรียงไม่ตรงกัน ดูรก
 */
.lt-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--m-line);
    background: rgba(0, 0, 0, .22);
}

.lt-types__row { display: block; }

.lt-types__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 2px 7px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ink-muted);
}

.lt-types__label::after { content: ''; flex: 1; height: 1px; background: var(--m-line); }

.lt-types__chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

@media (min-width: 480px) { .lt-types__chips { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 900px) { .lt-types__chips { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.lt-type {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    min-height: 50px;
    padding: 5px 6px;
    text-align: center;
    border-radius: var(--m-r-sm);
    border: 1px solid var(--m-line-strong);
    background: rgba(0, 0, 0, .38);
    color: var(--ink);
    font: inherit;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .15s, border-color .15s, color .15s, transform .15s var(--m-ease);
}

.lt-type small {
    font-size: var(--text-xs);
    font-weight: 500;
    white-space: nowrap;
    color: var(--ink-muted);
    font-variant-numeric: tabular-nums;
}

.lt-type:hover { border-color: rgba(var(--m-accent-rgb), .5); }
.lt-type:active { transform: scale(.96); }

.lt-type[aria-pressed="true"] {
    background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
    border-color: transparent;
    color: #15120a;
    box-shadow: 0 6px 16px rgba(var(--gold-rgb), .35);
}

.lt-type[aria-pressed="true"] small { color: rgba(21, 18, 10, .75); }

/* โหมดป้อนเลข — ใช้ m-tabs ตัวเลื่อน 3 ช่อง */
.lt-modes { margin-bottom: 14px; }

/* ชุดเลขด่วน */
.lt-quick {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.lt-quick .m-chip {
    min-height: 38px;
    font-size: var(--text-xs);
}

/* ช่องเลขที่กำลังกด */
.lt-slots {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-height: 66px;
    padding: 8px;
    margin-bottom: 12px;
    border: 1.5px dashed var(--m-line-strong);
    border-radius: var(--m-r-md);
    background: rgba(0, 0, 0, .22);
}

.lt-slot {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px dashed var(--m-line-strong);
    font-family: var(--lt-num-font);
    font-size: 1.625rem;
    font-weight: 700;
    color: transparent;
    transition: background-color .15s, border-color .15s, color .15s, transform .15s var(--m-ease);
}

.lt-slot--on {
    border-style: solid;
    border-color: transparent;
    background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    color: color-mix(in srgb, var(--color-primary, #01143d) 70%, #000);
    box-shadow: 0 8px 18px rgba(var(--m-accent-rgb), .35);
    animation: lt-pop .18s var(--m-ease);
}

@keyframes lt-pop {
    from { transform: scale(.7); }
    to { transform: none; }
}

.lt-hint {
    margin: 0 0 12px;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--ink-soft);
}

/* แป้นตัวเลข */
.lt-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
}

.lt-key {
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid var(--m-line-strong);
    background: rgba(0, 0, 0, .4);
    color: var(--ink);
    font-family: var(--lt-num-font);
    font-size: 1.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    cursor: pointer;
    user-select: none;
    transition: background-color .12s, transform .1s var(--m-ease);
}

.lt-key:hover { background: rgba(255, 255, 255, .12); }
.lt-key:active { transform: scale(.94); background: rgba(var(--m-accent-rgb), .2); }

.lt-key--fn {
    font-family: inherit;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-soft);
    background: rgba(0, 0, 0, .25);
}

.lt-key--del { color: var(--m-bad); }
.lt-key:disabled { opacity: .4; cursor: default; transform: none; }

.lt-reverse { display: flex; justify-content: center; margin-bottom: 8px; }

/* แผงเลข 00-99 / 0-9 */
.lt-panel {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
    margin-bottom: 12px;
}

.lt-panel__cell {
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid var(--m-line);
    background: rgba(255, 255, 255, .04);
    color: var(--ink);
    font-family: var(--lt-num-font);
    font-size: var(--text-sm);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: background-color .12s, border-color .12s, color .12s;
}

.lt-panel__cell:hover { border-color: rgba(var(--m-accent-rgb), .5); }

.lt-panel__cell[aria-pressed="true"] {
    background: linear-gradient(160deg, var(--gold-light), var(--gold));
    border-color: transparent;
    color: #15120a;
}

.lt-panel__cell--closed {
    opacity: .3;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* จับวิน */
.lt-win {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

/* ยอดต่อเลข */
.lt-amounts {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

@media (max-width: 420px) {
    .lt-amounts { grid-template-columns: repeat(3, 1fr); }
}

.lt-amounts .m-chip { min-height: 40px; }

/* ── โพย (ตะกร้า) ─────────────────────────────────────────────── */

.lt-cart {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: var(--m-r-lg);
    background: var(--m-card-bg);
    border: 1px solid var(--m-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 30px rgba(0, 0, 0, .22);
}

.lt-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.lt-cart__head h3 {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink);
}

.lt-cart__head h3 span { color: var(--ink-muted); font-weight: 500; }

.lt-cart__clear {
    padding: 0;
    border: 0;
    background: none;
    color: var(--m-bad);
    font: inherit;
    font-size: var(--text-xs);
    font-weight: 600;
    cursor: pointer;
}

.lt-cart__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: min(46vh, 420px);
    overflow: auto;
    margin: 0 -4px;
    padding: 0 4px;
}

.lt-cart__group {
    margin: 6px 2px 2px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ink-muted);
}

.lt-ci {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 7px 8px 7px 10px;
    border-radius: 12px;
    border: 1px solid var(--m-line);
    background: rgba(0, 0, 0, .22);
    animation: m-pane .2s var(--m-ease) both;
}

.lt-ci--special { border-color: rgba(251, 191, 36, .4); }

.lt-ci__num {
    font-family: var(--lt-num-font);
    font-size: 1.25rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .06em;
    color: var(--gold-light);
}

.lt-ci__meta {
    font-size: var(--text-xs);
    color: var(--ink-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-ci__meta strong { color: var(--ink-soft); font-weight: 600; }
.lt-ci__meta em { font-style: normal; color: var(--m-wait); }

.lt-ci__amt {
    width: 76px;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid var(--m-line-strong);
    background: rgba(0, 0, 0, .3);
    color: var(--ink);
    font: inherit;
    font-size: var(--text-sm);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: right;
    -moz-appearance: textfield;
    appearance: textfield;
}

.lt-ci__amt::-webkit-outer-spin-button,
.lt-ci__amt::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.lt-ci__amt:focus { outline: 0; border-color: var(--gold); }

.lt-ci__x {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.lt-ci__x:hover { background: var(--m-bad-bg); color: var(--m-bad); }

.lt-cart__sum {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--m-line-strong);
}

.lt-cart__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: var(--text-sm);
    color: var(--ink-soft);
}

.lt-cart__row strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.lt-cart__row--win strong { color: var(--m-ok); }

.lt-cart__submit { margin-top: 10px; }

.lt-cart__empty {
    padding: 28px 8px;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--ink-muted);
}

/* แถบสรุปติดขอบล่างบนมือถือ — อยู่เหนือแถบเมนูด่วน (x-button-actions สูงราว 70px) */
.lt-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 72px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(var(--color-header-rgb, 0, 26, 80), .92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--m-line-strong);
    animation: lt-up .25s var(--m-ease) both;
}

/* แขกไม่มีแถบเมนูด่วน แถบสรุปเลยชิดล่างได้เลย */
.lt-bar--guest { bottom: 0; }

@keyframes lt-up {
    from { transform: translateY(100%); }
    to { transform: none; }
}

@media (min-width: 900px) {
    .lt-bar { display: none; }
}

.lt-bar__info { font-size: var(--text-xs); color: var(--ink-muted); }

.lt-bar__info strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

/* ชีตโพยบนมือถือ */
.lt-sheet {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
}

.lt-sheet__body {
    width: 100%;
    max-width: 520px;
    max-height: 86vh;
    overflow: auto;
    padding: 12px 16px 24px;
    border-radius: 22px 22px 0 0;
    background: var(--color-primary, #01143d);
    border-top: 1px solid var(--m-line-strong);
    animation: lt-up .25s var(--m-ease) both;
}

.lt-sheet__grip {
    width: 42px;
    height: 4px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--m-line-strong);
}

/* กล่องยืนยันหลังส่งโพยสำเร็จ */
.lt-done {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
}

.lt-done__box {
    width: 100%;
    max-width: 380px;
    padding: 24px 20px;
    border-radius: var(--m-r-lg);
    background: var(--color-primary, #01143d);
    border: 1px solid rgba(var(--m-accent-rgb), .4);
    box-shadow: 0 0 48px rgba(var(--m-accent-rgb), .18), 0 24px 60px rgba(0, 0, 0, .5);
    text-align: center;
    animation: lt-pop .25s var(--m-ease);
}

.lt-done__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--m-ok-bg);
    color: var(--m-ok);
}

.lt-done__icon svg { width: 32px; height: 32px; }

.lt-done__box h2 {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.lt-done__box p {
    margin: 0 0 16px;
    font-size: var(--text-sm);
    color: var(--ink-soft);
}

.lt-done__code {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-family: var(--lt-num-font);
    font-size: var(--text-xs);
    letter-spacing: .06em;
    color: var(--ink-soft);
}

.lt-done__actions { display: flex; flex-direction: column; gap: 8px; }

/* กล่องยืนยันก่อนส่ง — สรุปเป็นรายประเภท ไม่ใช่ไล่ทุกเลข ให้กวาดตาแล้วกดได้ */
.lt-done__box--confirm { text-align: left; }
.lt-done__box--confirm h2 { text-align: center; }

.lt-confirm__list {
    margin: 14px 0 10px;
    padding: 4px 14px;
    border-radius: var(--m-r-md);
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--m-line);
}

.lt-confirm__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid var(--m-line);
    font-size: var(--text-sm);
    color: var(--ink-soft);
}

.lt-confirm__row:first-child { border-top: 0; }
.lt-confirm__row strong { font-variant-numeric: tabular-nums; color: var(--ink); }

.lt-confirm__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0 2px 6px;
    font-size: var(--text-sm);
    color: var(--ink-soft);
}

.lt-confirm__total strong {
    font-size: 1.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--gold-light);
}

.lt-confirm__note {
    margin: 0 0 14px;
    font-size: var(--text-xs);
    line-height: 1.5;
    color: var(--m-wait);
    text-align: center;
}

/* ── ตารางอัตราจ่าย + เลขอั้น (details) ───────────────────────── */

.lt-rates { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }

@media (max-width: 420px) { .lt-rates { grid-template-columns: 1fr; } }

.lt-rates div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--m-line);
    font-size: var(--text-sm);
    color: var(--ink-soft);
}

.lt-rates strong { color: var(--ink); font-variant-numeric: tabular-nums; }

.lt-restricted { display: flex; flex-wrap: wrap; gap: 6px; }

.lt-restricted span {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    background: var(--m-bad-bg);
    color: var(--m-bad);
}

.lt-restricted span.is-special { background: var(--m-wait-bg); color: var(--m-wait); }

/* ── โพยของฉัน / ผลรางวัล ─────────────────────────────────────── */

.lt-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 14px 36px;
    animation: m-in .28s var(--m-ease) both;
}

.lt-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.lt-filters .m-field { min-height: 44px; padding: 0 12px; flex: 1; min-width: 150px; }
.lt-filters .m-field input,
.lt-filters .m-field select { padding: 8px 0; font-size: var(--text-sm); font-weight: 500; }

.lt-filters select {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--ink);
    font: inherit;
}

.lt-filters select option { color: #000; }

/* โพยหนึ่งใบ */
.lt-tk {
    border: 1px solid var(--m-line);
    border-radius: 16px;
    background: var(--m-card-bg);
    overflow: hidden;
}

.lt-tk + .lt-tk { margin-top: 10px; }

.lt-tk__head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.lt-tk__head .m-row__icon { width: 40px; height: 40px; font-size: 1.25rem; }

/* หัวโพยเป็น <button> ข้างในต้องเป็น span — จัดบรรทัดเองเหมือนการ์ดหวย */
.lt-tk__head .m-row__main,
.lt-tk__head .m-row__title,
.lt-tk__head .m-row__sub,
.lt-tk__head .m-row__end,
.lt-tk__head .m-row__amt { display: block; }

.lt-tk__head .m-row__main { flex: 1; min-width: 0; }
.lt-tk__head .m-row__end { flex-shrink: 0; text-align: right; }
.lt-tk__head .m-badge { display: inline-flex; margin-top: 3px; }

.lt-tk__body {
    padding: 0 14px 12px;
    border-top: 1px solid var(--m-line);
    animation: m-pane .2s var(--m-ease) both;
}

.lt-tk__result {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 10px 0;
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

.lt-tk__result strong {
    display: block;
    font-family: var(--lt-num-font);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--ink);
}

.lt-items { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 8px; }

.lt-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--m-line);
    background: rgba(0, 0, 0, .22);
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

.lt-item b {
    font-family: var(--lt-num-font);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--ink);
}

.lt-item--won { border-color: var(--m-ok-line); background: var(--m-ok-bg); color: var(--m-ok); }
.lt-item--won b { color: var(--m-ok); }
.lt-item--void { opacity: .5; text-decoration: line-through; }

.lt-tk__pager {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

/* ผลรางวัลหนึ่งงวด */
.lt-rs {
    padding: 14px 16px;
    border: 1px solid var(--m-line);
    border-radius: 16px;
    background: var(--m-card-bg);
}

.lt-rs + .lt-rs { margin-top: 10px; }

.lt-rs__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lt-rs__head .lt-mk__icon { width: 36px; height: 36px; font-size: 1.25rem; border-radius: 10px; }

.lt-rs__name {
    flex: 1;
    min-width: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink);
}

.lt-rs__name small {
    display: block;
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--ink-muted);
}

.lt-rs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 8px;
}

.lt-rs__cell {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid var(--m-line);
}

.lt-rs__cell span {
    display: block;
    font-size: var(--text-xs);
    color: var(--ink-muted);
}

/* ตัวเลขผลต้องชนะกฎ span ด้านบน (specificity เท่ากันแต่มาทีหลัง) */
.lt-rs__cell .lt-num { color: var(--gold-light); }
.lt-rs__cell .lt-num--lg { font-size: 1.5rem; }
.lt-rs__cell .lt-num--xl { font-size: 2.25rem; margin-top: 2px; }

.lt-rs__cell--main {
    grid-column: 1 / -1;
    background: radial-gradient(120% 80% at 50% 0%, rgba(var(--m-accent-rgb), .18), transparent 60%), rgba(0, 0, 0, .22);
    border-color: rgba(var(--m-accent-rgb), .35);
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .lt-mk, .lt-slot--on, .lt-ci, .lt-bar, .lt-sheet__body, .lt-done__box, .lt-tk__body { animation: none; }
    .lt-count::before, .lt-count--urgent, .lt-head__timer--urgent strong { animation: none; }
    .lt-mk:hover, .lt-gt:hover, .lt-mc:hover { transform: translateY(-2px); }
    .lt-gt, .lt-mc, .lt-strip__label i, .lt-mc__status.is-on::before { animation: none; }
}
