/* ===== Walkthroughs Section — Page-Specific Styles ===== */
/* Base variables, header, footer, buttons, animations come from home/css/index.css */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility: skip links */
.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1200;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(11,11,16,.92);
    color: #fff;
    border: 1px solid rgba(138,109,233,.3);
    transform: translateY(-140%);
    transition: transform .2s ease;
}
.skip-link:focus {
    transform: translateY(0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

/* ===== Page Header (Hero) ===== */
.wt-page-header {
    position: relative; z-index: 1;
    padding: 132px 24px 68px;
    text-align: center;
    overflow: hidden;
}
.wt-page-header::before {
    content: '';
    position: absolute;
    inset: -140px -120px auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(138,109,233,.22) 0%, rgba(138,109,233,0) 70%);
    pointer-events: none;
}
.wt-page-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(11,11,16,0), var(--bg-dark));
    pointer-events: none;
}
.wt-page-header-inner {
    max-width: 1020px;
    margin: 0 auto;
    animation: fadeUp .6s cubic-bezier(.16,1,.3,1) both;
    position: relative;
}
.wt-page-hero-card {
    position: relative;
    padding: 34px 36px 30px;
    border-radius: 24px;
    border: 1px solid rgba(138,109,233,.24);
    background:
        linear-gradient(160deg, rgba(29,29,46,.82), rgba(16,16,26,.92)),
        radial-gradient(circle at 82% 14%, rgba(77,159,138,.18), rgba(77,159,138,0) 42%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 48px rgba(0,0,0,.35);
    overflow: hidden;
}
.wt-page-hero-card::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.1), rgba(255,255,255,0) 72%);
    pointer-events: none;
}
.wt-page-hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}
.wt-page-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(138,109,233,.25), rgba(70,132,189,.2));
    border: 1px solid rgba(138,109,233,.4);
    font-size: 1.7rem;
    color: #e7dcff;
    box-shadow: 0 8px 26px rgba(89,65,167,.35);
}
.wt-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13,13,22,.72);
    border: 1px solid rgba(138,109,233,.24);
    color: #d9d9ec;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.wt-page-kicker i {
    color: var(--secondary-light);
    font-size: .8rem;
}
.wt-page-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.65rem;
    line-height: 1.48;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff 22%, #e5ddff 56%, #9ee5d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wt-page-desc {
    color: var(--text-muted);
    font-size: 1.03rem;
    line-height: 1.72;
    max-width: 690px;
    margin: 0 auto;
}
.wt-quick-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
}
.wt-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(13,13,21,.72);
    color: var(--text-muted);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}
.wt-quick-link:hover {
    color: var(--text);
    border-color: rgba(138,109,233,.5);
    background: rgba(138,109,233,.18);
    transform: translateY(-2px);
}
.wt-quick-link--primary {
    background: linear-gradient(135deg, rgba(138,109,233,.92), rgba(70,132,189,.88));
    border-color: rgba(138,109,233,.72);
    color: #fff;
    box-shadow: 0 10px 24px rgba(89,65,167,.34);
}
.wt-quick-link--primary:hover {
    background: linear-gradient(135deg, rgba(145,118,238,.98), rgba(74,139,199,.94));
    color: #fff;
    border-color: rgba(170,145,246,.92);
}

/* ===== Breadcrumbs ===== */
.wt-breadcrumbs {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 20px;
    font-size: .88rem;
}
.wt-breadcrumbs a {
    color: var(--text-muted); transition: color .2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.wt-breadcrumbs a:hover { color: var(--primary-light); }
.wt-breadcrumbs .sep { color: rgba(138,138,158,.3); }
.wt-breadcrumbs .current { color: var(--text); font-weight: 500; }

/* ===== Stats Grid ===== */
.wt-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    animation: fadeUp .6s .15s cubic-bezier(.16,1,.3,1) both;
}
.wt-stat {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 16px 14px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(26,26,40,.7), rgba(19,19,28,.8));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138,109,233,.18);
    min-width: 0; text-align: center;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.wt-stat:hover {
    border-color: rgba(138,109,233,.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
.wt-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(138,109,233,.22), rgba(77,159,138,.18));
    color: #e7dcff;
    font-size: .84rem;
    border: 1px solid rgba(138,109,233,.28);
}
.wt-stat-num {
    font-size: 1.38rem; font-weight: 700; display: block;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wt-stat-label {
    font-size: .72rem; color: var(--text-muted); margin-top: 4px;
    letter-spacing: .5px; text-transform: uppercase; display: block;
}

/* ===== Sections ===== */
.wt-section {
    position: relative; z-index: 1; padding: 60px 24px;
}
.wt-section-inner { max-width: 1200px; margin: 0 auto; }

.wt-section-title {
    font-size: 1.4rem; font-weight: 700;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 32px;
}
.wt-section-title i { color: var(--primary-light); }

/* ===== Continue Block (walkthroughs index) ===== */
.wt-continue-section {
    padding-top: 34px;
}
.wt-continue-shell {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(138,109,233,.26);
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(168deg, rgba(23,23,36,.9), rgba(14,14,22,.96)),
        radial-gradient(circle at 84% 12%, rgba(77,159,138,.2), rgba(77,159,138,0) 44%);
    box-shadow: 0 24px 48px rgba(0,0,0,.34);
}
.wt-continue-shell::before {
    content: '';
    position: absolute;
    top: -132px;
    left: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,109,233,.2), rgba(138,109,233,0) 72%);
    pointer-events: none;
}
.wt-continue-shell::after {
    content: '';
    position: absolute;
    inset: auto 24px 0 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.3), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-continue-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.wt-continue-headline {
    max-width: 760px;
}
.wt-continue-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(11,11,16,.55);
    border: 1px solid rgba(138,109,233,.24);
    color: #d9d9ec;
    text-transform: uppercase;
    letter-spacing: .45px;
    font-size: .67rem;
    font-weight: 700;
}
.wt-continue-kicker i {
    color: var(--secondary-light);
}
.wt-continue-title {
    margin-top: 14px;
    margin-bottom: 10px;
}
.wt-continue-subtitle {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.68;
    max-width: 640px;
}
.wt-continue-tools {
    display: grid;
    justify-items: end;
    gap: 10px;
    min-width: 180px;
}
.wt-continue-counter {
    min-width: 132px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.48);
}
.wt-continue-counter-label {
    display: block;
    color: var(--text-muted);
    font-size: .69rem;
    text-transform: uppercase;
    letter-spacing: .48px;
}
.wt-continue-counter-value {
    display: block;
    margin-top: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}
.wt-continue-counter-meta {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: .71rem;
}
.wt-continue-actions {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.wt-continue-clear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.5);
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.wt-continue-clear:hover {
    transform: translateY(-2px);
    color: #ffd6d6;
    border-color: rgba(244,67,54,.45);
    background: rgba(244,67,54,.14);
}
.wt-continue-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.wt-continue-card {
    min-width: 0;
}
.wt-continue-card-link {
    display: grid;
    gap: 10px;
    height: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.16);
    background: linear-gradient(155deg, rgba(26,26,40,.74), rgba(18,18,28,.9));
    color: inherit;
    text-decoration: none;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.wt-continue-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(138,109,233,.42);
    background: linear-gradient(155deg, rgba(30,30,46,.82), rgba(20,20,31,.94));
    box-shadow: 0 14px 28px rgba(0,0,0,.26);
}
.wt-continue-card-link.is-disabled {
    opacity: .7;
    cursor: not-allowed;
}
.wt-continue-card-link.is-disabled:hover {
    transform: none;
    border-color: rgba(138,109,233,.16);
    box-shadow: none;
}
.wt-continue-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wt-continue-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(138,109,233,.14);
    color: #dfd4ff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
}
.wt-continue-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: .74rem;
}
.wt-continue-time i {
    color: var(--primary-light);
    font-size: .72rem;
}
.wt-continue-card-title {
    margin: 0;
    font-size: .92rem;
    line-height: 1.48;
    font-weight: 600;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-continue-card-meta {
    margin: 0;
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.56;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-continue-card-action {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 9px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(138,109,233,.12);
    color: var(--primary-light);
    font-size: .78rem;
    font-weight: 600;
}
.wt-continue-card-link.is-disabled .wt-continue-card-action {
    color: var(--text-muted);
    border-color: rgba(138,109,233,.12);
    background: rgba(26,26,40,.45);
}

/* ===== Recommended Block (walkthroughs index) ===== */
.wt-recommend-section {
    padding-top: 46px;
}
.wt-rec-shell {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(138,109,233,.28);
    padding: 30px;
    overflow: hidden;
    background:
        linear-gradient(165deg, rgba(23,23,35,.9), rgba(14,14,22,.96)),
        radial-gradient(circle at 84% 8%, rgba(77,159,138,.24), rgba(77,159,138,0) 48%);
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
    animation: wtRecShellIn .82s cubic-bezier(.22,1,.36,1) both;
}
.wt-rec-shell::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,109,233,.28), rgba(138,109,233,0) 70%);
    pointer-events: none;
    opacity: .82;
    transform: scale(.9);
    animation: wtRecGlowIn 1.05s cubic-bezier(.22,1,.36,1) both .08s;
}
.wt-rec-shell::after {
    content: '';
    position: absolute;
    inset: auto 18px 0 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.38), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-rec-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    animation: wtRecHeaderIn .76s cubic-bezier(.22,1,.36,1) both .12s;
}
.wt-rec-headline {
    max-width: 730px;
}
.wt-rec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.35);
    background: rgba(11,11,16,.5);
    color: #e7ddff;
    font-size: .72rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-rec-kicker i {
    color: var(--secondary-light);
}
.wt-rec-title {
    margin: 12px 0 10px;
    font-size: 1.65rem;
    line-height: 1.28;
}
.wt-rec-subtitle {
    max-width: 680px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .94rem;
}
.wt-rec-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 260px;
}
.wt-rec-overview-item {
    display: grid;
    gap: 2px;
    align-content: center;
    text-align: right;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.45);
    padding: 10px 12px;
    transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .3s ease, background-color .3s ease;
}
.wt-rec-overview-item:hover {
    transform: translateY(-2px);
    border-color: rgba(138,109,233,.36);
    background: rgba(18,18,28,.58);
}
.wt-rec-overview-label {
    font-size: .72rem;
    color: var(--text-muted);
}
.wt-rec-overview-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.wt-recommend-section .wt-featured-grid {
    position: relative;
    z-index: 1;
    gap: 16px;
}
.wt-recommend-section .wt-rec-card {
    border-radius: 18px;
    border-color: rgba(138,109,233,.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    animation: cardIn .78s cubic-bezier(.22,1,.36,1) both;
    background:
        linear-gradient(165deg, rgba(24,24,37,.92), rgba(16,16,25,.96)),
        radial-gradient(circle at 90% 6%, rgba(138,109,233,.2), rgba(138,109,233,0) 50%);
    transition:
        transform .48s cubic-bezier(.22,1,.36,1),
        box-shadow .48s cubic-bezier(.22,1,.36,1),
        border-color .36s ease;
    will-change: transform;
}
.wt-recommend-section .wt-rec-card:nth-child(1) { animation-delay: .08s; }
.wt-recommend-section .wt-rec-card:nth-child(2) { animation-delay: .14s; }
.wt-recommend-section .wt-rec-card:nth-child(3) { animation-delay: .2s; }
.wt-recommend-section .wt-rec-card:nth-child(4) { animation-delay: .26s; }
.wt-recommend-section .wt-rec-card:nth-child(5) { animation-delay: .32s; }
.wt-recommend-section .wt-rec-card:nth-child(6) { animation-delay: .38s; }
.wt-recommend-section .wt-rec-card .wt-card-thumb img {
    transition: transform .62s cubic-bezier(.22,1,.36,1), filter .52s ease;
}
.wt-recommend-section .wt-rec-card .wt-thumb-overlay {
    transition: opacity .42s cubic-bezier(.22,1,.36,1);
}
.wt-recommend-section .wt-rec-card .wt-thumb-play {
    transform: scale(.84);
    transition: transform .42s cubic-bezier(.22,1,.36,1), box-shadow .34s ease;
}
.wt-recommend-section .wt-rec-card:hover {
    border-color: rgba(138,109,233,.54);
    box-shadow: 0 20px 38px rgba(0,0,0,.4);
    transform: translateY(-6px);
}
.wt-recommend-section .wt-rec-card:hover .wt-card-thumb img {
    transform: scale(1.035);
}
.wt-recommend-section .wt-rec-card:hover .wt-thumb-play {
    transform: scale(1);
}
.wt-recommend-section .wt-card-thumb {
    padding-bottom: 58%;
}
.wt-rec-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.5);
    background: rgba(11,11,16,.76);
    color: #f2ebff;
    font-size: .66rem;
    letter-spacing: .4px;
    font-weight: 700;
    padding: 4px 9px;
    transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .25s ease;
}
.wt-recommend-section .wt-rec-card:hover .wt-rec-rank {
    transform: translateY(-1px);
    border-color: rgba(166,138,255,.72);
}
.wt-recommend-section .wt-status {
    top: 12px;
    left: 12px;
    font-size: .68rem;
}
.wt-recommend-section .wt-card-body {
    padding: 14px 14px 16px;
}
.wt-recommend-section .wt-card-title {
    font-size: .9rem;
    margin-bottom: 5px;
}
.wt-recommend-section .wt-card-game {
    font-size: .8rem;
    margin-bottom: 6px;
}
.wt-recommend-section .wt-card-info {
    margin-bottom: 10px;
}
.wt-recommend-section .wt-card-meta {
    margin-bottom: 12px;
}
.wt-rec-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
    font-size: .76rem;
    color: var(--text-muted);
}
.wt-rec-progress b {
    color: #d6fff2;
    font-size: .8rem;
}
.wt-rec-progress-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    margin-bottom: 12px;
}
.wt-rec-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #4d9f8a, #8a6de9);
    transition: width .95s cubic-bezier(.22,1,.36,1);
}
.wt-recommend-section .wt-card-link {
    width: 100%;
    border-radius: 10px;
    font-size: .8rem;
    padding: 8px 12px;
    transition: transform .34s cubic-bezier(.22,1,.36,1), box-shadow .34s ease, background .3s ease;
}
.wt-recommend-section .wt-card-link:hover {
    transform: translateY(-1px);
}

@keyframes wtRecShellIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(.986);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wtRecHeaderIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wtRecGlowIn {
    0% {
        opacity: 0;
        transform: scale(.72);
    }
    100% {
        opacity: .82;
        transform: scale(.9);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wt-rec-shell,
    .wt-rec-shell::before,
    .wt-rec-header,
    .wt-recommend-section .wt-rec-card {
        animation: none !important;
    }
    .wt-rec-overview-item,
    .wt-recommend-section .wt-rec-card,
    .wt-recommend-section .wt-rec-card .wt-card-thumb img,
    .wt-recommend-section .wt-rec-card .wt-thumb-overlay,
    .wt-recommend-section .wt-rec-card .wt-thumb-play,
    .wt-rec-rank,
    .wt-rec-progress-fill,
    .wt-recommend-section .wt-card-link {
        transition: none !important;
    }
}

/* ===== Featured Cards ===== */
.wt-featured-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.wt-featured-card {
    display: block; text-decoration: none; color: inherit; cursor: pointer;
    background: linear-gradient(160deg, rgba(26,26,40,.8), rgba(19,19,28,.9));
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; position: relative;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.275), box-shadow .4s, border-color .3s;
    animation: cardIn .6s cubic-bezier(.16,1,.3,1) both;
}
.wt-featured-card:nth-child(1) { animation-delay: .05s; }
.wt-featured-card:nth-child(2) { animation-delay: .1s; }
.wt-featured-card:nth-child(3) { animation-delay: .15s; }
.wt-featured-card:hover {
    transform: translateY(-8px); border-color: rgba(138,109,233,.5);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* ===== Walkthrough Cards (Grid) ===== */
.wt-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.wt-card {
    display: block; text-decoration: none; color: inherit; cursor: pointer;
    background: linear-gradient(160deg, rgba(26,26,40,.8), rgba(19,19,28,.9));
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; position: relative;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.275), box-shadow .4s, border-color .3s;
    animation: cardIn .6s cubic-bezier(.16,1,.3,1) both;
}
.wt-card:nth-child(1) { animation-delay: .05s; }
.wt-card:nth-child(2) { animation-delay: .1s; }
.wt-card:nth-child(3) { animation-delay: .15s; }
.wt-card:nth-child(4) { animation-delay: .2s; }
.wt-card:nth-child(5) { animation-delay: .25s; }
.wt-card:nth-child(6) { animation-delay: .3s; }
.wt-card:hover {
    transform: translateY(-8px); border-color: rgba(138,109,233,.5);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* Card thumbnail area */
.wt-card-thumb {
    position: relative; padding-bottom: 56.25%; background: var(--bg-surface); overflow: hidden;
}
.wt-card-thumb img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.wt-card:hover .wt-card-thumb img,
.wt-featured-card:hover .wt-card-thumb img { transform: scale(1.05); }

.wt-card-thumb .placeholder-thumb {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
    color: var(--primary); font-size: 2.5rem; opacity: .5;
}

/* Overlay elements on thumbnail */
.wt-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,11,16,.7) 0%, transparent 50%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.wt-card:hover .wt-thumb-overlay,
.wt-featured-card:hover .wt-thumb-overlay { opacity: 1; }

.wt-thumb-play {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(138,109,233,.9); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    transform: scale(.8); transition: transform .3s;
    box-shadow: 0 4px 20px rgba(138,109,233,.4);
}
.wt-card:hover .wt-thumb-play,
.wt-featured-card:hover .wt-thumb-play { transform: scale(1); }

/* Status badge */
.wt-status {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: 6px;
    font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.wt-status-completed { background: rgba(76,175,80,.25); color: #81C784; border: 1px solid rgba(76,175,80,.3); }
.wt-status-in_progress { background: rgba(138,109,233,.25); color: var(--primary-light); border: 1px solid rgba(138,109,233,.3); }
.wt-status-planned { background: rgba(255,193,7,.2); color: #FFD54F; border: 1px solid rgba(255,193,7,.3); }
.wt-status-paused { background: rgba(255,152,0,.2); color: #FFB74D; border: 1px solid rgba(255,152,0,.3); }
.wt-status-cancelled { background: rgba(244,67,54,.2); color: #EF5350; border: 1px solid rgba(244,67,54,.3); }

/* Progress bar */
.wt-progress {
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: rgba(0,0,0,.4);
}
.wt-progress-fill {
    height: 100%; border-radius: 0 2px 2px 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width .6s ease;
}

/* Card body */
.wt-card-body { padding: 16px; }
.wt-card-title {
    font-size: .95rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wt-card-game {
    font-size: .82rem; color: var(--primary-light); margin-bottom: 4px;
}
.wt-card-info {
    font-size: .78rem; color: var(--text-muted); margin-bottom: 8px;
}
.wt-card-desc {
    font-size: .82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Card meta row */
.wt-card-meta {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}

/* Difficulty badges */
.wt-difficulty {
    padding: 3px 10px; border-radius: 5px; font-size: .7rem; font-weight: 600;
}
.wt-difficulty-easy { background: rgba(76,175,80,.15); color: #81C784; }
.wt-difficulty-normal { background: rgba(33,150,243,.15); color: #64B5F6; }
.wt-difficulty-hard { background: rgba(255,152,0,.15); color: #FFB74D; }
.wt-difficulty-nightmare { background: rgba(244,67,54,.15); color: #EF5350; }
.wt-difficulty-custom { background: rgba(138,109,233,.15); color: var(--primary-light); }

.wt-card-episodes {
    font-size: .78rem; color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 4px;
}
.wt-card-date {
    font-size: .78rem; color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 4px;
}
.wt-card-duration {
    font-size: .78rem; color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 4px;
}
.wt-progress-percent {
    font-size: .76rem; color: var(--secondary-light);
    display: inline-flex; align-items: center; gap: 4px;
}
.wt-card-title-link { color: inherit; display: block; }
.wt-card-actions {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px;
}
.wt-card-action-link {
    padding: 6px 10px; border-radius: 8px; font-size: .74rem; font-weight: 600;
    border: 1px solid var(--border); color: var(--text-muted);
    background: rgba(138,109,233,.08); transition: all .2s ease;
}
.wt-card-action-link:hover {
    color: var(--text); border-color: var(--primary);
    background: rgba(138,109,233,.15);
}
.wt-card-action-link--new {
    color: #9ad6b2;
    border-color: rgba(77,159,138,.35);
    background: rgba(77,159,138,.12);
}

/* Card link */
.wt-card-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 8px; font-size: .85rem; font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; transition: transform .2s, box-shadow .2s;
    width: 100%; justify-content: center;
}
.wt-card-link:hover {
    transform: translateY(-2px); box-shadow: 0 4px 16px rgba(138,109,233,.3); color: #fff;
}

/* ===== Filters ===== */
.wt-filters {
    position: relative;
    z-index: 1;
    padding: 0 24px 26px;
}
.wt-filters-inner { max-width: 1200px; margin: 0 auto; }
.wt-filters-shell {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(138,109,233,.26);
    background:
        linear-gradient(155deg, rgba(24,24,37,.92), rgba(14,14,22,.96)),
        radial-gradient(circle at 86% 8%, rgba(77,159,138,.2), rgba(77,159,138,0) 42%);
    box-shadow: 0 16px 34px rgba(0,0,0,.3);
    padding: 22px;
    overflow: hidden;
}
.wt-filters-shell::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,109,233,.2), rgba(138,109,233,0) 70%);
    pointer-events: none;
}
.wt-filters-shell::after {
    content: '';
    position: absolute;
    inset: auto 20px 0 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.36), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-filters-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.wt-quick-filters {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.wt-quick-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.52);
    color: #e6dcff;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    line-height: 1;
}
.wt-quick-filter-btn i {
    color: var(--secondary-light);
    font-size: .78rem;
}
.wt-quick-filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(170,145,246,.7);
    background: rgba(138,109,233,.14);
    box-shadow: 0 10px 18px rgba(0,0,0,.22);
    color: #fff;
}
.wt-quick-filter-btn.is-active {
    border-color: rgba(170,145,246,.88);
    background: linear-gradient(135deg, rgba(138,109,233,.24), rgba(77,159,138,.18));
    color: #fff;
}
.wt-quick-filter-btn.is-active i {
    color: #fff;
}
.wt-filters-head-main {
    max-width: 760px;
}
.wt-filters-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(11,11,16,.56);
    color: #e8ddff;
    text-transform: uppercase;
    font-size: .68rem;
    letter-spacing: .45px;
    font-weight: 700;
    margin-bottom: 10px;
}
.wt-filters-kicker i {
    color: var(--secondary-light);
    font-size: .74rem;
}
.wt-filters-head-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 210px;
}
.wt-filters-summary {
    display: grid;
    gap: 3px;
    width: 100%;
    text-align: right;
    padding: 9px 11px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.48);
}
.wt-filters-summary-label {
    font-size: .69rem;
    letter-spacing: .32px;
    text-transform: uppercase;
    color: rgba(210,210,228,.72);
}
.wt-filters-summary-value {
    font-size: 1.1rem;
    line-height: 1.1;
    color: #f5f0ff;
    font-weight: 700;
}
.wt-filters-subtitle {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.58;
    margin-top: 10px;
}
.wt-filters-head-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 1.05rem;
    color: #f4ecff;
    font-weight: 700;
}
.wt-filters-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(138,109,233,.23);
    color: var(--primary-light);
    font-size: .78rem;
    border: 1px solid rgba(138,109,233,.3);
}
.wt-filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.3);
    background: linear-gradient(145deg, rgba(138,109,233,.22), rgba(70,132,189,.14));
    color: #efe7ff;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wt-filters-toggle:hover {
    border-color: rgba(138,109,233,.5);
    box-shadow: 0 8px 20px rgba(63,46,118,.35);
    transform: translateY(-1px);
}
.wt-filters-toggle i { transition: transform .2s ease; }
.wt-filters-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.wt-filter-input { min-width: 0; cursor: text; }

.wt-filters-form {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.wt-filters-form--walkthroughs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.wt-filters-row {
    display: grid;
    gap: 12px;
    align-items: end;
}
.wt-filters-row--primary {
    grid-template-columns: minmax(300px, 1.7fr) repeat(3, minmax(160px, 1fr));
}
.wt-filters-row--secondary {
    grid-template-columns: repeat(4, minmax(140px, 1fr)) minmax(250px, 1.35fr);
}
.wt-filters-row--secondary.is-collapsed { display: none; }
.wt-filters-row--actions {
    grid-template-columns: 1fr auto;
    padding-top: 10px;
    border-top: 1px solid rgba(138,109,233,.16);
}
.wt-field {
    min-width: 0;
    display: grid;
    gap: 6px;
}
.wt-field--search {
    grid-column: 1 / 2;
}
.wt-field-label {
    font-size: .67rem;
    color: rgba(213,212,232,.75);
    text-transform: uppercase;
    letter-spacing: .42px;
    font-weight: 700;
}
.wt-field--years .wt-field-label {
    margin-bottom: 2px;
}
.wt-year-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.wt-filters-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .75rem;
    align-self: center;
    line-height: 1.5;
    max-width: 640px;
}
.wt-filters-hint i {
    color: var(--secondary-light);
}
.wt-filters-actions {
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.wt-search-box {
    flex: 1;
    min-width: 0;
    position: relative;
}
.wt-search-input {
    width: 100%;
    padding: 11px 42px 11px 13px;
    background: rgba(10,10,16,.66);
    border: 1px solid rgba(138,109,233,.22);
    border-radius: 11px;
    color: var(--text);
    font-size: .85rem;
    font-family: inherit;
    transition: border-color .25s, box-shadow .25s;
}
.wt-search-input:focus {
    outline: none;
    border-color: rgba(138,109,233,.5);
    box-shadow: 0 0 0 3px var(--glow);
}
.wt-search-input::placeholder { color: rgba(138,138,158,.4); }

.wt-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: .78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
}
.wt-search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 2px 8px rgba(138,109,233,.3);
}

.wt-filter-select {
    width: 100%;
    padding: 10px 11px;
    background: rgba(10,10,16,.66);
    border: 1px solid rgba(138,109,233,.22);
    border-radius: 11px;
    color: var(--text);
    font-size: .82rem;
    font-family: inherit;
    transition: border-color .25s, box-shadow .25s;
    cursor: pointer;
    min-width: 0;
    appearance: auto;
}
.wt-filter-select:focus {
    outline: none;
    border-color: rgba(138,109,233,.5);
    box-shadow: 0 0 0 3px var(--glow);
}

.wt-field-help {
    margin-top: 6px;
    font-size: .72rem;
    line-height: 1.35;
    color: rgba(210,210,228,.74);
}

.wt-filter-btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.wt-filter-btn:hover {
    transform: translateY(-2px); box-shadow: 0 4px 12px rgba(138,109,233,.3);
}

.wt-clear-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    border-radius: 10px;
    font-size: .8rem;
    color: var(--text-muted);
    background: rgba(138,109,233,.08);
    border: 1px solid var(--border);
    transition: all .25s;
}
.wt-clear-btn:hover {
    color: var(--text); border-color: var(--primary); background: rgba(138,109,233,.1);
}
.wt-clear-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 1160px) {
    .wt-filters-head {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-filters-head-main {
        max-width: none;
    }
    .wt-filters-head-side {
        align-items: stretch;
        min-width: 0;
        max-width: 340px;
    }
    .wt-filters-summary {
        text-align: left;
    }
    .wt-filters-row--primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-field--search {
        grid-column: 1 / -1;
    }
    .wt-filters-row--secondary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .wt-field--years {
        grid-column: 1 / -1;
    }
    .wt-year-range {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== Pagination ===== */
.wt-pagination {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 48px; flex-wrap: wrap;
}
.wt-page-link {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
    background: rgba(26,26,40,.6); border: 1px solid var(--border);
    color: var(--text-muted); font-size: .88rem; font-weight: 500;
    transition: all .25s;
}
.wt-page-link:hover {
    background: rgba(138,109,233,.15); border-color: var(--primary);
    color: var(--primary-light); transform: translateY(-2px);
}
.wt-page-info {
    padding: 0 16px; color: var(--text-muted); font-size: .88rem;
}

/* ===== Empty State ===== */
.wt-empty {
    text-align: center; padding: 80px 24px;
    animation: fadeUp .6s ease both;
}
.wt-empty-icon {
    font-size: 4rem; margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wt-empty h3 { font-size: 1.3rem; margin-bottom: 12px; }
.wt-empty p { color: var(--text-muted); max-width: 400px; margin: 0 auto 24px; line-height: 1.6; }
.wt-empty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Detail Page: Walkthrough Info ===== */
.wt-detail-header {
    position: relative;
    z-index: 1;
    padding: 118px 24px 56px;
    overflow: hidden;
}
.wt-detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.wt-detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(24px) brightness(.3) saturate(1.2);
    transform: scale(1.12);
}
.wt-detail-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,12,.34) 0%, rgba(8,8,12,.74) 56%, var(--bg-dark) 100%);
}
.wt-detail-header-inner {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
    animation: fadeUp .6s cubic-bezier(.16,1,.3,1) both;
}
.wt-detail-header.wt-detail-header--episodes {
    padding-top: 110px;
    padding-bottom: 46px;
}
.wt-detail-header.wt-detail-header--episodes .wt-detail-header-inner {
    max-width: 1240px;
}
.wt-episodes-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(138,109,233,.26);
    background:
        linear-gradient(158deg, rgba(24,24,37,.9), rgba(14,14,22,.95)),
        radial-gradient(circle at 84% 18%, rgba(77,159,138,.18), rgba(77,159,138,0) 44%);
    box-shadow: 0 28px 52px rgba(0,0,0,.34);
}
.wt-episodes-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-episodes-hero-aura {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(2px);
}
.wt-episodes-hero-aura--one {
    width: 420px;
    height: 420px;
    top: -190px;
    left: -170px;
    background: radial-gradient(circle, rgba(138,109,233,.24) 0%, rgba(138,109,233,0) 70%);
}
.wt-episodes-hero-aura--two {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(77,159,138,.2) 0%, rgba(77,159,138,0) 72%);
}
.wt-episodes-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: stretch;
    padding: 28px;
}
.wt-episodes-hero-main {
    min-width: 0;
}
.wt-episodes-hero-main .wt-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 14px;
}
.wt-episodes-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.5);
    color: #ddd4f6;
    font-size: .68rem;
    letter-spacing: .45px;
    font-weight: 700;
    text-transform: uppercase;
}
.wt-episodes-hero-kicker i {
    color: var(--secondary-light);
}
.wt-episodes-hero .wt-detail-title {
    margin-bottom: 10px;
}
.wt-episodes-hero .wt-detail-game {
    margin-bottom: 12px;
}
.wt-episodes-hero-subtitle {
    margin: 0 0 18px;
    max-width: 740px;
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.74;
}
.wt-detail-actions--episodes {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin-bottom: 10px;
}
.wt-continue-btn--episodes {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 10px 12px 10px 10px;
    border-radius: 14px;
    border: 1px solid rgba(77,159,138,.45);
    background:
        linear-gradient(135deg, rgba(63,139,119,.96), rgba(77,159,138,.9)),
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.2), rgba(255,255,255,0) 45%);
    box-shadow: 0 14px 26px rgba(28,80,67,.3);
}
.wt-continue-btn--episodes:hover {
    box-shadow: 0 16px 30px rgba(28,80,67,.4);
}
.wt-episodes-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(10,36,30,.34);
    color: #edfff8;
    font-size: .9rem;
}
.wt-episodes-action-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}
.wt-episodes-action-kicker {
    font-size: .62rem;
    line-height: 1;
    letter-spacing: .45px;
    text-transform: uppercase;
    color: rgba(224,255,245,.82);
}
.wt-episodes-action-title {
    font-size: .88rem;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
}
.wt-episodes-action-trail {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: .76rem;
    transition: transform .2s ease, background .2s ease;
}
.wt-continue-btn--episodes:hover .wt-episodes-action-trail {
    transform: translateX(1px);
    background: rgba(255,255,255,.14);
}
.wt-episodes-action-btn {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.26);
    background: rgba(11,11,16,.48);
    color: var(--text);
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.3;
    transition: all .22s ease;
}
.wt-episodes-action-btn i {
    color: var(--primary-light);
}
.wt-episodes-action-btn:hover {
    color: #fff;
    border-color: rgba(138,109,233,.5);
    background: rgba(138,109,233,.18);
    transform: translateY(-1px);
}
.wt-episodes-action-btn--info:hover i {
    color: #bfd6ff;
}
.wt-episodes-action-btn--filter:hover i {
    color: #dfd4ff;
}
.wt-episodes-actions-note {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: .73rem;
    line-height: 1.4;
}
.wt-episodes-actions-note i {
    color: var(--secondary-light);
}
.wt-episodes-hero-aside {
    min-width: 0;
    display: grid;
    align-content: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(160deg, rgba(12,12,19,.64), rgba(9,9,14,.86));
}
.wt-episodes-hero-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(77,159,138,.32);
    background: rgba(77,159,138,.14);
    color: #d6fff2;
    font-size: .74rem;
    letter-spacing: .3px;
    font-weight: 700;
    text-transform: uppercase;
}
.wt-episodes-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.wt-episodes-hero-metric {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.16);
    background: rgba(12,12,18,.56);
}
.wt-episodes-hero-metric-label {
    color: var(--text-muted);
    font-size: .64rem;
    letter-spacing: .38px;
    text-transform: uppercase;
}
.wt-episodes-hero-metric-value {
    color: #f4ecff;
    font-size: .88rem;
    line-height: 1.3;
    font-weight: 700;
}

@media (max-width: 900px) {
    .wt-detail-header.wt-detail-header--episodes {
        padding-top: 100px;
    }
    .wt-episodes-hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }
    .wt-episodes-hero-aside {
        padding: 12px;
    }
    .wt-detail-actions--episodes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-continue-btn--episodes {
        grid-column: 1 / -1;
    }
}
@media (max-width: 640px) {
    .wt-detail-header.wt-detail-header--episodes {
        padding-top: 96px;
        padding-bottom: 30px;
    }
    .wt-episodes-hero {
        border-radius: 20px;
    }
    .wt-episodes-hero-grid {
        padding: 16px 14px;
    }
    .wt-episodes-hero-subtitle {
        font-size: .86rem;
        line-height: 1.62;
        margin-bottom: 14px;
    }
    .wt-detail-actions--episodes {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }
    .wt-continue-btn--episodes {
        padding: 10px;
        border-radius: 12px;
    }
    .wt-episodes-action-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
    .wt-episodes-action-title {
        font-size: .82rem;
    }
    .wt-episodes-action-kicker {
        font-size: .58rem;
    }
    .wt-episodes-action-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        font-size: .78rem;
    }
    .wt-episodes-actions-note {
        font-size: .74rem;
    }
    .wt-episodes-hero-metrics {
        grid-template-columns: 1fr;
    }
}

/* ===== Episode Header (episode detail page) ===== */
.wt-detail-header.wt-detail-header--episode {
    padding-top: 108px;
    padding-bottom: 42px;
}
.wt-detail-header.wt-detail-header--episode .wt-detail-header-inner {
    max-width: 1240px;
}
.wt-episode-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(138,109,233,.28);
    background:
        linear-gradient(158deg, rgba(25,25,39,.92), rgba(14,14,22,.96)),
        radial-gradient(circle at 84% 14%, rgba(77,159,138,.22), rgba(77,159,138,0) 46%);
    box-shadow: 0 28px 54px rgba(0,0,0,.36);
}
.wt-episode-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-episode-hero-aura {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}
.wt-episode-hero-aura--one {
    width: 410px;
    height: 410px;
    top: -190px;
    left: -160px;
    background: radial-gradient(circle, rgba(138,109,233,.24), rgba(138,109,233,0) 72%);
}
.wt-episode-hero-aura--two {
    width: 340px;
    height: 340px;
    right: -110px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(77,159,138,.2), rgba(77,159,138,0) 72%);
}
.wt-episode-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: stretch;
    padding: 28px;
}
.wt-episode-hero-main {
    min-width: 0;
}
.wt-episode-hero-main .wt-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 14px;
}
.wt-episode-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.5);
    color: #ddd4f6;
    font-size: .68rem;
    letter-spacing: .44px;
    font-weight: 700;
    text-transform: uppercase;
}
.wt-episode-hero-kicker i {
    color: var(--secondary-light);
}
.wt-detail-header--episode .wt-detail-title {
    margin-bottom: 10px;
    font-size: 1.22rem;
}
.wt-detail-header--episode .wt-detail-game {
    margin-bottom: 12px;
}
.wt-episode-hero-subtitle {
    margin: 0 0 16px;
    max-width: 740px;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.74;
}
.wt-episode-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.wt-episode-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.48);
    color: #e8ddff;
    font-size: .74rem;
    line-height: 1;
}
.wt-episode-hero-chip i {
    color: var(--secondary-light);
}
.wt-episode-hero-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.wt-episode-hero-action {
    min-width: 0;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.25);
    background: rgba(11,11,16,.48);
    color: var(--text);
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all .22s ease;
}
.wt-episode-hero-action:hover {
    color: #fff;
    border-color: rgba(138,109,233,.56);
    background: rgba(138,109,233,.2);
    transform: translateY(-1px);
}
.wt-episode-hero-action--primary {
    border-color: rgba(77,159,138,.45);
    background:
        linear-gradient(135deg, rgba(63,139,119,.95), rgba(77,159,138,.9)),
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.2), rgba(255,255,255,0) 45%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(28,80,67,.3);
}
.wt-episode-hero-action--primary:hover {
    border-color: rgba(77,159,138,.7);
    box-shadow: 0 14px 28px rgba(28,80,67,.38);
}
.wt-episode-hero-action--accent {
    border-color: rgba(138,109,233,.46);
    background:
        linear-gradient(135deg, rgba(138,109,233,.94), rgba(173,126,246,.86)),
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.16), rgba(255,255,255,0) 45%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(74,49,126,.28);
}
.wt-episode-hero-action--accent:hover {
    border-color: rgba(177,155,247,.78);
    box-shadow: 0 14px 28px rgba(74,49,126,.36);
}
.wt-episode-hero-side {
    min-width: 0;
    display: grid;
    align-content: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(138,109,233,.22);
    background: linear-gradient(160deg, rgba(12,12,19,.64), rgba(9,9,14,.86));
}
.wt-episode-hero-progress-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .34px;
    color: var(--text-muted);
}
.wt-episode-hero-progress-head b {
    color: #fff;
    font-size: .95rem;
    letter-spacing: 0;
}
.wt-episode-hero-progress-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.wt-episode-hero-progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3f8b77 0%, #50af96 40%, #a07cf0 100%);
}
.wt-episode-hero-progress-meta {
    color: var(--text-muted);
    font-size: .8rem;
    line-height: 1.45;
}
.wt-journey-card {
    display: grid;
    gap: 9px;
    padding: 11px 12px;
    border-radius: 14px;
    border: 1px solid rgba(77,159,138,.22);
    background: linear-gradient(160deg, rgba(16,22,24,.72), rgba(11,14,18,.88));
}
.wt-journey-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: .72rem;
    letter-spacing: .34px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.wt-journey-card__head b {
    color: #fff;
    font-size: .96rem;
}
.wt-journey-card__track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.wt-journey-card__fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3f8b77 0%, #58c6a6 38%, #a47ef5 100%);
}
.wt-journey-card__meta {
    display: grid;
    gap: 6px;
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.45;
}
.wt-journey-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.wt-journey-card__meta i { color: var(--secondary-light); }
.wt-journey-card__cta {
    display: grid;
    gap: 4px;
    padding: 9px 10px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.26);
    background: rgba(138,109,233,.12);
    color: #eee5ff;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.wt-journey-card__cta:hover {
    border-color: rgba(177,155,247,.62);
    background: rgba(138,109,233,.22);
    transform: translateY(-1px);
}
.wt-journey-card__cta-label {
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: .36px;
    color: rgba(214,214,232,.74);
}
.wt-journey-card__cta-title {
    font-size: .78rem;
    line-height: 1.32;
    color: #fff;
}
.wt-episode-hero-side-links {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}
.wt-episode-hero-side-link {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
    min-height: 38px;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.5);
    color: #e6defe;
    font-size: .78rem;
    text-decoration: none;
    transition: all .2s ease;
}
.wt-episode-hero-side-link span {
    min-width: 0;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wt-episode-hero-side-link i {
    color: var(--primary-light);
}
.wt-episode-hero-side-link--next {
    grid-template-columns: 1fr auto;
}
.wt-episode-hero-side-link--next span {
    text-align: right;
}
.wt-episode-hero-side-link--next i {
    color: var(--secondary-light);
}
.wt-episode-hero-side-link:hover {
    color: #fff;
    border-color: rgba(138,109,233,.48);
    background: rgba(138,109,233,.2);
}

@media (max-width: 980px) {
    .wt-detail-header.wt-detail-header--episode {
        padding-top: 100px;
        padding-bottom: 32px;
    }
    .wt-episode-hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }
    .wt-episode-hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .wt-detail-header.wt-detail-header--episode {
        padding-top: 96px;
        padding-bottom: 28px;
    }
    .wt-episode-hero {
        border-radius: 20px;
    }
    .wt-episode-hero-grid {
        padding: 16px 14px;
    }
    .wt-detail-header--episode .wt-detail-title {
        font-size: 1rem;
        line-height: 1.48;
    }
    .wt-episode-hero-subtitle {
        font-size: .84rem;
        line-height: 1.62;
        margin-bottom: 12px;
    }
    .wt-episode-hero-meta {
        gap: 7px;
        margin-bottom: 12px;
    }
    .wt-episode-hero-chip {
        font-size: .7rem;
        min-height: 28px;
        padding: 6px 9px;
    }
    .wt-episode-hero-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .wt-episode-hero-action {
        width: 100%;
    }
    .wt-episode-hero-side {
        padding: 12px;
    }
}
.wt-detail-aurora {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(4px);
}
.wt-detail-aurora--1 {
    width: 440px;
    height: 440px;
    left: -120px;
    top: -150px;
    background: radial-gradient(circle, rgba(138,109,233,.18) 0%, rgba(138,109,233,0) 70%);
}
.wt-detail-aurora--2 {
    width: 360px;
    height: 360px;
    right: -80px;
    bottom: -130px;
    background: radial-gradient(circle, rgba(77,159,138,.2) 0%, rgba(77,159,138,0) 72%);
}
.wt-detail-shell {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(138,109,233,.2);
    padding: 26px;
    background:
        linear-gradient(155deg, rgba(24,24,36,.82), rgba(15,15,23,.92)),
        radial-gradient(circle at 82% 18%, rgba(77,159,138,.18), rgba(77,159,138,0) 42%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.wt-detail-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-detail-head-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.wt-detail-head-top .wt-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 0;
}
.wt-detail-updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.44);
    color: var(--text-muted);
    font-size: .75rem;
    white-space: nowrap;
}
.wt-detail-updated i {
    color: var(--primary-light);
}
.wt-detail-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: flex-start;
}
.wt-detail-copy {
    min-width: 0;
    text-align: left;
}
.wt-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.5);
    color: #d9d9ec;
    font-size: .7rem;
    letter-spacing: .45px;
    font-weight: 700;
    text-transform: uppercase;
}
.wt-detail-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.28rem;
    line-height: 1.5;
    margin-bottom: 12px;
    background: linear-gradient(130deg, #fff 14%, #e6deff 58%, #9fe5d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wt-detail-game {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--primary-light);
    font-size: 1.03rem;
    font-weight: 600;
}
.wt-detail-game i {
    font-size: .95rem;
    color: #91c9ff;
}

/* Meta row */
.wt-meta-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}
.wt-meta-card {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(165deg, rgba(18,18,28,.72), rgba(11,11,17,.86));
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.wt-meta-card:hover {
    transform: translateY(-1px);
    border-color: rgba(138,109,233,.45);
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
.wt-meta-card-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(138,109,233,.15);
    color: var(--primary-light);
    font-size: .82rem;
}
.wt-meta-card-content {
    min-width: 0;
    display: grid;
    gap: 2px;
}
.wt-meta-card-label {
    font-size: .64rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.wt-meta-card-value {
    font-size: .84rem;
    color: var(--text);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wt-meta-status,
.wt-meta-difficulty {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    line-height: 1.35;
}
.wt-meta-status-completed {
    color: #81C784;
    background: rgba(76,175,80,.14);
    border-color: rgba(76,175,80,.28);
}
.wt-meta-status-in_progress {
    color: #bba9f7;
    background: rgba(138,109,233,.18);
    border-color: rgba(138,109,233,.32);
}
.wt-meta-status-planned {
    color: #FFD54F;
    background: rgba(255,193,7,.14);
    border-color: rgba(255,193,7,.28);
}
.wt-meta-status-paused {
    color: #FFB74D;
    background: rgba(255,152,0,.14);
    border-color: rgba(255,152,0,.28);
}
.wt-meta-status-cancelled {
    color: #EF5350;
    background: rgba(244,67,54,.14);
    border-color: rgba(244,67,54,.28);
}
.wt-meta-difficulty-easy {
    color: #81C784;
    background: rgba(76,175,80,.14);
    border-color: rgba(76,175,80,.28);
}
.wt-meta-difficulty-normal {
    color: #64B5F6;
    background: rgba(33,150,243,.14);
    border-color: rgba(33,150,243,.28);
}
.wt-meta-difficulty-hard {
    color: #FFB74D;
    background: rgba(255,152,0,.14);
    border-color: rgba(255,152,0,.28);
}
.wt-meta-difficulty-nightmare {
    color: #EF5350;
    background: rgba(244,67,54,.14);
    border-color: rgba(244,67,54,.28);
}
.wt-meta-difficulty-custom {
    color: #bba9f7;
    background: rgba(138,109,233,.18);
    border-color: rgba(138,109,233,.32);
}
.wt-meta-card--secrets {
    border-color: rgba(240,214,143,.28);
    background: linear-gradient(160deg, rgba(36,31,19,.72), rgba(20,17,11,.88));
}
.wt-meta-card--secrets .wt-meta-card-icon {
    border-color: rgba(240,214,143,.42);
    background: rgba(240,214,143,.16);
    color: #f0d68f;
}
.wt-meta-card--secrets .wt-meta-card-value {
    color: #f0d68f;
}

.wt-detail-desc {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.76;
    max-width: 700px;
    margin: 0 0 20px;
}
.wt-detail-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.wt-continue-meta {
    width: 100%;
    margin-top: -2px;
    padding-left: 4px;
    color: rgba(255,255,255,.70);
    font-size: .82rem;
    line-height: 1.45;
}
.wt-continue-meta__title {
    color: rgba(255,255,255,.84);
    font-weight: 700;
}
.wt-continue-meta b {
    color: rgba(255,255,255,.92);
}
.wt-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3f8b77, var(--secondary));
    color: #fff;
    border: 1px solid rgba(77,159,138,.3);
    transition: transform .25s, box-shadow .25s;
}
.wt-continue-btn:hover {
    transform: translateY(-3px); box-shadow: 0 6px 20px rgba(77,159,138,.35); color: #fff;
}
.wt-detail-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(11,11,16,.56);
    color: var(--text);
    font-size: .84rem;
    font-weight: 600;
    transition: transform .25s, border-color .25s, background .25s;
}
.wt-detail-list-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(138,109,233,.56);
    background: rgba(138,109,233,.15);
    color: #fff;
}

.wt-playlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: .84rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c4302b, #a02520); color: #fff;
    transition: transform .25s, box-shadow .25s;
}
.wt-playlist-btn:hover {
    transform: translateY(-3px); box-shadow: 0 6px 20px rgba(196,48,43,.35); color: #fff;
}
.wt-detail-panel {
    min-width: 0;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.22);
    background: linear-gradient(160deg, rgba(13,13,21,.74), rgba(9,9,15,.9));
}
.wt-detail-panel-title {
    margin: 0 0 12px;
    font-size: .9rem;
    letter-spacing: .45px;
    text-transform: uppercase;
    color: #d6cfef;
}
.wt-detail-panel-tools {
    display: flex;
    justify-content: flex-end;
    margin: -4px 0 12px;
}
.wt-anti-spoiler-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.86);
    font-weight: 800;
    font-size: .78rem;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.wt-anti-spoiler-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.95);
}
.wt-anti-spoiler-btn.is-active {
    border-color: rgba(77,159,138,.42);
    background: rgba(77,159,138,.14);
    color: rgba(214,255,242,.95);
}
.wt-anti-spoiler-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(138,109,233,.22);
}
.wt-detail-panel-progress {
    margin-bottom: 12px;
}
.wt-detail-panel-progress-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-muted);
}
.wt-detail-panel-progress-head strong {
    font-size: 1.05rem;
    color: var(--text);
}
.wt-detail-progress {
    max-width: none;
    margin: 8px 0 0;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.wt-detail-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width .8s ease;
}
.wt-detail-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.wt-detail-stat {
    min-width: 0;
    display: grid;
    gap: 3px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.12);
    background: rgba(11,11,16,.48);
}
.wt-detail-stat--wide {
    grid-column: 1 / -1;
}
.wt-detail-stat-label {
    color: var(--text-muted);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .45px;
}
.wt-detail-stat-value {
    color: var(--text);
    font-size: .94rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wt-route-map {
    display: grid;
    gap: 10px;
}
.wt-route-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wt-route-map-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(138,109,233,.10);
    color: rgba(231,221,255,.95);
    font-weight: 800;
    font-size: .76rem;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.wt-route-map-next:hover {
    transform: translateY(-1px);
    border-color: rgba(138,109,233,.42);
    background: rgba(138,109,233,.16);
}
.wt-route-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: .78rem;
    color: rgba(255,255,255,.66);
}
.wt-route-map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.wt-route-map-track {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
}
.wt-route-map-track::-webkit-scrollbar {
    height: 8px;
}
.wt-route-map-track::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(138,109,233,.26);
}
.wt-route-map-track::before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.28), rgba(77,159,138,.22), rgba(138,109,233,.28), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-map-dot-link {
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: center;
    text-decoration: none;
}
.wt-map-dot {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    display: block;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.wt-map-dot--bin {
    width: 12px;
    height: 12px;
    border-radius: 7px;
}
.wt-map-dot--final {
    border-color: rgba(255, 214, 121, .42);
    background: rgba(255, 214, 121, .18);
}
.wt-map-dot--bonus {
    border-color: rgba(138,109,233,.45);
    background: rgba(138,109,233,.18);
}
.wt-map-dot--chapters {
    box-shadow: 0 0 0 2px rgba(77,159,138,.10);
    border-color: rgba(77,159,138,.38);
}
.wt-map-dot--secrets {
    border-color: rgba(214,255,242,.36);
    background: rgba(77,159,138,.16);
}
.wt-map-dot.is-seen {
    border-color: rgba(214,255,242,.42);
    background: linear-gradient(90deg, rgba(77,159,138,.92), rgba(138,109,233,.92));
    box-shadow: 0 0 0 3px rgba(77,159,138,.12);
}
.wt-map-dot.is-next {
    transform: scale(1.45);
    border-color: rgba(214,255,242,.7);
    box-shadow: 0 0 0 4px rgba(138,109,233,.18);
}
.wt-map-dot.is-pulse {
    animation: wtDotPulse .7s ease-in-out both;
}
@keyframes wtDotPulse {
    0% { transform: scale(1.45); }
    55% { transform: scale(1.8); }
    100% { transform: scale(1.45); }
}
.wt-route-map-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: .8rem;
    color: rgba(255,255,255,.70);
}
.wt-route-map-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.14);
}
.wt-route-map-meta-item i {
    color: rgba(231,221,255,.9);
}
body.wt-anti-spoiler .wt-map-dot--final,
body.wt-anti-spoiler .wt-map-dot--bonus,
body.wt-anti-spoiler .wt-map-dot--chapters,
body.wt-anti-spoiler .wt-map-dot--secrets {
    box-shadow: none;
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
}

.wt-detail-nav {
    position: sticky;
    top: var(--wt-nav-top, 66px);
    z-index: 24;
    padding: 10px 16px 12px;
    border-top: 1px solid rgba(138,109,233,.1);
    border-bottom: 1px solid rgba(138,109,233,.1);
    background: linear-gradient(180deg, rgba(11,11,16,.76), rgba(11,11,16,.64));
    backdrop-filter: blur(12px);
    transition: top .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.wt-detail-nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.wt-detail-nav-inner::-webkit-scrollbar {
    height: 6px;
}
.wt-detail-nav-inner::-webkit-scrollbar-thumb {
    background: rgba(138,109,233,.32);
    border-radius: 999px;
}
.wt-detail-nav.is-stuck-compact {
    background: linear-gradient(180deg, rgba(11,11,16,.92), rgba(11,11,16,.8));
    box-shadow: 0 10px 24px rgba(0,0,0,.24);
}
.wt-detail-nav-link {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 8px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(160deg, rgba(22,22,34,.72), rgba(15,15,24,.9));
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.wt-detail-nav-link:hover {
    color: var(--text);
    border-color: rgba(138,109,233,.52);
    background: linear-gradient(160deg, rgba(43,35,73,.58), rgba(18,18,28,.88));
    transform: translateY(-1px);
}
.wt-detail-nav-link:focus-visible {
    outline: none;
    border-color: rgba(169,145,245,.8);
    box-shadow: 0 0 0 2px rgba(138,109,233,.2);
}
.wt-detail-nav-link--accent {
    border-color: rgba(77,159,138,.38);
    background: linear-gradient(160deg, rgba(28,58,50,.66), rgba(16,28,24,.88));
}
.wt-detail-nav-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(138,109,233,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: .72rem;
}
.wt-detail-nav-link--accent .wt-detail-nav-icon {
    border-color: rgba(77,159,138,.4);
    background: rgba(77,159,138,.22);
    color: #9ddfce;
}
.wt-detail-nav-label {
    white-space: nowrap;
}
.wt-detail-nav-badge {
    margin-left: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.36);
    background: rgba(138,109,233,.22);
    color: #dfd3ff;
    font-size: .68rem;
    font-weight: 700;
}

/* ===== Game Info Card ===== */
.wt-game-info-card {
    position: relative;
    background:
        linear-gradient(160deg, rgba(26,26,40,.74), rgba(16,16,24,.9)),
        radial-gradient(circle at 85% 12%, rgba(77,159,138,.16), rgba(77,159,138,0) 44%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138,109,233,.2);
    border-radius: 20px;
    padding: 26px;
    overflow: hidden;
}
.wt-game-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-game-info-head {
    display: grid;
    grid-template-columns: 146px minmax(0, 1fr) 232px;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}
.wt-game-cover-wrap {
    min-width: 0;
}
.wt-game-cover {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.5);
    /* Reserve space before image load to reduce CLS. */
    aspect-ratio: 3 / 4;
}
.wt-game-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.wt-game-cover--placeholder {
    min-height: 198px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(193,177,246,.84);
    font-size: 2.1rem;
    background: linear-gradient(145deg, rgba(138,109,233,.24), rgba(77,159,138,.16));
}
.wt-game-info-copy {
    min-width: 0;
}
.wt-game-info-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.25);
    background: rgba(11,11,16,.46);
    color: #dcd5f1;
    font-size: .68rem;
    letter-spacing: .45px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-game-info-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.wt-game-info-title i { color: var(--primary-light); }
.wt-game-info-desc {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.72;
    margin-bottom: 12px;
}
.wt-game-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wt-game-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.26);
    background: rgba(11,11,16,.46);
    color: var(--text-muted);
    font-size: .72rem;
}
.wt-game-tag i {
    color: var(--primary-light);
    font-size: .68rem;
}
.wt-game-tag--accent {
    border-color: rgba(77,159,138,.36);
    background: rgba(77,159,138,.16);
    color: #a3dfcf;
}
.wt-game-score-panel {
    min-width: 0;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.22);
    background: linear-gradient(160deg, rgba(14,14,22,.74), rgba(10,10,16,.92));
    display: grid;
    gap: 8px;
}
.wt-game-score-item {
    display: grid;
    gap: 3px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.14);
    background: rgba(11,11,16,.5);
}
.wt-game-score-label {
    color: var(--text-muted);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .45px;
}
.wt-game-score-value {
    color: #e7e0ff;
    font-size: .96rem;
    font-weight: 700;
}
.wt-game-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.wt-game-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 11px;
    border-radius: 11px;
    background: linear-gradient(160deg, rgba(11,11,16,.5), rgba(20,20,32,.56));
    border: 1px solid rgba(138,109,233,.13);
}
.wt-game-info-label {
    font-size: .68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wt-game-info-label i {
    color: var(--primary-light);
    font-size: .7rem;
}
.wt-game-info-value {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    word-break: break-word;
}
.wt-game-info-highlights {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.wt-game-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,193,7,.08);
    border: 1px solid rgba(255,193,7,.2);
    color: #FFD54F;
    font-size: .8rem;
    font-weight: 600;
}
.wt-game-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.48);
    color: var(--text-muted);
    font-size: .8rem;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.wt-game-info-link:hover {
    color: var(--text);
    border-color: rgba(138,109,233,.56);
    background: rgba(138,109,233,.16);
    transform: translateY(-1px);
}
.wt-game-info-link--accent {
    border-color: rgba(77,159,138,.34);
    background: rgba(77,159,138,.16);
    color: #a3dfcf;
}

/* ===== Walkthrough Notes Card ===== */
.wt-notes-card {
    background: linear-gradient(160deg, rgba(26,26,40,.7), rgba(19,19,28,.8));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 16px;
    padding: 28px;
}
.wt-notes-title {
    font-size: 1.05rem; font-weight: 600; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.wt-notes-title i { color: var(--primary-light); }
.wt-notes-text {
    color: var(--text-muted); font-size: .92rem; line-height: 1.8;
}

/* ===== Episode Cards (for detail + episodes pages) ===== */
.wt-latest-shell {
    position: relative;
    padding: 24px 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(138,109,233,.2);
    background:
        linear-gradient(160deg, rgba(24,24,38,.76), rgba(14,14,22,.9)),
        radial-gradient(circle at 86% 14%, rgba(77,159,138,.16), rgba(77,159,138,0) 46%);
}
.wt-latest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.wt-latest-copy .wt-section-title {
    margin-bottom: 6px;
}
.wt-latest-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.66;
    max-width: 620px;
}
.wt-latest-overview {
    display: grid;
    gap: 8px;
    justify-items: end;
}
.wt-latest-overview-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.5);
    color: var(--text-muted);
    font-size: .74rem;
    white-space: nowrap;
}
.wt-latest-overview-item i {
    color: var(--primary-light);
}
.wt-latest-grid {
    gap: 16px;
}
.wt-latest-card {
    border-color: rgba(138,109,233,.22);
    background: linear-gradient(160deg, rgba(25,25,40,.8), rgba(15,15,24,.94));
}
.wt-latest-card--lead {
    grid-column: span 2;
}
.wt-latest-card .wt-ep-thumb {
    border-bottom: 1px solid rgba(138,109,233,.12);
}
.wt-latest-card .wt-ep-new-badge {
    top: 34px;
}
.wt-latest-order {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 7px;
    border: 1px solid rgba(138,109,233,.42);
    background: rgba(11,11,16,.8);
    color: #d8cbff;
    font-size: .68rem;
    font-weight: 700;
}
.wt-latest-fresh {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 3px 9px;
    border-radius: 7px;
    border: 1px solid rgba(77,159,138,.5);
    background: rgba(18,42,36,.9);
    color: #98dbc8;
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .35px;
}
.wt-latest-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.wt-latest-date {
    flex-shrink: 0;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.12);
    color: var(--text-muted);
    font-size: .67rem;
}
.wt-latest-card-bottom {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.wt-latest-open {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(138,109,233,.12);
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.wt-latest-card:hover .wt-latest-open {
    transform: translateX(2px);
    background: rgba(138,109,233,.24);
    color: #fff;
}
.wt-latest-cta {
    margin-top: 22px;
}

.wt-top-shell {
    position: relative;
    padding: 24px 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(138,109,233,.2);
    background:
        linear-gradient(160deg, rgba(26,21,36,.76), rgba(14,12,20,.92)),
        radial-gradient(circle at 12% 14%, rgba(255,179,80,.15), rgba(255,179,80,0) 42%);
}
.wt-top-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.wt-top-copy .wt-section-title {
    margin-bottom: 6px;
}
.wt-top-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.66;
    max-width: 620px;
}
.wt-top-overview {
    display: grid;
    gap: 8px;
    justify-items: end;
}
.wt-top-overview-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,179,80,.28);
    background: rgba(32,22,12,.56);
    color: #e9cf9f;
    font-size: .74rem;
    white-space: nowrap;
}
.wt-top-overview-item i {
    color: #ffd18a;
}
.wt-top-grid {
    gap: 16px;
}
.wt-top-card {
    border-color: rgba(255,179,80,.22);
    background: linear-gradient(160deg, rgba(34,27,18,.76), rgba(17,14,10,.94));
}
.wt-top-card--champ {
    grid-column: span 2;
}
.wt-top-card .wt-ep-thumb {
    border-bottom: 1px solid rgba(255,179,80,.14);
}
.wt-top-card .wt-ep-new-badge {
    top: 34px;
}
.wt-top-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 7px;
    border: 1px solid rgba(255,179,80,.42);
    background: rgba(31,22,12,.88);
    color: #ffdcac;
    font-size: .68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.wt-top-rank--1 {
    border-color: rgba(255,224,130,.65);
    background: rgba(61,45,19,.9);
    color: #ffe8bb;
}
.wt-top-rank--2 {
    border-color: rgba(192,198,214,.6);
    background: rgba(36,39,47,.84);
    color: #e2e7f4;
}
.wt-top-rank--3 {
    border-color: rgba(220,155,108,.62);
    background: rgba(49,32,21,.86);
    color: #f0d1bd;
}
.wt-top-medal {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 3px 9px;
    border-radius: 7px;
    border: 1px solid rgba(255,179,80,.5);
    background: rgba(52,33,16,.9);
    color: #ffcf8b;
    font-size: .64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .35px;
}
.wt-top-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.wt-top-views {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,179,80,.28);
    background: rgba(255,179,80,.14);
    color: #ffcf8b;
    font-size: .68rem;
    font-weight: 700;
}
.wt-top-card-bottom {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.wt-top-open {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,179,80,.35);
    background: rgba(255,179,80,.12);
    color: #ffcf8b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.wt-top-card:hover .wt-top-open {
    transform: translateX(2px);
    background: rgba(255,179,80,.24);
    color: #fff3dd;
}

.wt-related-shell {
    position: relative;
    padding: 24px 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(138,109,233,.2);
    background:
        linear-gradient(160deg, rgba(21,24,34,.78), rgba(13,16,24,.92)),
        radial-gradient(circle at 86% 14%, rgba(120,162,255,.14), rgba(120,162,255,0) 46%);
}
.wt-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.wt-related-copy .wt-section-title {
    margin-bottom: 6px;
}
.wt-related-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.66;
    max-width: 620px;
}
.wt-related-overview {
    display: grid;
    gap: 8px;
    justify-items: end;
}
.wt-related-overview-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(120,162,255,.3);
    background: rgba(17,23,37,.56);
    color: #cddfff;
    font-size: .74rem;
    white-space: nowrap;
}
.wt-related-overview-item i {
    color: #9ec0ff;
}
.wt-related-grid {
    gap: 16px;
}
.wt-related-card {
    border-color: rgba(120,162,255,.2);
    background: linear-gradient(160deg, rgba(20,26,40,.8), rgba(12,16,27,.94));
}
.wt-related-card--feature {
    grid-column: span 2;
}
.wt-related-card .wt-card-thumb {
    border-bottom: 1px solid rgba(120,162,255,.14);
}
.wt-related-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(120,162,255,.48);
    background: rgba(17,25,40,.88);
    color: #cfe1ff;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
}
.wt-related-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.wt-related-game {
    margin-bottom: 8px;
    font-size: .8rem;
    color: #a8c5ff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-related-open {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(120,162,255,.35);
    background: rgba(120,162,255,.13);
    color: #bfd6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.wt-related-card:hover .wt-related-open {
    transform: translateX(2px);
    background: rgba(120,162,255,.24);
    color: #fff;
}
.wt-related-card .wt-card-link {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    font-size: .8rem;
}

.wt-episodes-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.wt-ep-card {
    display: block; text-decoration: none; color: inherit; cursor: pointer;
    background: linear-gradient(160deg, rgba(26,26,40,.8), rgba(19,19,28,.9));
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.275), box-shadow .4s, border-color .3s;
    animation: cardIn .6s cubic-bezier(.16,1,.3,1) both;
}
.wt-ep-card:nth-child(1) { animation-delay: .05s; }
.wt-ep-card:nth-child(2) { animation-delay: .1s; }
.wt-ep-card:nth-child(3) { animation-delay: .15s; }
.wt-ep-card:nth-child(4) { animation-delay: .2s; }
.wt-ep-card:nth-child(5) { animation-delay: .25s; }
.wt-ep-card:hover {
    transform: translateY(-8px); border-color: rgba(138,109,233,.5);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.wt-ep-thumb {
    position: relative; padding-bottom: 56.25%; background: var(--bg-surface); overflow: hidden;
}
.wt-ep-thumb img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.wt-ep-card:hover .wt-ep-thumb img { transform: scale(1.05); }

.wt-ep-thumb .placeholder-ep {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
    color: var(--primary); opacity: .6;
}
.wt-ep-thumb .placeholder-ep i { font-size: 2rem; }
.wt-ep-thumb .placeholder-ep .ep-num { font-size: .9rem; font-weight: 700; }

.wt-ep-duration {
    position: absolute; bottom: 8px; right: 8px;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(0,0,0,.8); color: #fff; font-size: .72rem; font-weight: 600;
}
.wt-ep-new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
    color: #9ad6b2;
    border: 1px solid rgba(77,159,138,.45);
    background: rgba(11,11,16,.74);
}

.wt-ep-body { padding: 14px; }
.wt-ep-title {
    font-size: .88rem; font-weight: 600; margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wt-ep-desc {
    font-size: .8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wt-ep-meta {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    font-size: .78rem; color: var(--text-muted);
}
.wt-ep-meta i { color: var(--primary-light); margin-right: 2px; }

.wt-ep-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 8px; font-size: .82rem; font-weight: 600;
    background: rgba(138,109,233,.12); color: var(--primary-light);
    border: 1px solid var(--border); margin-top: 10px;
    transition: all .25s;
}
.wt-ep-link:hover {
    background: rgba(138,109,233,.2); border-color: var(--primary);
    color: #fff; transform: translateY(-1px);
}

/* ===== Episodes List (horizontal cards — episodes page) ===== */
.wt-episodes-list {
    display: flex; flex-direction: column; gap: 16px;
}
.wt-episodes-list:focus {
    outline: none;
}
.wt-ep-row {
    display: flex; gap: 20px; align-items: center;
    background: linear-gradient(160deg, rgba(26,26,40,.6), rgba(19,19,28,.7));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 12px; overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    animation: cardIn .5s cubic-bezier(.16,1,.3,1) both;
}
.wt-ep-row:hover {
    transform: translateY(-3px); border-color: rgba(138,109,233,.4);
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.wt-ep-row.is-jump-highlight {
    border-color: rgba(255,195,90,.55);
    box-shadow: 0 14px 40px rgba(255,195,90,.12);
}

.wt-episodes-action-meta {
    display: block;
    margin-top: 3px;
    font-size: .78rem;
    color: rgba(214,255,242,.9);
}

.wt-ep-row-thumb {
    position: relative; width: 200px; min-width: 200px; border-radius: 10px;
    overflow: hidden; background: var(--bg-surface);
    aspect-ratio: 16/9;
}
.wt-ep-row-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}

.wt-ep-row-info { flex: 1; min-width: 0; }
.wt-ep-row-title {
    font-size: .95rem; font-weight: 600; margin-bottom: 6px;
}
.wt-ep-row-desc {
    font-size: .85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wt-ep-row-meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: .8rem; color: var(--text-muted);
}
.wt-ep-row-meta i { color: var(--primary-light); margin-right: 2px; }

.wt-ep-row-actions {
    display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.wt-watch-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 10px; font-size: .85rem; font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.wt-watch-btn:hover {
    transform: translateY(-2px); box-shadow: 0 4px 16px rgba(138,109,233,.3); color: #fff;
}
.wt-yt-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 10px; font-size: .85rem; font-weight: 600;
    background: linear-gradient(135deg, #c4302b, #a02520); color: #fff;
    transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.wt-yt-btn:hover {
    transform: translateY(-2px); box-shadow: 0 4px 16px rgba(196,48,43,.3); color: #fff;
}

/* ===== Episode Player Section (redesign) ===== */
.wt-player-section {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
}
.wt-player-section__inner {
    max-width: 1020px;
}
.wt-player-shell {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(138,109,233,.26);
    padding: 20px;
    overflow: hidden;
    background:
        linear-gradient(162deg, rgba(24,24,37,.9), rgba(14,14,22,.96)),
        radial-gradient(circle at 88% 10%, rgba(77,159,138,.2), rgba(77,159,138,0) 45%);
    box-shadow: 0 24px 48px rgba(0,0,0,.34);
}
.wt-player-shell::before {
    content: '';
    position: absolute;
    top: -130px;
    right: -124px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,109,233,.22), rgba(138,109,233,0) 72%);
    pointer-events: none;
}
.wt-player-shell::after {
    content: '';
    position: absolute;
    inset: auto 20px 0 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.34), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-player-shell__head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 14px;
    align-items: start;
    margin-bottom: 16px;
    padding: 0 2px;
}
.wt-player-shell__copy {
    min-width: 0;
}
.wt-player-shell__kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.28);
    background: rgba(11,11,16,.5);
    color: #e4dcf8;
    font-size: .66rem;
    letter-spacing: .45px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-player-shell__kicker i {
    color: var(--secondary-light);
}
.wt-player-shell__title {
    margin: 0 0 7px;
    font-size: 1.1rem;
    line-height: 1.42;
    color: #f4ecff;
}
.wt-player-shell__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.62;
    max-width: 660px;
}
.wt-player-shell__microstatus {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.wt-player-shell__microstatus-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(11,11,16,.34);
    color: rgba(225,220,245,.82);
    font-size: .72rem;
    line-height: 1.35;
}
.wt-player-shell__microstatus-item i {
    color: var(--secondary-light);
    font-size: .76rem;
}
.wt-player-shell__stats {
    min-width: 0;
    display: grid;
    gap: 8px;
}
.wt-player-shell__stat {
    display: grid;
    gap: 3px;
    padding: 9px 11px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.48);
}
.wt-player-shell__stat-label {
    font-size: .64rem;
    letter-spacing: .35px;
    text-transform: uppercase;
    color: rgba(212,212,232,.74);
}
.wt-player-shell__stat-value {
    font-size: .92rem;
    line-height: 1.25;
    font-weight: 700;
    color: #f4ecff;
}
.wt-player-shell__stat--accent {
    border-color: rgba(77,159,138,.26);
    background: rgba(77,159,138,.12);
}
.wt-player-card--episode {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    border-color: rgba(138,109,233,.28);
    box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.wt-player-card--episode::before {
    left: 0;
    right: 0;
    height: 2px;
}
.wt-player-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 16px 13px;
    border-bottom: 1px solid rgba(138,109,233,.16);
    background: linear-gradient(152deg, rgba(20,20,31,.86), rgba(12,12,19,.92));
}
.wt-player-card-head__main {
    min-width: 0;
    display: grid;
    gap: 6px;
}
.wt-player-card-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(77,159,138,.45);
    background: rgba(77,159,138,.14);
    color: #d6fff2;
    font-size: .66rem;
    letter-spacing: .34px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-player-card-head__title {
    color: #f0e9ff;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-player-card-head__title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.wt-player-card-head__badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.wt-player-next-quick {
    min-width: 180px;
    max-width: 320px;
    display: grid;
    gap: 2px;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.25);
    background: rgba(11,11,16,.52);
    text-decoration: none;
}
.wt-player-next-quick span {
    font-size: .63rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .38px;
    color: rgba(210,210,228,.72);
}
.wt-player-next-quick b {
    color: #e8ddff;
    font-size: .76rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-player-next-quick:hover {
    border-color: rgba(138,109,233,.5);
    background: rgba(138,109,233,.18);
}
.wt-source-bar--episode {
    border-radius: 0 0 22px 22px;
}
.wt-player-shell__foot {
    position: relative;
    z-index: 1;
    margin-top: 16px;
}
.wt-player-shell__foot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr);
    gap: 14px;
}
.wt-player-shell__foot-grid--has-side {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .95fr);
    align-items: stretch;
}
.wt-player-shell__foot-main,
.wt-player-shell__foot-side {
    min-width: 0;
    display: grid;
    gap: 14px;
}
.wt-player-foot-card {
    position: relative;
    min-width: 0;
    border-radius: 18px;
    border: 1px solid rgba(138,109,233,.18);
    background:
        linear-gradient(165deg, rgba(18,18,30,.92), rgba(11,11,18,.96)),
        radial-gradient(circle at top right, rgba(138,109,233,.14), rgba(138,109,233,0) 42%);
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
    overflow: hidden;
}
.wt-player-foot-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(178,157,247,.65), rgba(77,159,138,0));
    opacity: .85;
}
.wt-player-foot-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px 0;
}
.wt-player-foot-card__head--compact {
    padding-bottom: 4px;
}
.wt-player-foot-card__copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}
.wt-player-foot-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.1);
    color: #e2d6ff;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .34px;
    text-transform: uppercase;
}
.wt-player-foot-card__eyebrow i {
    color: var(--secondary-light);
}
.wt-player-foot-card__title {
    margin: 0;
    color: #f5edff;
    font-size: .98rem;
    line-height: 1.35;
    font-weight: 800;
}
.wt-player-foot-card__desc {
    margin: 0;
    color: var(--text-muted);
    font-size: .79rem;
    line-height: 1.62;
    max-width: 62ch;
}
.wt-player-foot-card__facts {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-end;
    gap: 8px;
}
.wt-player-foot-fact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(255,255,255,.04);
    color: rgba(235,231,248,.82);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}
.wt-player-foot-fact i {
    color: var(--secondary-light);
}
.wt-player-foot-fact--accent {
    border-color: rgba(77,159,138,.3);
    background: rgba(77,159,138,.14);
    color: #d7fff2;
}
.wt-player-foot-card__body {
    padding: 14px 18px 18px;
}
.wt-player-foot-card__body--console {
    padding-top: 14px;
}
.wt-player-foot-card__body--assist {
    display: grid;
    gap: 12px;
}
.wt-player-foot-card--console .da-player-foot-panel {
    gap: 14px;
    padding: 0;
}
.wt-player-foot-card--console .gpd-player-tools__clock {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(10,10,16,.6);
    color: #f1e8ff;
    font-size: .82rem;
    font-weight: 700;
}
.wt-player-foot-card--console .da-player-status-summary__item {
    background: rgba(255,255,255,.04);
}
.wt-player-foot-card--console .da-player-current-chapter {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.wt-player-foot-card--console .da-player-quickbar__btn {
    min-height: 40px;
    background: linear-gradient(180deg, rgba(17,17,26,.82), rgba(10,10,16,.92));
}
.wt-player-shell__hint {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.16);
    background: linear-gradient(145deg, rgba(11,11,16,.56), rgba(15,15,24,.72));
    color: #dfd7f4;
    font-size: .79rem;
    line-height: 1.55;
}
.wt-player-shell__hint i {
    color: var(--secondary-light);
}
.wt-player-foot-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wt-player-foot-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(255,255,255,.04);
    color: rgba(232,227,246,.82);
    font-size: .73rem;
    font-weight: 700;
    line-height: 1.2;
}
.wt-player-foot-shortcut kbd {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid rgba(178,157,247,.34);
    background: rgba(138,109,233,.14);
    color: #f2eaff;
    font: inherit;
    font-size: .7rem;
    line-height: 1;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
}
.wt-player-foot-shortcut i {
    color: var(--secondary-light);
}
.wt-player-foot-shortcut--soft {
    background: rgba(77,159,138,.1);
    border-color: rgba(77,159,138,.18);
}
.wt-player-foot-card--next {
    height: 100%;
}
.wt-next-teaser {
    display: grid;
    grid-template-columns: minmax(116px, 152px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px 18px;
    text-decoration: none;
    transition: transform .22s ease, filter .22s ease;
}
.wt-next-teaser:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
}
.wt-next-teaser--featured {
    min-height: 100%;
}
.wt-next-teaser__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(138,109,233,.24), rgba(77,159,138,.14));
    box-shadow: 0 12px 22px rgba(0,0,0,.18);
}
.wt-next-teaser__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wt-next-teaser__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(240,233,255,.78);
    font-size: 1.2rem;
}
.wt-next-teaser__body {
    min-width: 0;
    display: grid;
    gap: 7px;
}
.wt-next-teaser__eyebrow {
    color: rgba(212,212,232,.74);
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .36px;
    text-transform: uppercase;
}
.wt-next-teaser__title {
    color: #f3ebff;
    font-size: .98rem;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-next-teaser__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(220,216,238,.76);
    font-size: .72rem;
    line-height: 1.45;
}
.wt-next-teaser__meta i {
    color: var(--secondary-light);
}
.wt-next-teaser__desc {
    color: var(--text-muted);
    font-size: .79rem;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-next-teaser__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(77,159,138,.32);
    background: rgba(77,159,138,.14);
    color: #d8fff3;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12px;
}
.wt-next-teaser__arrow {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.14);
    color: #f0e8ff;
    font-size: .9rem;
    flex-shrink: 0;
}
/* ===== Video Player (episode detail) ===== */
.wt-player-card {
    background: linear-gradient(160deg, rgba(26,26,40,.85), rgba(19,19,28,.92));
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.wt-player-card::before {
    content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%; border-radius: 0 0 3px 3px;
    animation: gradSlide 4s linear infinite; z-index: 1;
}
@keyframes gradSlide { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }
.wt-player-resume {
    position: absolute;
    left: 16px;
    right: auto;
    top: 54px;
    bottom: auto;
    width: min(392px, calc(100% - 32px));
    z-index: 30;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.24);
    background:
        linear-gradient(180deg, rgba(17,19,30,.95), rgba(9,10,16,.93)),
        rgba(11,11,16,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: auto;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0,0,0,.3);
}
.wt-player-resume[hidden] { display: none !important; }
.wt-player-resume__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wt-player-resume__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.wt-player-resume__badge,
.wt-player-resume__updated,
.wt-player-resume__fact {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: .67rem;
    line-height: 1;
}
.wt-key-moments-card,
.wt-moment-groups-card {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(160deg, rgba(13,13,22,.72), rgba(10,10,16,.86));
}
.wt-key-moments-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.wt-key-moments-subtitle {
    margin: 6px 0 0;
    color: var(--text-muted);
    font-size: .79rem;
    line-height: 1.5;
}
.wt-key-moments-grid,
.wt-moment-groups-list {
    display: grid;
    gap: 10px;
}
.wt-chapter-btn--moment,
.wt-chapter-btn--group {
    align-items: start;
}
.wt-key-moment-copy {
    min-width: 0;
    display: grid;
    gap: 7px;
}
.wt-key-moment-badge {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.12);
    color: #efe7ff;
    font-size: .62rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .34px;
    font-weight: 700;
}
.wt-key-moment-badge--progress {
    border-color: rgba(77,159,138,.32);
    background: rgba(77,159,138,.16);
    color: #d8fff3;
}
.wt-key-moment-badge--secrets {
    border-color: rgba(245,198,92,.32);
    background: rgba(245,198,92,.14);
    color: #fff2c2;
}
.wt-key-moment-badge--difficulty {
    border-color: rgba(244,114,182,.3);
    background: rgba(244,114,182,.14);
    color: #ffd6ea;
}
.wt-key-moment-badge--trivia {
    border-color: rgba(96,165,250,.3);
    background: rgba(96,165,250,.14);
    color: #dcebff;
}
.wt-moment-group {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(11,11,16,.34);
}
.wt-moment-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.wt-moment-group__title-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wt-moment-group__icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.14);
    color: #ebdfff;
    flex-shrink: 0;
}
.wt-moment-group__title {
    margin: 0;
    color: #f3edff;
    font-size: .9rem;
}
.wt-moment-group__eyebrow {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: .72rem;
}
.wt-moment-group__count {
    min-width: 30px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.12);
    color: #efe5ff;
    font-size: .72rem;
    font-weight: 700;
}
.wt-moment-group__items {
    display: grid;
    gap: 8px;
}
.wt-player-resume__badge {
    border: 1px solid rgba(77,159,138,.26);
    background: rgba(77,159,138,.16);
    color: #d6fff2;
    font-weight: 700;
}
.wt-player-resume__updated,
.wt-player-resume__fact {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    color: rgba(226,230,245,.78);
}
.wt-player-resume__dismiss {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(245,247,255,.88);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}
.wt-player-resume__dismiss:hover {
    background: rgba(255,255,255,.11);
}
.wt-player-resume__dismiss:focus-visible,
.wt-player-resume__btn:focus-visible {
    outline: 2px solid rgba(138,109,233,.58);
    outline-offset: 2px;
}
.wt-player-resume__title {
    font-weight: 800;
    font-size: .94rem;
    line-height: 1.2;
    color: #f8f9ff;
}
.wt-player-resume__meta {
    color: rgba(231,235,250,.82);
    font-size: .8rem;
    line-height: 1.35;
}
.wt-player-resume__progress {
    position: relative;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}
.wt-player-resume__progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(77,159,138,.96), rgba(138,109,233,.92));
    transition: width .25s ease;
}
.wt-player-resume__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.wt-player-resume__summary {
    color: rgba(207,213,236,.72);
    font-size: .73rem;
    line-height: 1.4;
}
.wt-player-resume__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.wt-player-resume__btn {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(77,159,138,.35);
    background: rgba(77,159,138,.2);
    color: #d6fff2;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
}
.wt-player-resume__btn:hover {
    background: rgba(77,159,138,.28);
}
.wt-player-resume__btn--muted {
    border-color: rgba(255,255,255,.12);
    background: rgba(138,109,233,.08);
    color: rgba(232,236,249,.82);
}
.wt-player-resume__btn--muted:hover {
    background: rgba(138,109,233,.15);
}
.wt-next-overlay {
    position: absolute;
    right: 16px;
    bottom: 82px;
    max-width: 320px;
    z-index: 30;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.4);
    background: rgba(11,11,16,.92);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    pointer-events: auto;
}
.wt-next-overlay[hidden] { display: none !important; }
.wt-next-overlay__title { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }
.wt-next-overlay__text { font-weight: 700; font-size: .9rem; }
.wt-next-overlay__meta { color: var(--text-muted); font-size: .8rem; }
.wt-next-overlay__actions { display: inline-flex; gap: 8px; }
.wt-next-overlay__btn {
    padding: 7px 11px; border-radius: 8px; font-size: .8rem; font-weight: 600;
    border: 1px solid rgba(138,109,233,.35);
    background: rgba(138,109,233,.2);
    color: var(--text);
}
.wt-next-overlay__btn--muted {
    background: rgba(11,11,16,.5);
    border-color: var(--border);
    color: var(--text-muted);
}

.wt-player-embed {
    position: relative; padding-bottom: 56.25%; height: 0; background: #000;
    isolation: isolate;
}
.wt-player-embed iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.wt-video-placeholder {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px; color: var(--text-muted);
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
}
.wt-video-placeholder i { font-size: 3rem; color: var(--primary); opacity: .5; }

/* CDN Video Player */
.wt-player-embed video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; border-radius: 0;
}
.wt-quality-bar {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 16px;
    background: rgba(19,19,28,.8);
    border-top: 1px solid var(--border);
}
.wt-av1-notice {
    width: 100%; margin-bottom: 8px;
    font-size: .78rem; color: #e0c050; opacity: .85;
}
.wt-quality-bar__pills {
    display: flex; gap: 6px;
}
.wt-quality-btn {
    padding: 5px 14px; border: 1px solid var(--border); border-radius: 20px;
    background: transparent; color: var(--text-muted);
    font-size: .82rem; font-weight: 500; cursor: pointer;
    transition: all .2s ease;
}
.wt-quality-btn:hover {
    color: var(--text); border-color: var(--primary);
    background: rgba(138,109,233,.1);
}
.wt-quality-btn.active {
    color: #fff; border-color: var(--primary);
    background: var(--primary);
}
.wt-yt-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: .85rem;
    text-decoration: none; transition: color .2s;
}
.wt-yt-link:hover { color: #f00; }
.wt-yt-link i { font-size: 1rem; }

/* Video source switcher */
.wt-source-panel { }
.wt-source-hidden { display: none !important; }

.wt-source-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(152deg, rgba(20,20,31,.86), rgba(12,12,19,.94));
    border-top: 1px solid rgba(138,109,233,.2);
    border-radius: 0 0 16px 16px;
}
.wt-source-bar__main {
    min-width: 0;
    display: grid;
    gap: 8px;
}
.wt-source-label-wrap {
    min-width: 0;
    display: grid;
    gap: 2px;
}
.wt-source-label {
    color: #ece3ff;
    font-size: .72rem;
    letter-spacing: .38px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}
.wt-source-hint {
    color: var(--text-muted);
    font-size: .72rem;
    line-height: 1.3;
}
.wt-source-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    background: rgba(11,11,16,.42);
    border-radius: 10px;
    padding: 4px;
}
.wt-source-tab {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(255,255,255,.01);
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
}
.wt-source-tab__name {
    font-weight: 700;
}
.wt-source-tab__tag {
    display: none;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid rgba(77,159,138,.45);
    background: rgba(77,159,138,.18);
    color: #d6fff2;
    font-size: .58rem;
    letter-spacing: .26px;
    text-transform: uppercase;
    line-height: 1;
}
.wt-source-tab--recommended .wt-source-tab__tag {
    display: inline-flex;
}
.wt-source-tab--recommended:not(.active) .wt-source-tab__tag {
    border-color: rgba(77,159,138,.3);
    background: rgba(77,159,138,.12);
    color: rgba(214,255,242,.84);
}
.wt-source-tab:hover {
    color: var(--text);
    border-color: rgba(138,109,233,.32);
    background: rgba(138,109,233,.12);
}
.wt-source-tab:focus-visible {
    outline: 2px solid rgba(169,141,245,.95);
    outline-offset: 2px;
}
.wt-source-tab.active {
    border-color: rgba(138,109,233,.52);
    background: linear-gradient(135deg, rgba(138,109,233,.3), rgba(76,151,192,.2));
    color: #fff;
    box-shadow: 0 6px 16px rgba(37,28,73,.38);
}
.wt-source-tab .fa-youtube { color: #e74c3c; }
.wt-source-tab .fa-server { color: var(--secondary); }
.wt-source-status {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(77,159,138,.34);
    background: rgba(77,159,138,.14);
    color: #d6fff2;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
}
.wt-source-status.is-good {
    border-color: rgba(77,159,138,.4);
    background: rgba(77,159,138,.2);
    color: #d6fff2;
}
.wt-source-status.is-warn {
    border-color: rgba(228,147,91,.5);
    background: rgba(58,33,15,.66);
    color: #ffe7c8;
}

@media (max-width: 760px) {
    .wt-source-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .wt-source-status {
        width: 100%;
        justify-content: center;
    }
    .wt-source-tabs {
        width: 100%;
    }
    .wt-source-tab {
        flex: 1 1 0;
        justify-content: center;
    }
    .wt-source-hint {
        font-size: .68rem;
    }
}
@media (max-width: 540px) {
    .wt-source-tab {
        padding: 8px 9px;
    }
    .wt-source-tab__tag {
        display: none !important;
    }
}

@media (max-width: 960px) {
    .wt-player-shell {
        border-radius: 20px;
        padding: 16px;
    }
    .wt-player-shell__head {
        grid-template-columns: 1fr;
    }
    .wt-player-shell__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .wt-player-card-head {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-player-next-quick {
        min-width: 0;
        max-width: none;
    }
}
@media (max-width: 640px) {
    .wt-player-shell {
        border-radius: 16px;
        padding: 12px;
    }
    .wt-player-shell__title {
        font-size: .96rem;
        line-height: 1.46;
    }
    .wt-player-shell__subtitle {
        font-size: .8rem;
    }
    .wt-player-shell__stats {
        grid-template-columns: 1fr;
    }
    .wt-player-card--episode {
        border-radius: 16px;
    }
    .wt-source-bar--episode {
        border-radius: 0 0 16px 16px;
    }
    .wt-player-card-head {
        padding: 13px 12px 11px;
    }
}

/* Episode info card */
.wt-ep-info-card {
    background: linear-gradient(160deg, rgba(26,26,40,.7), rgba(19,19,28,.8));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 28px; margin-top: 24px;
}
.wt-ep-info-title {
    font-size: 1.1rem; font-weight: 600; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.wt-ep-info-title i { color: var(--primary-light); }
.wt-ep-info-text {
    color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 16px;
}
.wt-ep-info-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
}
.wt-ep-info-meta-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .88rem; color: var(--text-muted);
}
.wt-ep-info-meta-item i { color: var(--primary-light); }

/* ===== Episode Navigation (Prev/Next) ===== */
.wt-ep-nav {
    margin-top: 32px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.2);
    background:
        linear-gradient(160deg, rgba(24,24,38,.76), rgba(15,15,25,.86)),
        radial-gradient(circle at 84% 6%, rgba(77,159,138,.14), rgba(77,159,138,0) 48%);
    box-shadow: 0 16px 30px rgba(0,0,0,.24);
}
.wt-ep-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.wt-ep-nav-top__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #eee5ff;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.wt-ep-nav-top__title i {
    color: var(--primary-light);
}
.wt-ep-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.wt-ep-nav-btn {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 94px;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.26);
    background: linear-gradient(160deg, rgba(11,11,18,.58), rgba(9,9,14,.7));
    color: var(--text);
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.wt-ep-nav-btn:hover {
    border-color: rgba(170,145,246,.6);
    background: linear-gradient(160deg, rgba(138,109,233,.2), rgba(96,73,184,.18));
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(10,8,22,.28);
    color: var(--text);
}
.wt-ep-nav-btn.disabled {
    opacity: .58;
    pointer-events: none;
    border-style: dashed;
}
.wt-ep-nav-arrow {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(138,109,233,.18);
    border: 1px solid rgba(138,109,233,.28);
    color: #ecdfff;
    flex-shrink: 0;
}
.wt-ep-nav-btn:hover .wt-ep-nav-arrow {
    background: rgba(138,109,233,.28);
    border-color: rgba(177,155,247,.62);
}
.wt-ep-nav-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.wt-ep-nav-btn--next {
    grid-template-columns: minmax(0, 1fr) 42px;
}
.wt-ep-nav-btn--next .wt-ep-nav-body {
    text-align: right;
    align-items: flex-end;
}
.wt-ep-nav-label {
    font-size: .66rem;
    color: rgba(214,206,234,.78);
    text-transform: uppercase;
    letter-spacing: .45px;
    display: block;
}
.wt-ep-nav-title {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
    color: #f2ebff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-ep-nav-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: var(--text-muted);
    font-size: .74rem;
    line-height: 1.25;
}
.wt-ep-nav-meta i {
    color: var(--secondary-light);
    font-size: .7rem;
}
.wt-ep-nav-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(138,109,233,.14);
    color: #ebe2ff;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.wt-ep-nav-all:hover {
    border-color: rgba(178,157,247,.7);
    color: #fff;
    background: rgba(138,109,233,.25);
}

/* ===== Mini Episode Grid (episode detail — all episodes) ===== */
.wt-mini-section {
    padding-top: 52px;
}
.wt-mini-shell {
    position: relative;
    padding: 30px 24px 24px;
    border-radius: 24px;
    border: 1px solid rgba(138,109,233,.24);
    background:
        linear-gradient(165deg, rgba(25,25,39,.86), rgba(14,14,24,.95)),
        radial-gradient(circle at 88% 10%, rgba(77,159,138,.16), rgba(77,159,138,0) 42%);
    box-shadow: 0 22px 42px rgba(0,0,0,.32);
    overflow: hidden;
}
.wt-mini-shell::before {
    content: '';
    position: absolute;
    top: -136px;
    right: -128px;
    width: 290px;
    height: 290px;
    background: radial-gradient(circle, rgba(138,109,233,.24), rgba(138,109,233,0) 70%);
    pointer-events: none;
}
.wt-mini-shell::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.34), rgba(77,159,138,.3), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-mini-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}
.wt-mini-head-main {
    max-width: 680px;
    min-width: 0;
}
.wt-mini-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(11,11,16,.5);
    color: #eadfff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .34px;
    text-transform: uppercase;
}
.wt-mini-kicker i {
    color: var(--secondary-light);
}
.wt-mini-heading {
    margin: 12px 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 1.3rem;
    line-height: 1.32;
}
.wt-mini-heading i {
    color: var(--primary-light);
    font-size: 1rem;
}
.wt-mini-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.64;
    max-width: 640px;
}
.wt-mini-overview {
    width: min(100%, 460px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.wt-mini-overview-item {
    min-width: 0;
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.5);
    display: grid;
    gap: 5px;
}
.wt-mini-overview-item--accent {
    border-color: rgba(77,159,138,.36);
    background: linear-gradient(165deg, rgba(77,159,138,.2), rgba(11,11,16,.56));
}
.wt-mini-overview-label {
    color: var(--text-muted);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.wt-mini-overview-value {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
}
.wt-mini-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.wt-mini-toolbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}
.wt-mini-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.28);
    background: rgba(8,8,14,.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    padding: 0 14px;
}
.wt-mini-search-wrap i {
    color: #cab6ff;
    font-size: .82rem;
}
.wt-mini-search {
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: .86rem;
}
.wt-mini-search:focus {
    outline: none;
}
.wt-mini-search::placeholder {
    color: rgba(199,199,222,.72);
}
.wt-mini-toolbar-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.wt-mini-filter {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 44px;
    min-width: 190px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.28);
    background:
        linear-gradient(45deg, transparent 50%, #c4b2ff 50%),
        linear-gradient(135deg, #c4b2ff 50%, transparent 50%),
        rgba(10,10,16,.66);
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%, 0 0;
    background-size: 5px 5px, 5px 5px, 100% 100%;
    background-repeat: no-repeat;
    color: var(--text);
    font-size: .8rem;
    font-weight: 600;
    padding: 0 34px 0 12px;
    line-height: 1.1;
}
.wt-mini-filter:focus {
    outline: none;
    border-color: rgba(165,141,247,.74);
}
.wt-mini-next-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    border-radius: 11px;
    border: 1px solid rgba(77,159,138,.44);
    background: linear-gradient(135deg, rgba(77,159,138,.26), rgba(36,119,101,.3));
    color: #d7fff1;
    padding: 0 14px;
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .15px;
    white-space: nowrap;
    transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.wt-mini-next-btn:hover {
    border-color: rgba(116,210,185,.74);
    background: linear-gradient(135deg, rgba(86,173,151,.35), rgba(46,141,120,.4));
    transform: translateY(-1px);
}
.wt-mini-next-btn[hidden] {
    display: none !important;
}
.wt-mini-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(170deg, rgba(24,24,38,.88), rgba(13,13,22,.96));
    border: 1px solid rgba(138,109,233,.22);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.wt-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(162,137,245,.54);
    box-shadow: 0 14px 28px rgba(0,0,0,.34);
}
.wt-mini-card.current {
    border-color: rgba(154,129,242,.86);
    box-shadow: 0 0 0 1px rgba(154,129,242,.26), 0 18px 30px rgba(0,0,0,.4);
}
.wt-mini-card.is-next {
    border-color: rgba(77,159,138,.64);
    box-shadow: 0 0 0 1px rgba(77,159,138,.25), 0 14px 28px rgba(0,0,0,.34);
}

.wt-mini-thumb {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--bg-surface);
    overflow: hidden;
    transform: translateZ(0);
}
.wt-mini-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,6,10,0) 58%, rgba(6,6,10,.6) 100%);
    pointer-events: none;
}
.wt-mini-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: filter;
    transition: filter .3s ease;
}
.wt-mini-card:hover .wt-mini-thumb img {
    filter: saturate(1.06) brightness(1.05);
}
.wt-mini-thumb .placeholder-mini {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
    color: #d9caff;
    font-size: 1.08rem;
    font-weight: 700;
}

.wt-mini-body {
    display: grid;
    gap: 9px;
    padding: 12px 12px 13px;
    min-height: 126px;
}
.wt-mini-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}
.wt-mini-episode-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(12,12,20,.56);
    color: #efe6ff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.15;
}
.wt-mini-meta .wt-ep-type-badges {
    gap: 5px;
}
.wt-mini-meta .wt-ep-type-badge {
    padding: 3px 7px;
    font-size: .56rem;
}
.wt-mini-meta .wt-ep-type-badge i {
    font-size: .52rem;
}
.wt-mini-title {
    color: #f4ecff;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.42;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wt-mini-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.wt-mini-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(11,11,16,.36);
    color: rgba(225,220,245,.78);
    font-size: .63rem;
    font-weight: 700;
    line-height: 1.2;
}
.wt-mini-flag i {
    color: var(--secondary-light);
    font-size: .62rem;
}
.wt-mini-flag--done {
    border-color: rgba(77,159,138,.3);
    background: rgba(77,159,138,.14);
    color: #dcfff1;
}
.wt-mini-flag--done i {
    color: #7ef0c8;
}
.wt-mini-flag--progress {
    border-color: rgba(138,109,233,.34);
    background: rgba(138,109,233,.16);
    color: #efe4ff;
}
.wt-mini-flag--secret {
    border-color: rgba(255,186,94,.28);
    background: rgba(255,186,94,.12);
    color: #ffe6bf;
}
.wt-mini-flag--secret i {
    color: #ffc970;
}
.wt-mini-watch {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    min-height: 38px;
    padding: 0 11px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.4);
    background: rgba(138,109,233,.18);
    color: #efe6ff;
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.wt-mini-watch:hover {
    color: #fff;
    border-color: rgba(178,157,247,.78);
    background: rgba(138,109,233,.3);
}
.wt-mini-watch i {
    font-size: .66rem;
    opacity: .9;
}
.wt-mini-state-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    border: 1px solid rgba(138,109,233,.5);
    background: rgba(9,9,14,.74);
    color: #f0e9ff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.wt-mini-state-badge.is-watched {
    border-color: rgba(77,159,138,.45);
    color: #a9edc8;
}
.wt-mini-state-badge.is-upnext {
    border-color: rgba(77,159,138,.82);
    color: #c8ffea;
    background: rgba(77,159,138,.26);
}
.wt-mini-current {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(77,159,138,.46);
    background: rgba(77,159,138,.16);
    color: #cdfbe9;
    font-size: .73rem;
    font-weight: 700;
}
.wt-mini-empty {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 21px 18px;
    border-radius: 14px;
    border: 1px dashed rgba(138,109,233,.34);
    background: rgba(8,8,14,.44);
    color: var(--text-muted);
    text-align: center;
}
.wt-mini-empty i {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 6px;
    color: #ccb9ff;
}
.wt-mini-empty p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.5;
}

/* CTA block */
.wt-cta {
    text-align: center; margin-top: 32px;
}

.wt-cta.is-loading {
    opacity: .9;
}

.wt-infinite-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.48);
    color: rgba(210,210,228,.86);
    font-size: .82rem;
}

.wt-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(210,210,228,.25);
    border-top-color: rgba(138,109,233,.75);
    animation: wtSpin .9s linear infinite;
}

@keyframes wtSpin {
    to { transform: rotate(360deg); }
}

/* ===== Fade-in Scroll Animation ===== */
.wt-fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.wt-fade-in.visible {
    opacity: 1; transform: translateY(0);
}

/* ===== Active Filter Chips ===== */
.wt-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 8px;
    row-gap: 10px;
    margin-top: 14px;
}
.wt-filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(138,109,233,.12);
    border: 1px solid rgba(138,109,233,.25);
    color: var(--primary-light); font-size: .82rem; font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: all .25s;
    line-height: 1.1;
}
.wt-filter-chip i {
    font-size: .72rem; opacity: .7;
}
.wt-filter-chip:hover {
    background: rgba(138,109,233,.2);
    border-color: rgba(138,109,233,.45);
    color: var(--text);
}
.wt-filter-chip-x {
    font-size: 1rem; line-height: 1; margin-left: 2px;
    opacity: .6; transition: opacity .2s;
    display: inline-flex;
    align-items: center;
}
.wt-filter-chip:hover .wt-filter-chip-x {
    opacity: 1;
}

/* ===== Results Section Shell (walkthroughs index) ===== */
.wt-results-shell {
    position: relative;
    border-radius: 26px;
    border: 1px solid rgba(138,109,233,.26);
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(162deg, rgba(24,24,37,.9), rgba(14,14,22,.96)),
        radial-gradient(circle at 86% 12%, rgba(77,159,138,.22), rgba(77,159,138,0) 44%);
    box-shadow: 0 24px 52px rgba(0,0,0,.35);
}
.wt-results-shell:not(.wt-results-shell--episodes)::before {
    content: '';
    position: absolute;
    top: -132px;
    right: -136px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138,109,233,.24), rgba(138,109,233,0) 70%);
    pointer-events: none;
}
.wt-results-shell::after {
    content: '';
    position: absolute;
    inset: auto 24px 0 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.34), rgba(138,109,233,0));
    pointer-events: none;
}
.wt-results-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
}
.wt-results-headline {
    max-width: 760px;
}
.wt-results-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(11,11,16,.56);
    color: #e8ddff;
    text-transform: uppercase;
    font-size: .68rem;
    letter-spacing: .45px;
    font-weight: 700;
}
.wt-results-kicker i {
    color: var(--secondary-light);
    font-size: .74rem;
}
.wt-results-title {
    margin: 14px 0 12px;
}
.wt-results-subtitle {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.65;
    max-width: 780px;
}
.wt-results-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-width: 340px;
}
.wt-results-overview-item {
    display: grid;
    gap: 4px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.5);
    padding: 12px 12px 11px;
}
.wt-results-overview-label {
    font-size: .67rem;
    letter-spacing: .4px;
    color: rgba(213,212,232,.75);
    text-transform: uppercase;
    font-weight: 700;
}
.wt-results-overview-value {
    font-size: 1.06rem;
    line-height: 1.2;
    color: #f4ecff;
    font-weight: 700;
}
.wt-results-toolbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.44);
}
.wt-results-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.11);
    color: #d9d9ec;
    font-size: .78rem;
    line-height: 1;
}
.wt-results-pill i {
    color: var(--secondary-light);
    font-size: .76rem;
}
.wt-results-pill b {
    color: #fff;
    font-weight: 700;
}
.wt-results-tools {
    margin-left: auto;
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}
.wt-view-toggle {
    display: inline-flex;
    gap: 6px;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.48);
}
.wt-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 9px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-size: .76rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.wt-view-btn:hover {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(138,109,233,.14);
    border-color: rgba(138,109,233,.22);
}
.wt-view-btn.is-active {
    color: #fff;
    background: rgba(138,109,233,.22);
    border-color: rgba(170,145,246,.65);
}

/* ===== Index view mode: list ===== */
body.wt-view-list .wt-grid {
    grid-template-columns: 1fr;
    gap: 14px;
}
body.wt-view-list .wt-card {
    display: flex;
    align-items: stretch;
}
body.wt-view-list .wt-card-thumb {
    flex: 0 0 280px;
    padding-bottom: 0;
    height: 170px;
}
body.wt-view-list .wt-card-body {
    flex: 1 1 auto;
}
@media (max-width: 860px) {
    body.wt-view-list .wt-card {
        display: block;
    }
    body.wt-view-list .wt-card-thumb {
        flex: none;
        height: auto;
        padding-bottom: 56.25%;
    }
}
.wt-results-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.32);
    background: linear-gradient(135deg, rgba(138,109,233,.25), rgba(70,132,189,.16));
    color: #f0e9ff;
    font-size: .77rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.wt-results-tool:hover {
    color: #fff;
    border-color: rgba(170,145,246,.7);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(62,45,116,.35);
}
.wt-results-tool--ghost {
    border-color: rgba(138,109,233,.24);
    background: rgba(11,11,16,.56);
}
.wt-results-content {
    position: relative;
    z-index: 1;
}
.wt-results-shell .wt-grid {
    margin-top: 0;
}
.wt-results-shell .wt-pagination {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(138,109,233,.14);
}
.wt-results-shell .wt-empty {
    margin-top: 4px;
    border-color: rgba(138,109,233,.24);
    background: linear-gradient(155deg, rgba(26,26,40,.76), rgba(18,18,29,.88));
}
.wt-results-shell.wt-results-shell--episodes {
    position: relative;
    overflow: hidden;
    padding: 24px 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(138,109,233,.26);
    background:
        linear-gradient(158deg, rgba(24,24,37,.9), rgba(14,14,22,.95)),
        radial-gradient(circle at 86% 16%, rgba(77,159,138,.17), rgba(77,159,138,0) 44%);
    box-shadow: 0 20px 42px rgba(0,0,0,.34);
}
.wt-results-shell.wt-results-shell--episodes::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-episodes-results-aura {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}
.wt-episodes-results-aura--one {
    width: 320px;
    height: 320px;
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(138,109,233,.2), rgba(138,109,233,0) 72%);
}
.wt-episodes-results-aura--two {
    width: 300px;
    height: 300px;
    right: -110px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(77,159,138,.18), rgba(77,159,138,0) 72%);
}
.wt-episodes-results-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 14px;
    align-items: start;
    margin-bottom: 12px;
}
.wt-episodes-results-copy {
    min-width: 0;
}
.wt-results-kicker--episodes {
    margin-bottom: 9px;
}
.wt-results-title--episodes {
    margin-bottom: 10px;
}
.wt-results-subtitle--episodes {
    margin-bottom: 10px;
}
.wt-episodes-results-context {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.wt-episodes-context-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.11);
    color: #dcd2f8;
    font-size: .72rem;
    line-height: 1;
}
.wt-episodes-context-chip i {
    color: var(--secondary-light);
}
.wt-episodes-context-chip b {
    color: #fff;
}
.wt-episodes-context-chip--hint {
    border-color: rgba(77,159,138,.3);
    background: rgba(77,159,138,.12);
    color: #d6fff2;
}
.wt-episodes-results-overview {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.wt-episodes-results-overview-item {
    min-width: 0;
    display: grid;
    gap: 3px;
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.48);
}
.wt-episodes-results-overview-label {
    font-size: .64rem;
    letter-spacing: .36px;
    text-transform: uppercase;
    color: rgba(213,212,232,.74);
}
.wt-episodes-results-overview-value {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #f5efff;
}
.wt-episodes-results-toolbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(10,10,16,.46);
}
.wt-episodes-results-pills {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wt-results-pill--episodes {
    background: rgba(138,109,233,.13);
}
.wt-results-pill--mode {
    border-color: rgba(77,159,138,.3);
    background: rgba(77,159,138,.12);
}
.wt-results-tools--episodes {
    margin-left: 0;
}
.wt-episodes-progress-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}
.wt-episodes-progress-track {
    width: 100%;
    height: 8px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.wt-episodes-progress-caption {
    margin: 7px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    line-height: 1.4;
    color: var(--text-muted);
}
.wt-episodes-progress-caption i {
    color: var(--secondary-light);
}
.wt-results-content--episodes {
    position: relative;
    z-index: 1;
}
@media (max-width: 1080px) {
    .wt-episodes-results-head {
        grid-template-columns: 1fr;
    }
    .wt-episodes-results-overview {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .wt-episodes-results-toolbar {
        grid-template-columns: 1fr;
    }
    .wt-results-tools--episodes {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 840px) {
    .wt-results-shell.wt-results-shell--episodes {
        padding: 20px 16px 16px;
        border-radius: 20px;
    }
    .wt-episodes-results-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-results-tools--episodes {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .wt-results-shell.wt-results-shell--episodes {
        padding: 16px 12px 14px;
        border-radius: 16px;
    }
    .wt-episodes-results-overview {
        grid-template-columns: 1fr;
    }
    .wt-episodes-results-toolbar {
        padding: 8px;
    }
    .wt-episodes-results-pills {
        width: 100%;
    }
    .wt-results-pill--episodes {
        width: 100%;
        justify-content: flex-start;
    }
    .wt-episodes-progress-caption {
        font-size: .72rem;
    }
}
.wt-meta-row--episodes {
    margin-bottom: 14px;
}
.wt-meta-row--episodes .wt-meta-card {
    min-height: 74px;
}

.wt-results-bar {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
    margin-bottom: 18px; color: var(--text-muted); font-size: .86rem;
}
.wt-results-bar b { color: var(--text); }

.wt-episodes-toolbar {
    margin-bottom: 18px;
}
.wt-episodes-toolbar .wt-filters-shell--episodes {
    padding: 20px;
    border-radius: 22px;
    border-color: rgba(138,109,233,.32);
    background:
        linear-gradient(156deg, rgba(25,25,38,.92), rgba(14,14,22,.96)),
        radial-gradient(circle at 92% 8%, rgba(77,159,138,.22), rgba(77,159,138,0) 42%);
}
.wt-episodes-toolbar .wt-filters-shell--episodes::before {
    top: -110px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(138,109,233,.22), rgba(138,109,233,0) 70%);
}
.wt-episodes-toolbar-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    margin-bottom: 14px;
}
.wt-episodes-toolbar-headline {
    min-width: 0;
}
.wt-episodes-toolbar-headline .wt-filters-subtitle {
    margin-top: 9px;
    margin-bottom: 0;
    max-width: 760px;
}
.wt-episodes-toolbar-overview {
    min-width: 220px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.wt-episodes-toolbar-overview-item {
    display: grid;
    gap: 3px;
    padding: 9px 11px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.26);
    background: rgba(11,11,16,.5);
    text-align: right;
}
.wt-episodes-toolbar-overview-label {
    font-size: .66rem;
    letter-spacing: .34px;
    text-transform: uppercase;
    color: rgba(210,210,228,.74);
}
.wt-episodes-toolbar-overview-value {
    font-size: 1.02rem;
    line-height: 1.1;
    color: #f5f0ff;
    font-weight: 700;
}
.wt-episodes-toolbar .wt-filters-form--walkthroughs {
    gap: 11px;
}
.wt-episodes-toolbar-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(400px, 1fr);
    gap: 10px;
    align-items: stretch;
}
.wt-episodes-toolbar .wt-field {
    align-content: start;
}
.wt-field--episodes-search .wt-search-input {
    min-height: 44px;
}
.wt-field--episodes-search .wt-search-box {
    max-width: 760px;
}
.wt-episodes-toolbar-controls {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: end;
}

.wt-field--episodes-jump {
    min-width: 0;
    grid-column: 1 / -1;
}
.wt-episodes-jump {
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 440px;
}
.wt-episodes-jump-input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
}
.wt-episodes-jump-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.26);
    background: rgba(11,11,16,.48);
    color: #efe7ff;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.wt-episodes-jump-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(138,109,233,.48);
    box-shadow: 0 8px 20px rgba(63,46,118,.25);
}

.wt-field--episodes-flags {
    grid-column: 1 / -1;
}
.wt-episodes-flag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wt-episodes-flag-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.11);
    color: #dcd2f8;
    font-size: .74rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.wt-episodes-flag-btn i {
    color: var(--secondary-light);
}
.wt-episodes-flag-btn.is-active,
.wt-episodes-flag-btn[aria-pressed="true"] {
    border-color: rgba(77,159,138,.38);
    background: rgba(77,159,138,.14);
    color: #d6fff2;
}

.wt-ep-row-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
}
.wt-ep-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.1);
    color: #dcd2f8;
    line-height: 1;
}
.wt-ep-flag i {
    color: var(--secondary-light);
    font-size: .74rem;
}
.wt-ep-flag--final {
    border-color: rgba(214,79,79,.28);
    background: rgba(214,79,79,.1);
    color: #ffd0d0;
}
.wt-ep-flag--final i {
    color: rgba(255,124,124,.95);
}
.wt-ep-flag--bonus {
    border-color: rgba(255,195,90,.26);
    background: rgba(255,195,90,.1);
    color: #fff3d0;
}
.wt-ep-flag--bonus i {
    color: rgba(255,204,102,.95);
}
.wt-ep-flag--chapters {
    border-color: rgba(77,159,138,.3);
    background: rgba(77,159,138,.12);
    color: #d6fff2;
}
.wt-ep-flag--chapters i {
    color: rgba(129,236,201,.95);
}
.wt-ep-flag--secrets {
    border-color: rgba(138,109,233,.34);
    background: rgba(138,109,233,.12);
    color: #efe7ff;
}
.wt-ep-progress-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    color: #d6fff2;
    border: 1px solid rgba(77,159,138,.35);
    background: rgba(77,159,138,.14);
    vertical-align: middle;
}
.wt-ep-progress-badge.is-done {
    color: #9ad6b2;
}
.wt-field--episodes-view {
    min-width: 154px;
}
.wt-episodes-toolbar .wt-field--episodes-view .wt-view-modes {
    min-height: 44px;
    justify-content: flex-start;
}
.wt-episodes-toolbar-foot {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(138,109,233,.16);
}
.wt-episodes-toolbar .wt-filters-hint {
    max-width: none;
}
.wt-episodes-toolbar .wt-filters-actions {
    flex-wrap: nowrap;
}
.wt-episodes-toolbar .wt-filters-actions .wt-clear-btn,
.wt-episodes-toolbar .wt-filters-actions .wt-filter-btn {
    white-space: nowrap;
}
@media (max-width: 1080px) {
    .wt-episodes-toolbar-top {
        grid-template-columns: 1fr;
    }
    .wt-episodes-toolbar-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }
    .wt-episodes-toolbar-overview-item {
        text-align: left;
    }
    .wt-episodes-toolbar-grid {
        grid-template-columns: 1fr;
    }
    .wt-episodes-toolbar-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-field--episodes-view {
        min-width: 0;
        grid-column: 1 / -1;
    }
}

/* ===== Episodes toolbar v2 ===== */
.wt-episodes-toolbar--v2 .wt-episodes-toolbar-grid--v2 {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(420px, 1fr);
    gap: 12px;
    align-items: start;
}

.wt-episodes-toolbar--v2 .wt-episodes-toolbar-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wt-episodes-toolbar--v2 .wt-episodes-toolbar-kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 8px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.5);
    color: rgba(245,240,255,.9);
    font-size: .74rem;
    font-weight: 800;
}

.wt-episodes-toolbar--v2 .wt-episodes-toolbar-row {
    min-width: 0;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(11,11,16,.35);
}

.wt-episodes-toolbar--v2 .wt-episodes-toolbar-row--primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wt-episodes-toolbar--v2 .wt-episodes-toolbar-row--secondary {
    margin-top: 10px;
    grid-template-columns: minmax(240px, 1fr) 1.3fr;
    align-items: start;
}

.wt-episodes-toolbar--v2 .wt-field--episodes-jump {
    grid-column: auto;
}

.wt-episodes-toolbar--v2 .wt-episodes-jump {
    max-width: none;
}

.wt-episodes-toolbar--v2 .wt-field--episodes-search .wt-search-box {
    max-width: none;
}

.wt-episodes-toolbar--v2 .wt-field-help b {
    color: #fff;
}

@media (max-width: 1080px) {
    .wt-episodes-toolbar--v2 .wt-episodes-toolbar-grid--v2 {
        grid-template-columns: 1fr;
    }
    .wt-episodes-toolbar--v2 .wt-episodes-toolbar-row--primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-episodes-toolbar--v2 .wt-episodes-toolbar-row--secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .wt-episodes-toolbar--v2 .wt-episodes-toolbar-row--primary {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 840px) {
    .wt-episodes-toolbar .wt-filters-shell--episodes {
        border-radius: 18px;
        padding: 16px;
    }
    .wt-episodes-toolbar-controls {
        grid-template-columns: 1fr;
    }
    .wt-episodes-toolbar .wt-field--episodes-view .wt-view-modes {
        justify-content: center;
    }
    .wt-episodes-toolbar-foot {
        grid-template-columns: 1fr;
    }
    .wt-episodes-toolbar .wt-filters-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .wt-episodes-toolbar .wt-filters-actions .wt-clear-btn,
    .wt-episodes-toolbar .wt-filters-actions .wt-filter-btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 640px) {
    .wt-episodes-toolbar .wt-filters-shell--episodes {
        padding: 14px;
        border-radius: 16px;
    }
    .wt-episodes-toolbar-overview {
        grid-template-columns: 1fr;
    }
    .wt-episodes-toolbar-headline .wt-filters-subtitle {
        font-size: .8rem;
        line-height: 1.56;
    }
}
.wt-episodes-progress-fill {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #3f8b77 0%, #50af96 40%, #a07cf0 100%);
    transition: width .35s ease;
}
.wt-empty--inline {
    margin-top: 14px;
}
.wt-empty--inline .btn-primary {
    border: 0;
    cursor: pointer;
}
.wt-view-modes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(18,18,29,.7);
}
.wt-view-mode-btn {
    width: 36px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: var(--text-muted);
    background: transparent;
    font-size: .82rem;
    transition: all .2s ease;
}
.wt-view-mode-btn:hover {
    color: var(--text);
    border-color: rgba(138,109,233,.25);
    background: rgba(138,109,233,.12);
}
.wt-view-mode-btn.active {
    color: #fff;
    border-color: rgba(138,109,233,.45);
    background: linear-gradient(135deg, rgba(138,109,233,.35), rgba(77,159,138,.25));
}

.wt-ep-row[hidden] {
    display: none !important;
}
.wt-ep-row.is-watched {
    border-color: rgba(77,159,138,.35);
}
.wt-ep-order-num {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 7px;
    font-size: .7rem;
    font-weight: 700;
    border: 1px solid rgba(138,109,233,.35);
    background: rgba(11,11,16,.78);
    color: var(--primary-light);
}
.wt-ep-watched-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    color: #9ad6b2;
    border: 1px solid rgba(77,159,138,.35);
    background: rgba(77,159,138,.14);
    vertical-align: middle;
}

.wt-episodes-list.is-compact .wt-ep-row {
    gap: 12px;
    padding: 10px;
}
.wt-episodes-list.is-compact .wt-ep-row-thumb {
    width: 144px;
    min-width: 144px;
}
.wt-episodes-list.is-compact .wt-ep-row-desc {
    -webkit-line-clamp: 1;
    margin-bottom: 4px;
}
.wt-episodes-list.is-compact .wt-watch-btn,
.wt-episodes-list.is-compact .wt-yt-btn {
    padding: 8px 14px;
    font-size: .8rem;
}

.wt-episodes-list.is-numbers .wt-ep-row {
    display: grid;
    grid-template-columns: minmax(72px, auto) 1fr auto;
    gap: 14px;
    align-items: center;
}
.wt-episodes-list.is-numbers .wt-ep-row-thumb {
    width: 72px;
    min-width: 72px;
    aspect-ratio: 1/1;
    border-radius: 10px;
}
.wt-episodes-list.is-numbers .wt-ep-row-thumb img,
.wt-episodes-list.is-numbers .wt-ep-row-thumb .placeholder-ep {
    display: none;
}
.wt-episodes-list.is-numbers .wt-ep-duration,
.wt-episodes-list.is-numbers .wt-ep-new-badge {
    display: none;
}
.wt-episodes-list.is-numbers .wt-ep-order-num {
    inset: 0;
    position: static;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: .92rem;
    background: rgba(138,109,233,.16);
}
.wt-episodes-list.is-numbers .wt-ep-row-desc {
    display: none;
}
.wt-episodes-list.is-numbers .wt-ep-row-actions {
    flex-direction: row;
}

@media (max-width: 840px) {
    .wt-filters {
        position: sticky;
        top: 64px;
        z-index: 25;
        backdrop-filter: blur(12px);
        background: rgba(11,11,16,.72);
        border-top: 1px solid rgba(138,109,233,.08);
        border-bottom: 1px solid rgba(138,109,233,.08);
        padding-top: 10px;
        padding-bottom: 14px;
    }
    .wt-filters-shell {
        border-radius: 18px;
        padding: 16px;
    }
    .wt-filters-head {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-filters-head-main {
        max-width: none;
    }
    .wt-filters-head-side {
        align-items: stretch;
        min-width: 0;
    }
    .wt-filters-summary {
        text-align: left;
    }
    .wt-filters-row--primary,
    .wt-filters-row--secondary {
        grid-template-columns: 1fr;
    }
    .wt-filters-row--actions {
        grid-template-columns: 1fr;
    }
    .wt-year-range {
        grid-template-columns: 1fr;
    }
    .wt-view-modes {
        justify-content: center;
    }
    .wt-filters-hint {
        font-size: .74rem;
    }
    .wt-filters-actions {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
    .wt-filters-actions .wt-filter-btn,
    .wt-filters-actions .wt-clear-btn {
        text-align: center;
        width: 100%;
    }
    .wt-results-shell {
        padding: 22px 18px 18px;
        border-radius: 20px;
    }
    .wt-results-shell--episodes {
        padding: 22px 18px 18px;
    }
    .wt-results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 14px;
    }
    .wt-results-overview {
        min-width: 0;
        width: 100%;
    }
    .wt-results-tools {
        margin-left: 0;
        width: 100%;
    }
}

/* ===== Episode Number Badge (header) ===== */
.wt-ep-number-badge {
    display: inline-flex; align-items: center;
    padding: 4px 14px; border-radius: 20px; margin-right: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-size: .82rem; font-weight: 700;
    vertical-align: middle;
}
.wt-ep-type-badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    vertical-align: middle;
}
.wt-ep-type-badges--compact {
    margin-right: 0;
}
.wt-ep-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.34);
    background: rgba(11,11,18,.6);
    color: #f2ecff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.1;
    text-transform: uppercase;
}
.wt-ep-type-badge i {
    font-size: .62rem;
    opacity: .92;
}
.wt-ep-type-badge--final {
    border-color: rgba(77,159,138,.55);
    background: rgba(77,159,138,.18);
    color: #c8ffea;
}
.wt-ep-type-badge--bonus {
    border-color: rgba(255,193,7,.48);
    background: rgba(255,193,7,.14);
    color: #ffeaa9;
}

/* ===== Episode Two-Column Layout ===== */
.wt-ep-layout {
    display: grid; grid-template-columns: 1fr 280px; gap: 24px;
    align-items: start;
}

.wt-ep-main { min-width: 0; }

/* Episode info card — improved */
.wt-ep-info-card--revamp {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(138,109,233,.28);
    background:
        linear-gradient(160deg, rgba(26,26,40,.86), rgba(18,18,29,.92)),
        radial-gradient(circle at 86% 10%, rgba(77,159,138,.18), rgba(77,159,138,0) 44%);
    box-shadow: 0 20px 38px rgba(0,0,0,.28);
}
.wt-ep-info-card--revamp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-ep-info-aura {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}
.wt-ep-info-aura--one {
    width: 300px;
    height: 300px;
    left: -120px;
    top: -110px;
    background: radial-gradient(circle, rgba(138,109,233,.24), rgba(138,109,233,0) 72%);
}
.wt-ep-info-aura--two {
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(77,159,138,.2), rgba(77,159,138,0) 72%);
}
.wt-ep-info-card--revamp .wt-ep-info-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(138,109,233,.14);
}
.wt-ep-info-head-main {
    min-width: 0;
}
.wt-ep-info-head-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.wt-ep-info-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(11,11,16,.52);
    color: #e7ddff;
    font-size: .66rem;
    letter-spacing: .45px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-ep-info-kicker i {
    color: var(--secondary-light);
}
.wt-ep-info-episode-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(77,159,138,.4);
    background: rgba(77,159,138,.14);
    color: #ddfff5;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    line-height: 1;
}
.wt-ep-info-episode-pill i {
    font-size: .62rem;
    color: var(--secondary-light);
}
.wt-ep-info-card--revamp .wt-ep-info-title {
    font-size: 1.28rem;
    line-height: 1.38;
    margin-bottom: 12px;
}
.wt-ep-info-head-subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--text-muted);
    font-size: .91rem;
    line-height: 1.7;
}
.wt-ep-info-head-subtitle b {
    color: #efe8ff;
    font-weight: 700;
}
.wt-ep-info-meta-shell {
    min-width: 0;
    padding: 13px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(160deg, rgba(17,17,28,.72), rgba(10,10,17,.86));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.wt-ep-info-meta-head {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 11px;
    padding: 6px 9px;
    border-radius: 10px;
    background: rgba(138,109,233,.14);
    color: #e9deff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .28px;
    text-transform: uppercase;
}
.wt-ep-info-meta-head i {
    color: var(--primary-light);
    font-size: .68rem;
}
.wt-ep-info-card--revamp .wt-ep-info-meta {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 9px;
}
.wt-ep-info-card--revamp .wt-ep-info-meta-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 24px 1fr;
    grid-template-areas:
        "icon label"
        "icon value";
    column-gap: 8px;
    row-gap: 3px;
    align-items: center;
    padding: 10px 10px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(8,8,14,.52);
}
.wt-ep-info-card--revamp .wt-ep-info-meta-item i {
    grid-area: icon;
    color: var(--primary-light);
    font-size: .8rem;
}
.wt-ep-info-meta-item__label {
    grid-area: label;
    color: rgba(212,212,232,.74);
    font-size: .64rem;
    letter-spacing: .32px;
    text-transform: uppercase;
    line-height: 1;
}
.wt-ep-info-meta-item__value {
    grid-area: value;
    color: #f4ecff;
    font-size: .84rem;
    line-height: 1.25;
    font-weight: 700;
}
#wt-episode-description,
#wt-chapters-card,
#comments-section,
#wt-player-section {
    scroll-margin-top: 96px;
}
.wt-ep-quick-jumps {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 12px;
}
.wt-ep-quick-jumps--v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: rgba(238,234,255,.9);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .32px;
    text-transform: uppercase;
}
.wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__title i {
    color: var(--secondary-light);
    font-size: .86rem;
}
.wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.wt-ep-quick-jumps--v2 .wt-time-link-dropdown {
    left: auto;
    right: 0;
}
.wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__search {
    width: 100%;
}
.wt-ep-quick-jumps--v2 .wt-ep-search-wrap {
    width: 100%;
    min-width: 0;
}
.wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.wt-ep-jump-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.25);
    color: rgba(255,255,255,.92);
    font-size: .66rem;
    font-weight: 800;
    line-height: 1;
}
.wt-ep-jump-chip:focus-visible {
    outline: 2px solid rgba(177,155,247,.55);
    outline-offset: 2px;
}
.wt-ep-jump-chip--action:focus-visible {
    outline-color: rgba(77,159,138,.6);
}

.wt-ep-quick-jumps--v2 .wt-ep-jump-chip--action {
    margin-left: 0;
}
.wt-ep-quick-jumps__label {
    color: var(--text-muted);
    font-size: .73rem;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-ep-jump-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(138,109,233,.1);
    color: #e7dcff;
    font-size: .77rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all .2s ease;
}
.wt-ep-jump-chip:hover {
    border-color: rgba(170,145,246,.55);
    background: rgba(138,109,233,.2);
    color: #fff;
}
.wt-ep-jump-chip i {
    color: var(--secondary-light);
}
.wt-ep-jump-chip--action {
    margin-left: auto;
    cursor: pointer;
    font-family: inherit;
    border-color: rgba(77,159,138,.34);
    background: rgba(77,159,138,.15);
    color: #d6fff2;
}
.wt-ep-jump-chip--action:hover {
    border-color: rgba(77,159,138,.62);
    background: rgba(77,159,138,.24);
    color: #ecfff8;
}

.wt-ep-content-block {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(154deg, rgba(20,20,31,.76), rgba(13,13,21,.86));
}
.wt-ep-content-title {
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #efe6ff;
    font-size: .9rem;
    font-weight: 700;
}
.wt-ep-content-title i {
    color: var(--secondary-light);
    font-size: .86rem;
}
.wt-ep-content-block--tags .wt-ep-content-title i {
    color: var(--primary-light);
}
.wt-ep-description {
    color: var(--text-muted);
    font-size: .91rem;
    line-height: 1.78;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}
.wt-chapters-card {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(154deg, rgba(20,20,31,.76), rgba(13,13,21,.86));
}
.wt-chapters-title {
    font-size: .92rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.wt-chapters-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.wt-chapters-count {
    font-size: .74rem;
    color: var(--text-muted);
}
.wt-chapters-search-wrap {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: min(260px, 100%);
    min-height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.42);
    padding: 0 10px;
}
.wt-chapters-search-wrap i {
    color: var(--primary-light);
    font-size: .78rem;
}
.wt-chapters-search {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: .8rem;
}
.wt-chapters-search:focus {
    outline: none;
}
.wt-chapters-search::placeholder {
    color: var(--text-muted);
}
.wt-chapters-list {
    display: grid;
    gap: 8px;
}
.wt-chapter-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}
.wt-chapter-save-btn {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(138,109,233,.10);
    color: rgba(236,228,255,.92);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.wt-chapter-save-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(177,155,247,.68);
    background: rgba(138,109,233,.20);
    color: #fff;
}
.wt-chapter-save-btn.is-active {
    border-color: rgba(77,159,138,.6);
    background: rgba(77,159,138,.16);
    color: #d6fff2;
}
.wt-chapter-save-btn i {
    font-size: .9rem;
}
.wt-chapter-btn {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 10px;
    align-items: center;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(15,15,22,.6);
    color: var(--text);
    padding: 8px 10px;
    transition: all .2s ease;
}
.wt-chapter-btn:hover {
    border-color: var(--primary);
    background: rgba(138,109,233,.12);
}
.wt-chapter-time {
    color: var(--secondary-light);
    font-size: .78rem;
    font-weight: 700;
}
.wt-chapter-label {
    color: var(--text-muted);
    font-size: .82rem;
}
.wt-chapters-empty {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px dashed rgba(138,109,233,.26);
    color: var(--text-muted);
    font-size: .8rem;
    text-align: center;
}

/* Collapsible content for long episode texts */
.js-wt-collapsible.is-collapsible {
    position: relative;
    overflow: hidden;
    max-height: none;
    transition: max-height .28s ease;
    --wt-collapsed-height: 180px;
}
.js-wt-collapsible.is-collapsed {
    max-height: var(--wt-collapsed-height);
}
.js-wt-collapsible.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(19,19,28,0), rgba(19,19,28,.95) 70%);
}
.wt-collapsible-toggle {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 9px;
    border: 1px solid rgba(138,109,233,.28);
    background: rgba(138,109,233,.12);
    color: #e8ddff;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1;
    transition: all .2s ease;
}
.wt-collapsible-toggle:hover {
    border-color: rgba(170,145,246,.55);
    background: rgba(138,109,233,.2);
    color: #fff;
}
.wt-collapsible-toggle i {
    transition: transform .2s ease;
}
.wt-collapsible-toggle.is-open i {
    transform: rotate(180deg);
}
.wt-nearby-card {
    margin-top: 18px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(26,26,40,.6), rgba(19,19,28,.7));
}
.wt-nearby-title {
    font-size: .95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.wt-nearby-grid {
    display: grid;
    gap: 8px;
}
.wt-nearby-item {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(11,11,16,.45);
    padding: 8px 10px;
}
.wt-nearby-item:hover {
    border-color: var(--primary);
}
.wt-nearby-num {
    width: 28px; height: 28px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .76rem; font-weight: 700;
    color: var(--primary-light);
    background: rgba(138,109,233,.2);
}
.wt-nearby-name {
    font-size: .84rem; color: var(--text);
}
.wt-nearby-duration {
    font-size: .76rem; color: var(--text-muted);
}

/* Tags */
.wt-ep-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}
.wt-ep-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 20px;
    background: rgba(138,109,233,.08);
    border: 1px solid rgba(138,109,233,.15);
    color: var(--primary-light); font-size: .78rem; font-weight: 500;
    transition: all .2s;
}
.wt-ep-tag:hover {
    background: rgba(138,109,233,.15);
    border-color: rgba(138,109,233,.3);
}
.wt-ep-tag i { font-size: .65rem; opacity: .7; }

/* ===== Retro Gaming Cards ===== */
.wt-retro-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border-radius: 14px; margin-top: 16px;
    background: linear-gradient(160deg, rgba(26,26,40,.7), rgba(19,19,28,.8));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s;
    animation: fadeUp .5s cubic-bezier(.16,1,.3,1) both;
}
.wt-retro-card:hover {
    transform: translateY(-2px);
}
.wt-retro-card__icon {
    flex-shrink: 0; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 1.1rem;
}
.wt-retro-card__content { flex: 1; min-width: 0; }
.wt-retro-card__title {
    font-size: .9rem; font-weight: 700; margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
}
.wt-retro-card__text {
    color: var(--text-muted); font-size: .88rem; line-height: 1.7;
}

/* Card variants */
.wt-retro-card--progress { border-color: rgba(77,159,138,.2); }
.wt-retro-card--progress:hover { border-color: rgba(77,159,138,.4); }
.wt-retro-card--progress .wt-retro-card__icon {
    background: rgba(77,159,138,.12); color: var(--secondary-light);
}
.wt-retro-card--progress .wt-retro-card__title { color: var(--secondary-light); }

.wt-retro-card--secrets { border-color: rgba(255,193,7,.15); }
.wt-retro-card--secrets:hover { border-color: rgba(255,193,7,.35); }
.wt-retro-card--secrets .wt-retro-card__icon {
    background: rgba(255,193,7,.1); color: #FFD54F;
}
.wt-retro-card--secrets .wt-retro-card__title { color: #FFD54F; }

.wt-retro-card--difficulty { border-color: rgba(244,67,54,.15); }
.wt-retro-card--difficulty:hover { border-color: rgba(244,67,54,.35); }
.wt-retro-card--difficulty .wt-retro-card__icon {
    background: rgba(244,67,54,.1); color: #EF5350;
}
.wt-retro-card--difficulty .wt-retro-card__title { color: #EF5350; }

.wt-retro-card--trivia { border-color: rgba(138,109,233,.15); }
.wt-retro-card--trivia:hover { border-color: rgba(138,109,233,.35); }
.wt-retro-card--trivia .wt-retro-card__icon {
    background: rgba(138,109,233,.12); color: var(--primary-light);
}
.wt-retro-card--trivia .wt-retro-card__title { color: var(--primary-light); }

/* ===== Episode Sidebar ===== */
.wt-ep-sidebar { position: sticky; top: 90px; }

.wt-ep-sidebar-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.24);
    padding: 16px;
    background:
        linear-gradient(165deg, rgba(24,24,38,.82), rgba(14,14,24,.92)),
        radial-gradient(circle at 88% 6%, rgba(77,159,138,.16), rgba(77,159,138,0) 46%);
    box-shadow: 0 14px 28px rgba(0,0,0,.24);
}
.wt-ep-sidebar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.03);
    pointer-events: none;
}
.wt-ep-sidebar-top {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.wt-ep-sidebar-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(11,11,16,.46);
    color: #e8ddff;
    font-size: .64rem;
    letter-spacing: .35px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-ep-sidebar-kicker i {
    color: var(--secondary-light);
}

.wt-ep-sidebar-card--revamp .wt-ep-sidebar-game {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 11px;
    margin-bottom: 12px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(160deg, rgba(12,12,19,.68), rgba(8,8,13,.76));
}

.wt-ep-sidebar-cover-wrap {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(8,8,14,.46);
    flex-shrink: 0;
}
.wt-ep-sidebar-cover {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    border: 0;
    display: block;
}
.wt-ep-sidebar-cover-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(20,20,31,.9), rgba(13,13,21,.92));
    border: 0;
    color: var(--primary-light);
    font-size: 1.2rem;
}
.wt-ep-sidebar-game-info { min-width: 0; }
.wt-ep-sidebar-game-title {
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.32;
    color: #f4ecff;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wt-ep-sidebar-game-meta {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 3px;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.wt-ep-sidebar-mini-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.wt-ep-sidebar-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.28);
    background: rgba(138,109,233,.12);
    color: #e9e0ff;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
}
.wt-ep-sidebar-mini-pill i {
    color: var(--secondary-light);
    font-size: .66rem;
}

/* Episode position tracker */
.wt-ep-tracker {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    padding: 11px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.2);
    background: linear-gradient(160deg, rgba(12,12,19,.68), rgba(8,8,13,.76));
}
.wt-ep-tracker-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
    font-size: .8rem;
    font-weight: 700;
    color: #efe7ff;
}
.wt-ep-tracker-percent {
    color: var(--secondary-light);
    font-size: .84rem;
    font-weight: 700;
}
.wt-ep-tracker-total {
    margin-top: 8px;
    font-size: .73rem;
    color: var(--text-muted);
    line-height: 1.35;
    font-weight: 500;
}
.wt-ep-tracker-bar {
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}
.wt-ep-tracker-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(138,109,233,.95), rgba(77,159,138,.95));
    transition: width .6s ease;
    min-width: 4px;
}

/* Sidebar quick links */
.wt-ep-sidebar-links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
}
.wt-ep-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
    color: #e6dcfb;
    background: rgba(138,109,233,.1);
    border: 1px solid rgba(138,109,233,.24);
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
    text-decoration: none;
}
.wt-ep-sidebar-link:hover {
    color: #fff;
    background: rgba(138,109,233,.2);
    border-color: rgba(177,155,247,.62);
    transform: translateY(-1px);
}
.wt-ep-sidebar-link i {
    width: 15px;
    text-align: center;
    color: var(--secondary-light);
    font-size: .8rem;
}
.wt-ep-sidebar-link--yt {
    border-color: rgba(244,67,54,.26);
    background: rgba(244,67,54,.09);
}
.wt-ep-sidebar-link--yt:hover {
    color: #fff0f0;
    border-color: rgba(244,67,54,.48);
    background: rgba(244,67,54,.18);
}
.wt-ep-sidebar-link--yt:hover i { color: #ff8d8d; }

.wt-ep-jump {
    margin-top: 12px;
    padding: 13px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.22);
    background:
        linear-gradient(165deg, rgba(24,24,38,.78), rgba(14,14,24,.88)),
        radial-gradient(circle at 82% 8%, rgba(77,159,138,.14), rgba(77,159,138,0) 48%);
    box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.wt-ep-jump-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px 10px;
    margin-bottom: 9px;
}
.wt-ep-jump-head-main {
    min-width: 0;
}
.wt-ep-jump-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(11,11,16,.45);
    color: #e8ddff;
    font-size: .62rem;
    letter-spacing: .34px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-ep-jump-kicker i {
    color: var(--secondary-light);
}
.wt-ep-jump-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.35;
}
.wt-ep-jump-title i {
    color: var(--primary-light);
}
.wt-ep-jump-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .74rem;
    line-height: 1.4;
}
.wt-ep-jump-stat {
    display: grid;
    gap: 3px;
    justify-items: start;
    align-content: center;
    min-width: 86px;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.12);
}
.wt-ep-jump-stat__label {
    color: var(--text-muted);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .28px;
    line-height: 1;
}
.wt-ep-jump-stat__value {
    color: #f4ecff;
    font-size: .78rem;
    line-height: 1.1;
}
.wt-ep-jump-label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: .73rem;
    letter-spacing: .2px;
}
.wt-ep-jump-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: stretch;
}
.wt-ep-jump-select-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.5);
    padding: 0 10px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.wt-ep-jump-select-wrap:focus-within {
    border-color: rgba(170,145,246,.65);
    background: rgba(138,109,233,.14);
    box-shadow: 0 0 0 3px rgba(138,109,233,.15);
}
.wt-ep-jump-select-wrap i {
    color: var(--primary-light);
    font-size: .76rem;
    transition: color .2s ease;
    pointer-events: none;
}
.wt-ep-jump-select-wrap:focus-within i {
    color: var(--secondary-light);
}
.wt-ep-jump-select-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f2ebff;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-align: left;
}
.wt-ep-jump-select-trigger:focus-visible {
    outline: none;
}
.wt-ep-jump-select-trigger__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wt-ep-jump-select-trigger__caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    color: rgba(232,221,255,.78);
    font-size: .68rem;
    transition: transform .2s ease, color .2s ease;
}
.wt-ep-jump-select-wrap.is-open {
    border-color: rgba(170,145,246,.65);
    background: rgba(138,109,233,.14);
    box-shadow: 0 0 0 3px rgba(138,109,233,.15);
}
.wt-ep-jump-select-wrap.is-open .wt-ep-jump-select-trigger__caret {
    transform: rotate(180deg);
    color: #fff;
}
.wt-ep-jump-select--native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.wt-ep-jump-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 26;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(17,17,28,.96);
    box-shadow: 0 14px 30px rgba(0,0,0,.36);
}
.wt-ep-jump-dropdown-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 34px;
    padding: 0 9px;
    border-radius: 9px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.55);
    margin-bottom: 7px;
}
.wt-ep-jump-dropdown-search i {
    color: var(--primary-light);
    font-size: .72rem;
}
.wt-ep-jump-search {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #f2ebff;
    font-size: .74rem;
    padding: 0;
}
.wt-ep-jump-search::placeholder {
    color: var(--text-muted);
}
.wt-ep-jump-search:focus {
    outline: none;
}
.wt-ep-jump-options {
    display: grid;
    gap: 6px;
    max-height: 230px;
    overflow-y: auto;
    padding-right: 2px;
}
.wt-ep-jump-options::-webkit-scrollbar {
    width: 7px;
}
.wt-ep-jump-options::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(138,109,233,.35);
}
.wt-ep-jump-empty {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    border: 1px dashed rgba(138,109,233,.28);
    color: var(--text-muted);
    font-size: .72rem;
}
.wt-ep-jump-option {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 34px;
    padding: 6px 8px;
    border-radius: 9px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.46);
    color: #ece4ff;
    font-size: .73rem;
    text-align: left;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.wt-ep-jump-option:hover,
.wt-ep-jump-option.is-active {
    border-color: rgba(177,155,247,.62);
    background: rgba(138,109,233,.2);
    color: #fff;
}
.wt-ep-jump-option.is-current {
    border-color: rgba(77,159,138,.52);
    background: rgba(77,159,138,.2);
    color: #e9fff7;
}
.wt-ep-jump-option__num {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .64rem;
    font-weight: 700;
    color: #ebdfff;
    background: rgba(138,109,233,.2);
}
.wt-ep-jump-option.is-current .wt-ep-jump-option__num {
    color: #dcfff4;
    background: rgba(77,159,138,.3);
}
.wt-ep-jump-option__title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wt-ep-jump-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    min-width: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #f2ebff;
    font-size: .78rem;
    font-weight: 600;
    padding: 0 30px 0 30px;
    min-height: 36px;
    cursor: pointer;
    line-height: 1.2;
}
.wt-ep-jump-select:focus {
    outline: none;
}
.wt-ep-jump-select::-ms-expand {
    display: none;
}

/* Keep native selects visually consistent across browsers */
.wt-ep-jump-select option,
.wt-mini-filter option {
    background-color: #12121e;
    color: #f2ebff;
}
.wt-ep-jump-go {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    min-width: 98px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.4);
    background: rgba(138,109,233,.24);
    color: #f2ebff;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
    width: 100%;
}
.wt-ep-jump-go:hover {
    border-color: rgba(170,145,246,.7);
    background: rgba(138,109,233,.34);
    color: #fff;
    transform: translateY(-1px);
}
.wt-ep-jump-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 10px;
}
.wt-ep-jump-link {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 8px 9px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.4);
    color: #ddd3f4;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
    width: 100%;
}
.wt-ep-jump-link:hover {
    color: #fff;
    border-color: rgba(177,155,247,.6);
    background: rgba(138,109,233,.2);
    transform: translateY(-1px);
}
.wt-ep-jump-link__icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.16);
    color: #e8ddff;
    font-size: .76rem;
}
.wt-ep-jump-link__body {
    min-width: 0;
    display: grid;
    gap: 4px;
}
.wt-ep-jump-link__title {
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.24;
    color: #f0e8ff;
    white-space: normal;
    overflow-wrap: anywhere;
}
.wt-ep-jump-link__meta {
    font-size: .64rem;
    line-height: 1.22;
    color: var(--text-muted);
    white-space: normal;
    overflow-wrap: anywhere;
}
.wt-ep-jump-link__arrow {
    display: inline-flex;
    justify-content: center;
    color: rgba(232,221,255,.72);
    font-size: .68rem;
}
.wt-ep-jump-link--comments .wt-ep-jump-link__icon {
    border-color: rgba(138,109,233,.3);
    background: rgba(138,109,233,.2);
}
.wt-ep-jump-link--all {
    border-color: rgba(77,159,138,.26);
    background: rgba(77,159,138,.12);
}
.wt-ep-jump-link--all .wt-ep-jump-link__icon {
    border-color: rgba(77,159,138,.34);
    background: rgba(77,159,138,.2);
    color: #d8fff3;
}
.wt-ep-jump-link--all:hover {
    border-color: rgba(77,159,138,.5);
    background: rgba(77,159,138,.22);
}

/* Keyboard shortcuts */
.wt-ep-shortcuts {
    margin-top: 12px;
    padding: 12px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.2);
    background:
        linear-gradient(165deg, rgba(21,21,34,.74), rgba(13,13,22,.88)),
        radial-gradient(circle at 92% 8%, rgba(77,159,138,.12), rgba(77,159,138,0) 46%);
}
.wt-ep-shortcuts-head {
    display: grid;
    gap: 5px;
    margin-bottom: 10px;
}
.wt-ep-shortcuts-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(11,11,16,.46);
    color: #e8ddff;
    font-size: .62rem;
    letter-spacing: .32px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-ep-shortcuts-kicker i {
    color: var(--secondary-light);
}
.wt-ep-shortcuts-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f4ecff;
    font-size: .82rem;
    font-weight: 700;
}
.wt-ep-shortcuts-title i {
    color: var(--primary-light);
    font-size: .8rem;
}
.wt-ep-shortcuts-grid {
    display: grid;
    gap: 7px;
}
.wt-ep-shortcut {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 8px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(9,9,15,.5);
}
.wt-ep-shortcut-keys {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.wt-ep-shortcut-text {
    color: #dcd3f2;
    font-size: .74rem;
    line-height: 1.25;
}
.wt-ep-shortcut kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 6px;
    border-radius: 6px;
    font-size: .66rem;
    font-weight: 700;
    background: rgba(138,109,233,.18);
    border: 1px solid rgba(138,109,233,.32);
    color: #f3ebff;
    font-family: inherit;
    line-height: 1;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

/* Mini grid — "now playing" overlay */
.wt-mini-playing {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: linear-gradient(135deg, rgba(138,109,233,.74), rgba(91,68,172,.82));
    color: #fff;
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.wt-mini-playing i { font-size: .65rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .wt-ep-layout { grid-template-columns: 1fr; }
    .wt-ep-sidebar { position: static; }
    .wt-ep-sidebar-card {
        padding: 14px;
    }
    .wt-ep-sidebar-card--revamp .wt-ep-sidebar-game {
        grid-template-columns: 56px minmax(0, 1fr);
        padding: 10px;
    }
    .wt-ep-sidebar-cover-wrap {
        width: 56px;
        height: 56px;
    }
    .wt-ep-tracker {
        padding: 10px;
    }
    .wt-ep-info-card--revamp {
        padding: 22px;
    }
    .wt-ep-info-card--revamp .wt-ep-info-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .wt-ep-info-card--revamp .wt-ep-info-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-ep-info-meta-shell {
        padding: 11px;
    }
    .wt-ep-quick-jumps__label {
        width: 100%;
    }
    .wt-ep-jump-chip--action {
        margin-left: 0;
    }
    .wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__head {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-ep-quick-jumps--v2 .wt-ep-quick-jumps__tools {
        justify-content: flex-start;
    }
    .wt-ep-quick-jumps--v2 .wt-ep-jump-chip,
    .wt-ep-quick-jumps--v2 .wt-ep-search-wrap {
        width: 100%;
    }
    .wt-mini-shell {
        padding: 24px 18px 18px;
        border-radius: 20px;
    }
    .wt-mini-head {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 16px;
    }
    .wt-mini-overview {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .wt-mini-toolbar {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch;
    }
    .wt-mini-toolbar-controls {
        justify-content: stretch;
    }
    .wt-mini-filter,
    .wt-mini-next-btn {
        flex: 1 1 220px;
    }
    .wt-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .wt-continue-header { flex-direction: column; align-items: flex-start; }
    .wt-continue-tools {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        justify-items: stretch;
    }
    .wt-continue-counter { min-width: 0; text-align: left; }
    .wt-player-shell__foot-grid,
    .wt-player-shell__foot-grid--has-side {
        grid-template-columns: 1fr;
    }
    .wt-player-foot-card__head {
        flex-direction: column;
        align-items: flex-start;
    }
    .wt-player-foot-card__facts {
        justify-content: flex-start;
    }
    .wt-next-teaser {
        grid-template-columns: 116px minmax(0, 1fr);
    }
    .wt-next-teaser__arrow {
        display: none;
    }
    .wt-continue-actions { justify-content: flex-end; }
    .wt-continue-clear { justify-content: center; width: 100%; }
    .wt-continue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wt-recommend-section .wt-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .wt-rec-header { flex-direction: column; align-items: flex-start; }
    .wt-rec-overview {
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-rec-overview-item {
        text-align: left;
    }
    .wt-grid { grid-template-columns: repeat(2, 1fr); }
    .wt-episodes-grid { grid-template-columns: repeat(2, 1fr); }
    .wt-mini-grid { grid-template-columns: repeat(3, 1fr); }
    .wt-page-title { font-size: 1.2rem; }
    .wt-page-hero-card { padding: 28px 24px 24px; }
    .wt-page-hero-top { margin-bottom: 18px; }
    .wt-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .wt-stat { padding: 14px 12px; }
    .wt-detail-title { font-size: 1.1rem; }
    .wt-latest-shell { padding: 20px 16px 16px; }
    .wt-latest-head { flex-direction: column; align-items: flex-start; margin-bottom: 14px; }
    .wt-latest-overview {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: stretch;
    }
    .wt-latest-overview-item { justify-content: center; }
    .wt-latest-card--lead { grid-column: span 2; }
    .wt-top-shell { padding: 20px 16px 16px; }
    .wt-top-head { flex-direction: column; align-items: flex-start; margin-bottom: 14px; }
    .wt-top-overview {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: stretch;
    }
    .wt-top-overview-item { justify-content: center; }
    .wt-top-card--champ { grid-column: span 2; }
    .wt-related-shell { padding: 20px 16px 16px; }
    .wt-related-head { flex-direction: column; align-items: flex-start; margin-bottom: 14px; }
    .wt-related-overview {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: stretch;
    }
    .wt-related-overview-item { justify-content: center; }
    .wt-related-card--feature { grid-column: span 2; }
    .wt-detail-nav-inner { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
    .wt-detail-nav-link { flex: 0 0 auto; }
    .wt-meta-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .wt-detail-shell { padding: 22px 18px; border-radius: 20px; }
    .wt-detail-main { grid-template-columns: 1fr; gap: 14px; }
    .wt-detail-panel { padding: 14px; }
    .wt-detail-head-top { margin-bottom: 14px; }
    .wt-detail-updated { font-size: .72rem; }
    .wt-ep-nav {
        padding: 16px;
    }
    .wt-ep-nav-top {
        margin-bottom: 12px;
    }
    .wt-ep-nav-grid {
        gap: 10px;
    }
    .wt-game-info-head { grid-template-columns: 120px minmax(0, 1fr); gap: 14px; }
    .wt-game-score-panel {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .wt-game-info-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .wt-player-resume,
    .wt-next-overlay { left: 10px; right: 10px; max-width: none; }
    .wt-player-resume {
        top: 62px;
        width: auto;
        padding: 11px;
        gap: 8px;
    }
    .wt-player-resume__head,
    .wt-player-resume__actions {
        gap: 8px;
    }
    .wt-player-resume__dismiss {
        width: 30px;
        height: 30px;
    }
    .wt-ep-sidebar-card {
        padding: 12px;
        border-radius: 14px;
    }
    .wt-ep-sidebar-card--revamp .wt-ep-sidebar-game {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
        padding: 9px;
    }
    .wt-ep-sidebar-cover-wrap {
        width: 52px;
        height: 52px;
    }
    .wt-ep-sidebar-mini-meta {
        gap: 5px;
    }
    .wt-ep-sidebar-mini-pill {
        font-size: .64rem;
        padding: 4px 7px;
    }
    .wt-ep-tracker {
        padding: 9px;
    }
    .wt-ep-sidebar-link {
        padding: 8px 10px;
        font-size: .78rem;
    }
    .wt-ep-nav {
        padding: 14px;
        border-radius: 14px;
    }
    .wt-ep-nav-top {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .wt-ep-nav-all {
        width: 100%;
    }
    .wt-ep-nav-grid {
        grid-template-columns: 1fr;
    }
    .wt-ep-nav-btn {
        min-height: 84px;
    }
    .wt-ep-nav-btn--next {
        grid-template-columns: 42px minmax(0, 1fr);
    }
    .wt-ep-nav-btn--next .wt-ep-nav-body {
        text-align: left;
        align-items: flex-start;
    }
    .wt-ep-nav-btn--next .wt-ep-nav-arrow {
        order: -1;
    }
    .wt-ep-info-card--revamp {
        padding: 16px;
        border-radius: 16px;
    }
    .wt-ep-info-kicker {
        font-size: .62rem;
    }
    .wt-ep-info-head-top {
        margin-bottom: 8px;
        gap: 6px;
    }
    .wt-ep-info-episode-pill {
        font-size: .62rem;
        padding: 6px 10px;
    }
    .wt-ep-info-card--revamp .wt-ep-info-title {
        font-size: 1.04rem;
        margin-bottom: 8px;
    }
    .wt-ep-info-head-subtitle {
        font-size: .82rem;
        line-height: 1.56;
    }
    .wt-ep-info-card--revamp .wt-ep-info-meta {
        grid-template-columns: 1fr;
    }
    .wt-ep-info-meta-shell {
        padding: 8px;
    }
    .wt-ep-info-meta-head {
        margin-bottom: 7px;
        font-size: .64rem;
    }
    .wt-ep-info-card--revamp .wt-ep-info-meta-item {
        padding: 8px;
    }
    .wt-ep-quick-jumps {
        align-items: stretch;
    }
    .wt-ep-content-block,
    .wt-chapters-card {
        padding: 12px;
    }
    .wt-ep-jump-row {
        flex-direction: column;
    }
    .wt-ep-jump-head {
        grid-template-columns: 1fr;
    }
    .wt-ep-jump-stat {
        min-width: 0;
        width: fit-content;
        justify-items: start;
    }
    .wt-ep-jump-select-wrap {
        width: 100%;
    }
    .wt-ep-jump-dropdown {
        left: 0;
        right: 0;
    }
    .wt-ep-jump-options {
        max-height: 190px;
    }
    .wt-ep-jump-go {
        min-height: 40px;
        width: 100%;
    }
    .wt-ep-jump-links {
        grid-template-columns: 1fr;
    }
    .wt-ep-jump-link {
        width: 100%;
    }
    .wt-mini-toolbar-controls {
        display: grid;
        grid-template-columns: 1fr;
    }
    .wt-mini-filter,
    .wt-mini-next-btn {
        width: 100%;
        justify-content: center;
    }
    .wt-mini-shell {
        padding: 22px 14px 16px;
        border-radius: 18px;
    }
    .wt-mini-heading {
        font-size: 1.08rem;
        margin-top: 9px;
    }
    .wt-mini-subtitle {
        font-size: .82rem;
        line-height: 1.58;
    }
    .wt-mini-overview {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .wt-mini-overview-item {
        padding: 9px 10px;
    }
    .wt-mini-episode-badge {
        font-size: .6rem;
    }
    .wt-mini-title {
        font-size: .82rem;
    }
    .wt-player-shell__microstatus {
        gap: 6px;
    }
    .wt-player-shell__microstatus-item {
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
    }
    .wt-player-shell__foot {
        margin-top: 14px;
    }
    .wt-player-foot-card {
        border-radius: 16px;
    }
    .wt-player-foot-card__head,
    .wt-player-foot-card__body,
    .wt-next-teaser {
        padding-left: 12px;
        padding-right: 12px;
    }
    .wt-player-foot-card__head {
        padding-top: 12px;
    }
    .wt-player-foot-card__body {
        padding-bottom: 12px;
    }
    .wt-player-foot-fact,
    .wt-player-foot-shortcut {
        width: 100%;
        justify-content: flex-start;
    }
    .wt-next-teaser {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .wt-next-teaser__thumb {
        max-width: 100%;
    }
    .wt-next-teaser__cta {
        width: 100%;
    }
    .wt-next-teaser__desc {
        -webkit-line-clamp: 3;
    }
    .wt-mini-flags {
        gap: 5px;
        margin-top: 7px;
    }
    .wt-mini-flag {
        font-size: .6rem;
        padding: 4px 7px;
    }
    .wt-ep-jump-chip {
        width: 100%;
        justify-content: center;
    }
    .wt-ep-jump-chip--action {
        margin-left: 0;
    }
    .wt-chapters-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-chapters-search-wrap {
        width: 100%;
    }
    .wt-chapter-btn { grid-template-columns: 64px 1fr; }
    .wt-nearby-item { grid-template-columns: 30px 1fr; }
    .wt-nearby-duration { display: none; }
    .wt-detail-nav { top: var(--wt-nav-top, 60px); padding: 8px 10px 10px; }
    .wt-detail-nav-inner { gap: 8px; padding-bottom: 0; }
    .wt-detail-nav-link { padding: 6px 10px 6px 7px; border-radius: 10px; font-size: .74rem; }
    .wt-detail-nav-icon { width: 22px; height: 22px; border-radius: 7px; font-size: .66rem; }
    .wt-detail-nav-badge { min-width: 20px; height: 18px; padding: 0 5px; font-size: .64rem; }
    .wt-latest-shell { padding: 16px 12px 14px; border-radius: 16px; }
    .wt-latest-subtitle { font-size: .84rem; line-height: 1.58; }
    .wt-latest-overview { grid-template-columns: 1fr; gap: 6px; }
    .wt-latest-overview-item { width: 100%; justify-content: flex-start; font-size: .7rem; }
    .wt-latest-card--lead { grid-column: span 1; }
    .wt-latest-order { font-size: .64rem; }
    .wt-latest-fresh { font-size: .6rem; padding: 3px 7px; }
    .wt-latest-card .wt-ep-new-badge { top: 30px; font-size: .62rem; }
    .wt-latest-date { display: none; }
    .wt-top-shell { padding: 16px 12px 14px; border-radius: 16px; }
    .wt-top-subtitle { font-size: .84rem; line-height: 1.58; }
    .wt-top-overview { grid-template-columns: 1fr; gap: 6px; }
    .wt-top-overview-item { width: 100%; justify-content: flex-start; font-size: .7rem; }
    .wt-top-card--champ { grid-column: span 1; }
    .wt-top-rank { min-width: 26px; height: 20px; font-size: .64rem; }
    .wt-top-medal { font-size: .6rem; padding: 3px 7px; }
    .wt-top-card .wt-ep-new-badge { top: 30px; font-size: .62rem; }
    .wt-top-views { font-size: .64rem; }
    .wt-related-shell { padding: 16px 12px 14px; border-radius: 16px; }
    .wt-related-subtitle { font-size: .84rem; line-height: 1.58; }
    .wt-related-overview { grid-template-columns: 1fr; gap: 6px; }
    .wt-related-overview-item { width: 100%; justify-content: flex-start; font-size: .7rem; }
    .wt-related-card--feature { grid-column: span 1; }
    .wt-related-ribbon { font-size: .6rem; padding: 3px 8px; top: 10px; right: 10px; }
    .wt-related-game { font-size: .76rem; margin-bottom: 7px; }
    .wt-featured-grid { grid-template-columns: 1fr; }
    .wt-continue-section { padding-top: 26px; }
    .wt-continue-shell { padding: 20px 14px 16px; border-radius: 18px; }
    .wt-continue-kicker { font-size: .62rem; }
    .wt-continue-title { margin-top: 10px; }
    .wt-continue-subtitle { font-size: .82rem; line-height: 1.58; }
    .wt-continue-tools { grid-template-columns: 1fr; }
    .wt-continue-actions { justify-content: stretch; }
    .wt-continue-clear { width: 100%; }
    .wt-continue-grid { grid-template-columns: 1fr; gap: 12px; }
    .wt-continue-card-link { padding: 14px; border-radius: 12px; }
    .wt-continue-card-title { font-size: .86rem; }
    .wt-continue-card-meta { font-size: .78rem; }
    .wt-continue-card-action { width: 100%; justify-content: center; }
    .wt-recommend-section { padding-top: 32px; }
    .wt-rec-shell { padding: 22px 14px 16px; border-radius: 20px; }
    .wt-rec-kicker { font-size: .66rem; }
    .wt-rec-title { font-size: 1.18rem; margin-top: 10px; }
    .wt-rec-subtitle { font-size: .85rem; line-height: 1.62; }
    .wt-rec-overview { grid-template-columns: 1fr; }
    .wt-recommend-section .wt-featured-grid { grid-template-columns: 1fr; gap: 14px; }
    .wt-grid { grid-template-columns: 1fr; }
    .wt-episodes-grid { grid-template-columns: 1fr; }
    .wt-mini-grid { grid-template-columns: 1fr; gap: 12px; }
    .wt-page-title { font-size: 1rem; }
    .wt-page-desc { font-size: .95rem; line-height: 1.62; }
    .wt-page-hero-card { padding: 24px 16px 18px; border-radius: 18px; }
    .wt-page-hero-top { flex-direction: column; gap: 10px; }
    .wt-page-icon { width: 60px; height: 60px; border-radius: 16px; font-size: 1.35rem; }
    .wt-page-kicker { font-size: .68rem; padding: 7px 11px; }
    .wt-quick-actions { gap: 8px; margin-top: 18px; }
    .wt-quick-link { width: 100%; justify-content: center; padding: 9px 12px; }
    .wt-detail-title { font-size: .95rem; }
    .wt-detail-shell { padding: 18px 14px; border-radius: 18px; }
    .wt-detail-head-top { gap: 10px; }
    .wt-detail-head-top .wt-breadcrumbs { width: 100%; }
    .wt-detail-updated { width: 100%; justify-content: center; }
    .wt-detail-kicker { font-size: .64rem; padding: 6px 10px; }
    .wt-detail-game { font-size: .94rem; margin-bottom: 12px; }
    .wt-detail-desc { font-size: .9rem; line-height: 1.66; margin-bottom: 14px; }
    .wt-meta-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 14px; }
    .wt-meta-card { padding: 9px; gap: 8px; border-radius: 10px; }
    .wt-meta-card-icon { width: 26px; height: 26px; font-size: .72rem; border-radius: 8px; }
    .wt-meta-card-label { font-size: .62rem; }
    .wt-meta-card-value { font-size: .78rem; }
    .wt-detail-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
    .wt-continue-btn,
    .wt-detail-list-btn,
    .wt-playlist-btn { width: 100%; justify-content: center; }
    .wt-detail-panel-title { font-size: .82rem; }
    .wt-detail-stats-grid { grid-template-columns: 1fr 1fr; }
    .wt-detail-stat { padding: 9px; }
    .wt-detail-stat-value { font-size: .86rem; }
    .wt-page-header { padding: 102px 16px 42px; }
    .wt-detail-header { padding: 100px 16px 30px; }
    .wt-section { padding: 40px 16px; }
    .wt-filters { padding: 0 16px 20px; }
    .wt-filters-shell { padding: 14px; border-radius: 16px; }
    .wt-filters-kicker { font-size: .62rem; }
    .wt-filters-head-title { font-size: .94rem; }
    .wt-filters-subtitle { font-size: .8rem; }
    .wt-filters-summary-value { font-size: 1rem; }
    .wt-results-shell {
        padding: 18px 14px 14px;
        border-radius: 16px;
    }
    .wt-results-shell--episodes {
        padding: 18px 14px 14px;
    }
    .wt-results-kicker { font-size: .62rem; }
    .wt-results-title { margin: 10px 0 10px; }
    .wt-results-subtitle {
        font-size: .82rem;
        line-height: 1.6;
    }
    .wt-results-overview {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .wt-results-overview-item {
        padding: 11px;
        border-radius: 12px;
    }
    .wt-results-overview-value { font-size: .96rem; }
    .wt-results-toolbar {
        padding: 8px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .wt-results-pill {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
        font-size: .75rem;
    }
    .wt-results-tools {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }
    .wt-results-tool {
        width: 100%;
        font-size: .75rem;
    }
    .wt-episodes-toolbar .wt-filters-actions {
        grid-template-columns: 1fr;
    }
    .wt-empty--inline .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .wt-filters-form { gap: 10px; }
    .wt-search-box { min-width: 0; width: 100%; }
    .wt-ep-row { flex-direction: column; align-items: stretch; }
    .wt-ep-row-thumb { width: 100%; min-width: 0; }
    .wt-ep-row-actions { flex-direction: row; }
    .wt-episodes-list.is-numbers .wt-ep-row {
        grid-template-columns: 1fr;
    }
    .wt-episodes-list.is-numbers .wt-ep-row-thumb {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16/5;
    }
    .wt-episodes-list.is-numbers .wt-ep-order-num {
        height: auto;
        min-height: 48px;
    }
    .wt-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .wt-stat { padding: 12px 10px; }
    .wt-stat-icon { width: 30px; height: 30px; border-radius: 9px; font-size: .75rem; }
    .wt-stat-num { font-size: 1.2rem; }
    .wt-stat-label { font-size: .65rem; }
    .wt-breadcrumbs { font-size: .82rem; }
    .wt-meta-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .wt-game-info-head { grid-template-columns: 1fr; gap: 14px; }
    .wt-game-cover-wrap { max-width: 120px; }
    .wt-game-cover--placeholder { min-height: 152px; }
    .wt-game-info-tags { gap: 6px; }
    .wt-game-tag { font-size: .68rem; padding: 4px 8px; }
    .wt-game-score-panel { grid-template-columns: 1fr; padding: 10px; }
    .wt-game-score-item { padding: 8px 9px; }
    .wt-game-info-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .wt-game-info-item { padding: 10px; }
    .wt-game-info-highlights { gap: 8px; }
    .wt-game-info-link,
    .wt-game-info-badge { width: 100%; justify-content: center; }
    .wt-game-info-card { padding: 20px; }
    .wt-notes-card { padding: 20px; }
    .wt-retro-card { padding: 16px; }
    .wt-retro-card__icon { width: 38px; height: 38px; font-size: 1rem; }
    .wt-ep-info-card { padding: 20px; }
    .wt-ep-shortcuts { display: none; }
}

/* ============================================================
   Dark Abishai Player (DAP) — Custom Video Controls
   ============================================================ */

/* Wrapper context */
.wt-player-embed { position: relative; overflow: hidden; user-select: none; -webkit-user-select: none; }

/* Fullscreen overrides */
.wt-player-embed:fullscreen,
.wt-player-embed:-webkit-full-screen {
    padding-bottom: 0 !important; height: 100vh !important; width: 100vw !important; background: #000;
}
.wt-player-embed:fullscreen video,
.wt-player-embed:-webkit-full-screen video {
    position: static; width: 100%; height: 100%; object-fit: contain;
}

/* ===== Overlay ===== */
.dap-overlay {
    position: absolute; inset: 0; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; outline: none;
    pointer-events: none;
    transition: opacity .25s;
}
.dap-overlay.dap-show .dap-big-play { pointer-events: auto; }

.dap-big-play {
    width: 72px; height: 72px; border: none; border-radius: 50%;
    background: linear-gradient(135deg, rgba(138,109,233,.85), rgba(110,80,210,.95));
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px rgba(138,109,233,.45), 0 0 80px rgba(138,109,233,.15);
    transition: transform .25s, box-shadow .25s, opacity .25s;
    opacity: 0; pointer-events: none;
}
.dap-big-play svg { width: 32px; height: 32px; margin-left: 3px; }
.dap-big-play:hover { transform: scale(1.08); box-shadow: 0 0 50px rgba(138,109,233,.6), 0 0 100px rgba(138,109,233,.2); }

.dap-overlay.dap-show .dap-big-play { opacity: 1; pointer-events: auto; }
.dap-overlay.dap-playing .dap-big-play { opacity: 0; pointer-events: none; }

/* ===== Gradient behind controls ===== */
.dap-gradient {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 11;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity .3s;
}

.dap-status {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 32;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    box-sizing: border-box;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.dap-status-item {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(7,9,16,.62);
    color: rgba(243,243,255,.9);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
}
.dap-status[hidden],
.dap-status-item[hidden] {
    display: none !important;
}
.dap-status-settings-btn {
    gap: 6px;
    margin-left: auto;
    cursor: pointer;
    pointer-events: auto;
    background: rgba(7,9,16,.74);
}
.dap-status-settings-btn svg {
    width: 13px;
    height: 13px;
    opacity: .9;
}
.dap-status-settings-btn span {
    font: inherit;
    line-height: 1;
}
.dap-status-settings-btn:hover {
    background: rgba(17,21,36,.86);
}
.dap-status-settings-btn.is-active {
    background: rgba(138,109,233,.26);
    color: #fff;
}
.dap-status-settings-btn:focus-visible {
    outline: 2px solid rgba(138,109,233,.68);
    outline-offset: 2px;
}
.dap-hide-controls .dap-status {
    opacity: 0;
    transform: translateY(-4px);
}
.dap-status-backdrop {
    position: absolute;
    inset: 0;
    z-index: 34;
    border: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(138,109,233,.14), transparent 42%),
        rgba(3,5,10,.54);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dap-status-backdrop[hidden] { display: none !important; }
.dap-status-menu {
    position: absolute;
    top: 56px;
    right: 14px;
    left: auto;
    z-index: 35;
    width: min(560px, calc(100% - 24px));
    max-width: calc(100% - 24px);
    max-height: min(520px, calc(100% - 68px));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.14);
    background:
        linear-gradient(180deg, rgba(13,16,28,.96), rgba(8,10,18,.98)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.16), transparent 38%),
        radial-gradient(circle at 0 0, rgba(77,159,138,.1), transparent 34%);
    box-shadow: 0 30px 80px rgba(0,0,0,.58);
    transform: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.dap-status-menu[hidden] { display: none !important; }
.dap-status-menu__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(180deg, rgba(138,109,233,.14), rgba(138,109,233,0) 100%),
        rgba(255,255,255,.03);
}
.dap-status-menu__head-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}
.dap-status-menu__title {
    font-size: 1rem;
    letter-spacing: .01em;
    color: rgba(250,250,255,.98);
}
.dap-status-menu__subtitle {
    color: rgba(223,228,255,.68);
    font-size: .74rem;
    line-height: 1.45;
    max-width: 46ch;
}
.dap-status-menu__close-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: rgba(247,247,255,.88);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
.dap-status-menu__close-icon:hover {
    background: rgba(255,255,255,.12);
}
.dap-status-menu__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 12px;
    padding: 14px 18px 18px;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}
.dap-status-menu__section {
    display: grid;
    gap: 10px;
    align-content: start;
    align-self: start;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.08), transparent 36%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 12px 24px rgba(0,0,0,.12);
}
.dap-status-menu__section--playback {
    grid-column: 1 / -1;
}
.dap-status-menu__section-title {
    font-size: .72rem;
    letter-spacing: .06em;
    color: rgba(215,224,255,.82);
    text-transform: uppercase;
}
.dap-status-menu__presets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.dap-status-menu__preset {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: rgba(238,238,255,.9);
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 7px 8px;
    cursor: pointer;
    transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.dap-status-menu__preset:hover {
    background: rgba(255,255,255,.12);
}
.dap-status-menu__preset.is-active {
    border-color: rgba(138,109,233,.52);
    background: rgba(138,109,233,.26);
    color: #fff;
}
.dap-status-menu__opt {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-size: .72rem;
    color: rgba(235,238,255,.92);
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    line-height: 1.42;
}
.dap-status-menu__opt input {
    margin: 2px 0 0;
    accent-color: #8a6de9;
}
.dap-status-menu__subsection {
    display: grid;
    gap: 8px;
    margin-top: 2px;
    padding: 10px 10px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.dap-status-menu__subsection-title {
    font-size: .64rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(210,219,255,.68);
}
.dap-status-menu__hints {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.dap-status-menu__hint {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: rgba(238,238,255,.9);
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 7px 8px;
    cursor: pointer;
    transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.dap-status-menu__hint:hover {
    background: rgba(255,255,255,.12);
}
.dap-status-menu__hint.is-active {
    border-color: rgba(138,109,233,.52);
    background: rgba(138,109,233,.26);
    color: #fff;
}
.dap-status-menu__reset {
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: rgba(245,245,255,.94);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 8px 10px;
    cursor: pointer;
}
.dap-status-menu__reset:hover {
    background: rgba(255,255,255,.14);
}
.dap-status-menu__close {
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 12px;
    background: rgba(20,24,40,.7);
    color: rgba(246,246,255,.94);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 9px 12px;
    cursor: pointer;
}
.dap-status-menu__close:hover {
    background: rgba(33,39,63,.86);
}
.dap-status-menu__group {
    display: grid;
    gap: 7px;
}
.dap-status-menu__group--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.dap-status-menu__group-label {
    font-size: .65rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(210,219,255,.7);
}
.dap-status-menu__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.dap-status-menu__choice,
.dap-status-menu__action {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: rgba(240,242,255,.92);
    font-size: .67rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 7px 10px;
    cursor: pointer;
    transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.dap-status-menu__choice:hover,
.dap-status-menu__action:hover {
    background: rgba(255,255,255,.12);
}
.dap-status-menu__choice.is-active {
    border-color: rgba(77,159,138,.48);
    background: rgba(77,159,138,.18);
    color: #ecfff8;
}
.dap-status-menu__choice-empty {
    color: rgba(220,226,255,.58);
    font-size: .68rem;
}
.dap-status-menu__diagnostics {
    color: rgba(229,233,255,.72);
    font-size: .66rem;
    line-height: 1.4;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}
.dap-status-menu__actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.dap-status-menu__footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .dap-status-menu__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.dap-notice {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 46px;
    z-index: 33;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(8,10,18,.84);
    color: #eef1ff;
    font-size: .8rem;
    line-height: 1.38;
    box-shadow: 0 12px 26px rgba(0,0,0,.34);
}
.dap-notice[hidden] { display: none !important; }
.dap-notice.is-warn {
    border-color: rgba(233,187,89,.45);
    background: rgba(30,24,12,.86);
    color: #fff4d8;
}
.dap-notice.is-error {
    border-color: rgba(221,110,121,.5);
    background: rgba(41,14,18,.88);
    color: #ffe4e7;
}

.dap-recovery {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 88px;
    z-index: 34;
    display: grid;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.45);
    background: rgba(10,12,22,.92);
    box-shadow: 0 16px 30px rgba(0,0,0,.42);
}
.dap-recovery[hidden] { display: none !important; }
.dap-recovery__message {
    color: #f2f4ff;
    font-size: .8rem;
    line-height: 1.4;
}
.dap-recovery__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dap-recovery__btn {
    border: 0;
    border-radius: 9px;
    padding: 8px 10px;
    background: rgba(138,109,233,.22);
    color: #f5f6ff;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
}
.dap-recovery__btn:hover {
    background: rgba(138,109,233,.32);
}
.dap-recovery__btn--retry {
    background: rgba(77,159,138,.24);
}
.dap-recovery__btn--retry:hover {
    background: rgba(77,159,138,.34);
}
.dap-recovery__btn--close {
    margin-left: auto;
    width: 30px;
    min-width: 30px;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    background: rgba(255,255,255,.12);
}

.dap-onboarding {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 34;
    width: min(360px, calc(100% - 24px));
}
.dap-onboarding[hidden] { display: none !important; }
.dap-onboarding__card {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 12px 12px 11px;
    border-radius: 12px;
    border: 1px solid rgba(138,109,233,.42);
    background: rgba(7,9,16,.92);
    box-shadow: 0 16px 32px rgba(0,0,0,.4);
}
.dap-onboarding__close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}
.dap-onboarding__title {
    display: block;
    padding-right: 24px;
    font-size: .82rem;
    letter-spacing: .01em;
}
.dap-onboarding__subtitle {
    margin: 0;
    color: rgba(216,216,236,.84);
    font-size: .76rem;
    line-height: 1.4;
}
.dap-onboarding__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 5px;
}
.dap-onboarding__list li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(232,232,248,.92);
    font-size: .74rem;
    line-height: 1.35;
}
.dap-onboarding__list kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    min-width: 20px;
    padding: 0 6px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.08);
    color: #fff;
    font: 600 .68rem/1 "JetBrains Mono", monospace;
}
.dap-onboarding__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.dap-onboarding__btn {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(138,109,233,.42);
    background: rgba(138,109,233,.24);
    color: #f3ebff;
    font-size: .74rem;
    font-weight: 700;
    cursor: pointer;
}
.dap-onboarding__btn--ghost {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: rgba(239,239,255,.9);
}
.wt-player-embed[data-hints-level="compact"] .dap-onboarding,
.wt-player-embed[data-hints-level="off"] .dap-onboarding {
    display: none !important;
}

/* ===== Control Bar ===== */
.dap-controls {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 12;
    padding: 0 0 10px;
    box-sizing: border-box;
    transition: opacity .3s, transform .3s;
}

/* Auto-hide */
.dap-hide-controls .dap-controls,
.dap-hide-controls .dap-gradient { opacity: 0; pointer-events: none; transform: translateY(8px); }
.dap-hide-controls { cursor: none; }
.dap-hide-controls .dap-overlay { cursor: none; }

/* ===== Progress Bar ===== */
.dap-progress-wrap {
    position: relative; height: 20px; cursor: pointer;
    display: flex; align-items: center;
    margin-bottom: 4px;
    touch-action: none;
}
.dap-progress-bar {
    position: relative; width: 100%; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,.15);
    transition: height .15s;
}
.dap-progress-wrap:hover .dap-progress-bar,
.dap-progress-wrap.dap-seeking .dap-progress-bar { height: 6px; }
.dap-progress-wrap:focus-visible .dap-progress-bar { height: 6px; }

.dap-buffer {
    position: absolute; top: 0; left: 0; height: 100%; border-radius: 2px;
    background: rgba(255,255,255,.2);
    pointer-events: none;
}
.dap-played {
    position: absolute; top: 0; left: 0; height: 100%; border-radius: 2px;
    background: linear-gradient(90deg, var(--primary, #8a6de9), var(--primary-light, #a98df5));
    pointer-events: none;
}
.dap-scrubber {
    position: absolute; top: 50%; width: 14px; height: 14px;
    border-radius: 50%; background: #fff;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 6px rgba(0,0,0,.4);
    transition: transform .15s;
    pointer-events: none;
}
.dap-progress-wrap:hover .dap-scrubber,
.dap-progress-wrap.dap-seeking .dap-scrubber { transform: translate(-50%, -50%) scale(1); }

/* Time tooltip */
.dap-time-tip {
    position: absolute; bottom: 100%; margin-bottom: 8px;
    transform: translateX(-50%);
    padding: 3px 8px; border-radius: 4px;
    background: rgba(0,0,0,.85); color: #fff;
    font-size: .72rem; font-weight: 600; white-space: nowrap;
    pointer-events: none; opacity: 0;
    transition: opacity .15s;
}

/* ===== Bottom Row ===== */
.dap-bottom { display: flex; align-items: center; gap: 8px; padding: 0 12px; }
.dap-left { display: flex; align-items: center; gap: 10px; }
.dap-right { display: flex; align-items: center; gap: 6px; }
.dap-spacer { flex: 1; }

/* Buttons */
.dap-btn {
    background: none; border: none; cursor: pointer; color: #fff;
    width: 36px; height: 36px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .15s;
    padding: 0; flex-shrink: 0; position: relative;
}
.dap-btn svg { width: 20px; height: 20px; }
.dap-btn:hover { background: rgba(255,255,255,.12); }
.dap-btn:active { transform: scale(.92); }
@media (hover:hover) and (pointer:fine) {
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]::after {
        content: attr(data-tip);
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        z-index: 60;
        padding: 4px 8px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,.2);
        background: rgba(8,10,16,.9);
        color: rgba(247,247,255,.95);
        font-size: .68rem;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(4px);
        pointer-events: none;
        transition: opacity .16s ease, transform .16s ease;
    }
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]::before {
        content: '';
        position: absolute;
        right: 12px;
        bottom: calc(100% + 3px);
        border: 5px solid transparent;
        border-top-color: rgba(8,10,16,.9);
        opacity: 0;
        transform: translateY(4px);
        pointer-events: none;
        transition: opacity .16s ease, transform .16s ease;
    }
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:hover::after,
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:hover::before,
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:focus-visible::after,
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:focus-visible::before {
        opacity: 1;
        transform: translateY(0);
    }
}
.dap-big-play:focus-visible,
.dap-btn:focus-visible,
.dap-progress-wrap:focus-visible,
.dap-vol-track:focus-visible,
.dap-quality-item:focus-visible,
.dap-speed-item:focus-visible {
    outline: 2px solid rgba(169,141,245,.95);
    outline-offset: 2px;
}

/* Time display */
.dap-time {
    color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 500;
    white-space: nowrap; font-variant-numeric: tabular-nums;
}

/* ===== Volume ===== */
.dap-volume { display: flex; align-items: center; position: relative; }
.dap-vol-slider-wrap {
    width: 0; overflow: hidden;
    transition: width .25s cubic-bezier(.4,0,.2,1), opacity .2s;
    opacity: 0;
    display: flex; align-items: center; padding: 0;
}
.dap-volume:hover .dap-vol-slider-wrap,
.dap-volume:focus-within .dap-vol-slider-wrap { width: 80px; opacity: 1; padding-left: 6px; }

.dap-vol-track {
    position: relative; width: 100%; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,.2); cursor: pointer;
}
.dap-vol-fill {
    position: absolute; top: 0; left: 0; height: 100%; border-radius: 2px;
    background: linear-gradient(90deg, var(--primary, #8a6de9), var(--primary-light, #a98df5));
    pointer-events: none;
}
.dap-vol-thumb {
    position: absolute; top: 50%; width: 12px; height: 12px;
    border-radius: 50%; background: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 4px rgba(0,0,0,.4);
    pointer-events: none;
}

/* ===== Quality Menu ===== */
.dap-quality-wrap { position: relative; }
.dap-quality-menu {
    position: absolute; bottom: 100%; right: 0; margin-bottom: 8px;
    min-width: 120px; padding: 6px 0; border-radius: 10px;
    background: rgba(19,19,28,.95); border: 1px solid rgba(138,109,233,.2);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    opacity: 0; transform: translateY(8px) scale(.95);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 20;
}
.dap-quality-menu.open {
    opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.dap-quality-item {
    display: block; width: 100%; padding: 8px 16px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500;
    text-align: left; white-space: nowrap;
    transition: background .15s, color .15s;
}
.dap-quality-item:hover { background: rgba(138,109,233,.15); color: #fff; }
.dap-quality-item.active {
    color: var(--primary-light, #a98df5); font-weight: 700;
}
.dap-quality-item.active::before {
    content: '\2022'; margin-right: 6px; font-size: 1.1em;
}

/* ===== Speed Menu ===== */
.dap-speed-wrap { position: relative; }
.dap-speed-btn {
    font-size: .78rem; font-weight: 600; letter-spacing: .02em;
    min-width: 36px; text-align: center;
}
.dap-speed-menu {
    position: absolute; bottom: 100%; right: 0; margin-bottom: 8px;
    min-width: 100px; padding: 6px 0; border-radius: 10px;
    background: rgba(19,19,28,.95); border: 1px solid rgba(138,109,233,.2);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    opacity: 0; transform: translateY(8px) scale(.95);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 20;
}
.dap-speed-menu.open {
    opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.dap-speed-item {
    display: block; width: 100%; padding: 8px 16px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 500;
    text-align: left; white-space: nowrap;
    transition: background .15s, color .15s;
}
.dap-speed-item:hover { background: rgba(138,109,233,.15); color: #fff; }
.dap-speed-item.active {
    color: var(--primary-light, #a98df5); font-weight: 700;
}
.dap-speed-item.active::before {
    content: '\2022'; margin-right: 6px; font-size: 1.1em;
}

/* ===== Buffering Spinner ===== */
.dap-loading {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.25);
    pointer-events: none; z-index: 8;
}
.dap-spinner {
    display: flex; gap: 6px; align-items: center;
}
.dap-spinner > div {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.8);
    animation: dap-bounce .6s infinite alternate;
}
.dap-spinner > div:nth-child(2) { animation-delay: .2s; }
.dap-spinner > div:nth-child(3) { animation-delay: .4s; }
@keyframes dap-bounce {
    0% { transform: scale(.6); opacity: .4; }
    100% { transform: scale(1); opacity: 1; }
}

/* ===== Thumbnail Preview ===== */
.dap-thumb-tip {
    position: absolute; bottom: 100%; margin-bottom: 32px;
    border: 2px solid rgba(255,255,255,.7); border-radius: 4px;
    background-size: auto; background-repeat: no-repeat;
    box-shadow: 0 4px 16px rgba(0,0,0,.6);
    pointer-events: none; z-index: 15;
}

.dap-chapter-preview {
    position: absolute;
    bottom: calc(100% + 18px);
    transform: translateX(-50%);
    min-width: 120px;
    max-width: min(260px, 62vw);
    z-index: 16;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 10px;
    background: rgba(7,9,16,.94);
    box-shadow: 0 10px 24px rgba(0,0,0,.45);
    overflow: hidden;
    pointer-events: none;
}
.dap-chapter-preview[hidden] { display: none !important; }
.dap-chapter-preview__thumb {
    background-repeat: no-repeat;
}
.dap-chapter-preview__meta {
    display: grid;
    gap: 2px;
    padding: 7px 9px 8px;
}
.dap-chapter-preview__time {
    color: rgba(184,197,255,.96);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.dap-chapter-preview__label {
    color: rgba(244,246,255,.95);
    font-size: .74rem;
    line-height: 1.35;
    max-height: 2.7em;
    overflow: hidden;
}

.dap-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dap-chapters-rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}
.dap-chapter-marker {
    position: absolute;
    top: 50%;
    width: 2px;
    height: 60%;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 2px;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    pointer-events: auto;
    transition: background .15s ease, height .15s ease;
}
.dap-chapter-marker:hover,
.dap-chapter-marker.active {
    background: rgba(169,141,245,.95);
    height: 90%;
}
.dap-chapter-btn.is-active,
.wt-chapter-btn.is-active {
    background: rgba(138,109,233,.28) !important;
    border-color: rgba(138,109,233,.5) !important;
}

.dap-caption-wrap { position: relative; }
.dap-caption-btn {
    min-width: 44px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.dap-caption-btn.is-active,
.dap-transcript-btn.is-active,
.dap-pip-btn.is-active,
.dap-share-btn.is-active,
.dap-mini-btn.is-active,
.dap-theater-btn.is-active,
.dap-hints-btn.is-active,
.dap-hotkeys-btn.is-active {
    background: rgba(138,109,233,.24);
    color: #fff;
}
.dap-hints-btn.is-compact {
    background: rgba(77,159,138,.24);
    color: #d6fff2;
}
.dap-mini-btn.is-enabled {
    background: rgba(77,159,138,.16);
    color: #d6fff2;
    box-shadow: inset 0 0 0 1px rgba(77,159,138,.34), inset 0 -2px 0 rgba(77,159,138,.48);
}
.dap-share-btn svg,
.dap-theater-btn svg {
    width: 18px;
    height: 18px;
}
.dap-mini-btn {
    width: auto;
    min-width: 56px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .06em;
}
.dap-mini-mode-toggle,
.dap-mini-restore-btn,
.dap-mini-close-btn {
    display: none;
}
.dap-mini-mode-toggle {
    width: auto;
    min-width: 66px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.dap-mini-restore-btn,
.dap-mini-close-btn {
    width: 34px;
    height: 34px;
}
.dap-mini-restore-btn svg,
.dap-mini-close-btn svg {
    width: 16px;
    height: 16px;
}
.dap-hotkeys-btn {
    font-size: 1rem;
    font-weight: 700;
}
.dap-hotkeys-btn svg,
.dap-transcript-btn svg {
    width: 18px;
    height: 18px;
}
.dap-caption-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    min-width: 180px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(8,10,18,.95);
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(0,0,0,.36);
    opacity: 0;
    transform: translateY(6px) scale(.98);
    pointer-events: none;
    transition: .16s ease;
    overflow: hidden;
    z-index: 40;
}
.dap-caption-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.dap-caption-item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.8);
    text-align: left;
    font-size: .82rem;
    cursor: pointer;
}
.dap-caption-item:hover { background: rgba(138,109,233,.14); color: #fff; }
.dap-caption-item.active { color: var(--primary-light, #a98df5); font-weight: 700; }

.dap-transcript-btn {
    min-width: 48px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.dap-transcript-panel {
    position: absolute;
    right: 12px;
    bottom: 68px;
    width: min(460px, calc(100% - 24px));
    max-height: min(52vh, 420px);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(7,9,16,.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 36px rgba(0,0,0,.42);
    z-index: 45;
    overflow: hidden;
}
.dap-transcript-panel[hidden] { display: none !important; }
.dap-transcript-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.dap-transcript-head strong { font-size: .84rem; letter-spacing: .02em; }
.dap-transcript-close {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.72);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}
.dap-transcript-search-wrap {
    display: block;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.dap-transcript-search {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 8px 10px;
    font-size: .84rem;
}
.dap-transcript-list {
    max-height: 300px;
    overflow: auto;
    padding: 8px;
    display: grid;
    gap: 6px;
}
.dap-transcript-item {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.92);
    text-align: left;
    cursor: pointer;
    padding: 8px 10px;
    display: grid;
    gap: 4px;
}
.dap-transcript-item:hover { border-color: rgba(138,109,233,.4); background: rgba(138,109,233,.1); }
.dap-transcript-item.is-active {
    border-color: rgba(138,109,233,.58);
    background: rgba(138,109,233,.2);
}
.dap-transcript-time {
    color: var(--primary-light, #a98df5);
    font-size: .75rem;
    font-weight: 700;
}
.dap-transcript-text {
    font-size: .82rem;
    line-height: 1.42;
}
.dap-transcript-empty {
    padding: 10px 12px;
    color: rgba(255,255,255,.64);
    font-size: .82rem;
}

.dap-touch-feedback {
    position: absolute;
    left: 50%;
    top: 36%;
    transform: translate(-50%, -50%) scale(.96);
    background: rgba(8,10,18,.72);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    padding: 8px 14px;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    transition: opacity .18s ease, transform .18s ease;
}
.dap-touch-feedback.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.dap-skip-chip {
    position: absolute;
    right: 14px;
    bottom: 76px;
    z-index: 34;
    border: 1px solid rgba(138,109,233,.52);
    border-radius: 999px;
    background: rgba(11,11,16,.84);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 8px 14px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0,0,0,.32);
    backdrop-filter: blur(4px);
}
.dap-skip-chip[hidden] { display: none !important; }
.dap-skip-chip:hover {
    background: rgba(138,109,233,.3);
    border-color: rgba(138,109,233,.7);
}

.dap-hotkeys-modal {
    position: absolute;
    inset: 0;
    z-index: 52;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4,5,8,.56);
    backdrop-filter: blur(2px);
}
.dap-hotkeys-modal[hidden] { display: none !important; }
.dap-hotkeys-card {
    width: min(480px, calc(100% - 24px));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(10,11,17,.95);
    box-shadow: 0 22px 46px rgba(0,0,0,.45);
    overflow: hidden;
}
.dap-hotkeys-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.dap-hotkeys-head strong { font-size: .86rem; letter-spacing: .02em; }
.dap-hotkeys-close {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.74);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}
.dap-hotkeys-list {
    display: grid;
    gap: 8px;
    padding: 12px;
}
.dap-hotkeys-list > div {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    align-items: center;
    color: rgba(255,255,255,.86);
    font-size: .82rem;
}
.dap-hotkeys-list kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: #fff;
    font: 600 .74rem/1 "JetBrains Mono", monospace;
}

.dap-theater-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9990;
    border: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(32, 38, 72, .26) 0%, rgba(10, 12, 24, .12) 28%, rgba(4, 5, 10, 0) 56%),
        linear-gradient(180deg, rgba(1, 2, 5, .82) 0%, rgba(2, 3, 8, .72) 16%, rgba(2, 3, 7, .62) 48%, rgba(1, 2, 5, .88) 100%);
    backdrop-filter: blur(2px) saturate(110%);
    -webkit-backdrop-filter: blur(2px) saturate(110%);
    cursor: pointer;
    transition: background .22s ease, opacity .22s ease;
}
.dap-theater-backdrop[hidden] { display: none !important; }
.dap-theater-placeholder {
    width: 100%;
}
.dap-theater-placeholder[hidden] { display: none !important; }
.dap-theater-portal-root {
    position: relative;
    z-index: 9991;
}
.dap-theater-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10001;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(9,12,18,.78);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}
.dap-theater-close:hover,
.dap-theater-close:focus-visible {
    background: rgba(17,22,32,.92);
    color: #fff;
}
.dap-theater-close kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.88);
    font: 700 .68rem/1 "JetBrains Mono", monospace;
}
.dap-theater-close[hidden] { display: none !important; }
body.dap-theater-active {
    overflow: hidden;
}
body.dap-theater-active .wt-player-card.dap-shell-detached,
body.dap-mini-active .wt-player-card.dap-shell-detached {
    position: relative;
    z-index: 86;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.wt-player-embed.dap-theater-mode {
    position: fixed !important;
    top: var(--dap-theater-top, 16px);
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(var(--dap-theater-width, calc(100vw - 32px)), calc(100vw - 32px));
    height: min(var(--dap-theater-height, calc(100vh - 40px)), calc(100vh - 40px)) !important;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 40px);
    min-height: 180px;
    padding-bottom: 0 !important;
    transform: translateX(-50%);
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    z-index: 10000;
    box-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.wt-player-embed.dap-theater-mode .dap-controls {
    padding: 0 clamp(14px, 2vw, 24px) clamp(12px, 2.2vh, 22px);
}
.wt-player-embed.dap-theater-mode .dap-theater-close {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.96);
}
.wt-player-embed.dap-theater-mode.dap-theater-close-visible .dap-theater-close,
.wt-player-embed.dap-theater-mode .dap-theater-close:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.wt-player-embed.dap-theater-mode .dap-status {
    top: 14px;
    left: 14px;
    right: 86px;
    gap: 8px;
    max-width: calc(100% - 104px);
}
.wt-player-embed.dap-theater-mode .dap-status-item {
    min-height: 22px;
    padding: 3px 8px;
    background: rgba(7,9,16,.74);
    border-color: rgba(255,255,255,.18);
    font-size: .65rem;
}
.wt-player-embed.dap-theater-mode.dap-paused-state .dap-status {
    opacity: .72;
}
.wt-player-embed.dap-theater-mode.dap-paused-state .dap-status-item,
.wt-player-embed.dap-theater-mode.dap-paused-state .dap-status-settings-btn,
.wt-player-embed.dap-theater-mode.dap-paused-state .dap-theater-close {
    background: rgba(7,9,16,.48);
    border-color: rgba(255,255,255,.12);
}
.wt-player-embed.dap-theater-mode.dap-paused-state:hover .dap-status,
.wt-player-embed.dap-theater-mode.dap-paused-state:focus-within .dap-status {
    opacity: .96;
}
.wt-player-embed.dap-theater-mode .dap-status-item--network,
.wt-player-embed.dap-theater-mode .dap-status-item--caption {
    display: none;
}
.wt-player-embed.dap-theater-mode .dap-status-settings-btn {
    padding-inline: 8px;
}
.wt-player-embed.dap-theater-mode .dap-status-settings-btn span {
    display: none;
}
.wt-player-embed.dap-theater-mode.dap-hide-controls .dap-status,
.wt-player-embed.dap-theater-mode.dap-hide-controls .dap-theater-close {
    opacity: 0;
    pointer-events: none;
}
.wt-player-embed.dap-theater-mode.dap-hide-controls .dap-status {
    transform: translateY(-8px);
}
.wt-player-embed.dap-theater-mode.dap-hide-controls .dap-theater-close {
    transform: translateY(-8px) scale(.96);
}
.wt-player-embed.dap-theater-mode video,
.wt-player-embed.dap-theater-mode iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.wt-player-embed.dap-theater-mode video {
    object-fit: contain;
}

.dap-mini-placeholder {
    width: 100%;
}
.dap-mini-placeholder[hidden] { display: none !important; }
.wt-player-embed.dap-mini-mode {
    position: fixed !important;
    right: 16px;
    bottom: 16px;
    width: min(420px, 38vw);
    min-width: 280px;
    max-width: calc(100vw - 20px);
    height: auto !important;
    aspect-ratio: 16 / 9;
    padding-bottom: 0 !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0,0,0,.5);
    z-index: 86;
}
.wt-player-embed.dap-mini-mode video,
.wt-player-embed.dap-mini-mode iframe {
    border-radius: inherit;
}
.wt-player-embed.dap-mini-mode {
    transition:
        left .16s cubic-bezier(.22,1,.36,1),
        top .16s cubic-bezier(.22,1,.36,1),
        width .16s cubic-bezier(.22,1,.36,1),
        box-shadow .18s ease,
        transform .18s ease;
    animation: dapMiniEnter .18s cubic-bezier(.22,1,.36,1);
}
.wt-player-embed.dap-mini-mode.dap-mini-dragging,
.wt-player-embed.dap-mini-mode.dap-mini-resizing {
    transition: none !important;
    animation: none !important;
}
.wt-player-embed.dap-mini-mode .dap-chapter-btn,
.wt-player-embed.dap-mini-mode .dap-volume,
.wt-player-embed.dap-mini-mode .dap-speed-wrap,
.wt-player-embed.dap-mini-mode .dap-quality-wrap,
.wt-player-embed.dap-mini-mode .dap-caption-wrap,
.wt-player-embed.dap-mini-mode .dap-transcript-btn,
.wt-player-embed.dap-mini-mode .dap-share-btn,
.wt-player-embed.dap-mini-mode .dap-mini-btn,
.wt-player-embed.dap-mini-mode .dap-theater-btn,
.wt-player-embed.dap-mini-mode .dap-hints-btn,
.wt-player-embed.dap-mini-mode .dap-hotkeys-btn,
.wt-player-embed.dap-mini-mode .dap-status,
.wt-player-embed.dap-mini-mode .dap-status-menu,
.wt-player-embed.dap-mini-mode .dap-onboarding {
    display: none !important;
}
.wt-player-embed.dap-mini-mode .dap-time {
    display: none;
}
.wt-player-embed.dap-mini-mode .dap-gradient,
.wt-player-embed.dap-mini-mode .dap-controls,
.wt-player-embed.dap-mini-mode .dap-big-play {
    display: none !important;
}
.wt-player-embed.dap-mini-mode.dap-mini-yt-fallback {
    background: radial-gradient(circle at top right, rgba(255,70,70,.22), transparent 42%), linear-gradient(180deg, rgba(12,14,24,.96), rgba(8,10,18,.98));
}
.wt-player-embed.dap-mini-mode.dap-mini-yt-fallback video,
.wt-player-embed.dap-mini-mode.dap-mini-yt-fallback .dap-overlay,
.wt-player-embed.dap-mini-mode.dap-mini-yt-fallback .dap-touch-feedback {
    visibility: hidden;
    pointer-events: none;
}
.dap-mini-overlay[hidden] { display: none !important; }
.dap-mini-yt-fallback[hidden] { display: none !important; }
.wt-player-embed.dap-mini-mode .dap-mini-overlay {
    position: absolute;
    inset: auto 8px 8px 8px;
    z-index: 26;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    max-width: calc(100% - 16px);
    max-height: calc(100% - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(7,9,16,.08), rgba(7,9,16,.78));
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}
.dap-mini-overlay::-webkit-scrollbar {
    width: 6px;
}
.dap-mini-overlay::-webkit-scrollbar-thumb {
    background: rgba(169,141,245,.34);
    border-radius: 999px;
}
.wt-player-embed.dap-mini-mode:hover .dap-mini-overlay,
.wt-player-embed.dap-mini-mode:focus-within .dap-mini-overlay,
.wt-player-embed.dap-mini-mode .dap-mini-overlay.is-paused {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.dap-mini-overlay__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding-right: 58px;
}
.dap-mini-overlay__title {
    color: #fff;
    display: -webkit-box;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dap-mini-overlay__sub {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px 8px;
    color: rgba(236,238,255,.86);
    font-size: .63rem;
    line-height: 1.2;
}
.dap-mini-overlay__state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}
.dap-mini-overlay__state::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #63d7a7;
    box-shadow: 0 0 12px rgba(99,215,167,.58);
}
.dap-mini-overlay.is-paused .dap-mini-overlay__state::before {
    background: #f4c86a;
    box-shadow: 0 0 12px rgba(244,200,106,.42);
}
.dap-mini-overlay__time {
    margin-left: auto;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.dap-mini-overlay__progress {
    position: relative;
    height: 3px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.18);
}
.dap-mini-overlay__progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary, #8a6de9), var(--primary-light, #a98df5));
}
.dap-mini-overlay__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2px;
    padding-right: 34px;
}
.dap-mini-overlay__btn {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 9px;
    background: rgba(11,14,24,.74);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.dap-mini-overlay__btn:hover,
.dap-mini-overlay__btn:focus-visible {
    background: rgba(138,109,233,.24);
    border-color: rgba(169,141,245,.46);
}
.dap-mini-overlay__btn:active {
    transform: scale(.96);
}
.dap-mini-overlay__btn.is-active {
    background: rgba(77,159,138,.26);
    border-color: rgba(77,159,138,.54);
}
.dap-mini-overlay__btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.dap-mini-overlay__btn span {
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .01em;
}
.dap-mini-overlay__btn--seek-back,
.dap-mini-overlay__btn--seek {
    min-width: 42px;
    gap: 4px;
}
.dap-mini-overlay__btn--next span {
    display: none;
}
.dap-mini-overlay__btn--play {
    min-width: 34px;
}
.dap-mini-overlay__btn--mode {
    min-width: 78px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .02em;
}
.dap-mini-overlay__btn--restore {
    position: absolute;
    top: 6px;
    right: 36px;
    z-index: 2;
    min-width: 26px;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 8px;
}
.dap-mini-overlay__btn--restore span {
    display: none;
}
.dap-mini-overlay__btn--close {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    min-width: 26px;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 8px;
    color: #ffdadd;
    border-color: rgba(255,122,122,.2);
    background: rgba(40,8,14,.68);
    box-shadow: 0 4px 12px rgba(0,0,0,.22);
}
.dap-mini-overlay__btn--next {
    min-width: 30px;
}
.dap-mini-overlay__btn--close svg {
    width: 14px;
    height: 14px;
}

.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay {
    inset: auto 6px 6px 6px;
    gap: 4px;
    padding: 6px;
    border-radius: 9px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__meta {
    gap: 3px;
    padding-right: 52px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__title {
    font-size: .68rem;
    line-height: 1.2;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__sub {
    gap: 4px 6px;
    font-size: .58rem;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__state {
    gap: 5px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__state::before {
    width: 6px;
    height: 6px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__time {
    margin-left: 0;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__progress {
    height: 2px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__actions {
    gap: 1px;
    padding-right: 30px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn {
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    border-radius: 8px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn svg {
    width: 14px;
    height: 14px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn span {
    font-size: .53rem;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn--seek-back,
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn--seek,
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn--mode {
    min-width: 36px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn--restore {
    top: 5px;
    right: 32px;
    min-width: 24px;
    width: 24px;
    height: 24px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-overlay__btn--close {
    top: 5px;
    right: 5px;
    min-width: 24px;
    width: 24px;
    height: 24px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-next-preview {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 5px;
    padding: 5px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-next-preview__thumb {
    width: 54px;
    height: 32px;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-next-preview__badge {
    padding: 2px 6px;
    font-size: .53rem;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-next-preview__title {
    font-size: .62rem;
}
.wt-player-embed.dap-mini-mode.dap-mini-compact .dap-mini-next-preview__sub {
    font-size: .56rem;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay {
    gap: 3px;
    padding: 5px;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__meta {
    padding-right: 48px;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__title {
    font-size: .62rem;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__sub {
    font-size: .54rem;
    gap: 4px;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__progress {
    display: none;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__actions {
    padding-right: 28px;
}
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__btn--seek-back span,
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__btn--seek span,
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__btn--mode span,
.wt-player-embed.dap-mini-mode.dap-mini-tight .dap-mini-overlay__btn--restore span {
    display: none;
}

.wt-player-embed.dap-mini-mode .dap-mini-yt-fallback {
    position: absolute;
    inset: 8px;
    z-index: 28;
    display: grid;
    grid-template-columns: minmax(104px, 38%) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(8,10,18,.56), rgba(8,10,18,.9));
    backdrop-filter: blur(12px);
}
.dap-mini-yt-fallback__thumb {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(7,9,16,.06), rgba(7,9,16,.68)), linear-gradient(135deg, rgba(255,80,80,.28), rgba(255,80,80,.08));
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.dap-mini-yt-fallback__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.dap-mini-yt-fallback__badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255,72,72,.18);
    border: 1px solid rgba(255,72,72,.26);
    color: #ffd8d8;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.dap-mini-yt-fallback__title {
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.dap-mini-yt-fallback__text {
    color: rgba(238,241,255,.82);
    font-size: .68rem;
    line-height: 1.36;
}
.dap-mini-yt-fallback__actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.dap-mini-yt-fallback__btn {
    min-width: 0;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(12,14,24,.82);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.dap-mini-yt-fallback__btn:hover,
.dap-mini-yt-fallback__btn:focus-visible {
    background: rgba(138,109,233,.24);
    border-color: rgba(169,141,245,.46);
}
.dap-mini-yt-fallback__btn:active {
    transform: scale(.97);
}
.dap-mini-yt-fallback__btn--focus,
.dap-mini-yt-fallback__btn--switch {
    flex: 1 1 0;
}
.dap-mini-yt-fallback__btn--close {
    color: #ffdadd;
    border-color: rgba(255,122,122,.24);
    background: rgba(46,10,16,.78);
}
.dap-mini-yt-fallback__btn[hidden] {
    display: none !important;
}
.wt-player-embed.dap-mini-mode .dap-mini-mode-toggle,
.wt-player-embed.dap-mini-mode .dap-mini-restore-btn,
.wt-player-embed.dap-mini-mode .dap-mini-close-btn {
    display: inline-flex;
}
.dap-mini-handle {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 45;
    display: none;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(8,10,16,.66);
    color: rgba(246,247,255,.92);
    padding: 0 9px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: grab;
    user-select: none;
    touch-action: none;
}
.dap-mini-handle svg {
    width: 14px;
    height: 14px;
}
.dap-mini-handle[hidden] { display: none !important; }
.wt-player-embed.dap-mini-mode .dap-mini-handle {
    display: inline-flex;
}
.wt-player-embed.dap-mini-mode.dap-mini-dragging .dap-mini-handle {
    cursor: grabbing;
}
.dap-mini-resize {
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 45;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 7px;
    background: rgba(8,10,16,.62);
    color: rgba(248,248,255,.92);
    cursor: nwse-resize;
    padding: 0;
    user-select: none;
    touch-action: none;
}
.dap-mini-resize svg {
    width: 14px;
    height: 14px;
}
.dap-mini-resize[hidden] { display: none !important; }
.wt-player-embed.dap-mini-mode .dap-mini-resize {
    display: inline-flex;
}
@keyframes dapMiniEnter {
    0% {
        opacity: .25;
        transform: translateY(6px) scale(.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wt-next-overlay__autonext {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: .78rem;
    color: rgba(255,255,255,.82);
}
.wt-next-overlay__autonext input { accent-color: #8a6de9; }
.wt-next-overlay__autonext-label { line-height: 1.3; }

@media (max-width: 900px) {
    .dap-status {
        top: 8px;
        left: 8px;
        right: 8px;
        gap: 4px;
    }
    .dap-status-item {
        font-size: .62rem;
        padding: 3px 7px;
    }
    .dap-status-settings-btn span {
        display: none;
    }
    .dap-status-item--caption {
        display: none;
    }
    .dap-status-menu {
        top: 50%;
        left: 50%;
        right: auto;
        width: calc(100% - 12px);
        max-width: calc(100% - 12px);
        max-height: calc(100% - 12px);
        transform: translate(-50%, -50%);
    }
    .dap-status-menu__header {
        padding: 14px 12px 10px;
    }
    .dap-status-menu__body {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }
    .dap-notice {
        top: 40px;
        left: 8px;
        right: 8px;
        font-size: .76rem;
        padding: 8px 10px;
    }
    .dap-recovery {
        left: 8px;
        right: 8px;
        top: 84px;
        padding: 9px 10px;
    }
    .dap-onboarding {
        top: 8px;
        right: 8px;
        width: min(320px, calc(100% - 16px));
    }
    .dap-transcript-panel {
        left: 10px;
        right: 10px;
        width: auto;
        max-height: 46vh;
    }
    .wt-player-embed.dap-mini-mode {
        width: min(360px, calc(100vw - 16px));
        right: 8px;
        bottom: 8px;
    }
}

/* ===== Mobile Overrides ===== */


@media (max-width: 1180px) and (hover: hover) and (pointer: fine) {
    .dap-bottom { gap: 6px; }
    .dap-left { gap: 8px; }
    .dap-right { gap: 4px; }
    .dap-btn {
        width: 34px;
        height: 34px;
    }
    .dap-btn svg {
        width: 18px;
        height: 18px;
    }
    .dap-mini-btn {
        min-width: 50px;
        padding: 0 8px;
        font-size: .62rem;
        letter-spacing: .04em;
    }
    .dap-mini-mode-toggle {
        min-width: 72px;
        padding: 0 9px;
        font-size: .58rem;
    }
    .dap-hints-btn,
    .dap-hotkeys-btn {
        display: none;
    }
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]::after {
        max-width: min(200px, calc(100vw - 32px));
        white-space: normal;
        text-align: right;
    }
}

@media (hover: none) and (pointer: coarse) {
    .wt-player-embed.dap-mini-mode.dap-mini-mobile {
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 8px) !important;
        width: min(280px, calc(100vw - 14px)) !important;
        max-width: calc(100vw - 14px);
        border-radius: 16px;
        transform: translateX(-50%) translateY(var(--dap-mini-swipe-offset, 0px));
        transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
        box-shadow: 0 22px 46px rgba(0,0,0,.48);
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-gradient,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-controls,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-status,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-status-menu,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-mode-toggle,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-restore-btn,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-close-btn,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-handle,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-resize {
        display: none !important;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay {
        inset: auto 6px 6px 6px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        gap: 5px;
        padding: 7px;
        max-height: calc(100% - 12px);
        border-radius: 12px;
        background: linear-gradient(180deg, rgba(7,9,16,.12), rgba(7,9,16,.82));
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__title {
        font-size: .76rem;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__sub {
        font-size: .64rem;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__actions {
        justify-content: space-between;
        gap: 4px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--mute,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--seek-back,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--seek,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--pip,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--prev-chapter,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--next-chapter,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--caption,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--next {
        display: none !important;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--play,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--restore,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--close {
        display: inline-flex;
        flex: 1 1 0;
        min-width: 0;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--restore,
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--close {
        position: static;
        width: auto;
        height: 32px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--restore {
        gap: 6px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--restore span {
        display: inline;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn--play {
        flex: 1.1 1 0;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-yt-fallback {
        grid-template-columns: 1fr;
        inset: 6px;
        gap: 8px;
        padding: 9px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-yt-fallback__thumb {
        min-height: 74px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-yt-fallback__actions {
        gap: 5px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-yt-fallback__btn {
        flex: 1 1 0;
        min-height: 34px;
        padding: 0 8px;
    }
}
@media (hover: none) and (pointer: coarse) and (max-width: 380px) {
    .wt-player-embed.dap-mini-mode.dap-mini-mobile {
        width: min(252px, calc(100vw - 10px)) !important;
        max-width: calc(100vw - 10px);
        bottom: calc(env(safe-area-inset-bottom, 0px) + 6px) !important;
        border-radius: 14px;
        transform: translateX(-50%) translateY(var(--dap-mini-swipe-offset, 0px));
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay {
        inset: auto 5px 5px 5px;
        gap: 5px;
        padding: 7px;
        border-radius: 10px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__title {
        font-size: .72rem;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__sub {
        font-size: .6rem;
        gap: 6px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn {
        height: 30px;
        padding: 0 6px;
        border-radius: 9px;
    }
    .wt-player-embed.dap-mini-mode.dap-mini-mobile .dap-mini-overlay__btn svg {
        width: 15px;
        height: 15px;
    }
}
@media (hover: none) and (pointer: coarse) {
    .dap-status-item--quality,
    .dap-status-item--caption {
        display: none;
    }
    .dap-onboarding {
        left: 8px;
        right: 8px;
        width: auto;
    }
    .dap-onboarding__list {
        display: grid;
        gap: 4px;
    }
    .dap-recovery {
        top: 74px;
    }
    .dap-recovery__actions {
        gap: 6px;
    }
    .dap-recovery__btn {
        font-size: .72rem;
        padding: 7px 9px;
    }
    .dap-chapter-preview {
        display: none !important;
    }
    .dap-btn { width: 44px; height: 44px; }
    .dap-big-play { width: 64px; height: 64px; }
    .dap-big-play svg { width: 28px; height: 28px; }
    .dap-progress-bar { height: 6px; }
    .dap-scrubber { width: 18px; height: 18px; transform: translate(-50%, -50%) scale(1) !important; }
    .dap-volume { display: none !important; }
    .dap-controls { padding: 0 0 8px; }
    .dap-bottom { padding: 0 8px; }
    .dap-caption-btn,
    .dap-transcript-btn { min-width: 54px; }
    .dap-transcript-list { max-height: 34vh; }
    .dap-mini-btn,
    .dap-theater-btn,
    .dap-hotkeys-btn { display: none; }
    .dap-theater-close {
        top: 10px;
        right: 10px;
        padding: 7px 10px;
        gap: 6px;
        font-size: .68rem;
    }
    .wt-player-embed.dap-theater-mode .dap-status {
        top: 10px;
        left: 10px;
        right: 74px;
        max-width: calc(100% - 88px);
        gap: 6px;
    }
    .wt-player-embed.dap-theater-mode .dap-status-item--speed {
        display: none;
    }
    .dap-skip-chip {
        right: 10px;
        bottom: 74px;
    }
}

/* ===== Episode Social Bar ===== */
.wt-social-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px 16px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.24);
    background:
        linear-gradient(165deg, rgba(25,25,38,.8), rgba(15,15,24,.88)),
        radial-gradient(circle at 16% 10%, rgba(77,159,138,.18), rgba(77,159,138,0) 48%);
    box-shadow: 0 16px 32px rgba(0,0,0,.24);
}
.wt-social-bar::before {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(77,159,138,.5), rgba(138,109,233,.5));
    pointer-events: none;
}
.wt-social-bar__copy {
    min-width: 0;
    margin-bottom: 0;
}
.wt-social-bar__kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(11,11,16,.45);
    color: #e8defe;
    font-size: .65rem;
    letter-spacing: .38px;
    text-transform: uppercase;
    font-weight: 700;
}
.wt-social-bar__kicker i {
    color: var(--secondary-light);
}
.wt-social-bar__title {
    margin: 0 0 6px;
    color: #f5eeff;
    font-size: 1rem;
    line-height: 1.4;
}
.wt-social-bar__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.55;
}
.wt-social-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}
.wt-like-btn,
.wt-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(138,109,233,.14);
    color: #ece4ff;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
    text-decoration: none;
}
.wt-like-btn:hover,
.wt-share-btn:hover {
    border-color: rgba(177,155,247,.68);
    background: rgba(138,109,233,.26);
    color: #fff;
    transform: translateY(-1px);
}
.wt-like-btn i,
.wt-share-btn i {
    font-size: .86rem;
}
.wt-like-label {
    color: rgba(244,236,255,.92);
    font-size: .78rem;
}
.wt-like-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(11,11,16,.45);
    border: 1px solid rgba(138,109,233,.28);
    color: #fff;
    font-weight: 700;
    line-height: 1;
}
.wt-like-btn.liked {
    color: #ffdbe4;
    border-color: rgba(231,76,111,.45);
    background: rgba(231,76,111,.2);
}
.wt-like-btn.liked i { animation: likePopIn .35s ease; }
.wt-like-btn.liked .wt-like-count {
    border-color: rgba(231,76,111,.48);
    background: rgba(122,33,55,.36);
}
.wt-like-btn--login {
    background: rgba(77,159,138,.12);
    border-color: rgba(77,159,138,.3);
}
.wt-like-btn--login:hover {
    border-color: rgba(77,159,138,.56);
    background: rgba(77,159,138,.22);
}

/* Share wrapper + dropdown */
.wt-share-wrap {
    position: relative;
    margin-left: 0;
}
.wt-share-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 230px;
    padding: 7px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(18,18,30,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(.97);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 20;
}
.wt-share-dropdown.open {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
}
.wt-share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 11px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #ddd4f4;
    font-size: .84rem;
    text-decoration: none;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, border-color .16s ease;
    box-sizing: border-box;
}
.wt-share-option:hover {
    background: rgba(138,109,233,.16);
    color: #fff;
}
.wt-share-option i { width: 18px; text-align: center; font-size: 1rem; }
.wt-share-option .fa-vk { color: #4a76a8; }
.wt-share-option .fa-telegram-plane { color: #2aabee; }
.wt-share-option .fa-youtube { color: #e74c3c; }
.wt-share-option .fa-link { color: var(--secondary); }

/* ===== Episode: time link dropdown + anti-spoiler ===== */
.wt-time-link-wrap {
    position: relative;
    display: inline-flex;
}
.wt-time-link-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 260px;
    padding: 8px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(18,18,30,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
    z-index: 22;
}
.wt-time-link-dropdown[hidden] {
    display: none !important;
}
.wt-time-link-preview {
    display: grid;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px dashed rgba(138,109,233,.28);
    background: rgba(11,11,16,.35);
    margin-bottom: 8px;
}
.wt-time-link-preview__label {
    font-size: .72rem;
    color: var(--text-muted);
}
.wt-time-link-preview__value {
    font-size: .82rem;
    color: #f5eeff;
    font-weight: 700;
    letter-spacing: .02em;
}
.wt-time-link-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 11px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #ddd4f4;
    font-size: .84rem;
    text-decoration: none;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, border-color .16s ease;
    box-sizing: border-box;
}
.wt-time-link-option:hover {
    background: rgba(138,109,233,.16);
    color: #fff;
}
.wt-time-link-option i {
    width: 18px;
    text-align: center;
    font-size: .96rem;
    color: var(--secondary);
}
.wt-ep-jump-chip--spoiler.is-active {
    border-color: rgba(77,159,138,.6) !important;
    background: rgba(77,159,138,.18) !important;
    color: #d6fff2 !important;
}

/* ===== Chapters: hover preview for list buttons ===== */
.wt-chapter-preview {
    position: fixed;
    width: max-content;
    max-width: 320px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.35);
    background: rgba(10,10,16,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 34px rgba(0,0,0,.55);
    z-index: 999;
    pointer-events: none;
}
.wt-chapter-preview__thumb {
    border-radius: 12px;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,.35);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
    margin-bottom: 8px;
}
.wt-chapter-preview__meta {
    display: grid;
    gap: 4px;
}
.wt-chapter-preview__time {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(169,141,245,.95);
}
.wt-chapter-preview__label {
    font-size: .84rem;
    color: #f5eeff;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes likePopIn {
    0% { transform: scale(1); }
    40% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.wt-ep-search-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: min(260px, 100%);
    min-height: 38px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.42);
    padding: 0 10px;
}
.wt-ep-search-wrap i {
    color: var(--primary-light);
    font-size: .78rem;
}
.wt-ep-search {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: .82rem;
}
.wt-ep-search:focus { outline: none; }
.wt-ep-search::placeholder { color: var(--text-muted); }

.wt-saved-moments-card {
    margin-top: 14px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(12,12,18,.52);
    padding: 14px;
    position: relative;
    overflow: hidden;
}
.wt-saved-moments-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}
.wt-saved-moments-list {
    display: grid;
    gap: 8px;
}
.wt-saved-moment {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 10px;
    align-items: center;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15,15,22,.55);
    color: var(--text);
    padding: 8px 10px;
}
.wt-saved-moment:hover {
    border-color: rgba(177,155,247,.68);
    background: rgba(138,109,233,.14);
}
.wt-saved-moment__time {
    font-size: .78rem;
    font-weight: 800;
    color: var(--secondary-light);
}
.wt-saved-moment__label {
    font-size: .82rem;
    color: rgba(236,228,255,.92);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wt-saved-moment__remove {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(231,76,111,.35);
    background: rgba(231,76,111,.12);
    color: rgba(255,219,228,.92);
    cursor: pointer;
}
.wt-saved-moment__remove:hover {
    border-color: rgba(231,76,111,.6);
    background: rgba(231,76,111,.2);
    color: #fff;
}
.wt-saved-moments-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
.wt-saved-moments-action {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 11px;
    background: rgba(0,0,0,.12);
    color: rgba(236,228,255,.92);
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 800;
    font-size: .82rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.wt-saved-moments-action:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: #fff;
}
.wt-saved-moments-action--soft {
    border-color: rgba(138,109,233,.22);
    background: rgba(138,109,233,.10);
}
.wt-saved-moments-action--soft:hover {
    border-color: rgba(177,155,247,.68);
    background: rgba(138,109,233,.18);
}
.wt-saved-moments-action--accent {
    border-color: rgba(77,159,138,.22);
    background: rgba(77,159,138,.10);
    color: rgba(214,255,242,.95);
}
.wt-saved-moments-action--accent:hover {
    border-color: rgba(77,159,138,.62);
    background: rgba(77,159,138,.18);
    color: #fff;
}
.wt-saved-moments-clear {
    border: 1px solid rgba(138,109,233,.3);
    border-radius: 11px;
    background: rgba(138,109,233,.10);
    color: rgba(236,228,255,.92);
    padding: 8px 12px;
    cursor: pointer;
}
.wt-saved-moments-clear:hover {
    border-color: rgba(177,155,247,.68);
    background: rgba(138,109,233,.18);
    color: #fff;
}

.wt-comments-tools {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 5px;
    flex: 0 0 auto;
    margin-left: 0;
    width: clamp(200px, 22vw, 320px);
    padding: 6px 8px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.18);
    background: rgba(11,11,16,.18);
}
.wt-comments-tools__label {
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .38px;
    text-transform: uppercase;
    color: rgba(236,228,255,.72);
    padding-left: 2px;
    white-space: nowrap;
}
.wt-dropdown {
    position: relative;
    display: inline-flex;
}
.wt-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.42);
    color: var(--text);
    font-size: .82rem;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.wt-comments-sort .wt-dropdown-btn {
    background: rgba(6,6,10,.32);
}
.wt-comments-sort {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
}
.wt-comments-sort .wt-dropdown-btn {
    width: 100%;
}

@media (max-width: 720px) {
    .wt-comments-tools {
        width: 100%;
    }
    .wt-comments-sort,
    .wt-comments-sort .wt-dropdown-btn,
    .wt-comments-jump {
        width: 100%;
        max-width: 100%;
    }
    .wt-comments-sort .wt-dropdown-menu {
        left: 0;
        right: 0;
        min-width: min(260px, calc(100vw - 40px));
    }
}
.wt-dropdown-btn:hover {
    border-color: rgba(177,155,247,.68);
    background: rgba(138,109,233,.16);
    transform: translateY(-1px);
}
.wt-dropdown-btn i {
    color: var(--primary-light);
    font-size: .78rem;
}
.wt-dropdown-btn__label {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 800;
    color: rgba(245,238,255,.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wt-dropdown-btn__caret {
    flex: 0 0 auto;
    color: rgba(236,228,255,.75);
    font-size: .72rem;
}
.wt-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 7px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(18,18,30,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
    z-index: 30;
}
.wt-dropdown-menu[hidden] { display: none !important; }
.wt-dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 11px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #ddd4f4;
    font-size: .84rem;
    text-decoration: none;
    cursor: pointer;
    transition: background .16s ease, color .16s ease;
}
.wt-dropdown-item:hover {
    background: rgba(138,109,233,.16);
    color: #fff;
}
.wt-dropdown-item[aria-checked="true"] {
    background: rgba(77,159,138,.12);
    box-shadow: inset 0 0 0 1px rgba(77,159,138,.32);
    color: #d6fff2;
}
.wt-comments-sort-native {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 900px) {
    .wt-social-bar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .wt-social-bar__actions {
        justify-content: flex-start;
    }
}

/* ===== Comments Section ===== */
.wt-comments-section {
    position: relative;
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(138,109,233,.24);
    background:
        radial-gradient(circle at 0% 0%, rgba(138,109,233,.16), rgba(138,109,233,0) 46%),
        radial-gradient(circle at 100% 0%, rgba(77,159,138,.10), rgba(77,159,138,0) 52%),
        linear-gradient(165deg, rgba(24,24,38,.78), rgba(14,14,24,.92));
    box-shadow: 0 18px 36px rgba(0,0,0,.26);
}
.wt-comments-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.03),
        inset 0 40px 70px rgba(138,109,233,.06);
}

.wt-comments-shell {
    display: grid;
    gap: 12px;
}

.wt-comments-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.wt-comments-panel {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.18);
    background:
        radial-gradient(circle at 14% 0%, rgba(138,109,233,.10), rgba(138,109,233,0) 52%),
        linear-gradient(160deg, rgba(13,13,21,.58), rgba(9,9,14,.86));
    box-shadow:
        0 16px 30px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(255,255,255,.02);
    overflow: hidden;
}
.wt-comments-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at 90% 0%, rgba(77,159,138,.10), transparent 55%);
    opacity: .75;
}

.wt-comments-panel--composer,
.wt-comments-panel--list {
    padding: 12px;
}
.wt-comments-panel--composer > *,
.wt-comments-panel--list > * {
    position: relative;
    z-index: 1;
}
.wt-comments-head {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
}
.wt-comments-head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138,109,233,.28), rgba(77,159,138,.18), transparent);
    opacity: .9;
}
.wt-comments-head-left {
    min-width: 260px;
    flex: 1 1 420px;
}
.wt-comments-head-left .wt-comments-subtitle {
    max-width: 56ch;
}
.wt-comments-head-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}
.wt-comments-head-right .wt-comments-jump {
    flex: 0 0 auto;
}
.wt-comments-head-right > * {
    min-width: 0;
}
.wt-comments-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.wt-comments-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    min-height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(11,11,16,.46);
    color: rgba(245,238,255,.95);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
}
.wt-comments-count-pill #comment-count {
    font-variant-numeric: tabular-nums;
}
.wt-comments-subtitle {
    margin: 6px 0 0;
    color: rgba(236,228,255,.78);
    font-size: .86rem;
    line-height: 1.35;
    max-width: 70ch;
}
.wt-comments-jump--primary {
    border-color: rgba(77,159,138,.32);
    background: linear-gradient(135deg, rgba(77,159,138,.18), rgba(138,109,233,.14));
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
    min-width: 220px;
}
.wt-comments-jump--primary:hover {
    border-color: rgba(128,219,195,.55);
    background: linear-gradient(135deg, rgba(77,159,138,.26), rgba(138,109,233,.18));
}

@media (max-width: 900px) {
    .wt-comments-head {
        align-items: start;
    }
    .wt-comments-head-right {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .wt-comments-title {
        white-space: normal;
    }
}
.wt-comments-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.3);
    background: rgba(11,11,16,.46);
    color: #e8ddff;
    font-size: .64rem;
    letter-spacing: .38px;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wt-comments-kicker i {
    color: var(--secondary-light);
}
.wt-comments-jump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 7px 12px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.32);
    background: rgba(138,109,233,.16);
    color: #ece4ff;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.wt-comments-jump:hover {
    border-color: rgba(177,155,247,.7);
    background: rgba(138,109,233,.26);
    color: #fff;
}
.wt-comments-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-wrap: nowrap;
    white-space: nowrap;
    color: #f5eeff;
    font-size: 1.02rem;
    font-weight: 700;
}
.wt-comments-title i { color: var(--primary-light); }

/* Comment form */
.wt-comment-form-shell {
    margin: 0;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(138,109,233,.18);
    background: linear-gradient(160deg, rgba(13,13,21,.68), rgba(9,9,14,.86));
}
.wt-comment-form-shell {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.wt-comment-form { margin: 0; }
.wt-comment-form-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
    flex-wrap: wrap;
}
.wt-comment-toolbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 9px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(138,109,233,.14);
    color: #ede4ff;
    font-size: .76rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.wt-comment-toolbar-btn:hover {
    border-color: rgba(177,155,247,.62);
    background: rgba(138,109,233,.24);
    color: #fff;
}
.wt-comment-form-hint {
    color: var(--text-muted);
    font-size: .73rem;
    line-height: 1.4;
}
.wt-comment-form-toolbar--reply {
    justify-content: flex-start;
    margin-bottom: 8px;
}
.wt-comment-toolbar-btn--reply {
    min-height: 30px;
    padding: 6px 10px;
    font-size: .72rem;
}
.wt-comment-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border-radius: 11px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(6,6,10,.42);
    color: var(--text);
    font-family: inherit;
    font-size: .91rem;
    line-height: 1.52;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wt-comment-input {
    min-height: 112px;
}
.wt-comment-input:focus {
    outline: none;
    border-color: rgba(170,145,246,.65);
    box-shadow: 0 0 0 3px rgba(138,109,233,.16);
}
.wt-comment-input::placeholder { color: var(--text-muted); }
.wt-comment-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}
.wt-comment-chars {
    font-size: .76rem;
    color: var(--text-muted);
}
.wt-comment-submit,
.wt-reply-submit {
    min-height: 36px;
    padding: 7px 15px;
    border-radius: 9px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}
.wt-comment-submit:hover,
.wt-reply-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.wt-comment-submit:disabled,
.wt-reply-submit:disabled {
    opacity: .7;
    cursor: default;
    transform: none;
}
.wt-reply-cancel {
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 9px;
    border: 1px solid rgba(138,109,233,.24);
    background: rgba(11,11,16,.42);
    color: var(--text-muted);
    font-size: .8rem;
    cursor: pointer;
    margin-right: 8px;
    transition: color .2s ease, border-color .2s ease;
}
.wt-reply-cancel:hover {
    color: var(--text);
    border-color: rgba(170,145,246,.5);
}

/* Login prompt */
.wt-comment-login-prompt {
    margin: 0;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    background: rgba(138,109,233,.08);
    border: 1px dashed rgba(138,109,233,.28);
    color: var(--text-muted);
    font-size: .88rem;
}
.wt-comment-login-prompt a {
    color: var(--primary-light); text-decoration: underline;
}

.wt-comments-list {
    display: grid;
    gap: 10px;
}

/* Comment item */
.wt-comment {
    position: relative;
    padding: 13px 14px 12px;
    border-radius: 13px;
    border: 1px solid rgba(138,109,233,.18);
    background: linear-gradient(160deg, rgba(14,14,23,.66), rgba(10,10,16,.8));
}
.wt-comment:hover {
    border-color: rgba(177,155,247,.38);
}
.wt-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.wt-comment-author {
    font-weight: 700;
    font-size: .86rem;
    color: #eee3ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.wt-comment-author i {
    color: var(--primary-light);
    font-size: .82rem;
}
.wt-comment-time {
    font-size: .74rem;
    color: var(--text-muted);
}
.wt-comment-delete {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: .78rem;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.wt-comment-delete:hover {
    color: #ffbacb;
    border-color: rgba(231,76,111,.32);
    background: rgba(231,76,111,.15);
}
.wt-comment-body {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.64;
    word-break: break-word;
}
.wt-comment-body a {
    color: #b19bf7;
    text-decoration: underline;
    text-decoration-color: rgba(177,155,247,.55);
    text-underline-offset: 2px;
    transition: color .2s ease, text-decoration-color .2s ease;
}
.wt-comment-body a:hover {
    color: #eadfff;
    text-decoration-color: rgba(234,223,255,.85);
}
.wt-comment-body a.wt-timestamp-link {
    font-weight: 800;
    text-decoration-style: dotted;
}
.wt-comment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.wt-comment-reply-btn {
    margin-top: 0;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(138,109,233,.24);
    border-radius: 9px;
    background: rgba(138,109,233,.12);
    color: #eadfff;
    cursor: pointer;
    font-size: .77rem;
    font-weight: 700;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.wt-comment-reply-btn:hover {
    color: #fff;
    border-color: rgba(177,155,247,.7);
    background: rgba(138,109,233,.24);
}
.wt-comment-reply-btn--timestamp {
    border-color: rgba(77,159,138,.22);
    background: rgba(77,159,138,.12);
    color: #dbfff2;
}
.wt-comment-reply-btn--timestamp:hover {
    border-color: rgba(77,159,138,.62);
    background: rgba(77,159,138,.2);
    color: #fff;
}

.wt-comment-replies-toggle {
    margin-top: 10px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.16);
    background: rgba(11,11,16,.35);
    color: rgba(238,234,255,.92);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    font-weight: 700;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.wt-comment-replies-toggle:hover {
    color: #fff;
    border-color: rgba(138,109,233,.38);
    background: rgba(138,109,233,.14);
    transform: translateY(-1px);
}
.wt-comment-replies-toggle i {
    transition: transform .2s ease;
}
.wt-comment-replies-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Replies */
.wt-comment-replies {
    margin-left: 18px;
    margin-top: 10px;
    padding-left: 12px;
    border-left: 2px solid rgba(138,109,233,.24);
}
.wt-comment--reply {
    padding: 10px 11px;
    border-radius: 10px;
    border-color: rgba(77,159,138,.2);
    background: linear-gradient(160deg, rgba(10,16,19,.56), rgba(8,12,15,.72));
}
.wt-comment--reply .wt-comment-author { font-size: .82rem; }
.wt-comment--reply .wt-comment-body { font-size: .85rem; }

/* Reply form (inline) */
.wt-reply-form {
    margin-top: 10px;
    margin-left: 18px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(138,109,233,.2);
    background: rgba(11,11,16,.4);
}
.wt-reply-input { min-height: 60px; }

/* Empty state */
.wt-comments-empty {
    text-align: center;
    padding: 22px 16px;
    min-height: 104px;
    display: grid;
    place-content: center;
    gap: 8px;
    color: var(--text-muted);
    border-radius: 12px;
    border: 1px dashed rgba(138,109,233,.24);
    background: rgba(11,11,16,.26);
}
.wt-comments-empty i {
    opacity: .9;
}
.wt-comments-empty i { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.wt-comments-empty p { font-size: .92rem; }

/* ===== Social Mobile ===== */
@media (max-width: 600px) {
    .wt-social-bar {
        padding: 14px 12px;
        border-radius: 14px;
        gap: 10px;
    }
    .wt-social-bar::before {
        left: 12px;
        right: 12px;
    }
    .wt-social-bar__title {
        font-size: .93rem;
    }
    .wt-social-bar__subtitle {
        font-size: .8rem;
    }
    .wt-social-bar__actions {
        gap: 8px;
    }
    .wt-like-btn,
    .wt-share-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 8px 10px;
        font-size: .8rem;
    }
    .wt-like-label {
        display: none;
    }
    .wt-share-wrap {
        flex: 1 1 0;
    }
    .wt-share-btn {
        width: 100%;
    }
    .wt-share-dropdown {
        left: 0;
        right: auto;
        min-width: min(260px, calc(100vw - 40px));
    }
    .wt-comments-section {
        padding: 14px 12px;
        border-radius: 16px;
    }
    .wt-comments-panel--composer,
    .wt-comments-panel--list {
        padding: 10px;
    }
    .wt-comments-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 10px;
    }
    .wt-comments-jump {
        width: 100%;
    }
    .wt-comment-form-shell {
        padding: 10px;
    }
    .wt-key-moments-head,
    .wt-moment-group__head,
    .wt-comment-form-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .wt-comment-toolbar-btn,
    .wt-comment-form-hint {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .wt-comment-form-actions {
        flex-wrap: wrap;
    }
    .wt-comment-submit {
        width: 100%;
    }
    .wt-comment-replies {
        margin-left: 12px;
        padding-left: 10px;
    }
    .wt-reply-form {
        margin-left: 12px;
        padding: 9px;
    }
}

/* ===== Gameplay Type Badges ===== */
.wt-gp-type-first_look { background: rgba(59, 130, 246, .85); color: #fff; }
.wt-gp-type-demo { background: rgba(139, 92, 246, .85); color: #fff; }
.wt-gp-type-review { background: rgba(20, 184, 166, .85); color: #fff; }
.wt-gp-type-funny_moments { background: rgba(234, 179, 8, .85); color: #1a1a28; }
.wt-gp-type-speedrun { background: rgba(239, 68, 68, .85); color: #fff; }
.wt-gp-type-challenge { background: rgba(249, 115, 22, .85); color: #fff; }
.wt-gp-type-casual { background: rgba(168, 85, 247, .85); color: #fff; }
.wt-gp-type-showcase { background: rgba(6, 182, 212, .85); color: #fff; }

/* ===== Season Info Block ===== */
.wt-season-info {
    background: rgba(138, 109, 233, .08);
    border: 1px solid rgba(138, 109, 233, .2);
    border-radius: 16px;
    padding: 24px 28px;
}
.wt-season-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.wt-season-info-header i {
    color: var(--primary, #8a6de9);
    font-size: 1.3rem;
}
.wt-season-info-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.wt-season-info-desc {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    line-height: 1.5;
    margin: 0 0 12px;
}
.wt-season-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}
.wt-season-info-meta i { margin-right: 4px; }
.wt-season-completed { color: var(--secondary, #4d9f8a); }
.wt-season-active { color: var(--primary, #8a6de9); }

@media (max-width: 600px) {
    .wt-season-info { padding: 16px 18px; }
    .wt-season-info-header h2 { font-size: 1.1rem; }
    .wt-season-info-meta { gap: 10px; font-size: .8rem; }
}

/* === Walkthrough detail: quick nav, content stats, user journey === */
.wt-detail-panel-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 16px 0;
}

.wt-detail-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 12px;
}
.wt-detail-subtitle i {
    color: var(--primary, #8a6de9);
}

.wt-detail-next-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(138, 109, 233, .18);
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.wt-detail-next-btn:hover {
    transform: translateY(-1px);
    background: rgba(138, 109, 233, .24);
    border-color: rgba(255, 255, 255, .22);
}
.wt-detail-next-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .82rem;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .14);
}

.wt-detail-quicknav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.wt-detail-quicknav-form .wt-field-label {
    display: block;
    margin-bottom: 6px;
}
.wt-search-box--mini .wt-search-input {
    font-size: .95rem;
}

.wt-user-journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.wt-user-journey-stat {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
}
.wt-user-journey-label {
    display: block;
    font-size: .78rem;
    color: rgba(255, 255, 255, .60);
    margin-bottom: 3px;
}
.wt-user-journey-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, .92);
}
.wt-user-journey-progress {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    margin: 12px 0 0;
}
.wt-user-journey-progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(77, 159, 138, .95), rgba(138, 109, 233, .95));
}
.wt-user-journey-cta {
    display: block;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    color: rgba(255, 255, 255, .95);
}
.wt-user-journey-cta:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .22);
}
.wt-user-journey-cta-kicker {
    display: block;
    font-size: .78rem;
    color: rgba(255, 255, 255, .60);
    margin-bottom: 2px;
}
.wt-user-journey-cta-title {
    display: block;
    font-size: .98rem;
    font-weight: 800;
}
.wt-user-journey-guest {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    line-height: 1.45;
}
.wt-user-journey-hint {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: .84rem;
    line-height: 1.45;
}

.wt-contents-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .22);
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
}
.wt-contents-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 20% 10%, rgba(138, 109, 233, .18), transparent 60%),
                radial-gradient(circle at 85% 35%, rgba(77, 159, 138, .16), transparent 55%);
    pointer-events: none;
}
.wt-contents-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.wt-contents-subtitle {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    line-height: 1.5;
    max-width: 62ch;
}
.wt-contents-overview {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .70);
    white-space: nowrap;
}
.wt-contents-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.wt-contents-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    color: rgba(255, 255, 255, .95);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.wt-contents-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .20);
}
.wt-contents-item--disabled {
    opacity: .55;
    cursor: not-allowed;
}
.wt-contents-item-icon i {
    font-size: 1.2rem;
    color: var(--primary, #8a6de9);
}
.wt-contents-item-label {
    display: block;
    font-size: .82rem;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 2px;
}
.wt-contents-item-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .3px;
}
.wt-contents-foot {
    position: relative;
    margin-top: 14px;
}
.wt-contents-foot-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, .82);
    font-size: .95rem;
}
.wt-contents-foot-link:hover {
    color: rgba(255, 255, 255, .95);
}

@media (max-width: 900px) {
    .wt-contents-head { flex-direction: column; }
    .wt-contents-overview { flex-direction: row; flex-wrap: wrap; white-space: normal; }
    .wt-contents-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .wt-user-journey-stats { grid-template-columns: 1fr; }
    .wt-contents-grid { grid-template-columns: 1fr; }
}

/* Walkthrough detail: smart picks */
.wt-picks-shell {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .22);
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
}
.wt-picks-shell::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 18% 18%, rgba(77, 159, 138, .14), transparent 58%),
                radial-gradient(circle at 84% 28%, rgba(138, 109, 233, .16), transparent 55%);
    pointer-events: none;
}
.wt-picks-head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.wt-picks-subtitle {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    line-height: 1.5;
    max-width: 62ch;
}
.wt-picks-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.wt-picks-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 800;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
    white-space: nowrap;
}
.wt-picks-action:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.95);
}
.wt-picks-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.wt-pick-card {
    min-width: 0;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    padding: 14px 14px;
    display: grid;
    gap: 10px;
}
.wt-pick-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.wt-pick-card-title {
    margin: 0;
    font-size: .92rem;
    font-weight: 900;
    color: rgba(255,255,255,.95);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.wt-pick-card-title i {
    color: rgba(214,255,242,.88);
}
.wt-pick-card-meta {
    font-size: .78rem;
    color: rgba(255,255,255,.62);
    white-space: nowrap;
}
.wt-pick-list {
    display: grid;
    gap: 8px;
}
.wt-pick-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.14);
    text-decoration: none;
    color: rgba(255,255,255,.92);
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.wt-pick-item:hover {
    transform: translateY(-1px);
    background: rgba(0,0,0,.18);
    border-color: rgba(255,255,255,.18);
}
.wt-pick-num {
    display: inline-flex;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(138,109,233,.12);
    color: rgba(231,221,255,.95);
    font-weight: 900;
    font-size: .78rem;
}
.wt-pick-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .86rem;
    font-weight: 700;
}
.wt-pick-tail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    white-space: nowrap;
}
.wt-pick-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.14);
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 800;
}
.wt-pick-more:hover {
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.95);
    background: rgba(0,0,0,.18);
}
@media (max-width: 980px) {
    .wt-picks-head { flex-direction: column; }
    .wt-picks-actions { justify-content: flex-start; }
    .wt-picks-grid { grid-template-columns: 1fr; }
}

/* Status banner on walkthrough detail header */
.wt-status-banner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .18);
}
.wt-status-banner__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,11,16,.48);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
}
.wt-status-banner__title {
    font-weight: 900;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 4px;
}
.wt-status-banner__text {
    color: rgba(255, 255, 255, .70);
    font-size: .92rem;
    line-height: 1.5;
}
.wt-status-banner__text a {
    color: rgba(214,255,242,.95);
    text-decoration: none;
    border-bottom: 1px dashed rgba(214,255,242,.45);
}
.wt-status-banner__text a:hover {
    border-bottom-color: rgba(214,255,242,.75);
}
.wt-status-banner--paused {
    border-color: rgba(255, 152, 0, .28);
    background: rgba(255, 152, 0, .10);
}
.wt-status-banner--cancelled {
    border-color: rgba(239, 68, 68, .28);
    background: rgba(239, 68, 68, .10);
}
.wt-status-banner--in_progress {
    border-color: rgba(138,109,233,.28);
    background: rgba(138,109,233,.12);
}

@media (max-width: 600px) {
    .wt-status-banner { grid-template-columns: 1fr; }
    .wt-status-banner__icon { width: 40px; height: 40px; border-radius: 12px; }
}

/* Walkthrough detail: new hero layout (wt-detail-header-inner) */
.wt-wt-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(138,109,233,.26);
    background:
        linear-gradient(158deg, rgba(25,25,39,.92), rgba(14,14,22,.96)),
        radial-gradient(circle at 84% 14%, rgba(77,159,138,.22), rgba(77,159,138,0) 46%);
    box-shadow: 0 30px 58px rgba(0,0,0,.36);
}
.wt-wt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.wt-wt-hero-aura {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}
.wt-wt-hero-aura--one {
    width: 440px;
    height: 440px;
    top: -210px;
    left: -170px;
    background: radial-gradient(circle, rgba(138,109,233,.24), rgba(138,109,233,0) 72%);
}
.wt-wt-hero-aura--two {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(77,159,138,.2), rgba(77,159,138,0) 72%);
}
.wt-wt-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    align-items: stretch;
    padding: 30px;
}
.wt-wt-hero-main {
    min-width: 0;
}
.wt-wt-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.wt-wt-hero-top .wt-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 0;
}
.wt-wt-hero-headline {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 16px;
}
.wt-wt-hero-poster {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(138,109,233,.22);
    background: rgba(11,11,16,.55);
    aspect-ratio: 3 / 4;
    box-shadow: 0 18px 40px rgba(0,0,0,.34);
    text-decoration: none;
}
.wt-wt-hero-poster:focus-visible {
    outline: 2px solid rgba(77,159,138,.6);
    outline-offset: 2px;
}
.wt-wt-hero-poster img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.06) contrast(1.02);
}
.wt-wt-hero-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(138,109,233,.22), rgba(77,159,138,.14));
    color: rgba(255,255,255,.92);
    font-size: 2.2rem;
}
.wt-wt-hero-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,12,.75), rgba(8,8,12,0) 65%);
    opacity: .9;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
}
.wt-wt-hero-poster-play {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(138,109,233,.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 24px rgba(138,109,233,.22);
}

.wt-wt-hero .wt-detail-desc {
    margin-bottom: 14px;
    max-width: 760px;
}
.wt-wt-hero .wt-meta-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 16px;
}
.wt-wt-hero .wt-detail-actions {
    display: grid;
    gap: 10px;
    align-items: stretch;
}
.wt-detail-actions-primary {
    display: grid;
    gap: 10px;
    align-items: stretch;
}
.wt-detail-actions-primary--single {
    grid-template-columns: 1fr;
}
.wt-detail-actions-primary--pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wt-detail-actions-secondary {
    display: grid;
    gap: 10px;
    align-items: stretch;
}
.wt-detail-actions-secondary--single {
    grid-template-columns: 1fr;
}
.wt-detail-actions-secondary--pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wt-wt-hero .wt-continue-btn {
    min-height: 48px;
    justify-content: center;
}
.wt-wt-hero .wt-detail-next-btn,
.wt-wt-hero .wt-detail-list-btn,
.wt-wt-hero .wt-playlist-btn {
    min-height: 48px;
    justify-content: center;
}
.wt-wt-hero .wt-detail-list-btn,
.wt-wt-hero .wt-playlist-btn {
    justify-content: center;
}
.wt-wt-hero .wt-detail-actions a {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    /* Keep heights aligned even when labels differ. */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wt-wt-hero .wt-detail-actions a i {
    flex-shrink: 0;
}
.wt-wt-hero .wt-continue-btn,
.wt-wt-hero .wt-detail-next-btn,
.wt-wt-hero .wt-detail-list-btn,
.wt-wt-hero .wt-playlist-btn {
    padding: 12px 18px;
    border-radius: 14px;
    line-height: 1.2;
}

.wt-wt-hero-side {
    min-width: 0;
    display: grid;
    align-content: flex-start;
}
.wt-wt-hero-side .wt-detail-panel {
    height: 100%;
    border-radius: 18px;
    border-color: rgba(138,109,233,.20);
    background: linear-gradient(160deg, rgba(12,12,19,.64), rgba(9,9,14,.86));
}

@media (max-width: 980px) {
    .wt-wt-hero-grid {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .wt-wt-hero-headline {
        grid-template-columns: 150px minmax(0, 1fr);
    }
    .wt-wt-hero-side .wt-detail-panel {
        border-radius: 16px;
    }
}
@media (max-width: 640px) {
    .wt-wt-hero {
        border-radius: 22px;
    }
    .wt-wt-hero-grid {
        padding: 16px 14px;
        gap: 14px;
    }
    .wt-wt-hero-headline {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .wt-wt-hero-poster {
        aspect-ratio: 16 / 9;
    }
    .wt-wt-hero .wt-meta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wt-wt-hero .wt-detail-actions {
        grid-template-columns: 1fr;
    }
    .wt-detail-actions-primary {
        grid-template-columns: 1fr;
    }
    .wt-detail-actions-secondary {
        grid-template-columns: 1fr;
    }
}

/* ===== Walkthroughs Index Revamp 2026 ===== */
.wt-index-page {
    --wt-panel-border: rgba(181, 166, 255, .18);
    --wt-panel-shadow:
        0 28px 56px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    --wt-panel-bg:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 20%),
        radial-gradient(circle at 12% 14%, rgba(138, 109, 233, .16), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(217, 189, 130, .1), transparent 24%),
        radial-gradient(circle at 84% 82%, rgba(79, 165, 148, .12), transparent 28%),
        linear-gradient(138deg, rgba(10, 12, 19, .97), rgba(18, 19, 30, .95) 56%, rgba(12, 18, 24, .96));
}

.wt-index-page .wt-page-header {
    padding: 132px 24px 28px;
}

.wt-index-page .wt-page-header::before {
    inset: -150px auto auto -80px;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(circle, rgba(138, 109, 233, .24) 0%, rgba(138, 109, 233, 0) 66%),
        radial-gradient(circle at 68% 38%, rgba(217, 189, 130, .1), rgba(217, 189, 130, 0) 54%);
}

.wt-index-page .wt-page-header-inner,
.wt-index-page .wt-section-inner,
.wt-index-page .wt-filters-inner {
    max-width: 1240px;
}

.wt-index-page .wt-section {
    padding: 42px 24px;
}

.wt-index-page .section-divider {
    width: min(1240px, calc(100% - 48px));
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(181, 166, 255, .24), rgba(217, 189, 130, .18), rgba(79, 165, 148, .16), transparent);
    opacity: .9;
}

.wt-index-page .wt-breadcrumbs {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.wt-index-page .wt-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, .9fr);
    gap: 18px;
    align-items: stretch;
}

.wt-index-page .wt-page-hero-card--main,
.wt-index-page .wt-hero-spotlight-card,
.wt-index-page .wt-rec-shell,
.wt-index-page .wt-filters-shell,
.wt-index-page .wt-results-shell,
.wt-index-page .wt-continue-shell {
    border-radius: 30px;
    border: 1px solid var(--wt-panel-border);
    box-shadow: var(--wt-panel-shadow);
}

.wt-index-page .wt-page-hero-card--main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: 100%;
    padding: 34px;
    background: var(--wt-panel-bg);
    isolation: isolate;
}

.wt-index-page .wt-page-hero-card--main::after {
    content: "";
    position: absolute;
    inset: auto 26px 0 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(181, 166, 255, .42), rgba(217, 189, 130, .24), transparent);
    pointer-events: none;
}

.wt-index-page .wt-page-hero-top {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.wt-index-page .wt-page-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 48%),
        linear-gradient(145deg, rgba(138, 109, 233, .28), rgba(79, 165, 148, .2));
}

.wt-index-page .wt-page-kicker,
.wt-index-page .wt-hero-chip,
.wt-index-page .wt-hero-quickstrip-label,
.wt-index-page .wt-hero-spotlight-kicker,
.wt-index-page .wt-rec-kicker,
.wt-index-page .wt-rec-card-badge,
.wt-index-page .wt-filters-kicker,
.wt-index-page .wt-results-kicker,
.wt-index-page .wt-continue-kicker,
.wt-index-page .wt-stat-label,
.wt-index-page .wt-filters-summary-label,
.wt-index-page .wt-filters-rail-label,
.wt-index-page .wt-results-overview-label,
.wt-index-page .wt-rec-overview-label,
.wt-index-page .wt-continue-counter-label {
    font-family: 'PT Mono', monospace;
    letter-spacing: .07em;
}

.wt-index-page .wt-page-title {
    font-family: 'PT Mono', monospace;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: .01em;
    margin-bottom: 0;
    text-align: left;
    text-wrap: balance;
    background: linear-gradient(135deg, #fbfaff 12%, #f2cc7a 38%, #b9abff 70%, #95e8d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wt-index-page .wt-page-desc {
    margin: 0;
    max-width: 720px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(240, 240, 245, .78);
}

.wt-index-page .wt-hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wt-index-page .wt-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(181, 166, 255, .2);
    background: rgba(9, 11, 18, .62);
    color: rgba(240, 240, 245, .92);
    font-size: .74rem;
    line-height: 1;
}

.wt-index-page .wt-hero-chip i {
    color: var(--secondary-light);
}

.wt-index-page .wt-hero-chip--accent {
    border-color: rgba(217, 189, 130, .28);
    background: rgba(217, 189, 130, .12);
    color: #f6deb0;
}

.wt-index-page .wt-quick-actions {
    gap: 10px;
    justify-content: flex-start;
    margin-top: 0;
}

.wt-index-page .wt-quick-link {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 14px;
    background: rgba(8, 10, 16, .64);
    border-color: rgba(181, 166, 255, .16);
    color: rgba(240, 240, 245, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.wt-index-page .wt-quick-link:hover {
    border-color: rgba(181, 166, 255, .4);
    background: rgba(138, 109, 233, .12);
}

.wt-index-page .wt-quick-link--primary {
    background: linear-gradient(135deg, rgba(126, 105, 230, .98), rgba(79, 165, 148, .92));
    border-color: rgba(181, 166, 255, .58);
    box-shadow: 0 16px 30px rgba(88, 66, 170, .28);
}

.wt-index-page .wt-hero-quickstrip {
    display: grid;
    gap: 12px;
    width: 100%;
    padding-top: 8px;
}

.wt-index-page .wt-hero-quickstrip-label {
    color: rgba(240, 240, 245, .6);
    font-size: .7rem;
    text-transform: uppercase;
}

.wt-index-page .wt-hero-quickstrip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wt-index-page .wt-hero-quickstrip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(181, 166, 255, .16);
    background: rgba(13, 15, 22, .72);
    color: rgba(240, 240, 245, .86);
    font-size: .82rem;
    font-weight: 600;
    transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.wt-index-page .wt-hero-quickstrip-link i {
    color: #f2cc7a;
}

.wt-index-page .wt-hero-quickstrip-link:hover,
.wt-index-page .wt-hero-quickstrip-link.is-active {
    color: #fff;
    border-color: rgba(181, 166, 255, .42);
    background: linear-gradient(135deg, rgba(138, 109, 233, .18), rgba(79, 165, 148, .12));
    transform: translateY(-2px);
}

.wt-index-page .wt-hero-spotlight-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0) 16%),
        linear-gradient(155deg, rgba(10, 12, 19, .96), rgba(15, 18, 28, .94));
}

.wt-index-page .wt-hero-spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 10%, rgba(181, 166, 255, .18), transparent 28%),
        radial-gradient(circle at 16% 84%, rgba(79, 165, 148, .12), transparent 26%);
    pointer-events: none;
}

.wt-index-page .wt-hero-spotlight-media {
    position: relative;
    min-height: 248px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(18, 20, 30, 1), rgba(10, 12, 19, 1));
}

.wt-index-page .wt-hero-spotlight-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 8, 12, .16), rgba(7, 8, 12, .58) 70%, rgba(7, 8, 12, .84)),
        linear-gradient(120deg, rgba(217, 189, 130, .16), transparent 30%, rgba(138, 109, 233, .18) 72%, transparent 100%);
}

.wt-index-page .wt-hero-spotlight-media img,
.wt-index-page .wt-hero-spotlight-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wt-index-page .wt-hero-spotlight-media img {
    object-fit: cover;
}

.wt-index-page .wt-hero-spotlight-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 36%, rgba(138, 109, 233, .2), transparent 34%),
        linear-gradient(135deg, rgba(19, 22, 34, 1), rgba(9, 11, 17, 1));
    color: rgba(255, 255, 255, .54);
    font-size: 2.6rem;
}

.wt-index-page .wt-hero-spotlight-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(9, 11, 18, .76);
    border: 1px solid rgba(217, 189, 130, .26);
    color: #f6deb0;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wt-index-page .wt-hero-spotlight-card .wt-status {
    top: 16px;
    left: auto;
    right: 16px;
    z-index: 1;
}

.wt-index-page .wt-hero-spotlight-body,
.wt-index-page .wt-hero-spotlight-empty {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 22px 22px 24px;
}

.wt-index-page .wt-hero-spotlight-kicker {
    color: rgba(240, 240, 245, .56);
    font-size: .7rem;
    text-transform: uppercase;
}

.wt-index-page .wt-hero-spotlight-title {
    margin: 0;
    font-family: 'PT Mono', monospace;
    font-size: 1.32rem;
    line-height: 1.26;
    color: #fbfaff;
    text-wrap: balance;
}

.wt-index-page .wt-hero-spotlight-desc,
.wt-index-page .wt-hero-spotlight-copy {
    margin: 0;
    color: rgba(240, 240, 245, .72);
    line-height: 1.64;
    font-size: .9rem;
}

.wt-index-page .wt-hero-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wt-index-page .wt-hero-spotlight-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 12px;
    background: rgba(9, 11, 18, .58);
    border: 1px solid rgba(181, 166, 255, .14);
    color: rgba(240, 240, 245, .86);
    font-size: .78rem;
}

.wt-index-page .wt-hero-spotlight-meta i,
.wt-index-page .wt-hero-spotlight-progress b,
.wt-index-page .wt-rec-card-footnote i {
    color: var(--secondary-light);
}

.wt-index-page .wt-hero-spotlight-progress {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(240, 240, 245, .68);
    font-size: .82rem;
}

.wt-index-page .wt-hero-spotlight-bar {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.wt-index-page .wt-hero-spotlight-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f2cc7a, var(--secondary-light), var(--primary-light));
}

.wt-index-page .wt-hero-spotlight-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.wt-index-page .wt-hero-spotlight-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(181, 166, 255, .18);
    background: rgba(9, 11, 18, .62);
    color: rgba(240, 240, 245, .88);
    font-size: .84rem;
    font-weight: 600;
    text-align: center;
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.wt-index-page .wt-hero-spotlight-action:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(181, 166, 255, .42);
    background: rgba(138, 109, 233, .14);
}

.wt-index-page .wt-hero-spotlight-action--primary {
    background: linear-gradient(135deg, rgba(126, 105, 230, .96), rgba(79, 165, 148, .88));
    border-color: rgba(181, 166, 255, .56);
    color: #fff;
}

.wt-index-page .wt-stats--hero {
    margin-top: 18px;
    gap: 12px;
}

.wt-index-page .wt-stat {
    min-height: 112px;
    justify-items: start;
    gap: 8px;
    padding: 18px 16px;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0) 28%),
        linear-gradient(160deg, rgba(17, 18, 28, .88), rgba(12, 13, 20, .94));
}

.wt-index-page .wt-stat-label {
    font-size: .68rem;
}

.wt-index-page .wt-stat-num {
    font-family: 'PT Mono', monospace;
}

.wt-index-page .wt-rec-shell,
.wt-index-page .wt-results-shell,
.wt-index-page .wt-continue-shell {
    background: var(--wt-panel-bg);
}

.wt-index-page .wt-recommend-section {
    padding-top: 8px;
}

.wt-index-page .wt-rec-shell {
    padding: 28px;
}

.wt-index-page .wt-rec-header,
.wt-index-page .wt-results-header,
.wt-index-page .wt-continue-header {
    gap: 20px;
}

.wt-index-page .wt-rec-title,
.wt-index-page .wt-results-title,
.wt-index-page .wt-continue-title,
.wt-index-page .wt-filters-rail-title {
    font-family: 'PT Mono', monospace;
    font-size: clamp(1.34rem, 2vw, 1.9rem);
    line-height: 1.18;
    letter-spacing: .01em;
    margin-bottom: 0;
}

.wt-index-page .wt-rec-subtitle,
.wt-index-page .wt-results-subtitle,
.wt-index-page .wt-continue-subtitle,
.wt-index-page .wt-filters-subtitle {
    color: rgba(240, 240, 245, .72);
}

.wt-index-page .wt-rec-overview-item,
.wt-index-page .wt-results-overview-item,
.wt-index-page .wt-filters-summary,
.wt-index-page .wt-continue-counter {
    background: rgba(9, 11, 18, .58);
    border-color: rgba(181, 166, 255, .16);
}

.wt-index-page .wt-rec-showcase {
    display: grid;
    gap: 18px;
}

.wt-index-page .wt-rec-spotlight,
.wt-index-page .wt-featured-grid--supporting .wt-rec-card {
    border-radius: 24px;
    border-color: rgba(181, 166, 255, .16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 16%),
        linear-gradient(155deg, rgba(13, 15, 22, .98), rgba(18, 20, 30, .96));
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.wt-index-page .wt-rec-spotlight {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.15fr);
    align-items: stretch;
    overflow: hidden;
}

.wt-index-page .wt-rec-spotlight-media {
    position: relative;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(19, 22, 34, 1), rgba(9, 11, 17, 1));
}

.wt-index-page .wt-rec-spotlight-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 8, 12, .18), rgba(7, 8, 12, .56)),
        linear-gradient(180deg, rgba(217, 189, 130, .08), rgba(138, 109, 233, .16) 72%, rgba(10, 12, 19, .54));
    pointer-events: none;
}

.wt-index-page .wt-rec-spotlight-media img,
.wt-index-page .wt-rec-spotlight-media .placeholder-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wt-index-page .wt-rec-spotlight-media img {
    object-fit: cover;
}

.wt-index-page .wt-rec-spotlight-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(217, 189, 130, .26);
    background: rgba(9, 11, 18, .74);
    color: #f2cc7a;
    font-family: 'PT Mono', monospace;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.wt-index-page .wt-rec-spotlight .wt-status {
    top: 16px;
    left: auto;
    right: 16px;
    z-index: 2;
}

.wt-index-page .wt-rec-spotlight-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 24px 22px;
}

.wt-index-page .wt-rec-spotlight-body .wt-card-title {
    font-size: 1.26rem;
    line-height: 1.34;
}

.wt-index-page .wt-rec-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wt-index-page .wt-rec-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.wt-index-page .wt-rec-spotlight .wt-card-link {
    width: auto;
    min-width: 220px;
    justify-content: center;
    margin-top: 0;
}

.wt-index-page .wt-featured-grid--supporting {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wt-index-page .wt-featured-grid--supporting .wt-rec-card .wt-card-thumb {
    padding-bottom: 58%;
}

.wt-index-page .wt-featured-grid--supporting .wt-rec-card .wt-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 16px 16px 18px;
}

.wt-index-page .wt-rec-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.wt-index-page .wt-rec-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(217, 189, 130, .24);
    background: rgba(217, 189, 130, .12);
    color: #f2cc7a;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wt-index-page .wt-rec-card-desc {
    color: rgba(240, 240, 245, .74);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.wt-index-page .wt-rec-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wt-index-page .wt-rec-card-footnote {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(240, 240, 245, .62);
    font-size: .76rem;
}

.wt-index-page .wt-filters {
    padding: 0 24px 22px;
}

.wt-index-page .wt-filters-shell {
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0) 20%),
        linear-gradient(148deg, rgba(10, 12, 19, .98), rgba(16, 18, 29, .95));
}

.wt-index-page .wt-filters-shell::before {
    top: auto;
    right: auto;
    left: -140px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(79, 165, 148, .18), rgba(79, 165, 148, 0) 72%);
}

.wt-index-page .wt-filters-shell::after {
    display: none;
}

.wt-index-page .wt-filters-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
}

.wt-index-page .wt-filters-rail,
.wt-index-page .wt-filters-panel {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.wt-index-page .wt-filters-rail {
    display: grid;
    align-content: start;
    gap: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0) 34%),
        linear-gradient(160deg, rgba(9, 11, 18, .82), rgba(10, 13, 21, .74));
}

.wt-index-page .wt-filters-panel {
    display: grid;
    align-content: start;
    gap: 14px;
}

.wt-index-page .wt-filters-rail-title {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    margin-bottom: 0;
    font-size: clamp(1.06rem, 1.45vw, 1.34rem);
    line-height: 1.02;
    letter-spacing: -.01em;
}

.wt-index-page .wt-filters-rail-title i {
    margin-top: 2px;
}

.wt-index-page .wt-filters-subtitle--rail {
    margin-top: 0;
    font-size: .82rem;
    line-height: 1.56;
    color: rgba(240, 240, 245, .68);
}

.wt-index-page .wt-filters-rail-meta {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.wt-index-page .wt-filters-rail-pill {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(181, 166, 255, .14);
    background: rgba(12, 15, 23, .72);
}

.wt-index-page .wt-filters-rail-label {
    color: rgba(240, 240, 245, .56);
    font-size: .64rem;
    text-transform: uppercase;
}

.wt-index-page .wt-filters-rail-value {
    font-size: .88rem;
    line-height: 1.32;
    color: #f8f6ff;
    text-wrap: balance;
}

.wt-index-page .wt-quick-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
}

.wt-index-page .wt-quick-filter-btn {
    min-height: 44px;
    justify-content: center;
    border-radius: 14px;
    background: rgba(13, 15, 22, .76);
    border-color: rgba(181, 166, 255, .14);
}

.wt-index-page .wt-quick-filter-btn.is-active {
    background: linear-gradient(135deg, rgba(138, 109, 233, .26), rgba(79, 165, 148, .18));
}

.wt-index-page .wt-filters-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    margin-bottom: 0;
}

.wt-index-page .wt-filters-head-title {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'PT Mono', monospace;
    font-size: 1rem;
    color: #fbfaff;
}

.wt-index-page .wt-filters-head-main {
    max-width: none;
}

.wt-index-page .wt-filters-subtitle {
    font-size: .84rem;
    line-height: 1.55;
}

.wt-index-page .wt-filters-head-side {
    min-width: 188px;
    gap: 8px;
}

.wt-index-page .wt-filters-summary {
    padding: 10px 12px;
}

.wt-index-page .wt-filters-toggle {
    min-height: 40px;
}

.wt-index-page .wt-quick-filters--panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wt-index-page .wt-quick-filters--panel .wt-quick-filter-btn {
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding: 7px 12px;
    justify-content: flex-start;
    font-size: .74rem;
}

.wt-index-page .wt-active-filters--panel {
    margin-top: -2px;
    margin-bottom: 2px;
}

.wt-index-page .wt-active-filters--panel .wt-clear-btn {
    min-height: 38px;
}

.wt-index-page .wt-filters-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(217, 189, 130, .12);
    border: 1px solid rgba(217, 189, 130, .26);
    color: #f2cc7a;
    font-family: 'PT Mono', monospace;
    font-size: .78rem;
}

.wt-index-page .wt-filters-form {
    position: relative;
    z-index: 1;
}

.wt-index-page .wt-filters-row {
    gap: 10px;
}

.wt-index-page .wt-filters-row--primary {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(160px, 1fr));
}

.wt-index-page .wt-filters-row--secondary {
    margin-top: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.wt-index-page .wt-field-label {
    color: rgba(240, 240, 245, .72);
}

.wt-index-page .wt-search-input,
.wt-index-page .wt-filter-select,
.wt-index-page .wt-filter-input {
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(181, 166, 255, .14);
    background: rgba(11, 13, 20, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.wt-index-page .wt-search-btn,
.wt-index-page .wt-filter-btn,
.wt-index-page .wt-clear-btn,
.wt-index-page .wt-filters-toggle {
    border-radius: 12px;
}

.wt-index-page .wt-filters-row--actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(181, 166, 255, .12);
}

.wt-index-page .wt-filters-hint {
    font-size: .75rem;
    line-height: 1.45;
}

.wt-index-page .wt-filter-btn,
.wt-index-page .wt-clear-btn {
    min-height: 40px;
}

.wt-index-page .wt-filter-chip {
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 15, 23, .74);
    border-color: rgba(181, 166, 255, .16);
    color: rgba(240, 240, 245, .88);
}

.wt-index-page .wt-filter-chip i {
    color: var(--secondary-light);
    opacity: 1;
}

.wt-index-page .wt-results-shell {
    padding: 32px;
}

.wt-index-page .wt-results-title {
    margin: 14px 0 10px;
}

.wt-index-page .wt-results-toolbar {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(181, 166, 255, .14);
    background: rgba(9, 11, 18, .54);
}

.wt-index-page .wt-results-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(181, 166, 255, .14);
    background: rgba(12, 15, 23, .72);
    color: rgba(240, 240, 245, .76);
    font-size: .8rem;
}

.wt-index-page .wt-results-pill b {
    color: #fff;
}

.wt-index-page .wt-results-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.wt-index-page .wt-view-toggle {
    border-radius: 14px;
    background: rgba(12, 15, 23, .72);
    border-color: rgba(181, 166, 255, .14);
}

.wt-index-page .wt-view-btn {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 10px;
}

.wt-index-page .wt-grid {
    gap: 18px;
}

.wt-index-page .wt-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 24px;
    border-color: rgba(181, 166, 255, .14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 16%),
        linear-gradient(155deg, rgba(12, 14, 21, .98), rgba(17, 19, 30, .96));
    box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

.wt-index-page .wt-card:hover {
    transform: translateY(-6px);
}

.wt-index-page .wt-card-thumb {
    padding-bottom: 60%;
    background: linear-gradient(135deg, rgba(19, 22, 34, 1), rgba(9, 11, 17, 1));
}

.wt-index-page .wt-card-thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, rgba(10, 12, 19, 0), rgba(10, 12, 19, .74));
    pointer-events: none;
}

.wt-index-page .wt-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 18px;
}

.wt-index-page .wt-card-title {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.44;
}

.wt-index-page .wt-card-game {
    color: #f2cc7a;
    margin-bottom: 0;
}

.wt-index-page .wt-card-info,
.wt-index-page .wt-card-desc {
    color: rgba(240, 240, 245, .64);
}

.wt-index-page .wt-card-meta {
    gap: 8px;
    margin-bottom: 2px;
}

.wt-index-page .wt-difficulty,
.wt-index-page .wt-card-episodes,
.wt-index-page .wt-card-date,
.wt-index-page .wt-card-duration,
.wt-index-page .wt-progress-percent {
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(12, 15, 23, .76);
    border: 1px solid rgba(181, 166, 255, .12);
}

.wt-index-page .wt-card-episodes,
.wt-index-page .wt-card-date,
.wt-index-page .wt-card-duration,
.wt-index-page .wt-progress-percent {
    color: rgba(240, 240, 245, .68);
    font-size: .74rem;
}

.wt-index-page .wt-card-actions {
    gap: 10px;
    margin-top: auto;
    margin-bottom: 0;
}

.wt-index-page .wt-card-action-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(12, 15, 23, .74);
    border-color: rgba(181, 166, 255, .14);
}

.wt-index-page .wt-card-link {
    min-height: 46px;
    margin-top: 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(126, 105, 230, .96), rgba(79, 165, 148, .88));
}

.wt-index-page .wt-continue-shell {
    padding: 30px;
}

.wt-index-page .wt-continue-grid {
    gap: 18px;
}

.wt-index-page .wt-continue-card-link {
    border-radius: 18px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0) 18%),
        linear-gradient(155deg, rgba(12, 15, 23, .82), rgba(16, 18, 28, .94));
}

.wt-index-page .wt-pagination {
    gap: 10px;
    margin-top: 28px;
}

.wt-index-page .wt-page-link,
.wt-index-page .wt-page-info {
    border-radius: 14px;
}

.wt-index-page .wt-empty {
    padding: 38px 28px;
    border-radius: 24px;
    background: rgba(9, 11, 18, .56);
    border: 1px solid rgba(181, 166, 255, .12);
}

.wt-index-page.wt-view-list .wt-grid {
    gap: 16px;
}

.wt-index-page.wt-view-list .wt-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
}

.wt-index-page.wt-view-list .wt-card-thumb {
    height: auto;
    min-height: 100%;
    padding-bottom: 0;
}

.wt-index-page.wt-view-list .wt-card-body {
    padding: 20px;
}

@media (max-width: 1180px) {
    .wt-index-page .wt-page-hero-grid,
    .wt-index-page .wt-filters-layout {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-filters-shell::after {
        inset: auto 24px 0 24px;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(181, 166, 255, .26), transparent);
    }

    .wt-index-page .wt-rec-spotlight {
        grid-template-columns: minmax(240px, .92fr) minmax(0, 1fr);
    }

    .wt-index-page .wt-featured-grid--supporting {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-filters-panel {
        gap: 12px;
    }

    .wt-index-page .wt-quick-filters--panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-quick-filters--panel .wt-quick-filter-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 980px) {
    .wt-index-page .wt-stats--hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-results-toolbar,
    .wt-index-page .wt-results-tools {
        justify-content: flex-start;
    }

    .wt-index-page .wt-results-overview {
        min-width: 0;
        width: 100%;
    }

    .wt-index-page .wt-rec-spotlight {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-filters-row--primary,
    .wt-index-page .wt-filters-row--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-filters-head {
        grid-template-columns: 1fr;
    }

    .wt-index-page.wt-view-list .wt-card {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .wt-index-page .wt-page-header,
    .wt-index-page .wt-section,
    .wt-index-page .wt-filters {
        padding-left: 16px;
        padding-right: 16px;
    }

    .wt-index-page .wt-page-hero-card--main,
    .wt-index-page .wt-rec-shell,
    .wt-index-page .wt-results-shell,
    .wt-index-page .wt-continue-shell,
    .wt-index-page .wt-filters-rail,
    .wt-index-page .wt-filters-panel {
        padding: 22px 18px;
    }

    .wt-index-page .wt-page-title {
        font-size: 1.8rem;
    }

    .wt-index-page .wt-hero-spotlight-actions {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-quick-actions,
    .wt-index-page .wt-rec-card-footer,
    .wt-index-page .wt-results-toolbar,
    .wt-index-page .wt-results-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .wt-index-page .wt-results-toolbar {
        justify-content: flex-start;
    }

    .wt-index-page .wt-featured-grid--editorial,
    .wt-index-page .wt-featured-grid--supporting,
    .wt-index-page .wt-grid,
    .wt-index-page .wt-continue-grid,
    .wt-index-page .wt-quick-filters,
    .wt-index-page .wt-results-overview,
    .wt-index-page .wt-rec-overview {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-rec-spotlight-body,
    .wt-index-page .wt-rec-spotlight .wt-card-link {
        min-width: 0;
    }

    .wt-index-page .wt-rec-spotlight-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wt-index-page .wt-stats--hero {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-results-header,
    .wt-index-page .wt-continue-header,
    .wt-index-page .wt-rec-header {
        flex-direction: column;
    }

    .wt-index-page .wt-results-overview,
    .wt-index-page .wt-rec-overview {
        min-width: 0;
        width: 100%;
    }

    .wt-index-page.wt-view-list .wt-card {
        grid-template-columns: 1fr;
    }

    .wt-index-page.wt-view-list .wt-card-thumb {
        padding-bottom: 58%;
        min-height: 0;
    }
}

@media (max-width: 520px) {
    .wt-index-page .wt-page-header {
        padding-top: 120px;
    }

    .wt-index-page .wt-page-hero-card--main,
    .wt-index-page .wt-rec-shell,
    .wt-index-page .wt-results-shell,
    .wt-index-page .wt-continue-shell {
        border-radius: 24px;
    }

    .wt-index-page .wt-page-icon {
        width: 54px;
        height: 54px;
    }

    .wt-index-page .wt-quick-link,
    .wt-index-page .wt-hero-quickstrip-link,
    .wt-index-page .wt-hero-spotlight-action,
    .wt-index-page .wt-card-link {
        width: 100%;
    }

    .wt-index-page .wt-hero-chip-row {
        gap: 8px;
    }

    .wt-index-page .wt-hero-chip {
        width: 100%;
        justify-content: flex-start;
    }

    .wt-index-page .section-divider {
        width: min(1240px, calc(100% - 32px));
    }
}

/* ================================================================
   Walkthrough Detail — 2026 Story Refresh
   ================================================================ */

body[data-wt-page-type="detail"] .wt-detail-header {
    padding: 118px 18px 30px;
}

body[data-wt-page-type="detail"] .wt-detail-header-inner,
body[data-wt-page-type="detail"] .wt-section-inner,
body[data-wt-page-type="detail"] .wt-detail-nav-inner {
    max-width: 1240px;
}

body[data-wt-page-type="detail"] .wt-wt-hero {
    border-radius: 36px;
    border-color: rgba(167, 146, 255, .22);
    background:
        linear-gradient(145deg, rgba(11, 12, 20, .96), rgba(17, 18, 30, .92) 52%, rgba(8, 16, 18, .94)),
        radial-gradient(circle at 16% 14%, rgba(138, 109, 233, .18), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(77, 159, 138, .16), transparent 28%);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, .44),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}

body[data-wt-page-type="detail"] .wt-wt-hero::before {
    border-color: rgba(255, 255, 255, .03);
}

body[data-wt-page-type="detail"] .wt-wt-hero-aura--one {
    width: 520px;
    height: 520px;
    top: -240px;
    left: -210px;
    background: radial-gradient(circle, rgba(138, 109, 233, .28), rgba(138, 109, 233, 0) 72%);
}

body[data-wt-page-type="detail"] .wt-wt-hero-aura--two {
    width: 420px;
    height: 420px;
    right: -150px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(77, 159, 138, .24), rgba(77, 159, 138, 0) 74%);
}

body[data-wt-page-type="detail"] .wt-wt-hero-grid {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 24px;
    padding: 34px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-top {
    margin-bottom: 22px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-headline {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 22px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster {
    border-radius: 22px;
    border-color: rgba(167, 146, 255, .18);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .36);
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster img {
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.04);
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster-overlay {
    padding: 14px;
    background: linear-gradient(to top, rgba(6, 7, 12, .82), rgba(6, 7, 12, .08) 68%);
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster-play {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(138, 109, 233, .24);
}

body[data-wt-page-type="detail"] .wt-detail-copy {
    display: grid;
    align-content: start;
    gap: 14px;
}

body[data-wt-page-type="detail"] .wt-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(167, 146, 255, .18);
    background: rgba(12, 12, 19, .58);
    color: #ece5ff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .42px;
    text-transform: uppercase;
}

body[data-wt-page-type="detail"] .wt-detail-title {
    margin: 0;
    font-size: clamp(1.54rem, 3vw, 2.42rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    text-wrap: balance;
}

body[data-wt-page-type="detail"] .wt-detail-game {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(167, 146, 255, .16);
    background: rgba(12, 12, 18, .56);
    color: rgba(255, 255, 255, .74);
    font-size: .74rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip i {
    color: var(--primary-light);
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip--accent {
    border-color: rgba(77, 159, 138, .22);
    background: rgba(77, 159, 138, .12);
    color: #cffff0;
}

body[data-wt-page-type="detail"] .wt-detail-desc {
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, .76);
    font-size: .96rem;
    line-height: 1.82;
}

body[data-wt-page-type="detail"] .wt-status-banner {
    border-radius: 18px;
    border-width: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-wt-page-type="detail"] .wt-detail-hero-insights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body[data-wt-page-type="detail"] .wt-detail-hero-insight {
    display: grid;
    gap: 8px;
    min-height: 126px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(167, 146, 255, .14);
    background:
        linear-gradient(160deg, rgba(14, 15, 24, .86), rgba(9, 10, 16, .92)),
        radial-gradient(circle at 100% 0%, rgba(138, 109, 233, .08), transparent 42%);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
}

body[data-wt-page-type="detail"] .wt-detail-hero-insight--spoiler {
    background:
        linear-gradient(160deg, rgba(16, 18, 27, .88), rgba(8, 10, 16, .94)),
        radial-gradient(circle at 100% 0%, rgba(77, 159, 138, .08), transparent 44%);
}

body[data-wt-page-type="detail"] .wt-detail-hero-insight__label {
    color: rgba(255, 255, 255, .54);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .34px;
    text-transform: uppercase;
}

body[data-wt-page-type="detail"] .wt-detail-hero-insight__value {
    color: #fff;
    font-size: clamp(1rem, 1.8vw, 1.24rem);
    line-height: 1.18;
}

body[data-wt-page-type="detail"] .wt-detail-hero-insight__meta {
    margin-top: auto;
    color: rgba(255, 255, 255, .64);
    font-size: .76rem;
    line-height: 1.52;
}

body[data-wt-page-type="detail"] .wt-meta-row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

body[data-wt-page-type="detail"] .wt-meta-card {
    padding: 13px;
    border-radius: 18px;
    border-color: rgba(167, 146, 255, .14);
    background:
        linear-gradient(160deg, rgba(14, 15, 24, .82), rgba(9, 10, 16, .9)),
        radial-gradient(circle at 100% 0%, rgba(138, 109, 233, .08), transparent 40%);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

body[data-wt-page-type="detail"] .wt-meta-card:hover {
    transform: translateY(-2px);
    border-color: rgba(167, 146, 255, .26);
}

body[data-wt-page-type="detail"] .wt-meta-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

body[data-wt-page-type="detail"] .wt-meta-card-label {
    font-size: .68rem;
}

body[data-wt-page-type="detail"] .wt-meta-card-value {
    font-size: .88rem;
}

body[data-wt-page-type="detail"] .wt-detail-actions {
    gap: 12px;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary,
body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
    gap: 12px;
}

body[data-wt-page-type="detail"] .wt-wt-hero .wt-continue-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-next-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-list-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-playlist-btn {
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: .84rem;
}

body[data-wt-page-type="detail"] .wt-continue-btn {
    background: linear-gradient(135deg, #347765, #4f9f94 52%, #80d7c8);
    box-shadow: 0 16px 30px rgba(77, 159, 138, .24);
}

body[data-wt-page-type="detail"] .wt-detail-list-btn {
    border-color: rgba(167, 146, 255, .18);
    background: rgba(12, 12, 19, .58);
}

body[data-wt-page-type="detail"] .wt-playlist-btn {
    box-shadow: 0 14px 28px rgba(196, 48, 43, .24);
}

body[data-wt-page-type="detail"] .wt-continue-meta {
    padding-left: 2px;
    font-size: .8rem;
}

body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
    height: 100%;
    padding: 18px;
    border-radius: 26px;
    border-color: rgba(167, 146, 255, .16);
    background:
        linear-gradient(160deg, rgba(12, 13, 21, .92), rgba(8, 9, 15, .94)),
        radial-gradient(circle at 100% 0%, rgba(77, 159, 138, .1), transparent 42%);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .03);
}

body[data-wt-page-type="detail"] .wt-detail-panel-title {
    margin-bottom: 10px;
    font-size: .82rem;
    letter-spacing: .46px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-tools {
    margin: -2px 0 14px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(167, 146, 255, .14);
    background:
        linear-gradient(160deg, rgba(16, 17, 26, .78), rgba(10, 11, 17, .9)),
        radial-gradient(circle at 100% 0%, rgba(138, 109, 233, .08), transparent 44%);
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__kicker {
    color: rgba(255, 255, 255, .54);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .34px;
    text-transform: uppercase;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__title {
    color: #fff;
    font-size: .98rem;
    line-height: 1.45;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__text {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .78rem;
    line-height: 1.6;
}

body[data-wt-page-type="detail"] .wt-detail-panel-progress {
    margin-bottom: 14px;
    padding: 12px 13px;
    border-radius: 18px;
    border: 1px solid rgba(77, 159, 138, .16);
    background: rgba(77, 159, 138, .08);
}

body[data-wt-page-type="detail"] .wt-detail-progress {
    height: 9px;
    margin-top: 10px;
}

body[data-wt-page-type="detail"] .wt-detail-stats-grid {
    gap: 10px;
}

body[data-wt-page-type="detail"] .wt-detail-stat {
    padding: 12px;
    border-radius: 16px;
    border-color: rgba(167, 146, 255, .12);
    background: rgba(11, 11, 16, .46);
}

body[data-wt-page-type="detail"] .wt-detail-panel-divider {
    margin: 16px 0;
    background: linear-gradient(90deg, rgba(167, 146, 255, 0), rgba(167, 146, 255, .26), rgba(77, 159, 138, .22), rgba(167, 146, 255, 0));
}

body[data-wt-page-type="detail"] .wt-route-map,
body[data-wt-page-type="detail"] .wt-detail-quicknav,
body[data-wt-page-type="detail"] .wt-user-journey {
    padding: 0;
}

body[data-wt-page-type="detail"] .wt-route-map-track {
    padding: 14px 12px;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .16);
}

body[data-wt-page-type="detail"] .wt-route-map-meta-item,
body[data-wt-page-type="detail"] .wt-user-journey-stat,
body[data-wt-page-type="detail"] .wt-user-journey-cta {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-wt-page-type="detail"] .wt-detail-nav {
    padding: 12px 16px 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body[data-wt-page-type="detail"] .wt-detail-nav-inner {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(167, 146, 255, .14);
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .92), rgba(14, 15, 25, .9)),
        radial-gradient(circle at 100% 0%, rgba(77, 159, 138, .08), transparent 36%);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
}

body[data-wt-page-type="detail"] .wt-detail-nav-link {
    flex: 0 0 auto;
    padding: 9px 14px 9px 10px;
    border-radius: 14px;
    border-color: rgba(167, 146, 255, .14);
    background: rgba(12, 12, 18, .56);
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
}

body[data-wt-page-type="detail"] .wt-detail-nav-link:hover {
    border-color: rgba(167, 146, 255, .34);
    background: rgba(167, 146, 255, .14);
    color: #fff;
}

body[data-wt-page-type="detail"] .wt-detail-nav-link--accent {
    border-color: rgba(77, 159, 138, .24);
    background: rgba(77, 159, 138, .12);
}

body[data-wt-page-type="detail"] .wt-detail-nav-icon {
    width: 26px;
    height: 26px;
    border-radius: 9px;
}

body[data-wt-page-type="detail"] .wt-detail-nav-badge {
    min-width: 24px;
    height: 20px;
}

body[data-wt-page-type="detail"] .wt-game-info-card,
body[data-wt-page-type="detail"] .wt-contents-card,
body[data-wt-page-type="detail"] .wt-picks-shell,
body[data-wt-page-type="detail"] .wt-latest-shell,
body[data-wt-page-type="detail"] .wt-top-shell,
body[data-wt-page-type="detail"] .wt-notes-card,
body[data-wt-page-type="detail"] .wt-related-shell {
    border-radius: 28px;
    border-width: 1px;
    box-shadow: 0 26px 48px rgba(0, 0, 0, .24);
}

body[data-wt-page-type="detail"] .wt-game-info-card {
    padding: 30px;
    border-color: rgba(167, 146, 255, .14);
    background:
        linear-gradient(150deg, rgba(11, 12, 20, .94), rgba(18, 19, 30, .9) 56%, rgba(9, 15, 18, .92)),
        radial-gradient(circle at 86% 14%, rgba(77, 159, 138, .12), transparent 42%);
}

body[data-wt-page-type="detail"] .wt-game-info-head {
    grid-template-columns: 170px minmax(0, 1fr) 260px;
    gap: 22px;
}

body[data-wt-page-type="detail"] .wt-game-cover {
    border-radius: 18px;
}

body[data-wt-page-type="detail"] .wt-game-info-kicker,
body[data-wt-page-type="detail"] .wt-game-tag,
body[data-wt-page-type="detail"] .wt-game-info-badge,
body[data-wt-page-type="detail"] .wt-game-info-link,
body[data-wt-page-type="detail"] .wt-latest-overview-item,
body[data-wt-page-type="detail"] .wt-top-overview-item,
body[data-wt-page-type="detail"] .wt-related-overview-item,
body[data-wt-page-type="detail"] .wt-latest-date,
body[data-wt-page-type="detail"] .wt-top-views {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-wt-page-type="detail"] .wt-game-info-kicker {
    margin-bottom: 12px;
    padding: 7px 12px;
}

body[data-wt-page-type="detail"] .wt-game-info-title {
    font-size: 1.28rem;
}

body[data-wt-page-type="detail"] .wt-game-info-desc {
    font-size: .94rem;
}

body[data-wt-page-type="detail"] .wt-game-score-panel {
    padding: 14px;
    border-radius: 18px;
    border-color: rgba(167, 146, 255, .14);
}

body[data-wt-page-type="detail"] .wt-game-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

body[data-wt-page-type="detail"] .wt-game-info-item {
    padding: 13px;
    border-radius: 16px;
}

body[data-wt-page-type="detail"] .wt-contents-card {
    padding: 28px;
    border-color: rgba(167, 146, 255, .14);
    background:
        linear-gradient(150deg, rgba(11, 12, 20, .94), rgba(18, 19, 30, .9) 56%, rgba(9, 15, 18, .92)),
        radial-gradient(circle at 100% 0%, rgba(167, 146, 255, .12), transparent 38%);
}

body[data-wt-page-type="detail"] .wt-picks-shell {
    padding: 28px;
    border-color: rgba(167, 146, 255, .14);
}

body[data-wt-page-type="detail"] .wt-latest-shell,
body[data-wt-page-type="detail"] .wt-top-shell,
body[data-wt-page-type="detail"] .wt-related-shell {
    padding: 28px;
    border-color: rgba(167, 146, 255, .14);
}

body[data-wt-page-type="detail"] .wt-latest-head,
body[data-wt-page-type="detail"] .wt-top-head,
body[data-wt-page-type="detail"] .wt-related-head {
    margin-bottom: 20px;
}

body[data-wt-page-type="detail"] .wt-latest-grid,
body[data-wt-page-type="detail"] .wt-top-grid,
body[data-wt-page-type="detail"] .wt-related-grid {
    gap: 18px;
}

body[data-wt-page-type="detail"] .wt-latest-card,
body[data-wt-page-type="detail"] .wt-top-card,
body[data-wt-page-type="detail"] .wt-related-card {
    border-radius: 22px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, .18);
}

body[data-wt-page-type="detail"] .wt-notes-card {
    padding: 30px;
    border-color: rgba(167, 146, 255, .14);
    background:
        linear-gradient(160deg, rgba(12, 13, 21, .92), rgba(8, 9, 15, .94)),
        radial-gradient(circle at 100% 0%, rgba(167, 146, 255, .1), transparent 40%);
}

body[data-wt-page-type="detail"] .wt-notes-title {
    font-size: 1.12rem;
    margin-bottom: 18px;
}

body[data-wt-page-type="detail"] .wt-notes-text {
    color: rgba(255, 255, 255, .72);
    font-size: .94rem;
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-game-info-head {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-game-score-panel {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body[data-wt-page-type="detail"] .wt-detail-header {
        padding: 98px 14px 22px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero {
        border-radius: 24px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        padding: 18px;
        gap: 18px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-poster {
        aspect-ratio: 16 / 9;
    }

    body[data-wt-page-type="detail"] .wt-detail-title {
        font-size: 1.2rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-game {
        font-size: .88rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insights,
    body[data-wt-page-type="detail"] .wt-game-score-panel {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-detail-nav {
        padding: 10px 14px 0;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-inner {
        padding: 8px;
        border-radius: 16px;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-link {
        padding: 8px 12px 8px 9px;
        border-radius: 12px;
        font-size: .74rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-icon {
        width: 24px;
        height: 24px;
    }

    body[data-wt-page-type="detail"] .wt-game-info-card,
    body[data-wt-page-type="detail"] .wt-contents-card,
    body[data-wt-page-type="detail"] .wt-picks-shell,
    body[data-wt-page-type="detail"] .wt-latest-shell,
    body[data-wt-page-type="detail"] .wt-top-shell,
    body[data-wt-page-type="detail"] .wt-notes-card,
    body[data-wt-page-type="detail"] .wt-related-shell {
        padding: 18px;
        border-radius: 22px;
    }

    body[data-wt-page-type="detail"] .wt-game-info-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    body[data-wt-page-type="detail"] .wt-detail-hero-chip {
        width: 100%;
        justify-content: flex-start;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel,
    body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
        padding: 14px;
        border-radius: 20px;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-summary,
    body[data-wt-page-type="detail"] .wt-detail-panel-progress,
    body[data-wt-page-type="detail"] .wt-detail-stat,
    body[data-wt-page-type="detail"] .wt-detail-hero-insight,
    body[data-wt-page-type="detail"] .wt-meta-card,
    body[data-wt-page-type="detail"] .wt-game-info-item {
        border-radius: 14px;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-inner {
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-badge {
        min-width: 22px;
        height: 18px;
        font-size: .63rem;
    }
}

@media (min-width: 1041px) {
    body[data-wt-page-type="detail"] .wt-detail-header {
        padding: 104px 16px 18px;
    }

    body[data-wt-page-type="detail"] .wt-detail-header-inner {
        max-width: 1180px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero {
        border-radius: 30px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        grid-template-columns: minmax(0, 1fr) 346px;
        gap: 18px;
        padding: 24px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-top {
        margin-bottom: 16px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 156px minmax(0, 1fr);
        gap: 16px;
        margin-bottom: 16px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-poster {
        border-radius: 18px;
    }

    body[data-wt-page-type="detail"] .wt-detail-copy {
        gap: 10px;
    }

    body[data-wt-page-type="detail"] .wt-detail-kicker {
        padding: 6px 10px;
        font-size: .67rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-title {
        font-size: clamp(1.36rem, 2.4vw, 2rem);
    }

    body[data-wt-page-type="detail"] .wt-detail-game {
        font-size: .92rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-chips {
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-chip {
        min-height: 30px;
        padding: 5px 10px;
        font-size: .7rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-desc {
        font-size: .89rem;
        line-height: 1.68;
    }

    body[data-wt-page-type="detail"] .wt-status-banner {
        padding: 12px 14px;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insights {
        gap: 10px;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insight {
        min-height: 0;
        padding: 12px 13px;
        border-radius: 16px;
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insight__label {
        font-size: .64rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insight__value {
        font-size: 1.06rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-insight__meta {
        font-size: .72rem;
        line-height: 1.45;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        gap: 10px;
        margin-bottom: 16px;
    }

    body[data-wt-page-type="detail"] .wt-meta-card {
        padding: 11px 12px;
        border-radius: 14px;
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-meta-card-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: .76rem;
    }

    body[data-wt-page-type="detail"] .wt-meta-card-label {
        font-size: .64rem;
    }

    body[data-wt-page-type="detail"] .wt-meta-card-value {
        font-size: .82rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-actions,
    body[data-wt-page-type="detail"] .wt-detail-actions-primary,
    body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
        gap: 10px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions a {
        white-space: normal;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero .wt-continue-btn,
    body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-next-btn,
    body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-list-btn,
    body[data-wt-page-type="detail"] .wt-wt-hero .wt-playlist-btn {
        min-height: 46px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: .79rem;
    }

    body[data-wt-page-type="detail"] .wt-continue-meta {
        margin-top: -4px;
        font-size: .74rem;
        line-height: 1.35;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
        padding: 14px;
        border-radius: 22px;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-title {
        margin-bottom: 8px;
        font-size: .76rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-tools {
        margin: -2px 0 10px;
    }

    body[data-wt-page-type="detail"] .wt-anti-spoiler-btn {
        padding: 7px 10px;
        border-radius: 10px;
        font-size: .72rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-summary {
        margin-bottom: 12px;
        padding: 11px 12px;
        border-radius: 14px;
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-summary__kicker {
        font-size: .63rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-summary__title {
        font-size: .9rem;
        line-height: 1.34;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-summary__text {
        font-size: .73rem;
        line-height: 1.5;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-progress {
        margin-bottom: 12px;
        padding: 10px 11px;
        border-radius: 14px;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-progress-head {
        font-size: .72rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-progress-head strong {
        font-size: .92rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-progress {
        height: 7px;
        margin-top: 8px;
    }

    body[data-wt-page-type="detail"] .wt-detail-stats-grid {
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-detail-stat {
        padding: 9px 10px;
        border-radius: 12px;
    }

    body[data-wt-page-type="detail"] .wt-detail-stat-label {
        font-size: .61rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-stat-value {
        font-size: .84rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-divider {
        margin: 12px 0;
    }

    body[data-wt-page-type="detail"] .wt-detail-subtitle {
        gap: 8px;
        font-size: .82rem;
        margin-bottom: 10px;
    }

    body[data-wt-page-type="detail"] .wt-route-map {
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-route-map-next {
        padding: 7px 9px;
        border-radius: 10px;
        font-size: .7rem;
    }

    body[data-wt-page-type="detail"] .wt-route-map-legend {
        gap: 6px 10px;
        font-size: .68rem;
    }

    body[data-wt-page-type="detail"] .wt-route-map-track {
        gap: 6px;
        padding: 10px;
        border-radius: 14px;
    }

    body[data-wt-page-type="detail"] .wt-map-dot {
        width: 8px;
        height: 8px;
    }

    body[data-wt-page-type="detail"] .wt-map-dot--bin {
        width: 10px;
        height: 10px;
    }

    body[data-wt-page-type="detail"] .wt-route-map-meta {
        gap: 6px 8px;
        font-size: .72rem;
    }

    body[data-wt-page-type="detail"] .wt-route-map-meta-item {
        padding: 5px 8px;
    }

    body[data-wt-page-type="detail"] .wt-detail-quicknav-grid {
        gap: 10px;
    }

    body[data-wt-page-type="detail"] .wt-detail-quicknav-form .wt-field-label {
        margin-bottom: 4px;
        font-size: .66rem;
    }

    body[data-wt-page-type="detail"] .wt-episodes-jump {
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-episodes-jump-input,
    body[data-wt-page-type="detail"] .wt-search-box--mini .wt-search-input {
        min-height: 40px;
        font-size: .82rem;
    }

    body[data-wt-page-type="detail"] .wt-episodes-jump-btn,
    body[data-wt-page-type="detail"] .wt-search-box--mini .wt-search-btn {
        min-height: 40px;
        border-radius: 12px;
        font-size: .74rem;
    }

    body[data-wt-page-type="detail"] .wt-field-help {
        margin-top: 8px;
        font-size: .71rem;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-stats {
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-stat {
        padding: 9px 10px;
        border-radius: 12px;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-label {
        font-size: .68rem;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-value {
        font-size: .9rem;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-progress {
        height: 8px;
        margin-top: 10px;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-cta {
        margin-top: 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-cta-kicker {
        font-size: .69rem;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-cta-title {
        font-size: .88rem;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-guest {
        font-size: .78rem;
    }

    body[data-wt-page-type="detail"] .wt-user-journey-hint {
        margin-top: 8px;
        font-size: .72rem;
    }

    body[data-wt-page-type="detail"] .wt-latest-shell {
        padding: 22px 22px 18px;
    }

    body[data-wt-page-type="detail"] .wt-latest-head {
        align-items: center;
        margin-bottom: 14px;
    }

    body[data-wt-page-type="detail"] .wt-latest-copy .wt-section-title {
        margin-bottom: 4px;
    }

    body[data-wt-page-type="detail"] .wt-latest-subtitle {
        font-size: .82rem;
        line-height: 1.52;
        max-width: 560px;
    }

    body[data-wt-page-type="detail"] .wt-latest-overview {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-latest-overview-item {
        padding: 6px 10px;
        font-size: .7rem;
    }

    body[data-wt-page-type="detail"] .wt-latest-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        align-items: start;
    }

    body[data-wt-page-type="detail"] .wt-latest-card {
        min-width: 0;
        border-radius: 18px;
    }

    body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-thumb {
        padding-bottom: 53%;
    }

    body[data-wt-page-type="detail"] .wt-latest-card--lead {
        grid-column: span 3;
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(250px, .92fr);
        align-items: stretch;
    }

    body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-thumb {
        height: 100%;
        min-height: 248px;
        padding-bottom: 0;
        border-right: 1px solid rgba(138,109,233,.12);
        border-bottom: 0;
    }

    body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-body {
        display: grid;
        align-content: start;
        gap: 10px;
        padding: 14px 14px 12px;
    }

    body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-body {
        padding: 11px 12px 10px;
    }

    body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-title {
        margin-bottom: 3px;
        font-size: .8rem;
        line-height: 1.38;
        -webkit-line-clamp: 2;
    }

    body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-title {
        font-size: .92rem;
        line-height: 1.4;
    }

    body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-desc {
        margin-bottom: 6px;
        font-size: .73rem;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-desc {
        font-size: .76rem;
        line-height: 1.5;
    }

    body[data-wt-page-type="detail"] .wt-latest-card-top {
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-latest-date {
        padding: 2px 6px;
        font-size: .62rem;
    }

    body[data-wt-page-type="detail"] .wt-latest-order,
    body[data-wt-page-type="detail"] .wt-latest-fresh {
        font-size: .6rem;
    }

    body[data-wt-page-type="detail"] .wt-latest-order {
        padding: 3px 7px;
    }

    body[data-wt-page-type="detail"] .wt-latest-fresh {
        padding: 3px 8px;
    }

    body[data-wt-page-type="detail"] .wt-latest-card-bottom {
        margin-top: 6px;
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-meta {
        gap: 8px;
        font-size: .68rem;
    }

    body[data-wt-page-type="detail"] .wt-latest-open {
        width: 22px;
        height: 22px;
        font-size: .66rem;
    }

    body[data-wt-page-type="detail"] .wt-latest-cta {
        margin-top: 16px;
    }

    body[data-wt-page-type="detail"] .wt-top-shell {
        padding: 22px 22px 18px;
    }

    body[data-wt-page-type="detail"] .wt-top-head {
        align-items: center;
        margin-bottom: 14px;
    }

    body[data-wt-page-type="detail"] .wt-top-copy .wt-section-title {
        margin-bottom: 4px;
    }

    body[data-wt-page-type="detail"] .wt-top-subtitle {
        font-size: .82rem;
        line-height: 1.52;
        max-width: 560px;
    }

    body[data-wt-page-type="detail"] .wt-top-overview {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-top-overview-item {
        padding: 6px 10px;
        font-size: .7rem;
    }

    body[data-wt-page-type="detail"] .wt-top-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        align-items: start;
    }

    body[data-wt-page-type="detail"] .wt-top-card {
        min-width: 0;
        border-radius: 18px;
    }

    body[data-wt-page-type="detail"] .wt-top-card .wt-ep-thumb {
        padding-bottom: 53%;
    }

    body[data-wt-page-type="detail"] .wt-top-card--champ {
        grid-column: span 2;
    }

    body[data-wt-page-type="detail"] .wt-top-card .wt-ep-body {
        padding: 11px 12px 10px;
    }

    body[data-wt-page-type="detail"] .wt-top-card .wt-ep-title {
        margin-bottom: 3px;
        font-size: .8rem;
        line-height: 1.38;
        -webkit-line-clamp: 2;
    }

    body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-title {
        font-size: .92rem;
        line-height: 1.4;
    }

    body[data-wt-page-type="detail"] .wt-top-card .wt-ep-desc {
        margin-bottom: 6px;
        font-size: .73rem;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-desc {
        font-size: .76rem;
        line-height: 1.5;
    }

    body[data-wt-page-type="detail"] .wt-top-card-top {
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-top-views {
        padding: 2px 6px;
        font-size: .62rem;
    }

    body[data-wt-page-type="detail"] .wt-top-rank,
    body[data-wt-page-type="detail"] .wt-top-medal {
        font-size: .6rem;
    }

    body[data-wt-page-type="detail"] .wt-top-rank {
        min-width: 26px;
        height: 20px;
        padding: 0 7px;
    }

    body[data-wt-page-type="detail"] .wt-top-medal {
        padding: 3px 8px;
    }

    body[data-wt-page-type="detail"] .wt-top-card-bottom {
        margin-top: 6px;
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-top-card .wt-ep-meta {
        gap: 8px;
        font-size: .68rem;
    }

    body[data-wt-page-type="detail"] .wt-top-open {
        width: 22px;
        height: 22px;
        font-size: .66rem;
    }

    body[data-wt-page-type="detail"] .wt-related-shell {
        padding: 22px 22px 18px;
    }

    body[data-wt-page-type="detail"] .wt-related-head {
        align-items: center;
        margin-bottom: 14px;
    }

    body[data-wt-page-type="detail"] .wt-related-copy .wt-section-title {
        margin-bottom: 4px;
    }

    body[data-wt-page-type="detail"] .wt-related-subtitle {
        font-size: .82rem;
        line-height: 1.52;
        max-width: 560px;
    }

    body[data-wt-page-type="detail"] .wt-related-overview {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-related-overview-item {
        padding: 6px 10px;
        font-size: .7rem;
    }

    body[data-wt-page-type="detail"] .wt-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        align-items: start;
    }

    body[data-wt-page-type="detail"] .wt-related-card {
        min-width: 0;
        display: grid;
        grid-template-rows: auto 1fr;
        border-radius: 18px;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-card-thumb {
        padding-bottom: 54%;
    }

    body[data-wt-page-type="detail"] .wt-related-card--feature {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1.38fr) minmax(260px, .84fr);
        align-items: stretch;
    }

    body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-thumb {
        height: 100%;
        min-height: 214px;
        padding-bottom: 0;
        border-right: 1px solid rgba(120,162,255,.12);
        border-bottom: 0;
    }

    body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-body {
        display: grid;
        align-content: start;
        gap: 10px;
        padding: 14px 14px 12px;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-card-body {
        padding: 11px 12px 10px;
    }

    body[data-wt-page-type="detail"] .wt-related-card:not(.wt-related-card--feature) .wt-card-body {
        display: grid;
        align-content: start;
    }

    body[data-wt-page-type="detail"] .wt-related-card:not(.wt-related-card--feature) .wt-card-thumb {
        padding-bottom: 58%;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-card-title {
        margin-bottom: 3px;
        font-size: .8rem;
        line-height: 1.38;
        -webkit-line-clamp: 2;
    }

    body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-title {
        font-size: .92rem;
        line-height: 1.4;
    }

    body[data-wt-page-type="detail"] .wt-related-game {
        margin-bottom: 6px;
        font-size: .74rem;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-card-meta {
        gap: 8px;
        margin-bottom: 10px;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-difficulty,
    body[data-wt-page-type="detail"] .wt-related-card .wt-card-episodes,
    body[data-wt-page-type="detail"] .wt-related-card .wt-card-date {
        font-size: .66rem;
    }

    body[data-wt-page-type="detail"] .wt-related-ribbon {
        top: 10px;
        right: 10px;
        padding: 3px 8px;
        font-size: .58rem;
    }

    body[data-wt-page-type="detail"] .wt-related-card-top {
        gap: 6px;
    }

    body[data-wt-page-type="detail"] .wt-related-open {
        width: 22px;
        height: 22px;
        font-size: .66rem;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-card-link {
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 10px;
        font-size: .74rem;
    }
}

/* ===== DAP Controls Rebuild ===== */
.dap-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 0;
    pointer-events: none;
}
.dap-controls__surface {
    position: relative;
    pointer-events: auto;
    display: grid;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(138,109,233,.2);
    background:
        linear-gradient(180deg, rgba(8,10,16,.82), rgba(7,9,14,.96)),
        radial-gradient(circle at 0 0, rgba(138,109,233,.22), transparent 34%),
        radial-gradient(circle at 100% 0, rgba(77,159,138,.14), transparent 28%);
    box-shadow:
        0 22px 44px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: visible;
}
.dap-controls__surface::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(138,109,233,0), rgba(138,109,233,.7), rgba(77,159,138,.46), rgba(138,109,233,0));
    opacity: .7;
    pointer-events: none;
}
.dap-controls__surface > * {
    position: relative;
    z-index: 1;
}
.dap-hide-controls .dap-controls,
.dap-hide-controls .dap-gradient {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.98);
}

.dap-progress-wrap {
    height: 22px;
    margin: 0;
    padding: 4px 2px 0;
}
.dap-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.dap-progress-wrap:hover .dap-progress-bar,
.dap-progress-wrap.dap-seeking .dap-progress-bar,
.dap-progress-wrap:focus-visible .dap-progress-bar {
    height: 8px;
}
.dap-buffer,
.dap-played {
    border-radius: inherit;
}
.dap-buffer {
    background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,.22));
}
.dap-played {
    background: linear-gradient(90deg, rgba(77,159,138,.96), rgba(138,109,233,.95));
    box-shadow: 0 0 16px rgba(138,109,233,.24);
}
.dap-scrubber {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(7,9,14,.94);
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(218,228,255,.96));
    box-shadow:
        0 0 0 4px rgba(138,109,233,.18),
        0 10px 24px rgba(0,0,0,.34);
}
.dap-progress-wrap:hover .dap-scrubber,
.dap-progress-wrap.dap-seeking .dap-scrubber {
    transform: translate(-50%, -50%) scale(1);
}
.dap-time-tip {
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(8,10,16,.92);
    box-shadow: 0 12px 24px rgba(0,0,0,.26);
}
.dap-thumb-tip {
    margin-bottom: 36px;
    border-radius: 12px;
    border-color: rgba(255,255,255,.5);
    box-shadow: 0 18px 34px rgba(0,0,0,.42);
}
.dap-chapter-preview {
    bottom: calc(100% + 22px);
    border-radius: 14px;
    border-color: rgba(255,255,255,.18);
    background: rgba(7,9,16,.96);
    box-shadow: 0 18px 36px rgba(0,0,0,.42);
}
.dap-chapter-preview__meta {
    gap: 4px;
    padding: 9px 10px 10px;
}
.dap-chapter-marker {
    width: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.36);
}

.dap-bottom {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    padding: 0;
    overflow: visible;
}
.dap-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    padding: 8px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(155deg, rgba(16,18,28,.88), rgba(10,12,18,.94)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.08), transparent 42%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    overflow: visible;
}
.dap-spacer {
    display: none;
}
.dap-time-stack {
    display: grid;
    gap: 1px;
    min-width: 0;
}
.dap-time {
    color: #fff;
    font-size: .84rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.dap-time-stack__eyebrow,
.dap-time-stack__hint {
    display: none;
}

.dap-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    overflow: visible;
}
.dap-toolbar-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(155deg, rgba(14,16,24,.9), rgba(8,10,15,.96)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.08), transparent 42%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    overflow: visible;
    isolation: isolate;
}
.dap-toolbar-group::before { display: none; }
.dap-toolbar-group--nav {
    flex: 0 1 auto;
}
.dap-toolbar-group--playback {
    flex: 0 1 auto;
}
.dap-toolbar-group--utility {
    flex: 0 1 auto;
}
.dap-toolbar-group--screen {
    flex: 0 1 auto;
}

.dap-btn {
    position: relative;
    width: auto;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(180deg, rgba(20,22,34,.88), rgba(10,12,18,.96)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.08), transparent 42%);
    color: #f7f3ff;
    gap: 8px;
    justify-content: flex-start;
    box-shadow:
        0 10px 20px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.03);
}
.dap-btn svg {
    width: 17px;
    height: 17px;
}
.wt-player-embed[data-hints-level="full"] .dap-btn[data-tip] {
    z-index: 2;
}
.wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:hover,
.wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:focus-visible {
    z-index: 8;
}
.dap-btn:hover {
    background:
        linear-gradient(180deg, rgba(24,26,40,.94), rgba(11,13,20,.98)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.12), transparent 42%);
    border-color: rgba(138,109,233,.28);
    transform: translateY(-1px);
}
.dap-btn:active {
    transform: scale(.97);
}
.dap-btn--icon-only {
    width: 40px;
    min-width: 40px;
    padding: 0;
    justify-content: center;
}
.dap-btn--compact {
    min-width: 78px;
}
.dap-btn--emphasis {
    min-width: 108px;
    height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    border-color: rgba(77,159,138,.22);
    background:
        linear-gradient(135deg, rgba(77,159,138,.28), rgba(138,109,233,.24)),
        linear-gradient(180deg, rgba(17,28,30,.96), rgba(10,14,20,.98));
    box-shadow:
        0 16px 30px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.06);
}
.dap-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.dap-btn__icon svg {
    width: 100%;
    height: 100%;
}
.dap-btn__text {
    display: grid;
    gap: 1px;
    min-width: 0;
}
.dap-btn__title,
.dap-btn__meta {
    display: block;
    line-height: 1.15;
}
.dap-btn__title {
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    white-space: nowrap;
}
.dap-btn__meta {
    display: none;
}
.dap-play-btn .dap-btn__icon {
    width: 22px;
    height: 22px;
}
.dap-play-btn .dap-btn__title {
    font-size: .78rem;
}
.dap-btn.is-active,
.dap-btn[aria-pressed="true"] {
    border-color: rgba(77,159,138,.4);
    background:
        linear-gradient(135deg, rgba(77,159,138,.18), rgba(138,109,233,.16)),
        rgba(255,255,255,.04);
    color: #e7fff7;
}
.dap-btn.is-active .dap-btn__meta,
.dap-btn[aria-pressed="true"] .dap-btn__meta {
    color: rgba(214,255,242,.68);
}
.dap-mini-btn.is-enabled {
    border-color: rgba(77,159,138,.28);
    background:
        linear-gradient(135deg, rgba(77,159,138,.14), rgba(138,109,233,.12)),
        rgba(255,255,255,.04);
}
.dap-mini-btn,
.dap-mini-mode-toggle,
.dap-theater-btn {
    min-width: 40px;
    width: 40px;
    padding: 0;
    justify-content: center;
}
.dap-mini-btn .dap-btn__text,
.dap-mini-mode-toggle .dap-btn__text,
.dap-theater-btn .dap-btn__text {
    display: none;
}
.dap-mini-mode-toggle,
.dap-mini-restore-btn,
.dap-mini-close-btn {
    display: inline-flex;
}
.dap-mini-mode-toggle[hidden],
.dap-mini-restore-btn[hidden],
.dap-mini-close-btn[hidden] {
    display: none !important;
}
.dap-mini-restore-btn,
.dap-mini-close-btn,
.dap-hints-btn,
.dap-hotkeys-btn,
.dap-pip-btn,
.dap-fs-btn,
.dap-share-btn,
.dap-chapter-btn,
.dap-vol-btn {
    justify-content: center;
}

.dap-volume {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.dap-vol-slider-wrap {
    width: 60px;
    opacity: 1;
    overflow: visible;
    padding: 0;
}
.dap-volume:hover .dap-vol-slider-wrap,
.dap-volume:focus-within .dap-vol-slider-wrap {
    width: 74px;
    opacity: 1;
    padding-left: 0;
}
.dap-vol-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
}
.dap-vol-fill {
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(77,159,138,.94), rgba(138,109,233,.9));
}
.dap-vol-thumb {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(7,9,14,.92);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(138,109,233,.16);
}

.dap-quality-menu,
.dap-speed-menu,
.dap-caption-menu {
    margin-bottom: 8px;
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(138,109,233,.18);
    background:
        linear-gradient(180deg, rgba(14,15,24,.98), rgba(10,11,18,.98)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.12), transparent 48%);
    box-shadow: 0 18px 34px rgba(0,0,0,.38);
    z-index: 48;
}
.dap-quality-wrap,
.dap-speed-wrap,
.dap-caption-wrap {
    position: relative;
    z-index: 3;
}
.dap-quality-wrap:focus-within,
.dap-speed-wrap:focus-within,
.dap-caption-wrap:focus-within {
    z-index: 10;
}
.dap-quality-item,
.dap-speed-item,
.dap-caption-item {
    border-radius: 10px;
    padding: 8px 10px;
}
.dap-transcript-panel {
    right: 14px;
    bottom: 86px;
    width: min(420px, calc(100% - 28px));
    border-radius: 18px;
    border-color: rgba(138,109,233,.18);
    background:
        linear-gradient(180deg, rgba(11,12,20,.98), rgba(8,10,17,.98)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.12), transparent 42%);
    box-shadow: 0 22px 42px rgba(0,0,0,.42);
    z-index: 49;
}
.dap-transcript-head,
.dap-transcript-search-wrap {
    padding-left: 14px;
    padding-right: 14px;
}
.dap-transcript-head {
    padding-top: 12px;
    padding-bottom: 12px;
}
.dap-transcript-list {
    padding: 10px;
    gap: 8px;
}
.dap-transcript-item {
    border-radius: 12px;
    padding: 10px 12px;
}

@media (hover:hover) and (pointer:fine) {
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]::after {
        left: 50%;
        right: auto;
        bottom: calc(100% + 10px);
        padding: 6px 10px;
        border-radius: 10px;
        transform: translate(-50%, 4px);
        text-align: center;
    }
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]::before {
        left: 50%;
        right: auto;
        bottom: calc(100% + 1px);
        transform: translate(-50%, 4px);
    }
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:hover::after,
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:hover::before,
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:focus-visible::after,
    .wt-player-embed[data-hints-level="full"] .dap-btn[data-tip]:focus-visible::before {
        transform: translate(-50%, 0);
    }
}

.wt-player-embed.dap-theater-mode .dap-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
}
.wt-player-embed.dap-theater-mode .dap-controls__surface {
    padding: 12px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(7,9,15,.8), rgba(6,8,13,.94)),
        radial-gradient(circle at 100% 0, rgba(138,109,233,.14), transparent 48%);
}
.wt-player-embed.dap-theater-mode .dap-toolbar-group::before,
.wt-player-embed.dap-theater-mode .dap-time-stack__hint {
    display: none;
}

@media (max-width: 1180px) and (hover:hover) and (pointer:fine) {
    .dap-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .dap-controls__surface {
        padding: 10px;
        gap: 8px;
        border-radius: 18px;
    }
    .dap-bottom {
        gap: 10px;
    }
    .dap-left {
        min-width: 210px;
        padding: 9px 10px;
    }
    .dap-right {
        gap: 8px;
    }
    .dap-toolbar-group {
        gap: 6px;
        padding: 10px;
        border-radius: 18px;
    }
    .dap-btn__meta,
    .dap-time-stack__hint {
        display: none;
    }
    .dap-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
    }
    .dap-btn--icon-only {
        width: 36px;
        min-width: 36px;
    }
    .dap-btn--emphasis {
        min-width: 98px;
        height: 42px;
    }
}

@media (max-width: 980px) {
    .dap-bottom {
        grid-template-columns: 1fr;
    }
    .dap-left,
    .dap-right {
        min-width: 0;
        width: 100%;
    }
    .dap-right {
        justify-content: stretch;
    }
    .dap-toolbar-group {
        flex: 1 1 100%;
    }
}

@media (max-width: 900px) {
    .dap-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .dap-controls__surface {
        padding: 10px;
        gap: 9px;
        border-radius: 18px;
    }
    .dap-left,
    .dap-toolbar-group {
        padding: 8px;
        border-radius: 14px;
    }
    .dap-transcript-panel {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 92px;
    }
}

@media (hover:none) and (pointer:coarse) {
    .dap-controls {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 0;
    }
    .dap-controls__surface {
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
    }
    .dap-progress-wrap {
        height: 26px;
        padding-top: 6px;
    }
    .dap-progress-bar {
        height: 7px;
    }
    .dap-scrubber {
        width: 18px;
        height: 18px;
    }
    .dap-left,
    .dap-toolbar-group {
        padding: 8px;
        border-radius: 14px;
    }
    .dap-btn__meta,
    .dap-time-stack__eyebrow,
    .dap-time-stack__hint {
        display: none;
    }
    .dap-btn {
        min-width: 40px;
        height: 40px;
        padding: 0 8px;
        border-radius: 12px;
    }
    .dap-btn--labeled {
        flex: 0 1 auto;
        min-width: 0;
    }
    .dap-btn--icon-only {
        flex: 0 0 40px;
        width: 40px;
        min-width: 40px;
        padding: 0;
    }
    .dap-btn__title {
        font-size: .72rem;
    }
    .dap-btn--emphasis {
        min-width: 96px;
        height: 42px;
        flex: 0 1 auto;
    }
    .dap-volume {
        display: none !important;
    }
    .dap-right {
        gap: 8px;
    }
    .dap-toolbar-group {
        gap: 6px;
    }
    .dap-mini-btn,
    .dap-theater-btn,
    .dap-hotkeys-btn {
        display: none;
    }
    .dap-transcript-panel {
        left: 8px;
        right: 8px;
        bottom: 88px;
    }
}

/* ===== Walkthroughs Index UX Pass 2026-05 ===== */
.wt-index-page {
    --wt-index-surface: rgba(12, 14, 21, .92);
    --wt-index-border: rgba(202, 195, 235, .14);
    --wt-index-border-strong: rgba(202, 195, 235, .26);
    --wt-index-muted: rgba(235, 237, 246, .66);
    --wt-index-amber: #f2cc7a;
    --wt-index-teal: #82d8ca;
    --wt-index-purple: #b5a6ff;
}

.wt-index-page .bg-glow { opacity: .34; }
.wt-index-page .bg-glow--3 { display: none; }
.wt-index-page .wt-page-header { padding-bottom: 18px; }
.wt-index-page .wt-page-header::before { opacity: .52; }
.wt-index-page .wt-page-header::after { height: 70px; }

.wt-index-page .wt-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 1.05fr);
    gap: 16px;
}

.wt-index-page .wt-page-hero-card--main,
.wt-index-page .wt-hero-spotlight-card,
.wt-index-page .wt-rec-shell,
.wt-index-page .wt-filters-shell,
.wt-index-page .wt-results-shell,
.wt-index-page .wt-continue-shell {
    border-radius: 18px;
    border-color: var(--wt-index-border);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0) 18%),
        linear-gradient(150deg, rgba(12, 14, 21, .96), rgba(17, 19, 29, .93));
}

.wt-index-page .wt-page-hero-card--main::before,
.wt-index-page .wt-page-hero-card--main::after,
.wt-index-page .wt-hero-spotlight-card::before,
.wt-index-page .wt-rec-shell::before,
.wt-index-page .wt-continue-shell::before,
.wt-index-page .wt-filters-shell::before,
.wt-index-page .wt-results-shell:not(.wt-results-shell--episodes)::before {
    opacity: .28;
}

.wt-index-page .wt-page-hero-card--main {
    padding: 30px;
    gap: 16px;
}

.wt-index-page .wt-page-title {
    font-size: 2.45rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.wt-index-page .wt-page-desc {
    max-width: 620px;
    color: var(--wt-index-muted);
}

.wt-index-page .wt-page-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
}

.wt-index-page .wt-hero-chip-row { gap: 8px; }

.wt-index-page .wt-hero-chip,
.wt-index-page .wt-hero-quickstrip-link,
.wt-index-page .wt-quick-link {
    border-radius: 10px;
    background: rgba(8, 10, 16, .55);
}

.wt-index-page .wt-quick-link {
    min-height: 42px;
    padding: 10px 14px;
}

.wt-index-page .wt-quick-link--primary,
.wt-index-page .wt-card-link,
.wt-index-page .wt-hero-spotlight-action--primary,
.wt-index-page .wt-filter-btn {
    background: linear-gradient(135deg, rgba(126, 105, 230, .96), rgba(76, 155, 141, .9));
    border-color: rgba(181, 166, 255, .5);
    box-shadow: 0 12px 24px rgba(65, 54, 130, .24);
}

.wt-index-page .wt-hero-quickstrip { padding-top: 2px; }
.wt-index-page .wt-hero-spotlight-media { min-height: 292px; }
.wt-index-page .wt-hero-spotlight-media::after {
    background: linear-gradient(180deg, rgba(7, 8, 12, .06), rgba(7, 8, 12, .62));
}

.wt-index-page .wt-hero-spotlight-body,
.wt-index-page .wt-hero-spotlight-empty {
    gap: 10px;
    padding: 20px;
}

.wt-index-page .wt-hero-spotlight-title {
    font-size: 1.22rem;
    letter-spacing: 0;
}

.wt-index-page .wt-hero-spotlight-copy { display: none; }

.wt-index-page .wt-hero-spotlight-meta span,
.wt-index-page .wt-results-pill,
.wt-index-page .wt-filter-chip,
.wt-index-page .wt-filters-rail-pill,
.wt-index-page .wt-results-overview-item,
.wt-index-page .wt-rec-overview-item,
.wt-index-page .wt-continue-counter {
    border-radius: 10px;
    background: rgba(8, 10, 16, .52);
    border-color: var(--wt-index-border);
}

.wt-index-page .wt-hero-spotlight-actions {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr);
}

.wt-index-page .wt-stats--hero {
    margin-top: 12px;
}

.wt-index-page .wt-stat {
    min-height: 86px;
    padding: 13px 14px;
    border-radius: 12px;
    background: rgba(12, 14, 21, .72);
    box-shadow: none;
}

.wt-index-page .wt-stat:hover { transform: translateY(-2px); }

.wt-index-page .wt-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.wt-index-page .wt-stat-num { font-size: 1.1rem; }

.wt-index-page .wt-stat-label,
.wt-index-page .wt-page-kicker,
.wt-index-page .wt-hero-chip,
.wt-index-page .wt-rec-kicker,
.wt-index-page .wt-results-kicker,
.wt-index-page .wt-filters-kicker,
.wt-index-page .wt-continue-kicker {
    letter-spacing: 0;
}

.wt-index-page .wt-section {
    padding-top: 28px;
    padding-bottom: 28px;
}

.wt-index-page .section-divider { opacity: .34; }

.wt-index-page .wt-continue-section {
    padding-top: 18px;
    padding-bottom: 24px;
}

.wt-index-page .wt-continue-shell { padding: 22px; }

.wt-index-page .wt-continue-title,
.wt-index-page .wt-rec-title,
.wt-index-page .wt-results-title,
.wt-index-page .wt-filters-rail-title {
    font-size: 1.36rem;
    letter-spacing: 0;
}

.wt-index-page .wt-continue-subtitle,
.wt-index-page .wt-rec-subtitle,
.wt-index-page .wt-results-subtitle,
.wt-index-page .wt-filters-subtitle {
    color: var(--wt-index-muted);
}

.wt-index-page .wt-continue-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.wt-index-page .wt-continue-card-link {
    border-radius: 12px;
    padding: 14px;
}

.wt-index-page .wt-recommend-section { padding-top: 20px; }
.wt-index-page .wt-rec-shell { padding: 22px; }

.wt-index-page .wt-rec-header {
    align-items: center;
    margin-bottom: 16px;
}

.wt-index-page .wt-rec-subtitle {
    max-width: 610px;
    font-size: .86rem;
}

.wt-index-page .wt-rec-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 10px;
    border: 1px solid var(--wt-index-border);
    background: rgba(8, 10, 16, .54);
    color: var(--wt-index-muted);
    font-size: .8rem;
    font-weight: 700;
}

.wt-index-page .wt-rec-all-link:hover {
    color: #fff;
    border-color: var(--wt-index-border-strong);
    background: rgba(138, 109, 233, .12);
}

.wt-index-page .wt-rec-showcase,
.wt-index-page .wt-rec-rail {
    display: block;
}

.wt-index-page .wt-rec-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
}

.wt-index-page .wt-rec-mini-card {
    min-width: 0;
    border-radius: 12px;
    border-color: var(--wt-index-border);
    background: var(--wt-index-surface);
    box-shadow: none;
}

.wt-index-page .wt-rec-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
}

.wt-index-page .wt-rec-mini-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #10131d;
}

.wt-index-page .wt-rec-mini-thumb img,
.wt-index-page .wt-rec-mini-thumb .placeholder-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-index-page .wt-rec-mini-thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background: linear-gradient(180deg, transparent, rgba(6, 7, 11, .78));
}

.wt-index-page .wt-rec-mini-card .wt-status {
    top: 10px;
    left: 10px;
    z-index: 3;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 8px;
    color: #fff;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wt-index-page .wt-rec-mini-card .wt-status-completed {
    background: rgba(38, 150, 88, .92);
    border-color: rgba(151, 255, 195, .42);
}

.wt-index-page .wt-rec-mini-card .wt-status-in_progress {
    background: rgba(126, 105, 230, .92);
    border-color: rgba(220, 212, 255, .44);
}

.wt-index-page .wt-rec-mini-card .wt-status-planned {
    color: #211707;
    background: rgba(242, 204, 122, .94);
    border-color: rgba(255, 232, 178, .58);
    text-shadow: none;
}

.wt-index-page .wt-rec-mini-card .wt-status-paused {
    background: rgba(209, 126, 48, .92);
    border-color: rgba(255, 212, 168, .46);
}

.wt-index-page .wt-rec-mini-card .wt-status-cancelled {
    background: rgba(198, 58, 74, .92);
    border-color: rgba(255, 184, 194, .46);
}

.wt-index-page .wt-rec-mini-body {
    display: grid;
    gap: 8px;
    padding: 12px;
}

.wt-index-page .wt-rec-mini-body .wt-card-title {
    min-height: 2.65em;
    font-size: .88rem;
    line-height: 1.42;
}

.wt-index-page .wt-rec-mini-body .wt-card-game {
    min-height: 1.25em;
}

.wt-index-page .wt-rec-mini-body .wt-card-info {
    min-height: 1.3em;
}

.wt-index-page .wt-rec-mini-body .wt-card-link {
    min-height: 38px;
    margin-top: 4px;
    border-radius: 9px;
    font-size: .78rem;
}

.wt-index-page .wt-rec-rank {
    top: auto;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    border-radius: 8px;
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(7, 8, 12, .72);
}

.wt-index-page .wt-filters { padding-bottom: 18px; }
.wt-index-page .wt-filters-layout { grid-template-columns: 1fr; }

.wt-index-page .wt-filters-rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--wt-index-border);
    background: rgba(8, 10, 16, .42);
}

.wt-index-page .wt-filters-rail-title {
    display: flex;
    align-items: center;
    font-size: 1.12rem;
    line-height: 1.2;
}

.wt-index-page .wt-filters-subtitle--rail {
    max-width: 260px;
    margin: 0;
}

.wt-index-page .wt-filters-rail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.wt-index-page .wt-filters-rail-pill {
    min-width: 128px;
    padding: 8px 10px;
}

.wt-index-page .wt-filters-panel {
    padding: 18px 20px 20px;
    gap: 12px;
}

.wt-index-page .wt-filters-head { align-items: center; }
.wt-index-page .wt-filters-head-title { letter-spacing: 0; }
.wt-index-page .wt-filters-summary { display: none; }
.wt-index-page .wt-filters-head-side { min-width: 150px; }

.wt-index-page .wt-quick-filters--panel,
.wt-index-page .wt-facet-strip-list,
.wt-index-page .wt-active-filters--panel {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wt-index-page .wt-quick-filters--panel .wt-quick-filter-btn,
.wt-index-page .wt-facet-chip,
.wt-index-page .wt-active-filters--panel .wt-filter-chip {
    min-height: 34px;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .74rem;
}

.wt-index-page .wt-facet-strips {
    display: grid;
    gap: 9px;
    padding: 10px 0 2px;
    border-top: 1px solid rgba(202, 195, 235, .09);
}

.wt-index-page .wt-facet-strip {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.wt-index-page .wt-facet-strip-label {
    padding-top: 7px;
    color: rgba(235, 237, 246, .56);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wt-index-page .wt-facet-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--wt-index-border);
    background: rgba(8, 10, 16, .46);
    color: rgba(245, 245, 255, .82);
    font-weight: 700;
}

.wt-index-page .wt-facet-chip span {
    color: rgba(245, 245, 255, .52);
    font-size: .68rem;
}

.wt-index-page .wt-facet-chip:hover,
.wt-index-page .wt-facet-chip.is-active {
    color: #fff;
    border-color: rgba(181, 166, 255, .46);
    background: rgba(138, 109, 233, .14);
}

.wt-index-page .wt-filters-row--primary {
    grid-template-columns: minmax(260px, 1.45fr) minmax(150px, .75fr) minmax(150px, .75fr) minmax(190px, 1fr);
}

.wt-index-page .wt-filters-row--secondary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.wt-index-page .wt-filters-hint { opacity: .7; }

.wt-index-page .wt-results-shell { padding: 24px; }

.wt-index-page .wt-results-header {
    align-items: center;
    margin-bottom: 16px;
}

.wt-index-page .wt-results-title { margin-top: 10px; }

.wt-index-page .wt-results-subtitle {
    max-width: 680px;
    font-size: .88rem;
}

.wt-index-page .wt-results-overview { min-width: 250px; }
.wt-index-page .wt-results-overview-item { padding: 9px 10px; }

.wt-index-page .wt-results-toolbar {
    padding: 10px;
    border-radius: 12px;
    background: rgba(8, 10, 16, .46);
}

.wt-index-page .wt-view-toggle { border-radius: 10px; }
.wt-index-page .wt-view-btn { border-radius: 8px; }

.wt-index-page .wt-grid {
    grid-template-columns: repeat(auto-fill, minmax(244px, 1fr));
    gap: 14px;
}

.wt-index-page .wt-card {
    border-radius: 12px;
    border-color: var(--wt-index-border);
    background: var(--wt-index-surface);
    box-shadow: none;
}

.wt-index-page .wt-card:hover {
    transform: translateY(-3px);
    border-color: var(--wt-index-border-strong);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .25);
}

.wt-index-page .wt-card-thumb { padding-bottom: 58%; }
.wt-index-page .wt-card-thumb::after { height: 46%; }

.wt-index-page .wt-card-body {
    gap: 8px;
    padding: 14px;
}

.wt-index-page .wt-card-title {
    min-height: 2.88em;
    font-size: .94rem;
    line-height: 1.44;
}

.wt-index-page .wt-card-game {
    color: var(--wt-index-amber);
    font-size: .8rem;
}

.wt-index-page .wt-card-info {
    min-height: 1.35em;
    font-size: .76rem;
}

.wt-index-page .wt-card-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    min-height: 30px;
}

.wt-index-page .wt-card-badges-row .wt-card-action-link--new {
    min-height: 28px;
    color: #d8ffee;
    border-color: rgba(130, 216, 202, .35);
    background: rgba(76, 155, 141, .16);
}

.wt-index-page .wt-card-progress-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(235, 237, 246, .72);
    font-size: .78rem;
}

.wt-index-page .wt-card-progress-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wt-index-page .wt-card-progress-row i,
.wt-index-page .wt-card-progress-row b {
    color: var(--wt-index-teal);
}

.wt-index-page .wt-card-progress-bar {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.wt-index-page .wt-card-progress-bar span {
    display: block;
    height: 100%;
    min-width: 4px;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--wt-index-teal), var(--wt-index-purple));
}

.wt-index-page .wt-card-meta--compact {
    margin-top: 0;
    margin-bottom: 0;
}

.wt-index-page .wt-card-meta--compact .wt-card-duration,
.wt-index-page .wt-card-meta--compact .wt-card-date {
    min-height: 28px;
    padding: 4px 8px;
    font-size: .72rem;
}

.wt-index-page .wt-card-actions { display: none; }

.wt-index-page .wt-card-link {
    min-height: 40px;
    margin-top: auto;
    border-radius: 9px;
    font-size: .8rem;
}

.wt-index-page.wt-view-list .wt-card {
    grid-template-columns: 280px minmax(0, 1fr);
}

.wt-index-page.wt-view-list .wt-card-title { min-height: 0; }

.wt-index-page .wt-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 42px 22px;
    border-radius: 12px;
    background: rgba(8, 10, 16, .46);
}

.wt-index-page .wt-empty-icon {
    margin-bottom: 2px;
    font-size: 2.6rem;
}

.wt-index-page .site-footer {
    margin-top: 34px;
    background: linear-gradient(180deg, rgba(10, 11, 17, .84), rgba(8, 9, 14, .96));
    border-top-color: rgba(202, 195, 235, .12);
}

.wt-index-page .site-footer::before { opacity: .28; }

.wt-index-page .footer-col,
.wt-index-page .footer-col--brand {
    background: rgba(10, 12, 18, .42);
    border-color: rgba(202, 195, 235, .1);
}

@media (max-width: 1180px) {
    .wt-index-page .wt-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-hero-spotlight-media {
        min-height: 260px;
    }

    .wt-index-page .wt-filters-rail {
        align-items: flex-start;
    }
}

@media (max-width: 980px) {
    .wt-index-page .wt-page-title {
        font-size: 2rem;
    }

    .wt-index-page .wt-filters-rail,
    .wt-index-page .wt-results-header,
    .wt-index-page .wt-rec-header,
    .wt-index-page .wt-continue-header {
        flex-direction: column;
        align-items: stretch;
    }

    .wt-index-page .wt-filters-row--primary,
    .wt-index-page .wt-filters-row--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-filters-head {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-filters-head-side {
        max-width: 220px;
    }
}

@media (max-width: 760px) {
    .wt-index-page .wt-page-header {
        padding-top: 112px;
    }

    .wt-index-page .wt-page-hero-card--main,
    .wt-index-page .wt-hero-spotlight-body,
    .wt-index-page .wt-rec-shell,
    .wt-index-page .wt-results-shell,
    .wt-index-page .wt-continue-shell,
    .wt-index-page .wt-filters-panel,
    .wt-index-page .wt-filters-rail {
        padding: 16px;
    }

    .wt-index-page .wt-hero-spotlight-actions {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-results-overview {
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wt-index-page .wt-facet-strip {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .wt-index-page .wt-facet-strip-label {
        padding-top: 0;
    }

    .wt-index-page .wt-rec-mini-card {
        flex-basis: 218px;
    }

    .wt-index-page.wt-view-list .wt-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .wt-index-page .wt-page-title {
        font-size: 1.62rem;
    }

    .wt-index-page .wt-page-desc,
    .wt-index-page .wt-results-subtitle,
    .wt-index-page .wt-rec-subtitle,
    .wt-index-page .wt-continue-subtitle {
        font-size: .84rem;
        line-height: 1.58;
    }

    .wt-index-page .wt-stats--hero,
    .wt-index-page .wt-grid,
    .wt-index-page .wt-results-overview,
    .wt-index-page .wt-filters-row--primary,
    .wt-index-page .wt-filters-row--secondary,
    .wt-index-page .wt-continue-grid {
        grid-template-columns: 1fr;
    }

.wt-index-page .wt-card-title {
    min-height: 0;
}

    .wt-index-page .wt-results-toolbar,
    .wt-index-page .wt-results-tools {
        align-items: stretch;
    }

.wt-index-page .wt-view-toggle {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Recommended block: roomier editorial grid */
.wt-index-page .wt-rec-shell {
    padding: 22px;
}

.wt-index-page .wt-rec-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.wt-index-page .wt-rec-mini-card {
    border-radius: 13px;
}

.wt-index-page .wt-rec-mini-thumb {
    aspect-ratio: 16 / 8.8;
}

.wt-index-page .wt-rec-mini-body {
    min-height: 214px;
    align-content: start;
    padding: 13px;
}

.wt-index-page .wt-rec-mini-body .wt-card-title {
    min-height: 2.84em;
    font-size: .94rem;
}

.wt-index-page .wt-rec-mini-body .wt-card-info {
    min-height: 2.7em;
    line-height: 1.48;
}

.wt-index-page .wt-rec-mini-body .wt-rec-progress {
    margin-top: auto;
}

.wt-index-page .wt-rec-mini-body .wt-card-link {
    min-height: 40px;
}

@media (max-width: 980px) {
    .wt-index-page .wt-rec-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .wt-index-page .wt-rec-rail {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-rec-mini-body {
        min-height: 0;
    }
}

/* Continue Block: compact account history card */
.wt-index-page .wt-continue-section {
    padding-top: 14px;
    padding-bottom: 18px;
}

.wt-index-page .wt-continue-shell {
    padding: 20px 22px 22px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 18%),
        linear-gradient(150deg, rgba(10, 12, 19, .97), rgba(15, 17, 27, .94));
}

.wt-index-page .wt-continue-shell::before,
.wt-index-page .wt-continue-shell::after {
    opacity: .16;
}

.wt-index-page .wt-continue-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 18px;
    margin-bottom: 16px;
}

.wt-index-page .wt-continue-headline {
    max-width: none;
}

.wt-index-page .wt-continue-kicker {
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: .66rem;
    color: rgba(244, 240, 255, .86);
    background: rgba(138, 109, 233, .12);
    border-color: rgba(181, 166, 255, .24);
}

.wt-index-page .wt-continue-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 6px;
    font-family: inherit;
    font-size: 1.28rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
    color: rgba(250, 250, 255, .94);
}

.wt-index-page .wt-continue-title i {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(181, 166, 255, .18);
    color: #bcaeff;
    font-size: .78rem;
}

.wt-index-page .wt-continue-subtitle {
    max-width: 720px;
    font-size: .86rem;
    line-height: 1.5;
}

.wt-index-page .wt-continue-tools {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.wt-index-page .wt-continue-counter {
    min-width: 132px;
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "label value"
        "meta value";
    align-items: center;
    column-gap: 12px;
    padding: 10px 12px;
    text-align: left;
    border-radius: 12px;
}

.wt-index-page .wt-continue-counter-label {
    grid-area: label;
    font-size: .62rem;
    line-height: 1.1;
}

.wt-index-page .wt-continue-counter-value {
    grid-area: value;
    margin: 0;
    min-width: 24px;
    text-align: right;
    font-size: 1.15rem;
}

.wt-index-page .wt-continue-counter-meta {
    grid-area: meta;
    margin: 0;
    font-size: .68rem;
    color: rgba(235, 237, 246, .58);
}

.wt-index-page .wt-continue-actions {
    align-items: stretch;
    width: auto;
}

.wt-index-page .wt-continue-clear {
    min-height: 58px;
    padding: 10px 13px;
    border-radius: 12px;
    background: rgba(8, 10, 16, .46);
}

.wt-index-page .wt-continue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.wt-index-page .wt-continue-card-link {
    min-height: 146px;
    padding: 14px 15px;
    gap: 9px;
    border-radius: 12px;
    background: linear-gradient(155deg, rgba(13, 16, 25, .9), rgba(10, 12, 19, .96));
    border-color: rgba(181, 166, 255, .16);
    box-shadow: none;
}

.wt-index-page .wt-continue-card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(181, 166, 255, .34);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.wt-index-page .wt-continue-card-top {
    align-items: center;
}

.wt-index-page .wt-continue-chip {
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    background: rgba(138, 109, 233, .16);
    border-color: rgba(181, 166, 255, .24);
}

.wt-index-page .wt-continue-chip i {
    color: #d5ccff;
}

.wt-index-page .wt-continue-time {
    flex: 0 0 auto;
    font-size: .74rem;
    color: rgba(235, 237, 246, .66);
    white-space: nowrap;
}

.wt-index-page .wt-continue-card-title {
    font-size: .93rem;
    line-height: 1.38;
    font-weight: 800;
    -webkit-line-clamp: 2;
}

.wt-index-page .wt-continue-card-meta {
    font-size: .82rem;
    line-height: 1.45;
    color: rgba(235, 237, 246, .68);
    -webkit-line-clamp: 1;
}

.wt-index-page .wt-continue-card-action {
    min-height: 34px;
    margin-top: auto;
    padding: 7px 11px;
    border-radius: 9px;
    color: #d9d0ff;
    background: rgba(138, 109, 233, .14);
    border-color: rgba(181, 166, 255, .22);
    font-size: .76rem;
}

@media (max-width: 980px) {
    .wt-index-page .wt-continue-header {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-continue-tools {
        justify-content: flex-start;
    }

    .wt-index-page .wt-continue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wt-index-page .wt-continue-shell {
        padding: 16px;
    }

    .wt-index-page .wt-continue-tools {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-continue-counter,
    .wt-index-page .wt-continue-clear {
        min-height: 48px;
    }

    .wt-index-page .wt-continue-grid {
        grid-template-columns: 1fr;
    }

.wt-index-page .wt-continue-card-link {
        min-height: 0;
    }
}

/* Filters block: denser workspace */
.wt-index-page .wt-filters-shell {
    border-radius: 16px;
}

.wt-index-page .wt-filters-rail {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
}

.wt-index-page .wt-filters-rail .wt-filters-kicker {
    margin: 0;
}

.wt-index-page .wt-filters-rail-title {
    margin: 0;
    font-size: 1.08rem;
}

.wt-index-page .wt-filters-subtitle--rail {
    max-width: none;
    color: rgba(235, 237, 246, .58);
    font-size: .84rem;
}

.wt-index-page .wt-filters-rail-meta {
    justify-content: flex-end;
}

.wt-index-page .wt-filters-rail-pill {
    min-width: 112px;
    padding: 9px 11px;
}

.wt-index-page .wt-filters-panel {
    padding: 18px 20px 20px;
}

.wt-index-page .wt-filters-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.wt-index-page .wt-filters-head-title {
    font-size: 1rem;
}

.wt-index-page .wt-filters-subtitle {
    margin-top: 8px;
}

.wt-index-page .wt-filters-toggle {
    width: auto;
    min-width: 150px;
    min-height: 40px;
}

.wt-index-page .wt-quick-filters--panel {
    margin: 0;
}

.wt-index-page .wt-quick-filters--panel .wt-quick-filter-btn {
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 10px;
}

.wt-index-page .wt-facet-strips {
    gap: 8px;
    padding: 12px 0 4px;
    margin-top: 4px;
}

.wt-index-page .wt-facet-strip {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
}

.wt-index-page .wt-facet-strip-label {
    padding-top: 8px;
    font-size: .66rem;
}

.wt-index-page .wt-facet-chip {
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
}

.wt-index-page .wt-filters-form {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(202, 195, 235, .1);
}

.wt-index-page .wt-filters-row--primary {
    grid-template-columns: minmax(260px, 1.45fr) minmax(170px, .75fr) minmax(150px, .75fr) minmax(220px, 1fr);
    gap: 10px;
}

.wt-index-page .wt-search-input,
.wt-index-page .wt-filter-select,
.wt-index-page .wt-filter-input {
    min-height: 40px;
}

.wt-index-page .wt-search-btn {
    width: 34px;
    height: 34px;
}

.wt-index-page .wt-filters-row--actions {
    margin-top: 12px;
    padding-top: 12px;
}

.wt-index-page .wt-filters-hint {
    font-size: .73rem;
}

.wt-index-page .wt-filters-actions {
    align-items: center;
}

.wt-index-page .wt-filter-btn,
.wt-index-page .wt-clear-btn {
    min-height: 40px;
    padding: 9px 14px;
}

@media (max-width: 1080px) {
    .wt-index-page .wt-filters-rail {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .wt-index-page .wt-filters-rail-meta {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .wt-index-page .wt-filters-row--primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-field--search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .wt-index-page .wt-filters-rail,
    .wt-index-page .wt-filters-head {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-filters-toggle {
        width: 100%;
    }

    .wt-index-page .wt-filters-row--primary,
    .wt-index-page .wt-filters-row--secondary {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-facet-strip {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-filters-row--actions {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-filters-actions {
        justify-content: stretch;
    }

    .wt-index-page .wt-filter-btn,
    .wt-index-page .wt-clear-btn {
        width: 100%;
    }
}

/* Filters rail: compact heading */
.wt-index-page .wt-filters-rail {
    min-height: 0;
    grid-template-columns: auto auto minmax(0, 1fr);
    padding: 12px 20px;
    gap: 12px;
}

.wt-index-page .wt-filters-rail .wt-filters-kicker {
    display: none;
}

.wt-index-page .wt-filters-rail-title {
    display: inline-flex;
    width: fit-content;
    gap: 9px;
    white-space: nowrap;
}

.wt-index-page .wt-filters-subtitle--rail {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(181, 166, 255, .14);
    background: rgba(8, 10, 16, .42);
    color: rgba(235, 237, 246, .68);
    font-size: .78rem;
    line-height: 1;
}

.wt-index-page .wt-filters-rail-meta {
    display: none;
}

@media (max-width: 680px) {
    .wt-index-page .wt-filters-rail {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wt-index-page .wt-filters-rail-title,
    .wt-index-page .wt-filters-subtitle--rail {
        width: 100%;
    }
}

/* Filters form: aligned controls */
.wt-index-page .wt-filters-form {
    gap: 12px;
    padding-top: 14px;
}

.wt-index-page .wt-filters-row {
    gap: 12px;
}

.wt-index-page .wt-filters-row--primary {
    grid-template-columns: minmax(300px, 1.55fr) repeat(3, minmax(170px, 1fr));
}

.wt-index-page .wt-filters-row--secondary {
    grid-template-columns:
        minmax(170px, 1fr)
        minmax(170px, 1fr)
        minmax(170px, 1fr)
        minmax(170px, 1fr)
        minmax(240px, 1.05fr);
}

.wt-index-page .wt-field {
    gap: 7px;
}

.wt-index-page .wt-field-label {
    min-height: 14px;
    color: rgba(235, 237, 246, .68);
    font-size: .66rem;
    line-height: 1;
    letter-spacing: .03em;
}

.wt-index-page .wt-search-box {
    height: 42px;
}

.wt-index-page .wt-search-input,
.wt-index-page .wt-filter-select,
.wt-index-page .wt-filter-input {
    min-height: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(8, 10, 16, .58);
    border-color: rgba(181, 166, 255, .16);
    color: rgba(250, 250, 255, .92);
}

.wt-index-page select.wt-filter-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    color-scheme: dark;
    background-color: rgba(8, 10, 16, .58);
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(218, 211, 255, .92) 50%),
        linear-gradient(135deg, rgba(218, 211, 255, .92) 50%, transparent 50%),
        linear-gradient(180deg, rgba(181, 166, 255, .1), rgba(130, 216, 202, .06));
    background-position:
        calc(100% - 19px) 18px,
        calc(100% - 14px) 18px,
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        42px 100%;
    background-repeat: no-repeat;
}

.wt-index-page select.wt-filter-select:focus {
    background-color: rgba(10, 12, 20, .78);
    background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%),
        linear-gradient(180deg, rgba(181, 166, 255, .18), rgba(130, 216, 202, .1));
}

.wt-index-page select.wt-filter-select option {
    background: #10121b;
    color: rgba(250, 250, 255, .94);
}

.wt-index-page select.wt-filter-select:disabled {
    opacity: .62;
    cursor: not-allowed;
    color: rgba(235, 237, 246, .58);
    background-color: rgba(8, 10, 16, .44);
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(235, 237, 246, .42) 50%),
        linear-gradient(135deg, rgba(235, 237, 246, .42) 50%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
}

.wt-index-page .wt-search-input {
    padding-right: 48px;
}

.wt-index-page .wt-search-btn {
    right: 5px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.wt-index-page .wt-filter-select:hover,
.wt-index-page .wt-search-input:hover,
.wt-index-page .wt-filter-input:hover {
    border-color: rgba(181, 166, 255, .28);
    background-color: rgba(10, 12, 20, .72);
}

.wt-index-page select.wt-filter-select:hover {
    background-color: rgba(10, 12, 20, .72);
}

.wt-index-page .wt-field--years {
    min-width: 0;
}

.wt-index-page .wt-year-range {
    height: 42px;
    gap: 8px;
}

.wt-index-page .wt-year-range .wt-filter-input {
    min-width: 0;
}

.wt-index-page .wt-filters-row--actions {
    margin-top: 10px;
}

@media (max-width: 1180px) {
    .wt-index-page .wt-filters-row--primary,
    .wt-index-page .wt-filters-row--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wt-index-page .wt-field--search,
    .wt-index-page .wt-field--years {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .wt-index-page .wt-filters-row--primary,
    .wt-index-page .wt-filters-row--secondary {
        grid-template-columns: 1fr;
    }

    .wt-index-page .wt-year-range {
        grid-template-columns: 1fr;
        height: auto;
    }
}

/* Results block: cleaner catalogue cards */
.wt-index-page .wt-results-shell {
    padding: 22px 24px 24px;
    border-radius: 16px;
}

.wt-index-page .wt-results-header {
    margin-bottom: 14px;
}

.wt-index-page .wt-results-title {
    font-size: 1.28rem;
}

.wt-index-page .wt-results-subtitle {
    max-width: 720px;
    font-size: .86rem;
    line-height: 1.65;
}

.wt-index-page .wt-results-overview {
    gap: 8px;
}

.wt-index-page .wt-results-overview-item {
    min-width: 82px;
    padding: 9px 10px;
    border-radius: 10px;
}

.wt-index-page .wt-results-toolbar {
    margin-bottom: 20px;
    border-radius: 12px;
}

.wt-index-page .wt-grid {
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.wt-index-page .wt-card {
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, 0) 18%),
        rgba(10, 12, 18, .94);
}

.wt-index-page .wt-card-thumb {
    padding-bottom: 53%;
}

.wt-index-page .wt-card .wt-status {
    top: 10px;
    left: 10px;
    z-index: 3;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 8px;
    color: #fff;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .3);
}

.wt-index-page .wt-card .wt-status-completed {
    background: rgba(38, 150, 88, .92);
    border-color: rgba(151, 255, 195, .42);
}

.wt-index-page .wt-card .wt-status-in_progress {
    background: rgba(126, 105, 230, .92);
    border-color: rgba(220, 212, 255, .44);
}

.wt-index-page .wt-card .wt-status-paused {
    background: rgba(209, 126, 48, .92);
    border-color: rgba(255, 212, 168, .46);
}

.wt-index-page .wt-card-body {
    gap: 8px;
    padding: 13px 14px 14px;
}

.wt-index-page .wt-card-title {
    min-height: 2.72em;
    font-size: .92rem;
    line-height: 1.44;
}

.wt-index-page .wt-card-info {
    min-height: 2.65em;
    line-height: 1.48;
}

.wt-index-page .wt-card-action-link--new[hidden],
.wt-index-page .wt-card-badges-row .wt-card-action-link--new[hidden] {
    display: none !important;
}

.wt-index-page .wt-card-badges-row .wt-card-action-link--new:not([hidden]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wt-index-page .wt-card-progress-row {
    margin-top: 2px;
}

.wt-index-page .wt-card-progress-bar {
    height: 6px;
}

.wt-index-page .wt-card-meta--compact .wt-card-duration,
.wt-index-page .wt-card-meta--compact .wt-card-date {
    min-height: 26px;
}

.wt-index-page .wt-card-link {
    min-height: 40px;
    margin-top: 8px;
}

@media (max-width: 760px) {
    .wt-index-page .wt-results-shell {
        padding: 18px 16px;
    }

    .wt-index-page .wt-results-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ================================================================
   Walkthrough Detail Polish - 2026-05
   ================================================================ */

body[data-wt-page-type="detail"] {
    --wt-detail-max: 1120px;
    --wt-surface: rgba(12, 14, 22, .86);
    --wt-surface-strong: rgba(16, 18, 28, .94);
    --wt-surface-soft: rgba(255, 255, 255, .035);
    --wt-line: rgba(197, 207, 232, .13);
    --wt-line-strong: rgba(197, 207, 232, .22);
    --wt-copy: rgba(246, 248, 255, .9);
    --wt-muted-copy: rgba(221, 226, 240, .68);
    --wt-dim-copy: rgba(221, 226, 240, .54);
    --wt-action: #7d63e8;
    --wt-action-strong: #8f74ff;
    --wt-mint: #4fb99d;
    --wt-warm: #d5b46f;
}

body[data-wt-page-type="detail"] *,
body[data-wt-page-type="detail"] *::before,
body[data-wt-page-type="detail"] *::after {
    letter-spacing: 0 !important;
}

body[data-wt-page-type="detail"] .bg-glow,
body[data-wt-page-type="detail"] .wt-detail-aurora,
body[data-wt-page-type="detail"] .wt-wt-hero-aura {
    display: none;
}

body[data-wt-page-type="detail"] .wt-detail-header {
    padding: 92px 18px 18px;
}

body[data-wt-page-type="detail"] .wt-detail-header-inner,
body[data-wt-page-type="detail"] .wt-section-inner,
body[data-wt-page-type="detail"] .wt-detail-nav-inner {
    max-width: var(--wt-detail-max);
}

body[data-wt-page-type="detail"] .wt-detail-hero-bg {
    opacity: .16;
    filter: blur(22px) saturate(.9);
}

body[data-wt-page-type="detail"] .wt-wt-hero {
    border-radius: 14px;
    border-color: var(--wt-line-strong);
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .97), rgba(15, 17, 27, .95) 58%, rgba(10, 18, 20, .94)),
        linear-gradient(90deg, rgba(125, 99, 232, .08), rgba(79, 185, 157, .07));
    box-shadow: 0 22px 56px rgba(0, 0, 0, .36);
}

body[data-wt-page-type="detail"] .wt-wt-hero-grid {
    grid-template-columns: minmax(0, 1fr) 316px;
    gap: 18px;
    padding: 22px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-top {
    margin-bottom: 14px;
}

body[data-wt-page-type="detail"] .wt-breadcrumbs {
    font-size: .8rem;
}

body[data-wt-page-type="detail"] .wt-detail-updated {
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--wt-muted-copy);
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
}

body[data-wt-page-type="detail"] .wt-wt-hero-headline {
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 14px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster {
    border-radius: 8px;
    border-color: var(--wt-line-strong);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .32);
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster img {
    transform: none;
    filter: saturate(1.04) contrast(1.02);
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster-overlay {
    padding: 10px;
    background: linear-gradient(to top, rgba(5, 6, 10, .76), rgba(5, 6, 10, .04) 68%);
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster-play {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(125, 99, 232, .3);
}

body[data-wt-page-type="detail"] .wt-detail-copy {
    gap: 9px;
}

body[data-wt-page-type="detail"] .wt-detail-kicker {
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 8px;
    color: #efeaff;
    background: rgba(125, 99, 232, .12);
    border-color: rgba(143, 116, 255, .2);
    font-size: .72rem;
    text-transform: none;
}

body[data-wt-page-type="detail"] .wt-detail-title {
    font-size: 1.62rem;
    line-height: 1.24;
    letter-spacing: 0 !important;
    -webkit-text-fill-color: currentColor;
    background: none;
    color: #fff;
    text-wrap: balance;
}

body[data-wt-page-type="detail"] .wt-detail-game {
    color: var(--wt-muted-copy);
    font-size: .96rem;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chips {
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip {
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--wt-muted-copy);
    background: var(--wt-surface-soft);
    border-color: var(--wt-line);
    font-size: .76rem;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip i {
    color: var(--wt-mint);
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip--accent {
    color: #d9fff4;
    background: rgba(79, 185, 157, .11);
    border-color: rgba(79, 185, 157, .22);
}

body[data-wt-page-type="detail"] .wt-detail-desc {
    color: var(--wt-muted-copy);
    font-size: .96rem;
    line-height: 1.68;
}

body[data-wt-page-type="detail"] .wt-detail-hero-insights {
    display: none;
}

body[data-wt-page-type="detail"] .wt-meta-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

body[data-wt-page-type="detail"] .wt-meta-card {
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-meta-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-meta-card-label {
    color: var(--wt-dim-copy);
    font-size: .68rem;
    text-transform: none;
}

body[data-wt-page-type="detail"] .wt-meta-card-value {
    color: var(--wt-copy);
    font-size: .82rem;
}

body[data-wt-page-type="detail"] .wt-detail-actions,
body[data-wt-page-type="detail"] .wt-detail-actions-primary,
body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-detail-actions-secondary--pair {
    grid-template-columns: minmax(0, .9fr) minmax(0, .72fr);
}

body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions a {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .82rem;
    white-space: normal;
    text-align: center;
}

body[data-wt-page-type="detail"] .wt-continue-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-continue-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--wt-action), var(--wt-action-strong));
    border: 1px solid rgba(202, 190, 255, .34);
    box-shadow: 0 14px 26px rgba(93, 72, 195, .32);
}

body[data-wt-page-type="detail"] .wt-detail-next-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-next-btn {
    color: #eafff8;
    background: rgba(79, 185, 157, .14);
    border-color: rgba(79, 185, 157, .28);
}

body[data-wt-page-type="detail"] .wt-detail-list-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-list-btn {
    color: var(--wt-copy);
    background: rgba(255, 255, 255, .045);
    border-color: var(--wt-line);
}

body[data-wt-page-type="detail"] .wt-playlist-btn,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-playlist-btn {
    color: #ffdedd;
    background: rgba(196, 48, 43, .12);
    border-color: rgba(196, 48, 43, .24);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-continue-meta {
    color: var(--wt-muted-copy);
    font-size: .78rem;
    line-height: 1.45;
}

body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
    padding: 14px;
    border-radius: 8px;
    border-color: var(--wt-line);
    background: rgba(7, 9, 15, .54);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-detail-panel-title {
    margin-bottom: 8px;
    color: #fff;
    font-size: .92rem;
    text-transform: none;
}

body[data-wt-page-type="detail"] .wt-detail-panel-tools {
    margin: 0 0 10px;
}

body[data-wt-page-type="detail"] .wt-anti-spoiler-btn {
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary,
body[data-wt-page-type="detail"] .wt-detail-panel-progress,
body[data-wt-page-type="detail"] .wt-detail-stat,
body[data-wt-page-type="detail"] .wt-user-journey-stat,
body[data-wt-page-type="detail"] .wt-user-journey-cta {
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary {
    margin-bottom: 10px;
    padding: 11px;
    gap: 6px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__kicker,
body[data-wt-page-type="detail"] .wt-detail-stat-label,
body[data-wt-page-type="detail"] .wt-user-journey-label {
    color: var(--wt-dim-copy);
    font-size: .68rem;
    text-transform: none;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__title {
    font-size: .92rem;
    line-height: 1.35;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__text,
body[data-wt-page-type="detail"] .wt-user-journey-guest,
body[data-wt-page-type="detail"] .wt-user-journey-hint,
body[data-wt-page-type="detail"] .wt-field-help {
    color: var(--wt-muted-copy);
    font-size: .76rem;
    line-height: 1.48;
}

body[data-wt-page-type="detail"] .wt-detail-panel-divider {
    margin: 12px 0;
    background: var(--wt-line);
}

body[data-wt-page-type="detail"] .wt-route-map-legend {
    display: none;
}

body[data-wt-page-type="detail"] .wt-route-map-track {
    padding: 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .18);
}

body[data-wt-page-type="detail"] .wt-detail-subtitle {
    margin-bottom: 8px;
    color: var(--wt-copy);
    font-size: .86rem;
}

body[data-wt-page-type="detail"] .wt-episodes-jump-input,
body[data-wt-page-type="detail"] .wt-search-box--mini .wt-search-input,
body[data-wt-page-type="detail"] .wt-episodes-jump-btn,
body[data-wt-page-type="detail"] .wt-search-box--mini .wt-search-btn {
    min-height: 38px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-section {
    padding: 46px 18px;
}

body[data-wt-page-type="detail"] .section-divider {
    width: min(var(--wt-detail-max), calc(100% - 36px));
    margin: 0 auto;
    opacity: .38;
}

body[data-wt-page-type="detail"] .wt-detail-nav {
    padding: 10px 16px 0;
}

body[data-wt-page-type="detail"] .wt-detail-nav-inner {
    gap: 8px;
    padding: 8px;
    border-radius: 10px;
    border-color: var(--wt-line);
    background: rgba(9, 10, 16, .9);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

body[data-wt-page-type="detail"] .wt-detail-nav-link {
    min-height: 36px;
    padding: 6px 10px 6px 7px;
    border-radius: 8px;
    color: var(--wt-muted-copy);
    background: transparent;
    border-color: transparent;
    font-size: .78rem;
}

body[data-wt-page-type="detail"] .wt-detail-nav-link:hover,
body[data-wt-page-type="detail"] .wt-detail-nav-link--accent {
    color: #fff;
    background: rgba(125, 99, 232, .14);
    border-color: rgba(143, 116, 255, .22);
}

body[data-wt-page-type="detail"] .wt-detail-nav-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
}

body[data-wt-page-type="detail"] .wt-game-info-card,
body[data-wt-page-type="detail"] .wt-latest-shell,
body[data-wt-page-type="detail"] .wt-top-shell,
body[data-wt-page-type="detail"] .wt-related-shell {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-game-info-head {
    grid-template-columns: 112px minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: start;
}

body[data-wt-page-type="detail"] .wt-game-cover {
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-game-info-kicker {
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    text-transform: none;
}

body[data-wt-page-type="detail"] .wt-game-info-title {
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.18rem;
}

body[data-wt-page-type="detail"] .wt-game-info-game-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px;
    color: #d9fff4;
    font-size: .92rem;
    font-weight: 700;
}

body[data-wt-page-type="detail"] .wt-game-info-desc {
    color: var(--wt-muted-copy);
    font-size: .94rem;
    line-height: 1.66;
}

body[data-wt-page-type="detail"] .wt-game-tag,
body[data-wt-page-type="detail"] .wt-game-info-badge,
body[data-wt-page-type="detail"] .wt-game-info-link {
    min-height: 30px;
    border-radius: 8px;
    color: var(--wt-muted-copy);
}

body[data-wt-page-type="detail"] .wt-game-score-panel {
    padding: 12px;
    border-radius: 8px;
    border-color: var(--wt-line);
    background: rgba(255, 255, 255, .035);
}

body[data-wt-page-type="detail"] .wt-game-info-grid {
    margin-top: 18px;
    grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
    gap: 10px;
}

body[data-wt-page-type="detail"] .wt-game-info-item {
    min-height: 56px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
}

body[data-wt-page-type="detail"] .wt-contents-card,
body[data-wt-page-type="detail"] .wt-picks-shell,
body[data-wt-page-type="detail"] .wt-notes-card,
body[data-wt-page-type="detail"] .wt-social-bar {
    padding: 22px;
    border-radius: 10px;
    border-color: var(--wt-line);
    background: rgba(12, 14, 22, .76);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-contents-card::before,
body[data-wt-page-type="detail"] .wt-social-bar::before {
    display: none;
}

body[data-wt-page-type="detail"] .wt-section-title {
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.35;
}

body[data-wt-page-type="detail"] .wt-contents-subtitle,
body[data-wt-page-type="detail"] .wt-picks-subtitle,
body[data-wt-page-type="detail"] .wt-latest-subtitle,
body[data-wt-page-type="detail"] .wt-top-subtitle,
body[data-wt-page-type="detail"] .wt-related-subtitle,
body[data-wt-page-type="detail"] .wt-social-bar__subtitle {
    color: var(--wt-muted-copy);
    font-size: .88rem;
    line-height: 1.56;
}

body[data-wt-page-type="detail"] .wt-contents-head,
body[data-wt-page-type="detail"] .wt-latest-head,
body[data-wt-page-type="detail"] .wt-top-head,
body[data-wt-page-type="detail"] .wt-related-head {
    align-items: end;
    margin-bottom: 16px;
}

body[data-wt-page-type="detail"] .wt-contents-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid var(--wt-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

body[data-wt-page-type="detail"] .wt-contents-route-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-contents-route-kicker {
    color: var(--wt-dim-copy);
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-contents-route-copy strong {
    color: #fff;
    font-size: .98rem;
    line-height: 1.35;
}

body[data-wt-page-type="detail"] .wt-contents-progress {
    width: min(420px, 100%);
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
}

body[data-wt-page-type="detail"] .wt-contents-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--wt-action), var(--wt-mint));
}

body[data-wt-page-type="detail"] .wt-contents-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-contents-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid var(--wt-line);
    color: var(--wt-copy);
    background: rgba(255, 255, 255, .045);
    font-size: .82rem;
    font-weight: 700;
}

body[data-wt-page-type="detail"] .wt-contents-action--primary {
    color: #fff;
    border-color: rgba(202, 190, 255, .3);
    background: linear-gradient(135deg, var(--wt-action), var(--wt-action-strong));
}

body[data-wt-page-type="detail"] .wt-contents-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

body[data-wt-page-type="detail"] .wt-contents-item {
    min-height: 72px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
}

body[data-wt-page-type="detail"] .wt-contents-item--disabled {
    opacity: .48;
}

body[data-wt-page-type="detail"] .wt-contents-foot {
    margin-top: 12px;
}

body[data-wt-page-type="detail"] .wt-contents-foot-link {
    min-height: 36px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-latest-overview,
body[data-wt-page-type="detail"] .wt-top-overview,
body[data-wt-page-type="detail"] .wt-related-overview {
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-latest-overview-item,
body[data-wt-page-type="detail"] .wt-top-overview-item,
body[data-wt-page-type="detail"] .wt-related-overview-item {
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--wt-muted-copy);
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-latest-grid,
body[data-wt-page-type="detail"] .wt-top-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-latest-card,
body[data-wt-page-type="detail"] .wt-top-card,
body[data-wt-page-type="detail"] .wt-related-card {
    min-width: 0;
    border-radius: 8px;
    border-color: var(--wt-line);
    background: rgba(12, 14, 22, .76);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-latest-card--lead,
body[data-wt-page-type="detail"] .wt-top-card--champ,
body[data-wt-page-type="detail"] .wt-related-card--feature {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
}

body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-thumb,
body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-thumb {
    min-height: 0;
    height: auto;
    padding-bottom: 56.25%;
    border-right: 0;
    border-bottom: 1px solid rgba(138, 109, 233, .12);
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-thumb,
body[data-wt-page-type="detail"] .wt-top-card .wt-ep-thumb,
body[data-wt-page-type="detail"] .wt-related-card .wt-card-thumb,
body[data-wt-page-type="detail"] .wt-related-card:not(.wt-related-card--feature) .wt-card-thumb {
    padding-bottom: 56.25%;
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-body,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-body,
body[data-wt-page-type="detail"] .wt-top-card .wt-ep-body,
body[data-wt-page-type="detail"] .wt-related-card .wt-card-body,
body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-body {
    padding: 12px;
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-title,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-title,
body[data-wt-page-type="detail"] .wt-top-card .wt-ep-title,
body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-title,
body[data-wt-page-type="detail"] .wt-related-card .wt-card-title,
body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-title {
    color: #fff;
    font-size: .9rem;
    line-height: 1.42;
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-desc,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-desc,
body[data-wt-page-type="detail"] .wt-top-card .wt-ep-desc,
body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-desc,
body[data-wt-page-type="detail"] .wt-related-game {
    color: var(--wt-muted-copy);
    font-size: .78rem;
    line-height: 1.5;
}

body[data-wt-page-type="detail"] .wt-latest-date,
body[data-wt-page-type="detail"] .wt-top-views,
body[data-wt-page-type="detail"] .wt-latest-order,
body[data-wt-page-type="detail"] .wt-latest-fresh,
body[data-wt-page-type="detail"] .wt-top-rank,
body[data-wt-page-type="detail"] .wt-top-medal,
body[data-wt-page-type="detail"] .wt-related-ribbon,
body[data-wt-page-type="detail"] .wt-status {
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-related-card .wt-card-link {
    min-height: 38px;
    margin-top: auto;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--wt-action), var(--wt-action-strong));
}

body[data-wt-page-type="detail"] .wt-latest-open,
body[data-wt-page-type="detail"] .wt-top-open,
body[data-wt-page-type="detail"] .wt-related-open {
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-social-bar {
    align-items: center;
}

body[data-wt-page-type="detail"] .wt-social-bar__title {
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-game-info-head {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-game-score-panel {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-latest-grid,
    body[data-wt-page-type="detail"] .wt-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-detail-header {
        padding: 84px 12px 14px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero {
        border-radius: 10px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        padding: 14px;
        gap: 14px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-top {
        gap: 8px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-poster {
        aspect-ratio: 16 / 9;
    }

    body[data-wt-page-type="detail"] .wt-detail-title {
        font-size: 1.28rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-desc {
        font-size: .92rem;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-chip {
        width: auto;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-detail-actions-primary,
    body[data-wt-page-type="detail"] .wt-detail-actions-secondary,
    body[data-wt-page-type="detail"] .wt-detail-actions-secondary--pair {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-section {
        padding: 36px 12px;
    }

    body[data-wt-page-type="detail"] .section-divider {
        width: calc(100% - 24px);
    }

    body[data-wt-page-type="detail"] .wt-detail-nav {
        padding: 8px 10px 0;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-inner {
        border-radius: 8px;
        padding: 6px;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-link {
        min-height: 34px;
        font-size: .74rem;
    }

    body[data-wt-page-type="detail"] .wt-game-info-head,
    body[data-wt-page-type="detail"] .wt-game-score-panel,
    body[data-wt-page-type="detail"] .wt-contents-route {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-game-cover-wrap {
        width: 132px;
        max-width: 48vw;
    }

    body[data-wt-page-type="detail"] .wt-contents-card,
    body[data-wt-page-type="detail"] .wt-picks-shell,
    body[data-wt-page-type="detail"] .wt-notes-card,
    body[data-wt-page-type="detail"] .wt-social-bar {
        padding: 16px;
        border-radius: 8px;
    }

    body[data-wt-page-type="detail"] .wt-contents-head,
    body[data-wt-page-type="detail"] .wt-latest-head,
    body[data-wt-page-type="detail"] .wt-top-head,
    body[data-wt-page-type="detail"] .wt-related-head {
        align-items: stretch;
        gap: 12px;
    }

    body[data-wt-page-type="detail"] .wt-contents-actions {
        justify-content: stretch;
    }

    body[data-wt-page-type="detail"] .wt-contents-action {
        flex: 1 1 150px;
    }

    body[data-wt-page-type="detail"] .wt-contents-grid,
    body[data-wt-page-type="detail"] .wt-latest-grid,
    body[data-wt-page-type="detail"] .wt-top-grid,
    body[data-wt-page-type="detail"] .wt-related-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-latest-overview,
    body[data-wt-page-type="detail"] .wt-top-overview,
    body[data-wt-page-type="detail"] .wt-related-overview {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    body[data-wt-page-type="detail"] .wt-social-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    body[data-wt-page-type="detail"] .wt-detail-title {
        font-size: 1.12rem;
        line-height: 1.32;
    }

    body[data-wt-page-type="detail"] .wt-detail-hero-chips,
    body[data-wt-page-type="detail"] .wt-game-info-tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-tools,
    body[data-wt-page-type="detail"] .wt-detail-panel-tools .wt-anti-spoiler-btn {
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-contents-route {
        padding: 12px;
    }
}

/* Walkthrough Detail Hero Block Correction */
body[data-wt-page-type="detail"] .wt-wt-hero-grid {
    align-items: start;
}

body[data-wt-page-type="detail"] .wt-wt-hero-main {
    display: grid;
    align-content: start;
}

body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-title {
    align-self: center;
    margin: 0;
}

body[data-wt-page-type="detail"] .wt-detail-panel-tools {
    align-self: center;
    justify-self: end;
    margin: 0;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary,
body[data-wt-page-type="detail"] .wt-detail-panel-progress,
body[data-wt-page-type="detail"] .wt-detail-stats-grid,
body[data-wt-page-type="detail"] .wt-detail-panel-divider,
body[data-wt-page-type="detail"] .wt-route-map,
body[data-wt-page-type="detail"] .wt-detail-quicknav,
body[data-wt-page-type="detail"] .wt-user-journey {
    grid-column: 1 / -1;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary {
    margin-bottom: 0;
}

body[data-wt-page-type="detail"] .wt-detail-panel-progress {
    margin-bottom: 0;
    padding: 10px 11px;
}

body[data-wt-page-type="detail"] .wt-detail-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-detail-stat {
    min-height: 52px;
    padding: 9px 10px;
}

body[data-wt-page-type="detail"] .wt-detail-stat--wide {
    grid-column: 1 / -1;
}

body[data-wt-page-type="detail"] .wt-detail-panel-divider {
    margin: 2px 0;
}

body[data-wt-page-type="detail"] .wt-route-map {
    display: grid;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-route-map-head {
    align-items: center;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-route-map-head .wt-detail-subtitle {
    margin-bottom: 0;
    max-width: 150px;
}

body[data-wt-page-type="detail"] .wt-route-map-next {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-route-map-track {
    min-height: 30px;
    padding: 8px 10px;
}

body[data-wt-page-type="detail"] .wt-route-map-meta {
    margin-top: 0;
}

body[data-wt-page-type="detail"] .wt-detail-quicknav {
    display: none;
}

body[data-wt-page-type="detail"] .wt-user-journey {
    display: grid;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-user-journey .wt-detail-subtitle {
    margin-bottom: 0;
}

body[data-wt-page-type="detail"] .wt-user-journey-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-user-journey-stat {
    min-height: 52px;
    padding: 8px 9px;
}

body[data-wt-page-type="detail"] .wt-user-journey-progress {
    height: 6px;
    margin-top: 0;
}

body[data-wt-page-type="detail"] .wt-user-journey-cta {
    margin-top: 0;
    padding: 9px 10px;
}

body[data-wt-page-type="detail"] .wt-user-journey-cta-kicker {
    font-size: .66rem;
}

body[data-wt-page-type="detail"] .wt-user-journey-cta-title {
    font-size: .82rem;
}

body[data-wt-page-type="detail"] .wt-user-journey-guest,
body[data-wt-page-type="detail"] .wt-user-journey-hint {
    margin: 0;
}

@media (min-width: 1041px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 16px;
        padding: 22px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 156px minmax(0, 1fr);
        gap: 18px;
    }

    body[data-wt-page-type="detail"] .wt-detail-title {
        max-width: 720px;
    }

    body[data-wt-page-type="detail"] .wt-detail-actions {
        max-width: 620px;
    }
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-detail-quicknav {
        display: grid;
    }
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-tools {
        justify-self: stretch;
    }

    body[data-wt-page-type="detail"] .wt-detail-panel-tools .wt-anti-spoiler-btn {
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-detail-stats-grid,
    body[data-wt-page-type="detail"] .wt-user-journey-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-route-map-head .wt-detail-subtitle {
        max-width: none;
    }
}

/* Walkthrough Detail Hero Actions Correction */
body[data-wt-page-type="detail"] .wt-detail-actions {
    width: min(640px, 100%);
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary--single {
    grid-template-columns: 1fr;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary .wt-continue-btn {
    grid-column: 1;
    grid-row: 1;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary .wt-detail-next-btn {
    grid-column: 2;
    grid-row: 1;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary--single .wt-continue-btn {
    grid-column: 1 / -1;
}

body[data-wt-page-type="detail"] .wt-continue-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 28px;
    margin: -2px 0 0;
    padding: 6px 10px;
    border: 1px solid rgba(197, 207, 232, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
}

body[data-wt-page-type="detail"] .wt-continue-meta[hidden] {
    display: none;
}

body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-wt-page-type="detail"] .wt-detail-actions-secondary--single {
    grid-template-columns: 1fr;
}

body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions a {
    min-height: 46px;
}

body[data-wt-page-type="detail"] .wt-detail-next-meta {
    min-width: 34px;
    height: 24px;
    margin-left: 4px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .32);
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-detail-actions,
    body[data-wt-page-type="detail"] .wt-detail-actions-primary,
    body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
        width: 100%;
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-detail-actions-primary .wt-continue-btn,
    body[data-wt-page-type="detail"] .wt-detail-actions-primary .wt-detail-next-btn,
    body[data-wt-page-type="detail"] .wt-continue-meta {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* Walkthrough Detail Hero Composition */
body[data-wt-page-type="detail"] .wt-wt-hero {
    overflow: hidden;
}

body[data-wt-page-type="detail"] .wt-wt-hero-grid {
    padding-bottom: 20px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-top {
    margin-bottom: 12px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-top .wt-breadcrumbs {
    width: 100%;
}

body[data-wt-page-type="detail"] .wt-wt-hero-headline {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
}

body[data-wt-page-type="detail"] .wt-wt-hero-poster {
    width: 100%;
    min-height: 258px;
    aspect-ratio: 3 / 4;
}

body[data-wt-page-type="detail"] .wt-detail-copy {
    align-content: center;
    gap: 11px;
}

body[data-wt-page-type="detail"] .wt-detail-kicker {
    width: fit-content;
}

body[data-wt-page-type="detail"] .wt-detail-title {
    max-width: 690px;
    font-size: clamp(1.22rem, 2.1vw, 1.48rem);
    line-height: 1.32;
}

body[data-wt-page-type="detail"] .wt-detail-game {
    font-size: .94rem;
}

body[data-wt-page-type="detail"] .wt-detail-hero-chip--updated {
    color: #efeaff;
    background: rgba(125, 99, 232, .1);
    border-color: rgba(143, 116, 255, .2);
}

body[data-wt-page-type="detail"] .wt-detail-desc {
    max-width: 720px;
    font-size: .94rem;
    line-height: 1.7;
}

body[data-wt-page-type="detail"] .wt-meta-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px;
    border: 1px solid rgba(197, 207, 232, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

body[data-wt-page-type="detail"] .wt-meta-card {
    min-height: 44px;
    padding: 7px 8px;
    border: 0;
    background: transparent;
}

body[data-wt-page-type="detail"] .wt-meta-card-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    font-size: .68rem;
}

body[data-wt-page-type="detail"] .wt-meta-card-content {
    gap: 2px;
}

body[data-wt-page-type="detail"] .wt-meta-card-label {
    font-size: .64rem;
}

body[data-wt-page-type="detail"] .wt-meta-card-value {
    font-size: .78rem;
    line-height: 1.2;
}

body[data-wt-page-type="detail"] .wt-detail-actions {
    width: min(680px, 100%);
    padding: 10px;
    border: 1px solid rgba(197, 207, 232, .11);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018)),
        rgba(8, 10, 16, .42);
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary,
body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions a {
    min-height: 44px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-wt-hero .wt-continue-btn {
    box-shadow: 0 12px 24px rgba(93, 72, 195, .26);
}

body[data-wt-page-type="detail"] .wt-continue-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 4px;
    min-height: 30px;
    margin: 0;
    color: var(--wt-muted-copy);
}

body[data-wt-page-type="detail"] .wt-continue-meta__title {
    color: var(--wt-copy);
    font-weight: 700;
}

@media (min-width: 1041px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        padding: 22px;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-detail-actions {
        max-width: 680px;
    }
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 176px minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-poster {
        min-height: 232px;
    }
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-headline {
        grid-template-columns: 1fr;
        align-items: start;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero-poster {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-detail-actions {
        padding: 8px;
    }
}

@media (max-width: 460px) {
    body[data-wt-page-type="detail"] .wt-detail-title {
        font-size: 1.08rem;
    }

    body[data-wt-page-type="detail"] .wt-meta-row {
        grid-template-columns: 1fr;
    }
}

/* Walkthrough Detail Action Zone Width */
body[data-wt-page-type="detail"] .wt-detail-actions {
    width: 100%;
    max-width: 100%;
    justify-self: start;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary,
body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
    width: 100%;
}

body[data-wt-page-type="detail"] .wt-detail-actions-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions-primary a,
body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions-secondary a {
    white-space: nowrap;
}

body[data-wt-page-type="detail"] .wt-continue-meta {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 761px) {
    body[data-wt-page-type="detail"] .wt-detail-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-detail-actions-primary,
    body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
        max-width: none;
    }
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-detail-actions {
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-detail-actions-primary,
    body[data-wt-page-type="detail"] .wt-detail-actions-secondary {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions-primary a,
    body[data-wt-page-type="detail"] .wt-wt-hero .wt-detail-actions-secondary a {
        white-space: normal;
    }
}

/* Walkthrough Detail Split Hero Surfaces */
body[data-wt-page-type="detail"] .wt-wt-hero {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-wt-hero::before {
    display: none;
}

body[data-wt-page-type="detail"] .wt-wt-hero-grid {
    padding: 0;
    align-items: start;
}

body[data-wt-page-type="detail"] .wt-wt-hero-main {
    padding: 22px;
    border: 1px solid var(--wt-line-strong);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .97), rgba(15, 17, 27, .95) 58%, rgba(10, 18, 20, .94)),
        linear-gradient(90deg, rgba(125, 99, 232, .08), rgba(79, 185, 157, .07));
    box-shadow: 0 22px 56px rgba(0, 0, 0, .32);
}

body[data-wt-page-type="detail"] .wt-wt-hero-side {
    align-self: start;
}

body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
    border: 1px solid var(--wt-line-strong);
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-wt-hero-main {
        padding: 14px;
        border-radius: 10px;
    }
}

/* Walkthrough Detail Side Panel Polish */
body[data-wt-page-type="detail"] .wt-wt-hero-side .wt-detail-panel {
    gap: 10px;
    padding: 14px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-title {
    max-width: 132px;
    font-size: .96rem;
    line-height: 1.28;
}

body[data-wt-page-type="detail"] .wt-detail-panel-tools .wt-anti-spoiler-btn {
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: .78rem;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary {
    padding: 12px;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__title {
    font-size: .9rem;
}

body[data-wt-page-type="detail"] .wt-detail-panel-summary__text {
    font-size: .76rem;
}

body[data-wt-page-type="detail"] .wt-detail-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-detail-stat {
    min-width: 0;
    min-height: 54px;
    padding: 9px 10px;
}

body[data-wt-page-type="detail"] .wt-detail-stat-label {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.25;
}

body[data-wt-page-type="detail"] .wt-route-map {
    padding-top: 2px;
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-route-map-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
}

body[data-wt-page-type="detail"] .wt-route-map-head .wt-detail-subtitle {
    max-width: none;
    margin: 0;
    min-width: 0;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
}

body[data-wt-page-type="detail"] .wt-route-map-next {
    min-width: 0;
    min-height: 32px;
    padding: 7px 8px;
    justify-content: center;
    line-height: 1.15;
    white-space: nowrap;
    font-size: .7rem;
}

body[data-wt-page-type="detail"] .wt-route-map-track {
    min-height: 24px;
    padding: 6px 9px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-route-map-meta {
    gap: 6px;
    margin-top: 2px;
}

body[data-wt-page-type="detail"] .wt-route-map-meta-item {
    min-height: 28px;
    padding: 5px 8px;
    border-radius: 999px;
}

body[data-wt-page-type="detail"] .wt-user-journey {
    padding-top: 2px;
}

body[data-wt-page-type="detail"] .wt-user-journey .wt-detail-subtitle {
    font-size: .9rem;
}

body[data-wt-page-type="detail"] .wt-user-journey-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-wt-page-type="detail"] .wt-user-journey-stat {
    min-width: 0;
    min-height: 58px;
    padding: 9px;
}

body[data-wt-page-type="detail"] .wt-user-journey-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body[data-wt-page-type="detail"] .wt-user-journey-cta {
    padding: 10px;
}

body[data-wt-page-type="detail"] .wt-user-journey-cta-title {
    line-height: 1.3;
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-detail-panel-title {
        max-width: none;
    }
}

/* Walkthrough Detail Section Nav Polish */
body[data-wt-page-type="detail"] .wt-detail-nav {
    padding: 12px 16px 0;
}

body[data-wt-page-type="detail"] .wt-detail-nav-inner {
    width: fit-content;
    max-width: min(var(--wt-detail-max), calc(100vw - 32px));
    margin: 0 auto;
    gap: 6px;
    padding: 6px;
    border-radius: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

body[data-wt-page-type="detail"] .wt-detail-nav-inner::-webkit-scrollbar {
    display: none;
}

body[data-wt-page-type="detail"] .wt-detail-nav-link {
    min-height: 34px;
    padding: 5px 9px 5px 6px;
    border-radius: 8px;
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-detail-nav-icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    font-size: .68rem;
}

body[data-wt-page-type="detail"] .wt-detail-nav-badge {
    min-width: 22px;
    height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: .68rem;
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-detail-nav {
        padding: 8px 10px 0;
    }

    body[data-wt-page-type="detail"] .wt-detail-nav-inner {
        width: 100%;
        max-width: none;
        margin: 0;
        justify-content: flex-start;
    }
}

/* Walkthrough Detail Overview Polish */
body[data-wt-page-type="detail"] #wt-game-info {
    padding-top: 34px;
    padding-bottom: 40px;
}

body[data-wt-page-type="detail"] .wt-game-info-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--wt-line);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .86), rgba(14, 16, 25, .74)),
        rgba(255, 255, 255, .018);
}

body[data-wt-page-type="detail"] .wt-game-info-card::before {
    display: none;
}

body[data-wt-page-type="detail"] .wt-game-info-head {
    grid-template-columns: 128px minmax(0, 1fr) 260px;
    gap: 16px;
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-game-info-head--no-score {
    grid-template-columns: 128px minmax(0, 1fr);
}

body[data-wt-page-type="detail"] .wt-game-cover-wrap {
    width: 128px;
}

body[data-wt-page-type="detail"] .wt-game-cover {
    height: 174px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-game-info-copy {
    align-content: center;
}

body[data-wt-page-type="detail"] .wt-game-info-kicker {
    width: fit-content;
    margin-bottom: 9px;
}

body[data-wt-page-type="detail"] .wt-game-info-title {
    margin-bottom: 6px;
    font-size: 1.08rem;
}

body[data-wt-page-type="detail"] .wt-game-info-game-title {
    margin-bottom: 8px;
}

body[data-wt-page-type="detail"] .wt-game-info-desc {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: .9rem;
    line-height: 1.62;
}

body[data-wt-page-type="detail"] .wt-game-info-head--no-score .wt-game-info-desc {
    max-width: 920px;
}

body[data-wt-page-type="detail"] .wt-game-info-tags {
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-game-tag {
    min-height: 28px;
    padding: 5px 9px;
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-game-score-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
}

body[data-wt-page-type="detail"] .wt-game-score-item {
    min-height: 0;
    padding: 10px 11px;
    border: 1px solid var(--wt-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
}

body[data-wt-page-type="detail"] .wt-game-score-label {
    font-size: .64rem;
}

body[data-wt-page-type="detail"] .wt-game-score-value {
    margin-top: 6px;
    color: var(--wt-dim-copy);
    font-size: .9rem;
}

body[data-wt-page-type="detail"] .wt-game-info-grid {
    margin-top: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

body[data-wt-page-type="detail"] .wt-game-info-item {
    min-height: 52px;
    padding: 9px 10px;
}

body[data-wt-page-type="detail"] .wt-game-info-label {
    font-size: .66rem;
}

body[data-wt-page-type="detail"] .wt-game-info-value {
    font-size: .84rem;
}

body[data-wt-page-type="detail"] .wt-game-info-highlights {
    margin-top: 0;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-game-info-link,
body[data-wt-page-type="detail"] .wt-game-info-badge {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .78rem;
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-game-info-head {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-game-info-head--no-score {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    body[data-wt-page-type="detail"] .wt-game-cover-wrap {
        width: 120px;
    }

    body[data-wt-page-type="detail"] .wt-game-score-panel {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-game-info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-game-info-card {
        padding: 14px;
    }

    body[data-wt-page-type="detail"] .wt-game-info-head,
    body[data-wt-page-type="detail"] .wt-game-score-panel {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-game-info-head--no-score {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-game-cover-wrap {
        width: 132px;
        max-width: 48vw;
    }

    body[data-wt-page-type="detail"] .wt-game-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 460px) {
    body[data-wt-page-type="detail"] .wt-game-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Walkthrough Detail Contents Polish */
body[data-wt-page-type="detail"] #wt-contents {
    padding-top: 34px;
    padding-bottom: 40px;
}

body[data-wt-page-type="detail"] .wt-contents-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--wt-line);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .86), rgba(14, 16, 25, .74)),
        rgba(255, 255, 255, .018);
}

body[data-wt-page-type="detail"] .wt-contents-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 0;
}

body[data-wt-page-type="detail"] .wt-contents-copy {
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-contents-subtitle {
    max-width: 54ch;
    margin-top: 6px;
    font-size: .86rem;
    line-height: 1.5;
}

body[data-wt-page-type="detail"] .wt-contents-overview {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    white-space: normal;
}

body[data-wt-page-type="detail"] .wt-contents-overview span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid var(--wt-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: var(--wt-muted-copy);
    font-size: .76rem;
    font-weight: 700;
}

body[data-wt-page-type="detail"] .wt-contents-overview i {
    color: #a991ff;
}

body[data-wt-page-type="detail"] .wt-contents-route {
    margin-bottom: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(125, 99, 232, .08), rgba(77, 159, 138, .05)),
        rgba(255, 255, 255, .03);
}

body[data-wt-page-type="detail"] .wt-contents-route-copy {
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-contents-route-kicker {
    color: var(--wt-dim-copy);
    font-size: .7rem;
}

body[data-wt-page-type="detail"] .wt-contents-route-copy strong {
    font-size: .98rem;
}

body[data-wt-page-type="detail"] .wt-contents-progress {
    width: 100%;
    max-width: 420px;
    height: 6px;
}

body[data-wt-page-type="detail"] .wt-contents-actions {
    flex-wrap: nowrap;
    align-items: center;
}

body[data-wt-page-type="detail"] .wt-contents-action {
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 8px;
    white-space: nowrap;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

body[data-wt-page-type="detail"] .wt-contents-action:hover {
    transform: translateY(-1px);
    border-color: rgba(169, 145, 255, .32);
    background: rgba(255, 255, 255, .07);
}

body[data-wt-page-type="detail"] .wt-contents-action--primary:hover {
    background: linear-gradient(135deg, var(--wt-action), var(--wt-action-strong));
}

body[data-wt-page-type="detail"] .wt-contents-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

body[data-wt-page-type="detail"] .wt-contents-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 66px;
    padding: 11px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .032);
    border-color: var(--wt-line);
}

body[data-wt-page-type="detail"] a.wt-contents-item {
    border-color: rgba(169, 145, 255, .22);
}

body[data-wt-page-type="detail"] a.wt-contents-item:hover {
    background: rgba(125, 99, 232, .11);
    border-color: rgba(169, 145, 255, .38);
}

body[data-wt-page-type="detail"] .wt-contents-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(125, 99, 232, .12);
}

body[data-wt-page-type="detail"] .wt-contents-item-icon i {
    color: #a991ff;
    font-size: .95rem;
}

body[data-wt-page-type="detail"] .wt-contents-item-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-contents-item-label {
    margin-bottom: 0;
    color: var(--wt-dim-copy);
    font-size: .72rem;
    line-height: 1.25;
}

body[data-wt-page-type="detail"] .wt-contents-item-value {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1;
}

body[data-wt-page-type="detail"] .wt-contents-item--disabled {
    opacity: 1;
    background: rgba(255, 255, 255, .018);
}

body[data-wt-page-type="detail"] .wt-contents-item--disabled .wt-contents-item-icon {
    background: rgba(255, 255, 255, .035);
}

body[data-wt-page-type="detail"] .wt-contents-item--disabled .wt-contents-item-icon i,
body[data-wt-page-type="detail"] .wt-contents-item--disabled .wt-contents-item-value {
    color: rgba(255, 255, 255, .38);
}

body[data-wt-page-type="detail"] .wt-contents-foot {
    display: flex;
    margin-top: 0;
}

body[data-wt-page-type="detail"] .wt-contents-foot-link {
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--wt-muted-copy);
    font-size: .82rem;
    font-weight: 700;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

body[data-wt-page-type="detail"] .wt-contents-foot-link:hover {
    color: #fff;
    border-color: rgba(169, 145, 255, .25);
    background: rgba(255, 255, 255, .045);
}

body[data-wt-page-type="detail"] .wt-contents-foot-link i {
    color: #a991ff;
}

@media (max-width: 900px) {
    body[data-wt-page-type="detail"] .wt-contents-head,
    body[data-wt-page-type="detail"] .wt-contents-route {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-contents-overview,
    body[data-wt-page-type="detail"] .wt-contents-actions {
        justify-content: flex-start;
    }

    body[data-wt-page-type="detail"] .wt-contents-actions {
        flex-wrap: wrap;
    }

    body[data-wt-page-type="detail"] .wt-contents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body[data-wt-page-type="detail"] .wt-contents-card {
        padding: 14px;
    }

    body[data-wt-page-type="detail"] .wt-contents-overview {
        display: grid;
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-contents-actions,
    body[data-wt-page-type="detail"] .wt-contents-action,
    body[data-wt-page-type="detail"] .wt-contents-foot-link {
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-contents-grid {
        grid-template-columns: 1fr;
    }
}

/* Walkthrough Detail Latest Episodes Polish */
body[data-wt-page-type="detail"] #wt-latest-episodes {
    padding-top: 34px;
    padding-bottom: 44px;
}

body[data-wt-page-type="detail"] .wt-latest-shell {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--wt-line);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .86), rgba(14, 16, 25, .74)),
        rgba(255, 255, 255, .018);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-latest-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 0;
}

body[data-wt-page-type="detail"] .wt-latest-copy {
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-latest-subtitle {
    max-width: 52ch;
    margin: 4px 0 0;
    font-size: .86rem;
    line-height: 1.5;
}

body[data-wt-page-type="detail"] .wt-latest-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

body[data-wt-page-type="detail"] .wt-latest-overview {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

body[data-wt-page-type="detail"] .wt-latest-overview-item {
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--wt-muted-copy);
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
    font-size: .74rem;
    font-weight: 700;
}

body[data-wt-page-type="detail"] .wt-latest-overview-item i {
    color: #a991ff;
}

body[data-wt-page-type="detail"] .wt-latest-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(202, 190, 255, .28);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--wt-action), var(--wt-action-strong));
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body[data-wt-page-type="detail"] .wt-latest-all:hover {
    transform: translateY(-1px);
    border-color: rgba(225, 218, 255, .42);
    box-shadow: 0 12px 28px rgba(87, 66, 188, .22);
}

body[data-wt-page-type="detail"] .wt-latest-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 12px;
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-latest-card,
body[data-wt-page-type="detail"] .wt-latest-card--lead {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    grid-column: auto;
    min-width: 0;
    min-height: 0;
    border-radius: 10px;
    border-color: var(--wt-line);
    background: rgba(12, 14, 22, .78);
    box-shadow: none;
    overflow: hidden;
}

body[data-wt-page-type="detail"] .wt-latest-card:hover {
    transform: translateY(-2px);
    border-color: rgba(169, 145, 255, .36);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-thumb,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-thumb {
    height: 208px;
    min-height: 0;
    padding-bottom: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(138, 109, 233, .12);
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-body,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-body {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
}

body[data-wt-page-type="detail"] .wt-latest-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-title,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-title {
    margin-bottom: 0;
    color: #fff;
    font-size: .92rem;
    line-height: 1.42;
    -webkit-line-clamp: 2;
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-desc,
body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-desc {
    margin-bottom: 0;
    color: var(--wt-muted-copy);
    font-size: .78rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

body[data-wt-page-type="detail"] .wt-latest-date {
    padding: 3px 7px;
    border-radius: 999px;
    color: var(--wt-muted-copy);
    font-size: .64rem;
}

body[data-wt-page-type="detail"] .wt-latest-order,
body[data-wt-page-type="detail"] .wt-latest-fresh {
    top: 10px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-latest-order {
    left: 10px;
}

body[data-wt-page-type="detail"] .wt-latest-fresh {
    right: 10px;
}

body[data-wt-page-type="detail"] .wt-latest-card-bottom {
    align-self: end;
    margin-top: 0;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-meta {
    gap: 10px;
    color: var(--wt-muted-copy);
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-latest-open {
    width: 26px;
    height: 26px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-latest-cta {
    display: none;
}

@media (max-width: 900px) {
    body[data-wt-page-type="detail"] .wt-latest-head {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-latest-side,
    body[data-wt-page-type="detail"] .wt-latest-overview {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    body[data-wt-page-type="detail"] .wt-latest-shell {
        padding: 14px;
    }

    body[data-wt-page-type="detail"] .wt-latest-side,
    body[data-wt-page-type="detail"] .wt-latest-overview {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-latest-all {
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-latest-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-latest-card .wt-ep-thumb,
    body[data-wt-page-type="detail"] .wt-latest-card--lead .wt-ep-thumb {
        height: auto;
        padding-bottom: 56.25%;
    }
}

/* Walkthrough Detail Top Episodes Polish */
body[data-wt-page-type="detail"] #wt-top-episodes {
    padding-top: 34px;
    padding-bottom: 44px;
}

body[data-wt-page-type="detail"] .wt-top-shell {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--wt-line);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .86), rgba(16, 15, 22, .76)),
        rgba(255, 255, 255, .018);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-top-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 0;
}

body[data-wt-page-type="detail"] .wt-top-copy {
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-top-subtitle {
    max-width: 52ch;
    margin: 4px 0 0;
    font-size: .86rem;
    line-height: 1.5;
}

body[data-wt-page-type="detail"] .wt-top-overview {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

body[data-wt-page-type="detail"] .wt-top-overview-item {
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--wt-muted-copy);
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
    font-size: .74rem;
    font-weight: 700;
}

body[data-wt-page-type="detail"] .wt-top-overview-item i {
    color: #f0bf63;
}

body[data-wt-page-type="detail"] .wt-top-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 12px;
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-top-card,
body[data-wt-page-type="detail"] .wt-top-card--champ {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    grid-column: auto;
    min-width: 0;
    min-height: 0;
    border-radius: 10px;
    border-color: var(--wt-line);
    background: rgba(12, 14, 22, .78);
    box-shadow: none;
    overflow: hidden;
}

body[data-wt-page-type="detail"] .wt-top-card:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 191, 99, .34);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

body[data-wt-page-type="detail"] .wt-top-card .wt-ep-thumb,
body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-thumb {
    height: 208px;
    min-height: 0;
    padding-bottom: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 191, 99, .14);
}

body[data-wt-page-type="detail"] .wt-top-card .wt-ep-body,
body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-body {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 8px;
    padding: 12px;
}

body[data-wt-page-type="detail"] .wt-top-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-top-card .wt-ep-title,
body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-title {
    margin-bottom: 0;
    color: #fff;
    font-size: .92rem;
    line-height: 1.42;
    -webkit-line-clamp: 2;
}

body[data-wt-page-type="detail"] .wt-top-card .wt-ep-desc,
body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-desc {
    margin-bottom: 0;
    color: var(--wt-muted-copy);
    font-size: .78rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

body[data-wt-page-type="detail"] .wt-top-views {
    padding: 3px 8px;
    border-radius: 999px;
    border-color: rgba(240, 191, 99, .32);
    background: rgba(240, 191, 99, .1);
    color: #f3cf83;
    font-size: .68rem;
}

body[data-wt-page-type="detail"] .wt-top-rank,
body[data-wt-page-type="detail"] .wt-top-medal {
    top: 10px;
    border-radius: 8px;
}

body[data-wt-page-type="detail"] .wt-top-rank {
    left: 10px;
}

body[data-wt-page-type="detail"] .wt-top-medal {
    right: 10px;
}

body[data-wt-page-type="detail"] .wt-top-card-bottom {
    align-self: end;
    margin-top: 0;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-top-card .wt-ep-meta {
    gap: 10px;
    color: var(--wt-muted-copy);
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-top-card .wt-ep-meta span {
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-top-open {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border-color: rgba(240, 191, 99, .32);
    background: rgba(240, 191, 99, .1);
    color: #f0bf63;
}

body[data-wt-page-type="detail"] .wt-top-card:hover .wt-top-open {
    background: rgba(240, 191, 99, .18);
    color: #fff;
}

@media (max-width: 900px) {
    body[data-wt-page-type="detail"] .wt-top-head {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-top-overview {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    body[data-wt-page-type="detail"] .wt-top-shell {
        padding: 14px;
    }

    body[data-wt-page-type="detail"] .wt-top-overview {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-top-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-top-card .wt-ep-thumb,
    body[data-wt-page-type="detail"] .wt-top-card--champ .wt-ep-thumb {
        height: auto;
        padding-bottom: 56.25%;
    }
}

/* Walkthrough Detail Related Polish */
body[data-wt-page-type="detail"] #wt-related {
    padding-top: 34px;
    padding-bottom: 44px;
}

body[data-wt-page-type="detail"] .wt-related-shell {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--wt-line);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .86), rgba(14, 17, 25, .76)),
        rgba(255, 255, 255, .018);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-related-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 0;
}

body[data-wt-page-type="detail"] .wt-related-copy {
    min-width: 0;
}

body[data-wt-page-type="detail"] .wt-related-subtitle {
    max-width: 52ch;
    margin: 4px 0 0;
    font-size: .86rem;
    line-height: 1.5;
}

body[data-wt-page-type="detail"] .wt-related-overview {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

body[data-wt-page-type="detail"] .wt-related-overview-item {
    min-height: 28px;
    max-width: 260px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--wt-muted-copy);
    background: rgba(255, 255, 255, .035);
    border-color: var(--wt-line);
    font-size: .74rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}

body[data-wt-page-type="detail"] .wt-related-overview-item i {
    color: #9ec0ff;
}

body[data-wt-page-type="detail"] .wt-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

body[data-wt-page-type="detail"] .wt-related-card,
body[data-wt-page-type="detail"] .wt-related-card--feature {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    grid-column: auto;
    min-width: 0;
    min-height: 0;
    border-radius: 10px;
    border-color: var(--wt-line);
    background: rgba(12, 14, 22, .78);
    box-shadow: none;
    overflow: hidden;
}

body[data-wt-page-type="detail"] .wt-related-card:hover {
    transform: translateY(-2px);
    border-color: rgba(158, 192, 255, .34);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

body[data-wt-page-type="detail"] .wt-related-card .wt-card-thumb,
body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-thumb,
body[data-wt-page-type="detail"] .wt-related-card:not(.wt-related-card--feature) .wt-card-thumb {
    height: 168px;
    min-height: 0;
    padding-bottom: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(120, 162, 255, .14);
}

body[data-wt-page-type="detail"] .wt-related-card .wt-card-body,
body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-body,
body[data-wt-page-type="detail"] .wt-related-card:not(.wt-related-card--feature) .wt-card-body {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    align-content: start;
    gap: 7px;
    padding: 12px;
}

body[data-wt-page-type="detail"] .wt-related-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-related-card .wt-card-title,
body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-title {
    margin-bottom: 0;
    color: #fff;
    font-size: .88rem;
    line-height: 1.38;
    -webkit-line-clamp: 2;
}

body[data-wt-page-type="detail"] .wt-related-game {
    margin-bottom: 0;
    color: var(--wt-muted-copy);
    font-size: .76rem;
}

body[data-wt-page-type="detail"] .wt-related-card .wt-card-meta {
    align-self: end;
    gap: 8px;
    margin-bottom: 0;
    color: var(--wt-muted-copy);
    font-size: .72rem;
}

body[data-wt-page-type="detail"] .wt-related-card .wt-difficulty,
body[data-wt-page-type="detail"] .wt-related-card .wt-card-episodes,
body[data-wt-page-type="detail"] .wt-related-card .wt-card-date {
    font-size: .68rem;
}

body[data-wt-page-type="detail"] .wt-related-ribbon,
body[data-wt-page-type="detail"] .wt-related-card .wt-status {
    top: 10px;
    border-radius: 8px;
    font-size: .58rem;
}

body[data-wt-page-type="detail"] .wt-related-ribbon {
    right: 10px;
    padding: 4px 8px;
}

body[data-wt-page-type="detail"] .wt-related-card .wt-status {
    left: 10px;
    padding: 4px 9px;
}

body[data-wt-page-type="detail"] .wt-related-open {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border-color: rgba(158, 192, 255, .32);
    background: rgba(158, 192, 255, .1);
    color: #9ec0ff;
}

body[data-wt-page-type="detail"] .wt-related-card:hover .wt-related-open {
    background: rgba(158, 192, 255, .18);
    color: #fff;
}

body[data-wt-page-type="detail"] .wt-related-card .wt-card-link {
    display: none;
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body[data-wt-page-type="detail"] .wt-related-head {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-related-overview {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    body[data-wt-page-type="detail"] .wt-related-shell {
        padding: 14px;
    }

    body[data-wt-page-type="detail"] .wt-related-overview {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-related-overview-item {
        max-width: none;
    }

    body[data-wt-page-type="detail"] .wt-related-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-related-card .wt-card-thumb,
    body[data-wt-page-type="detail"] .wt-related-card--feature .wt-card-thumb,
    body[data-wt-page-type="detail"] .wt-related-card:not(.wt-related-card--feature) .wt-card-thumb {
        height: auto;
        padding-bottom: 56.25%;
    }
}

/* Walkthrough Detail Related: five-card balance */
body[data-wt-page-type="detail"] .wt-related-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

body[data-wt-page-type="detail"] .wt-related-card,
body[data-wt-page-type="detail"] .wt-related-card--feature {
    grid-column: span 2;
}

body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5),
body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5) + .wt-related-card {
    grid-column: span 3;
}

body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5) .wt-card-thumb,
body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5) + .wt-related-card .wt-card-thumb {
    height: 186px;
}

@media (max-width: 1040px) {
    body[data-wt-page-type="detail"] .wt-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body[data-wt-page-type="detail"] .wt-related-card,
    body[data-wt-page-type="detail"] .wt-related-card--feature,
    body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5),
    body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5) + .wt-related-card {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    body[data-wt-page-type="detail"] .wt-related-grid {
        grid-template-columns: 1fr;
    }

    body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5) .wt-card-thumb,
    body[data-wt-page-type="detail"] .wt-related-card:first-child:nth-last-child(5) + .wt-related-card .wt-card-thumb {
        height: auto;
        padding-bottom: 56.25%;
    }
}

/* Walkthrough Detail Share Polish */
body[data-wt-page-type="detail"] #wt-share-walkthrough {
    padding-top: 30px;
    padding-bottom: 34px;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 0;
    padding: 16px 18px;
    border: 1px solid var(--wt-line);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(10, 11, 18, .88), rgba(14, 17, 25, .76)),
        rgba(255, 255, 255, .018);
    box-shadow: none;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp::before {
    display: none;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-social-bar__copy {
    display: grid;
    gap: 7px;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-social-bar__kicker {
    width: fit-content;
    margin-bottom: 0;
    padding: 5px 9px;
    border-radius: 8px;
    color: #dcd5f1;
    font-size: .64rem;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-social-bar__title {
    margin: 0;
    color: #fff;
    font-size: .98rem;
    line-height: 1.35;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-social-bar__subtitle {
    max-width: 58ch;
    margin: 0;
    color: var(--wt-muted-copy);
    font-size: .82rem;
    line-height: 1.48;
}

body[data-wt-page-type="detail"] .wt-social-bar__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

body[data-wt-page-type="detail"] .wt-social-bar__meta span,
body[data-wt-page-type="detail"] .wt-social-bar__meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid var(--wt-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: var(--wt-muted-copy);
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
}

body[data-wt-page-type="detail"] .wt-social-bar__meta i {
    color: #7fd7c2;
}

body[data-wt-page-type="detail"] .wt-social-bar__meta a:hover {
    color: #fff;
    border-color: rgba(127, 215, 194, .32);
    background: rgba(77, 159, 138, .1);
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-social-bar__actions {
    align-self: stretch;
    display: grid;
    align-items: center;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-btn {
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 9px;
    border-color: rgba(202, 190, 255, .28);
    background: rgba(125, 99, 232, .14);
    font-size: .82rem;
    white-space: nowrap;
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-btn:hover {
    border-color: rgba(225, 218, 255, .42);
    background: rgba(125, 99, 232, .22);
}

body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-dropdown {
    right: 0;
    min-width: 240px;
    border-radius: 10px;
    border-color: var(--wt-line);
    background: rgba(14, 16, 25, .98);
}

@media (max-width: 760px) {
    body[data-wt-page-type="detail"] .wt-social-bar--revamp {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-social-bar__actions,
    body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-wrap,
    body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-btn {
        width: 100%;
    }

    body[data-wt-page-type="detail"] .wt-social-bar--revamp .wt-share-dropdown {
        left: 0;
        right: auto;
        width: 100%;
    }
}

@media (max-width: 460px) {
    body[data-wt-page-type="detail"] .wt-social-bar__meta {
        display: grid;
        grid-template-columns: 1fr;
    }
}
