:root {
    --tl-bg: #f4f5f7;
    --tl-surface: #ffffff;
    --tl-ink: #17191d;
    --tl-muted: #666b74;
    --tl-line: #e1e4e8;
    --tl-red: #e10600;
    --tl-red-dark: #a90905;
    --tl-radius: 18px;
    --tl-shadow: 0 12px 34px rgba(22, 25, 29, .08);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--tl-bg);
    color: var(--tl-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55;
}
a { color: var(--tl-red-dark); }
img { max-width: 100%; }
.tl-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.tl-site-header {
    background: #111317;
    color: #fff;
    border-bottom: 4px solid var(--tl-red);
}
.tl-site-header .tl-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.tl-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.02em;
}
.tl-brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.32));
}
.tl-top-nav { display: flex; gap: 18px; align-items: center; }
.tl-top-nav a { color: #e7e7e7; text-decoration: none; font-size: 14px; }
.tl-top-nav a:hover { color: #fff; text-decoration: underline; }

.tl-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 56px;
    background:
        linear-gradient(135deg, rgba(225, 6, 0, .92), rgba(135, 6, 3, .96)),
        repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255,255,255,.09) 40px);
    color: #fff;
}
.tl-hero::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -90px;
    top: -150px;
    border: 54px solid rgba(255,255,255,.09);
    transform: rotate(24deg);
}
.tl-kicker {
    display: inline-flex;
    padding: 5px 11px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tl-hero h1 {
    max-width: 780px;
    margin: 14px 0 8px;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.03;
    letter-spacing: -.045em;
}
.tl-hero p { max-width: 690px; margin: 0; color: rgba(255,255,255,.9); font-size: 17px; }
.tl-search {
    position: relative;
    z-index: 1;
    max-width: 780px;
    display: flex;
    gap: 10px;
    margin-top: 26px;
    padding: 8px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(70, 0, 0, .26);
}
.tl-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 11px 13px;
    color: var(--tl-ink);
    font: inherit;
    outline: none;
}
.tl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 19px;
    border: 0;
    border-radius: 10px;
    background: var(--tl-red);
    color: #fff;
    font: inherit;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}
.tl-button:hover { background: var(--tl-red-dark); color: #fff; }
.tl-button-secondary { background: #262a30; }
.tl-button-secondary:hover { background: #0d0f12; }

.tl-main { padding: 42px 0 68px; }
.tl-latest { margin-bottom: 42px; }
.tl-process-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 42px;
    padding: 28px 30px;
    border: 1px solid var(--tl-line);
    border-left: 5px solid var(--tl-red);
    border-radius: var(--tl-radius);
    background: #fff;
    box-shadow: 0 8px 26px rgba(22, 25, 29, .06);
}
.tl-process-intro h2 { margin: 8px 0 10px; color: var(--tl-ink); font-size: clamp(22px, 3vw, 31px); }
.tl-process-intro p { max-width: 820px; margin: 0; color: var(--tl-muted); line-height: 1.72; }
.tl-process-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--tl-ink);
    color: #ffd84d;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .16s ease;
}
.tl-process-link:visited, .tl-process-link:hover { color: #ffd84d; }
.tl-process-link:hover { transform: translateY(-1px); }
.tl-section-heading { margin-bottom: 20px; }
.tl-section-heading h2, .tl-search-panel h2 {
    margin: 8px 0 4px;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.15;
    letter-spacing: -.03em;
}
.tl-section-heading p, .tl-search-panel p { margin: 0; color: var(--tl-muted); }
.tl-kicker-dark { border-color: #c9cdd2; color: var(--tl-red-dark); background: #fff; }
.tl-card-latest { border-color: #f1b9b7; box-shadow: 0 8px 26px rgba(126, 12, 8, .1); }
.tl-latest-label {
    position: absolute;
    z-index: 2;
    top: 13px;
    right: 13px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff;
    color: var(--tl-red-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.tl-search-panel {
    display: grid;
    grid-template-columns: minmax(220px, .75fr) minmax(360px, 1.25fr);
    align-items: center;
    gap: 28px;
    margin: 0 0 42px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--tl-line);
    border-left: 5px solid var(--tl-red);
    border-radius: var(--tl-radius);
    box-shadow: 0 8px 26px rgba(22, 25, 29, .06);
}
.tl-search-panel .tl-search {
    max-width: none;
    width: 100%;
    margin-top: 0;
    border: 1px solid var(--tl-line);
    box-shadow: none;
}
.tl-results-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 22px; }
.tl-results-head h2 { margin: 0; font-size: clamp(24px, 4vw, 34px); letter-spacing: -.025em; }
.tl-results-head p { margin: 4px 0 0; color: var(--tl-muted); }
.tl-reset { white-space: nowrap; font-size: 14px; }
.tl-results-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
.tl-sort { display: flex; align-items: center; gap: 8px; }
.tl-sort label { color: var(--tl-muted); font-size: 13px; font-weight: 700; }
.tl-sort select {
    min-height: 40px;
    padding: 7px 34px 7px 11px;
    border: 1px solid var(--tl-line);
    border-radius: 9px;
    background: #fff;
    color: var(--tl-ink);
    font: inherit;
    font-size: 14px;
}
.tl-sort button {
    min-height: 40px;
    padding: 7px 12px;
    border: 1px solid var(--tl-red);
    border-radius: 9px;
    background: #fff;
    color: var(--tl-red-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}
.tl-sort button:hover { background: var(--tl-red); color: #fff; }
.tl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.tl-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--tl-surface);
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
    box-shadow: 0 2px 4px rgba(20,25,30,.03);
    transition: transform .18s ease, box-shadow .18s ease;
}
.tl-card:hover { transform: translateY(-3px); box-shadow: var(--tl-shadow); }
.tl-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(145deg, #292d34, #101216);
    text-decoration: none;
}
.tl-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tl-card-media::after {
    content: "▶";
    position: absolute;
    left: 16px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding-left: 2px;
    border-radius: 50%;
    background: var(--tl-red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.28);
    font-size: 15px;
}
.tl-card-media-no-video { display: grid; place-items: center; color: #fff; }
.tl-card-media-no-video strong { max-width: 190px; text-align: center; font-size: 21px; line-height: 1.15; }
.tl-card-media-no-video::after { content: "AI"; padding: 0; font-size: 12px; font-weight: 800; }
.tl-card-body { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.tl-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--tl-muted); font-size: 12px; }
.tl-card-id { color: var(--tl-red-dark); font-weight: 800; }
.tl-card h3 { margin: 9px 0 8px; font-size: 19px; line-height: 1.25; letter-spacing: -.018em; }
.tl-card h3 a { color: var(--tl-ink); text-decoration: none; }
.tl-card h3 a:hover { color: var(--tl-red-dark); }
.tl-card-description { margin: 0 0 18px; color: var(--tl-muted); font-size: 14px; }
.tl-card-platforms { display: flex; flex-wrap: wrap; gap: 6px; margin: -3px 0 17px; }
.tl-platform-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .025em;
}
.tl-platform-badge:hover { color: #fff; filter: brightness(1.14); }
.tl-platform-youtube { background: #d90000; }
.tl-platform-instagram { background: #b52675; }
.tl-platform-tiktok, .tl-platform-x, .tl-platform-threads { background: #17191d; }
.tl-platform-bluesky { background: #0866c6; }
.tl-platform-tumblr { background: #30465d; }
.tl-card-cta { margin-top: auto; font-size: 14px; font-weight: 750; text-decoration: none; }

.tl-alert, .tl-empty {
    padding: 24px;
    background: var(--tl-surface);
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
}
.tl-alert { border-left: 5px solid var(--tl-red); }
.tl-empty { text-align: center; padding: 54px 24px; }
.tl-all-featured { padding: 20px; border: 1px dashed #c9cdd2; border-radius: 12px; color: var(--tl-muted); text-align: center; }
.tl-empty h1, .tl-empty h2, .tl-empty h3 { margin-top: 0; }
.tl-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 34px; }
.tl-pagination a, .tl-pagination span {
    min-width: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 8px 12px;
    border: 1px solid var(--tl-line);
    border-radius: 10px;
    background: #fff;
    color: var(--tl-ink);
    text-decoration: none;
    font-size: 14px;
}
.tl-pagination a:hover { border-color: var(--tl-red); color: var(--tl-red-dark); }
.tl-pagination .tl-current { background: var(--tl-red); border-color: var(--tl-red); color: #fff; font-weight: 800; }

.tl-breadcrumb { margin: 24px 0 18px; color: var(--tl-muted); font-size: 13px; }
.tl-breadcrumb a { color: var(--tl-muted); }
.tl-detail-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px;
    margin-bottom: 24px;
}
.tl-detail-header h1 { margin: 8px 0 7px; font-size: clamp(30px, 5vw, 50px); line-height: 1.08; letter-spacing: -.04em; }
.tl-detail-header p { margin: 0; color: var(--tl-muted); }
.tl-video {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0d0f12;
    border-radius: var(--tl-radius);
    box-shadow: var(--tl-shadow);
}
.tl-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tl-subscribe-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 16px;
    padding: 17px 20px;
    border-radius: 14px;
    background: #111317;
    color: #fff;
}
.tl-subscribe-callout div { display: grid; gap: 2px; }
.tl-subscribe-callout span { color: #cfd2d7; font-size: 13px; }
.tl-subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 15px;
    border-radius: 10px;
    background: var(--tl-red);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}
.tl-subscribe-button span { color: inherit; }
.tl-subscribe-button:hover, .tl-subscribe-button:focus { background: #ff1710; color: #fff; }
.tl-share-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
}
.tl-share-copy h2 { margin: 0 0 2px; font-size: 20px; letter-spacing: -.02em; }
.tl-share-copy p { margin: 0; color: var(--tl-muted); font-size: 13px; }
.tl-share-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.tl-share-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 7px 11px;
    border-radius: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 750;
}
.tl-share-button span {
    min-width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    font-size: 9px;
    font-weight: 900;
}
.tl-share-button:hover, .tl-share-button:focus { color: #fff; filter: brightness(1.1); }
.tl-share-whatsapp { background: #137333; }
.tl-share-facebook { background: #0866ff; }
.tl-share-x { background: #17191d; }
.tl-share-telegram { background: #168acd; }
.tl-share-email { background: #6b4f82; }
.tl-concept-panel {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #fff 72%, #f9e9e8 100%);
    border: 1px solid #edcfcd;
    border-left: 5px solid var(--tl-red);
    border-radius: var(--tl-radius);
}
.tl-concept-panel::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border: 32px solid rgba(225, 6, 0, .055);
    border-radius: 50%;
    pointer-events: none;
}
.tl-concept-panel > * { position: relative; z-index: 1; }
.tl-concept-eyebrow {
    color: var(--tl-red-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.tl-concept-panel h2 {
    max-width: 820px;
    margin: 6px 0 11px;
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.13;
    letter-spacing: -.03em;
}
.tl-concept-description {
    max-width: 900px;
    margin: 0;
    color: #3c4047;
    font-size: 16px;
}
.tl-youtube-title-en {
    max-width: 900px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #edcfcd;
}
.tl-youtube-title-en p {
    margin: 0;
    color: var(--tl-ink);
    font-size: 17px;
    font-weight: 750;
}
.tl-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 24px;
    margin-top: 24px;
}
.tl-panel { padding: 25px; background: var(--tl-surface); border: 1px solid var(--tl-line); border-radius: var(--tl-radius); }
.tl-panel h2 { margin: 0 0 12px; font-size: 23px; letter-spacing: -.02em; }
.tl-description { margin: 0; color: #343840; overflow-wrap: anywhere; }
.tl-language { margin-top: 22px; padding-top: 19px; border-top: 1px solid var(--tl-line); }
.tl-language summary { color: var(--tl-red-dark); font-weight: 750; cursor: pointer; }
.tl-language .tl-description { margin-top: 13px; }
.tl-facts { display: grid; gap: 14px; margin: 0; }
.tl-facts div { padding-bottom: 14px; border-bottom: 1px solid var(--tl-line); }
.tl-facts div:last-child { padding-bottom: 0; border-bottom: 0; }
.tl-facts dt { color: var(--tl-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.tl-facts dd { margin: 2px 0 0; font-weight: 700; }
.tl-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.tl-social-link { display: inline-flex; align-items: center; gap: 4px; padding: 8px 10px; border: 1px solid var(--tl-line); border-radius: 9px; color: var(--tl-ink); text-decoration: none; font-size: 13px; font-weight: 700; }
.tl-social-link:hover { border-color: var(--tl-red); color: var(--tl-red-dark); }
.tl-sequence-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.tl-sequence-link {
    display: grid;
    gap: 5px;
    min-height: 100px;
    padding: 19px 21px;
    border: 1px solid var(--tl-line);
    border-radius: 14px;
    background: #fff;
    color: var(--tl-ink);
    text-decoration: none;
    box-shadow: 0 7px 20px rgba(22, 25, 29, .05);
}
.tl-sequence-link span { color: var(--tl-red-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; }
.tl-sequence-link strong { line-height: 1.35; }
.tl-sequence-link:hover { border-color: #e5a8a5; color: var(--tl-ink); transform: translateY(-1px); }
.tl-sequence-next { grid-column: 2; text-align: right; }
.tl-related { margin-top: 42px; }
.tl-related h2 { font-size: 28px; letter-spacing: -.025em; }
.tl-seo-copy {
    margin-top: 44px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
    color: var(--tl-muted);
}
.tl-seo-copy h2 { margin-top: 0; color: var(--tl-ink); }
.tl-support {
    margin-top: 44px;
    padding: 26px;
    border: 1px solid var(--tl-line);
    border-radius: var(--tl-radius);
    background: linear-gradient(135deg, #fff 0%, #f8f9fb 100%);
    box-shadow: 0 10px 28px rgba(22, 25, 29, .06);
}
.tl-support-heading { margin-bottom: 18px; }
.tl-support-heading h2 { margin: 8px 0 3px; font-size: clamp(23px, 3vw, 30px); letter-spacing: -.025em; }
.tl-support-heading p { margin: 0; color: var(--tl-muted); }
.tl-support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.tl-support-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--tl-line);
    border-radius: 14px;
    background: #fff;
}
.tl-support-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}
.tl-support-amazon .tl-support-icon { background: #232f3e; color: #ffb000; }
.tl-support-nordvpn .tl-support-icon { background: #397ee4; }
.tl-support-card strong { display: block; margin-bottom: 4px; color: var(--tl-ink); }
.tl-support-card p { margin: 0; color: var(--tl-muted); font-size: 14px; }
.tl-affiliate-link { color: var(--tl-red-dark); font-weight: 800; }
.tl-affiliate-link:visited { color: var(--tl-red-dark); }
.tl-support > small { display: block; margin-top: 14px; color: var(--tl-muted); font-size: 11px; }
.tl-footer { padding: 32px 0; background: #111317; color: #b8bbc1; font-size: 13px; }
.tl-footer .tl-shell { display: flex; justify-content: space-between; gap: 18px; }
.tl-footer a { color: #fff; }
.tl-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 860px) {
    .tl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tl-content-grid { grid-template-columns: 1fr; }
    .tl-search-panel { grid-template-columns: 1fr; gap: 18px; }
    .tl-process-intro { grid-template-columns: 1fr; }
    .tl-process-link { justify-content: center; white-space: normal; }
    .tl-share-panel { align-items: flex-start; flex-direction: column; }
    .tl-share-actions { justify-content: flex-start; }
    .tl-subscribe-callout { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 590px) {
    .tl-shell { width: min(100% - 22px, 1120px); }
    .tl-site-header .tl-shell { min-height: 62px; }
    .tl-brand-logo { width: 43px; height: 43px; flex-basis: 43px; }
    .tl-top-nav a:not(:first-child) { display: none; }
    .tl-hero { padding: 42px 0; }
    .tl-hero p { font-size: 15px; }
    .tl-latest { margin-bottom: 30px; }
    .tl-process-intro { margin-bottom: 30px; padding: 22px 18px; }
    .tl-search-panel { margin-bottom: 32px; padding: 21px 17px; }
    .tl-search { display: grid; }
    .tl-search .tl-button { width: 100%; }
    .tl-share-actions { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tl-share-button { justify-content: center; }
    .tl-subscribe-button { width: 100%; }
    .tl-sequence-nav { grid-template-columns: 1fr; }
    .tl-sequence-next { grid-column: 1; }
    .tl-support { padding: 21px 17px; }
    .tl-support-grid { grid-template-columns: 1fr; }
    .tl-concept-panel { padding: 24px 20px; }
    .tl-main { padding-top: 30px; }
    .tl-grid { grid-template-columns: 1fr; }
    .tl-results-head, .tl-detail-header { display: block; }
    .tl-results-actions { justify-content: flex-start; margin-top: 14px; }
    .tl-detail-header .tl-button { display: inline-flex; margin-top: 14px; }
    .tl-footer .tl-shell { display: block; }
}
@media (prefers-reduced-motion: reduce) {
    .tl-card { transition: none; }
}
