      :root {
        --c-primary: #4f46e5;
        --c-primary-d: #3730a3;
        --c-primary-l: #eef2ff;
        --c-primary-rgb: 79, 70, 229;

        --c-accent: #f59e0b;
        --c-accent-2: #fb7185;

        --c-bg: #091120;
        --c-bg-2: #0f172a;
        --c-bg-3: #131d32;

        --c-surface: rgba(255, 255, 255, 0.08);
        --c-surface-2: rgba(255, 255, 255, 0.05);
        --c-surface-solid: #ffffff;

        --c-border: rgba(255, 255, 255, 0.1);
        --c-border-d: rgba(255, 255, 255, 0.18);

        --c-text: #f8fafc;
        --c-text-2: #dbe4f0;
        --c-muted: #94a3b8;
        --c-muted-lt: #64748b;

        --c-success: #22c55e;
        --c-danger: #ef4444;
        --c-warning: #f59e0b;

        --r-sm: 8px;
        --r-md: 12px;
        --r-lg: 18px;
        --r-xl: 24px;

        --sh-sm: 0 6px 20px rgba(0, 0, 0, 0.18);
        --sh-md: 0 14px 40px rgba(0, 0, 0, 0.24);
        --sh-lg: 0 24px 70px rgba(0, 0, 0, 0.3);
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      html,
      body {
        min-height: 100%;
      }

      body {
        font-family: "Kanit", sans-serif;
        background:
          radial-gradient(circle at top left, rgba(79, 70, 229, 0.16), transparent 24%),
          radial-gradient(circle at top right, rgba(245, 158, 11, 0.09), transparent 20%),
          radial-gradient(circle at bottom left, rgba(251, 113, 133, 0.08), transparent 20%),
          linear-gradient(180deg, #07101d 0%, #0b1324 45%, #08101d 100%);
        color: var(--c-text);
        font-size: 15px;
        line-height: 1.6;
      }

      a {
        text-decoration: none;
      }

      .page {
        max-width: 1240px;
        margin: 0 auto;
        padding: 1.5rem 1.25rem 5rem;
      }

      /* HERO */
      .hero {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--c-border);
        border-radius: 30px;
        background:
          url("../images/banner-cover2.jpg")
            center/cover no-repeat;
        box-shadow: var(--sh-lg);
        margin-bottom: 1.5rem;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
          radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.16), transparent 18%);
        pointer-events: none;
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        padding: 2.2rem 2rem 1.9rem;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
        gap: 1.25rem;
        align-items: end;
      }

      .page-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c7d2fe;
        padding: 0.4rem 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        margin-bottom: 0.9rem;
      }

      .page-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 900;
        line-height: 1.06;
        margin-bottom: 0.55rem;
        color: #fff;
        letter-spacing: -0.02em;
      }

      .page-title .accent {
        background: linear-gradient(90deg, #fde68a, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .page-sub {
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.75);
        max-width: 720px;
        margin-bottom: 1.15rem;
      }

      .hero-actions {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }

      .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.75rem 1.1rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        border: 1px solid transparent;
      }

      .hero-btn.primary {
        color: #111827;
        background: linear-gradient(135deg, #fde68a, #f59e0b);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
      }

      .hero-btn.primary:hover {
        transform: translateY(-2px);
        color: #111827;
      }

      .hero-btn.secondary {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
      }

      .hero-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
      }

      .hero-panel {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        padding: 1rem;
        box-shadow: var(--sh-sm);
      }

      .hero-panel-head {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        color: #cbd5e1;
        margin-bottom: 0.8rem;
      }

      .hero-mini-list {
        display: grid;
        gap: 0.7rem;
      }

      .hero-mini {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.75rem 0.85rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      .hero-mini-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
      }

      .hero-mini-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.34), rgba(99, 102, 241, 0.12));
        color: #fff;
        flex-shrink: 0;
      }

      .hero-mini-title {
        font-size: 0.88rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
      }

      .hero-mini-sub {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.6);
      }

      .hero-mini-val {
        font-family: "IBM Plex Mono", monospace;
        font-weight: 700;
        color: #fde68a;
        white-space: nowrap;
      }

      /* STAT STRIP */
      .stat-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.9rem;
        margin-bottom: 1.5rem;
      }

      .stat-card {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--c-border);
        border-radius: var(--r-xl);
        padding: 1rem 1.1rem;
        box-shadow: var(--sh-sm);
        display: flex;
        align-items: center;
        gap: 0.85rem;
        backdrop-filter: blur(10px);
      }

      .stat-card::before {
        content: "";
        position: absolute;
        inset: auto auto 0 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.32), rgba(255,255,255,0));
        opacity: 0.6;
      }

      .stat-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        border: 1px solid rgba(255,255,255,0.12);
      }

      .stat-icon.blue {
        background: rgba(79, 70, 229, 0.18);
        color: #c7d2fe;
      }

      .stat-icon.green {
        background: rgba(34, 197, 94, 0.14);
        color: #bbf7d0;
      }

      .stat-icon.yellow {
        background: rgba(245, 158, 11, 0.14);
        color: #fde68a;
      }

      .stat-icon.gray {
        background: rgba(148, 163, 184, 0.12);
        color: #e2e8f0;
      }

      .stat-val {
        font-size: 1.35rem;
        font-weight: 900;
        color: #fff;
        line-height: 1;
        font-family: "IBM Plex Mono", monospace;
      }

      .stat-lbl {
        font-size: 0.74rem;
        color: var(--c-muted);
        margin-top: 0.18rem;
      }

      /* TOOLBAR PANEL */
      .panel {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid var(--c-border);
        border-radius: 24px;
        backdrop-filter: blur(10px);
        box-shadow: var(--sh-sm);
        padding: 1rem;
        margin-bottom: 1rem;
      }

      .toolbar {
        display: flex;
        gap: 0.65rem;
        align-items: center;
        flex-wrap: wrap;
      }

      .search-wrap {
        position: relative;
        flex: 1;
        min-width: 240px;
      }

      .search-wrap i {
        position: absolute;
        left: 0.95rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--c-muted);
        font-size: 0.92rem;
        pointer-events: none;
      }

      .search-wrap input {
        width: 100%;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        padding: 0.74rem 1rem 0.74rem 2.7rem;
        font-family: "Kanit", sans-serif;
        font-size: 0.9rem;
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      }

      .search-wrap input:focus {
        border-color: rgba(var(--c-primary-rgb), 0.7);
        box-shadow: 0 0 0 4px rgba(var(--c-primary-rgb), 0.13);
        background: rgba(255, 255, 255, 0.1);
      }

      .search-wrap input::placeholder {
        color: #94a3b8;
      }

      .tb-select {
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        padding: 0.74rem 1rem;
        font-family: "Kanit", sans-serif;
        font-size: 0.88rem;
        color: #fff;
        background: rgba(255,255,255,0.06);
        outline: none;
        cursor: pointer;
        min-width: 150px;
      }

      .tb-select option {
        color: #111827;
      }

      .tb-select:focus {
        border-color: rgba(var(--c-primary-rgb), 0.7);
      }

      .view-toggle {
        display: flex;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255,255,255,0.06);
      }

      .view-btn {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: none;
        cursor: pointer;
        color: #cbd5e1;
        font-size: 0.95rem;
        transition: all 0.15s;
      }

      .view-btn.active {
        background: linear-gradient(135deg, #4f46e5, #6366f1);
        color: #fff;
      }

      /* FILTER PILLS */
      .filter-pills {
        display: flex;
        gap: 0.45rem;
        flex-wrap: wrap;
        margin-top: 0.9rem;
        align-items: center;
      }

      .filter-label {
        font-size: 0.76rem;
        font-weight: 700;
        color: #cbd5e1;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-right: 0.25rem;
      }

      .pill {
        padding: 0.42rem 0.92rem;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.06);
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        color: #cbd5e1;
        transition: all 0.18s;
        font-family: "Kanit", sans-serif;
      }

      .pill:hover {
        border-color: rgba(255,255,255,0.18);
        color: #fff;
      }

      .pill.active {
        background: linear-gradient(135deg, #4f46e5, #6366f1);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 10px 20px rgba(79, 70, 229, 0.28);
      }

      .pill.p-ongoing.active {
        background: linear-gradient(135deg, #16a34a, #22c55e);
        box-shadow: 0 10px 20px rgba(34, 197, 94, 0.24);
      }

      .pill.p-ended.active {
        background: linear-gradient(135deg, #475569, #64748b);
        box-shadow: 0 10px 20px rgba(100, 116, 139, 0.24);
      }

      /* RESULT META */
      .result-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .result-count {
        font-size: 0.84rem;
        color: #cbd5e1;
      }

      .result-count strong {
        color: #fff;
      }

      /* GRID */
      .t-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
        gap: 1.1rem;
      }

      /* CARD */
      .t-card {
        position: relative;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--c-border);
        border-radius: 26px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: var(--sh-sm);
        transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
        color: inherit;
        backdrop-filter: blur(10px);
      }

      .t-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-md);
        border-color: rgba(255,255,255,0.18);
      }

      .t-card::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        pointer-events: none;
      }

      .tc-banner {
        position: relative;
        height: 190px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .tc-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
      }

      .t-card:hover .tc-banner img {
        transform: scale(1.06);
      }

      .tc-banner-fb {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.88rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.12);
        letter-spacing: 5px;
      }

      .tc-banner-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(7, 16, 29, 0.08), rgba(7, 16, 29, 0.2) 40%, rgba(7, 16, 29, 0.88) 100%);
      }

      .tc-banner-tl {
        position: absolute;
        top: 0.8rem;
        left: 0.8rem;
      }

      .tc-banner-tr {
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
      }

      .game-tag {
        background: rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #fff;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 0.34rem 0.68rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
      }

      .tc-prize {
        position: absolute;
        bottom: 0.85rem;
        right: 0.95rem;
        text-align: right;
      }

      .tc-prize-lbl {
        font-size: 0.58rem;
        color: rgba(255, 255, 255, 0.62);
        letter-spacing: 1.7px;
        text-transform: uppercase;
      }

      .tc-prize-val {
        font-size: 1.08rem;
        font-weight: 900;
        color: #fde68a;
        line-height: 1.1;
        font-family: "IBM Plex Mono", monospace;
        text-shadow: 0 3px 14px rgba(0,0,0,0.25);
      }

      .tc-prize-val small {
        font-size: 0.62em;
        font-weight: 600;
        color: rgba(255,255,255,0.74);
      }

      /* STATUS BADGE */
      .sbadge {
        font-size: 0.68rem;
        font-weight: 700;
        padding: 0.28rem 0.65rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        white-space: nowrap;
        backdrop-filter: blur(8px);
      }

      .sbadge::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
      }

      .sbadge.ongoing {
        background: rgba(34, 197, 94, 0.16);
        color: #bbf7d0;
        border: 1px solid rgba(34, 197, 94, 0.28);
      }

      .sbadge.upcoming {
        background: rgba(79, 70, 229, 0.16);
        color: #c7d2fe;
        border: 1px solid rgba(79, 70, 229, 0.28);
      }

      .sbadge.ended {
        background: rgba(148, 163, 184, 0.14);
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.22);
      }

      .sbadge.ongoing::before {
        animation: blink 1.2s ease infinite;
      }

      @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.35; }
      }

      /* CARD BODY */
      .tc-body {
        padding: 1rem 1.05rem 0.7rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.48rem;
      }

      .tc-title {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.35;
        min-height: 2.7em;
      }

      .tc-meta {
        display: flex;
        flex-direction: column;
        gap: 0.28rem;
      }

      .tc-mi {
        font-size: 0.79rem;
        color: #cbd5e1;
        display: flex;
        align-items: center;
        gap: 0.46rem;
      }

      .tc-mi i {
        font-size: 0.82rem;
        color: #94a3b8;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
      }

      .tc-tags {
        display: flex;
        gap: 0.35rem;
        flex-wrap: wrap;
        margin-top: 0.18rem;
      }

      .tc-tag {
        font-size: 0.66rem;
        font-weight: 600;
        padding: 0.16rem 0.52rem;
        border-radius: 999px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        color: #dbe4f0;
      }

      /* CARD FOOTER */
      .tc-footer {
        padding: 0.78rem 1rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.04);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
      }

      .tc-reg {
        flex: 1;
      }

      .tc-reg-label {
        display: flex;
        justify-content: space-between;
        font-size: 0.71rem;
        color: #cbd5e1;
        margin-bottom: 0.32rem;
      }

      .tc-reg-label span:last-child {
        font-weight: 700;
        color: #fff;
      }

      .prog-wrap {
        height: 6px;
        border-radius: 999px;
        background: rgba(255,255,255,0.1);
        overflow: hidden;
      }

      .prog-fill {
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
      }

      .prog-fill.full {
        background: linear-gradient(90deg, #16a34a, #22c55e);
      }

      .btn-detail {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.48rem 0.92rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #4f46e5, #6366f1);
        color: #fff;
        font-family: "Kanit", sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        transition: transform 0.18s, opacity 0.18s;
        flex-shrink: 0;
        box-shadow: 0 10px 22px rgba(79, 70, 229, 0.24);
      }

      .t-card:hover .btn-detail {
        transform: translateX(2px);
      }

      .btn-detail.ended-btn {
        background: rgba(255,255,255,0.08);
        color: #e2e8f0;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: none;
      }

      /* LIST VIEW */
      .t-list-view {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }

      .t-lrow {
        display: flex;
        align-items: stretch;
        background: rgba(255,255,255,0.08);
        border: 1px solid var(--c-border);
        border-radius: 22px;
        overflow: hidden;
        box-shadow: var(--sh-sm);
        color: inherit;
        transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
        backdrop-filter: blur(8px);
      }

      .t-lrow:hover {
        transform: translateX(4px);
        box-shadow: var(--sh-md);
        border-color: rgba(255,255,255,0.18);
      }

      .lrow-accent {
        width: 5px;
        flex-shrink: 0;
      }

      .lrow-thumb {
        width: 118px;
        flex-shrink: 0;
        overflow: hidden;
        background: #1e293b;
      }

      .lrow-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .lrow-thumb-fb {
        width: 100%;
        height: 100%;
        min-height: 92px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.58rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.12);
        letter-spacing: 3px;
      }

      .lrow-body {
        flex: 1;
        padding: 0.88rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.25rem;
        min-width: 0;
      }

      .lrow-title {
        font-size: 0.96rem;
        font-weight: 800;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .lrow-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.32rem 0.95rem;
      }

      .lrow-mi {
        font-size: 0.76rem;
        color: #cbd5e1;
        display: flex;
        align-items: center;
        gap: 0.32rem;
      }

      .lrow-tags {
        display: flex;
        gap: 0.28rem;
        flex-wrap: wrap;
        margin-top: 0.16rem;
      }

      .lrow-tag {
        font-size: 0.63rem;
        font-weight: 600;
        padding: 0.12rem 0.46rem;
        border-radius: 999px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        color: #dbe4f0;
      }

      .lrow-right {
        padding: 0.85rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 0.44rem;
        flex-shrink: 0;
        min-width: 150px;
      }

      .lrow-prize {
        font-size: 1rem;
        font-weight: 900;
        color: #fde68a;
        line-height: 1;
        font-family: "IBM Plex Mono", monospace;
      }

      .lrow-prize small {
        font-size: 0.58em;
        font-weight: 600;
        color: #cbd5e1;
      }

      .lrow-reg {
        width: 100px;
      }

      .lrow-reg-lbl {
        display: flex;
        justify-content: space-between;
        font-size: 0.64rem;
        color: #cbd5e1;
        margin-bottom: 0.22rem;
      }

      .lrow-reg-bar {
        height: 5px;
        border-radius: 999px;
        background: rgba(255,255,255,0.1);
        overflow: hidden;
      }

      .lrow-reg-fill {
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
      }

      .lrow-reg-fill.full {
        background: linear-gradient(90deg, #16a34a, #22c55e);
      }

      /* SKELETON */
      @keyframes shimmer {
        0% { background-position: -600px 0; }
        100% { background-position: 600px 0; }
      }

      .sk {
        background: linear-gradient(
          90deg,
          rgba(255,255,255,0.06) 25%,
          rgba(255,255,255,0.12) 50%,
          rgba(255,255,255,0.06) 75%
        );
        background-size: 600px 100%;
        animation: shimmer 1.4s infinite;
        border-radius: var(--r-sm);
      }

      .sk-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--c-border);
        border-radius: 26px;
        overflow: hidden;
        box-shadow: var(--sh-sm);
      }

      .sk-banner {
        height: 190px;
      }

      .sk-body {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
      }

      .sk-line {
        height: 13px;
      }

      .sk-foot {
        height: 54px;
        border-top: 1px solid rgba(255,255,255,0.08);
      }

      /* EMPTY */
      .empty-state {
        text-align: center;
        padding: 5rem 1rem;
        color: #cbd5e1;
        grid-column: 1/-1;
        background: rgba(255,255,255,0.05);
        border: 1px dashed rgba(255,255,255,0.12);
        border-radius: 24px;
      }

      .empty-state i {
        font-size: 2.6rem;
        color: #64748b;
        display: block;
        margin-bottom: 0.75rem;
      }

      .empty-state h3 {
        font-size: 1.02rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.4rem;
      }

      /* PAGINATION */
      .pg-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.34rem;
        margin-top: 2rem;
        flex-wrap: wrap;
      }

      .pg-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 0.7rem;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.06);
        color: #cbd5e1;
        font-size: 0.84rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s;
        font-family: "Kanit", sans-serif;
      }

      .pg-btn:hover:not([disabled]) {
        border-color: rgba(var(--c-primary-rgb), 0.6);
        color: #fff;
      }

      .pg-btn.active {
        background: linear-gradient(135deg, #4f46e5, #6366f1);
        border-color: transparent;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 10px 24px rgba(79,70,229,.24);
      }

      .pg-btn[disabled] {
        opacity: 0.4;
        cursor: not-allowed;
      }

      .pg-dots {
        color: #64748b;
        padding: 0 0.25rem;
        font-size: 0.85rem;
      }

      /* FOOTER */
      .site-footer {
        text-align: center;
        padding: 2.4rem 1rem 1.5rem;
        color: #94a3b8;
        font-size: 0.8rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 2.4rem;
      }

      .site-footer a {
        color: #cbd5e1;
        text-decoration: underline;
      }

      /* RESPONSIVE */
      @media (max-width: 1100px) {
        .hero-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .hero-inner {
          padding: 1.4rem 1.2rem 1.2rem;
        }

        .stat-strip {
          grid-template-columns: repeat(2, 1fr);
        }

        .t-grid {
          grid-template-columns: 1fr;
        }

        .lrow-right {
          display: none;
        }

        .lrow-thumb {
          width: 78px;
        }

        .tc-banner {
          height: 176px;
        }
      }

      @media (max-width: 480px) {
        .page {
          padding-inline: 0.9rem;
        }

        .toolbar {
          flex-direction: column;
          align-items: stretch;
        }

        .hero-actions {
          flex-direction: column;
          align-items: stretch;
        }

        .hero-btn {
          justify-content: center;
        }
      }

      /* ANIM */
      .t-card,
      .t-lrow {
        animation: fadeUp 0.3s ease both;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(12px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }