/* ═══════════════════════════════════════════════════════════════════════════
 * ACE90 — استایل «افزوده‌ها»
 *
 * ⚠️ این فایل هیچ چیزی از دیزاین خودِ آس ۹۰ را عوض نمی‌کند.
 *    پوسته‌ی سایت (هدر، نوار منو، بنر، نوار بازی‌ها، فوتر، فونت) کاملاً از
 *    alive/assets/css/*.css می‌آید — همان فایل‌های خودِ سایت، بدون تغییر.
 *
 *    اینجا فقط دو چیز هست:
 *      ۱) چند خط اتصال برای رفتارهایی که در سایت اصلی جاوااسکریپت انجام می‌داد
 *      ۲) استایل محتوایی که ما اضافه کرده‌ایم — همه با پیشوند .tk-
 * ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --tk-bg: #1c1c1c;
  --tk-bg-2: #1a1819;
  --tk-bg-3: #171717;
  --tk-bar: #1c1c1c;
  --tk-line: #333333;
  --tk-line-soft: #262626;
  --tk-gold-2: #8f6a25;
  --tk-gold: #CD993D;
  --tk-accent: #CD993D;
  --tk-text: #e9e9e9;
  --tk-text-2: #acacac;
  --tk-text-3: #7d7d7d;
  --tk-neon: #CD993D;
  --tk-neon-2: #8f6a25;
  --tk-wrap: 100%;
}

/* ═══════════════════ ۱) رفتارهایی که در سایت اصلی با jQuery بود ════════
 * اسلایدر: همان انیمیشن margin-right از ۰٪ به ‎-۱۰۰٪‎ در ۵۰۰ میلی‌ثانیه.
 * منوی موبایل: همان لایه‌ی تمام‌صفحه که نمایش/پنهان می‌شود.
 * ═══════════════════════════════════════════════════════════════════════ */
/* در سایت اصلی ارتفاع این کادر را جاوااسکریپت روی «نصفِ عرض» ست می‌کند
   (۷۵۰ → ۳۷۵ روی دسکتاپ، ۳۹۰ → ۱۹۵ روی موبایل). همان نسبت را با aspect-ratio
   می‌سازیم تا از اولین فریم درست باشد و CLS صفر بماند. */
.main-splash .image-container {
  height: auto;
  aspect-ratio: 2 / 1;
}
.main-splash .image-container .image {
  transition: margin-right .5s ease;
  text-decoration: none;
}

/* بنرهای دو ستون کناری در مارک‌آپ اصلی width="100%" داشتند. ما به‌جای آن
   عرض و ارتفاع واقعی فایل را می‌نویسیم تا مرورگر از فریم اول جا رزرو کند
   (CLS صفر)، و همان «۱۰۰٪» را اینجا با CSS برمی‌گردانیم تا رندر مو‌به‌مو
   همان چیزی باشد که سایت اصلی نشان می‌دهد. */
.left-bar > a > img,
.right-bar .mt10 img { width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
  .main-splash .image-container .image { transition: none; }
}
.mobile-menu.open { display: block; }

/* ویژگی width/height روی تصویرها برای CLS اضافه شده؛ در مارک‌آپ اصلی
   نبودند، پس ارتفاع دوباره آزاد می‌شود تا نسبت تصویر همان بماند. */
.main-games-box .game img { height: auto; }
.header .left img, .mobile-bar .logo img { height: auto; }
.footer-download-link-icon, .custom-mobile-menu-items img { height: auto; }

/* ═══════════════════════ ۲) محتوای افزوده (.tk-*) ═════════════════════ */

/* استایل پایه‌ی سایت متن را غیرقابل‌انتخاب کرده؛ داخل محتوای ما باید
   بشود متن را انتخاب و کپی کرد. */
.tk-main, .tk-main *, .tk-foot, .tk-foot * {
  -webkit-user-select: text; user-select: text; -webkit-touch-callout: default;
}

/* ⚠️ پنهان‌کردن با right:-9999px در صفحه‌ی RTL باعث اسکرول افقی می‌شود؛
   پس از clip استفاده می‌کنیم که هیچ عرضی به سند اضافه نمی‌کند. */
.tk-skip {
  position: absolute; right: 0; top: 0; z-index: 1000000;
  width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%);
  white-space: nowrap;
  background: var(--tk-gold); color: #101010; padding: 10px 18px;
  font-weight: 500; text-decoration: none; border-radius: 0 0 0 8px;
}
.tk-skip:focus {
  width: auto; height: auto; overflow: visible; clip-path: none;
}
:where(a, button, summary, input, [tabindex]):focus-visible {
  outline: 2px solid var(--tk-gold); outline-offset: 2px; border-radius: 4px;
}

.tk-main {
  max-width: var(--tk-wrap); margin: 0 auto; padding: 18px 12px 40px;
  color: var(--tk-text); font-size: 15px; line-height: 1.9;
}
@media screen and (max-width: 1000px) { .tk-main { padding-bottom: 70px; } }
.tk-main p { margin: 0 0 1em; }
.tk-main ul, .tk-main ol { margin: 0 0 1em; padding-right: 1.4em; padding-left: 0; }
.tk-main table { border-collapse: collapse; width: 100%; }
.tk-main img { max-width: 100%; height: auto; }
.tk-sec--first { margin-top: 4px; }

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

.tk-crumb { font-size: 13px; color: var(--tk-text-3); margin-bottom: 10px; }
.tk-crumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tk-crumb li + li::before { content: '‹'; margin-left: 6px; color: var(--tk-text-3); }
.tk-crumb a { color: var(--tk-text-2); text-decoration: none; }
.tk-crumb a:hover { color: var(--tk-gold); }

.tk-h1 {
  font-size: clamp(22px, 4vw, 32px); font-weight: 500; color: #fff; margin: 0 0 10px;
  padding-right: 12px; border-right: 4px solid var(--tk-gold); line-height: 1.5;
}
.tk-lead { font-size: 16px; color: var(--tk-text-2); max-width: 74ch; margin: 0 0 22px; }

.tk-sec { margin: 30px 0 0; }
.tk-sec__h {
  font-size: clamp(18px, 3vw, 23px); font-weight: 500; color: #fff; margin: 0 0 6px;
  display: flex; align-items: center; gap: 9px; line-height: 1.5;
}
.tk-sec__h::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px;
  background: var(--tk-neon); transform: rotate(45deg); flex: 0 0 auto;
}
.tk-sec__sub { color: var(--tk-text-2); margin: 0 0 14px; }

.tk-prose { color: #cdd8e4; max-width: 78ch; }
.tk-prose h3 { font-size: 17px; font-weight: 500; color: var(--tk-gold); margin: 18px 0 6px; }
.tk-prose b, .tk-prose strong { color: #fff; font-weight: 500; }
.tk-prose a { color: var(--tk-gold); }
.tk-prose li { margin-bottom: 7px; }
.tk-prose li::marker { color: var(--tk-neon); }

.tk-note {
  border: 1px solid var(--tk-line); border-right: 3px solid var(--tk-gold);
  background: var(--tk-bg-2); border-radius: 8px; padding: 12px 14px; margin: 16px 0;
  color: #cdd8e4;
}
.tk-note--warn { border-right-color: #e5484d; }
.tk-note strong { color: #fff; font-weight: 500; }

.tk-steps { list-style: none; counter-reset: s; padding: 0 !important; margin: 0; }
.tk-steps li { counter-increment: s; position: relative; padding-right: 44px; margin-bottom: 14px; }
.tk-steps li::before {
  content: counter(s); position: absolute; right: 0; top: 3px;
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--tk-neon), var(--tk-neon-2));
  color: #14100a; font-weight: 500; font-size: 14px;
}
.tk-steps li b { display: block; color: #fff; font-weight: 500; }
.tk-steps li span { display: block; color: var(--tk-text-2); font-size: 14px; }

.tk-scroll { overflow-x: auto; margin: 12px 0; border: 1px solid var(--tk-line); border-radius: 10px; }
.tk-scroll table { min-width: 420px; font-size: 14px; }
.tk-scroll th, .tk-scroll td { padding: 9px 12px; text-align: right; border-bottom: 1px solid var(--tk-line-soft); }
.tk-scroll thead th { background: var(--tk-bg-3); color: var(--tk-gold); font-weight: 500; white-space: nowrap; }
.tk-scroll tbody tr:last-child td { border-bottom: 0; }
.tk-scroll tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .02); }

.tk-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; margin: 0; padding: 0; }
.tk-specs > div { background: var(--tk-bg-2); border: 1px solid var(--tk-line-soft); border-radius: 9px; padding: 9px 12px; }
.tk-specs dt { font-size: 12px; color: var(--tk-text-3); }
.tk-specs dd { margin: 0; font-size: 14px; color: #fff; font-weight: 500; }

.tk-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px; }
.tk-gcard {
  display: flex; flex-direction: column; text-decoration: none;
  background: #05080c; border: 1px solid var(--tk-line-soft); border-radius: 12px;
  overflow: hidden; transition: transform .18s, border-color .18s, box-shadow .18s;
}
.tk-gcard:hover {
  transform: translateY(-3px); border-color: var(--tk-neon);
  box-shadow: 0 10px 26px rgba(255, 138, 31, .2);
}
.tk-gcard__img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; display: block; }
.tk-gcard__b { padding: 11px 13px 13px; display: flex; flex-direction: column; gap: 4px; }
.tk-gcard__t { font-weight: 500; color: #fff; font-size: 16px; }
.tk-gcard__d { font-size: 13px; color: var(--tk-text-2); line-height: 1.7; flex: 1; }
.tk-gcard__cta { font-size: 13px; color: var(--tk-gold); font-weight: 500; margin-top: 4px; }
.tk-gcard[hidden] { display: none; }

.tk-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.tk-links a {
  display: block; text-decoration: none; background: var(--tk-bg-2);
  border: 1px solid var(--tk-line-soft); border-radius: 10px; padding: 11px 14px;
  color: #fff; font-weight: 500; transition: border-color .18s, background .18s;
}
.tk-links a span { display: block; font-weight: 300; font-size: 13px; color: var(--tk-text-2); }
.tk-links a:hover { border-color: var(--tk-gold); background: var(--tk-bg-3); }

.tk-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.tk-card { background: var(--tk-bg-2); border: 1px solid var(--tk-line-soft); border-radius: 11px; padding: 14px 16px; }
.tk-card__h { font-size: 16px; font-weight: 500; color: var(--tk-gold); margin: 0 0 5px; }
.tk-card p { margin: 0; font-size: 14px; color: var(--tk-text-2); }

.tk-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: 9px; text-decoration: none;
  font-weight: 500; font-size: 15px; border: 1px solid transparent; cursor: pointer;
}
.tk-btn--go { background: linear-gradient(180deg, var(--tk-neon), var(--tk-neon-2)); color: #17100a; }
.tk-btn--go:hover { filter: brightness(1.08); }
.tk-btn--ghost { background: transparent; border-color: var(--tk-line); color: var(--tk-text); }
.tk-btn--ghost:hover { border-color: var(--tk-gold); color: var(--tk-gold); }
.tk-btn--sm { padding: 8px 16px; font-size: 14px; }

.tk-faq__list { display: grid; gap: 8px; }
.tk-faq__item { background: var(--tk-bg-2); border: 1px solid var(--tk-line-soft); border-radius: 10px; }
.tk-faq__item summary {
  cursor: pointer; padding: 12px 15px; font-weight: 500; color: #fff;
  list-style: none; display: flex; justify-content: space-between; gap: 10px;
}
.tk-faq__item summary::-webkit-details-marker { display: none; }
.tk-faq__item summary::after { content: '+'; color: var(--tk-gold); font-size: 20px; line-height: 1; }
.tk-faq__item[open] summary::after { content: '−'; }
.tk-faq__a { padding: 0 15px 12px; color: #cdd8e4; }
.tk-faq__a p:last-child { margin-bottom: 0; }
.tk-faq__a a { color: var(--tk-gold); }

.tk-finder { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.tk-finder input {
  flex: 1 1 240px; background: var(--tk-bg-2); border: 1px solid var(--tk-line);
  border-radius: 9px; padding: 10px 14px; color: #fff; font-family: inherit; font-size: 15px;
}
.tk-finder input::placeholder { color: var(--tk-text-3); }
.tk-finder__count { color: var(--tk-text-2); font-size: 14px; }

/* ── میز بازی ─────────────────────────────────────────────────────────── */
.tk-stagewrap { margin: 18px 0 24px; }
.tk-stagebar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--tk-bg-2); border: 1px solid var(--tk-line); border-bottom: 0;
  border-radius: 12px 12px 0 0; padding: 8px 12px; font-size: 13px;
}
.tk-stagebar__tag { color: var(--tk-gold); font-weight: 500; }
.tk-stagebar__sp { flex: 1; }
.tk-stagebar button, .tk-stagebar a {
  background: var(--tk-bg-3); border: 1px solid var(--tk-line); color: var(--tk-text);
  border-radius: 7px; padding: 5px 12px; font-size: 13px; cursor: pointer;
  text-decoration: none; font-family: inherit;
}
.tk-stagebar button:hover, .tk-stagebar a:hover { border-color: var(--tk-gold); color: var(--tk-gold); }

#tk-stage {
  position: relative; background: #05080c;
  border: 1px solid var(--tk-line); border-radius: 0 0 12px 12px; overflow: hidden;
}
#tk-stage, #tk-stage * { -webkit-user-select: text; user-select: text; }
.tk-stageload {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; z-index: 3;
  background: #05080c; color: var(--tk-text-2); text-align: center; padding: 20px;
}
.tk-stageload[hidden] { display: none; }
.tk-stageload__ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--tk-line); border-top-color: var(--tk-neon);
  animation: b4spin 1s linear infinite;
}
@keyframes b4spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .tk-stageload__ring { animation: none; } }
.tk-stageload__err { color: #ff9ea1; }
.tk-stageload__acts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ── فوتر سئو — زیر فوتر اصلی ─────────────────────────────────────────── */
.tk-foot { background: #05080c; border-top: 1px solid var(--tk-line-soft); padding: 28px 12px 20px; }
.tk-foot__grid {
  max-width: var(--tk-wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px;
}
.tk-foot__h { font-size: 14px; font-weight: 500; color: var(--tk-gold); margin: 0 0 8px; }
.tk-foot__col ul { list-style: none; margin: 0; padding: 0; }
.tk-foot__col li { margin-bottom: 5px; }
.tk-foot__col a { color: var(--tk-text-2); text-decoration: none; font-size: 13px; }
.tk-foot__col a:hover { color: #fff; }
.tk-foot__bot {
  max-width: var(--tk-wrap); margin: 22px auto 0; padding-top: 16px;
  border-top: 1px solid var(--tk-line-soft); color: var(--tk-text-3); font-size: 12.5px;
  text-align: center; line-height: 1.9;
}
.tk-foot__bot p { margin: 0 0 6px; }
.tk-foot__note a { color: var(--tk-gold); }
@media screen and (max-width: 1000px) { .tk-foot { padding-bottom: 66px; } }





/* ── سه‌ستونیِ صفحه‌ها ───────────────────────────────────────────────────
   ستون محتوا همان عرضی را می‌گیرد که در سایت اصلی ستون میانی داشت:
   کل عرض منهای ستون کناری ۳۵۰px و حاشیه‌هایش. */
/* روی صفحه‌ی اصلی ستون کناری هست، پس ستون محتوا باریک‌تر می‌شود؛ روی بقیه‌ی
   صفحه‌ها ستون کناری نیست و محتوا تمام عرض را می‌گیرد. */
.tk-content { width: 100%; margin: 0; margin-top: 5px; }
.tk-home .tk-content { width: calc(100% - 380px); }
@media screen and (max-width: 1000px) { .tk-content { width: 100%; margin: 0; } }
.tk-main { padding: 6px 10px 40px; color: var(--tk-text); font-size: 15px; line-height: 1.9; max-width: none; }
@media screen and (max-width: 1000px) { .tk-main { padding-bottom: 70px; } }

/* «جواب کوتاه» — جعبه‌ی خلاصه‌ی بالای هر صفحه‌ی بازی */
.tk-quick {
  background: linear-gradient(180deg, rgba(252,179,7,.12), rgba(252,179,7,.03));
  border: 1px solid rgba(252,179,7,.42); border-right: 3px solid var(--tk-gold);
  border-radius: 8px; padding: 14px 16px; margin: 0 0 6px; color: #e9e9e9;
}
.tk-quick__k { display: block; font-size: 12px; color: var(--tk-gold); margin-bottom: 4px; }
.tk-quick p { margin: 0; }

/* «سه سؤال قبل از شروع» */
.tk-q { display: grid; gap: 10px; margin: 0; padding: 0; }
.tk-q > div {
  background: var(--tk-bg-2); border: 1px solid var(--tk-line-soft);
  border-radius: 8px; padding: 12px 14px;
}
.tk-q dt { font-weight: 500; color: var(--tk-gold); font-size: 15px; margin-bottom: 3px; }
.tk-q dd { margin: 0; color: var(--tk-text-2); font-size: 14px; }

/* «چک‌لیست اولین نشست» */
.tk-check { list-style: none; counter-reset: ck; padding: 0 !important; margin: 0; }
.tk-check li {
  counter-increment: ck; position: relative; padding-right: 34px; margin-bottom: 10px;
  color: #d8d8d8;
}
.tk-check li::before {
  content: '✓'; position: absolute; right: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 5px; display: grid; place-items: center;
  background: var(--tk-gold); color: #17130a; font-size: 13px; font-weight: 500;
}

/* ═══════════════════ بخش‌های مخصوص همین سایت ══════════════════════════ */
.tk-foot__legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 10px; }
.tk-foot__legal a { color: var(--tk-text-2); text-decoration: none; font-size: 13px; }
.tk-foot__legal a:hover { color: var(--tk-gold); text-decoration: underline; }

/* «اگر فقط یک چیز یاد بگیرید» */
.tk-one { border-right: 4px solid var(--tk-gold); background: var(--tk-bg-3);
  border-radius: 0 12px 12px 0; padding: 18px 20px; }
.tk-one p { margin: 0; color: var(--tk-text); font-size: 16px; line-height: 2; }

/* سه پله */
.tk-levels { display: grid; gap: 12px; }
.tk-level { position: relative; padding: 16px 60px 16px 18px; background: var(--tk-bg-3);
  border: 1px solid var(--tk-line-soft); border-radius: 12px; }
.tk-level__n { position: absolute; right: 16px; top: 16px; width: 32px; height: 32px;
  border-radius: 50%; border: 2px solid var(--tk-gold); color: var(--tk-gold);
  font-weight: 700; text-align: center; line-height: 28px; }
.tk-level h3 { margin: 0 0 8px; font-size: 16px; color: var(--tk-gold); }
.tk-level p { margin: 0; color: var(--tk-text-2); line-height: 1.95; }

/* درست/غلط */
.tk-myths { margin: 0; }
.tk-myth { background: var(--tk-bg-3); border: 1px solid var(--tk-line-soft);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.tk-myth dt { font-weight: 500; color: var(--tk-text); line-height: 1.9;
  display: flex; gap: 10px; align-items: flex-start; }
.tk-myth dd { margin: 8px 0 0; color: var(--tk-text-2); line-height: 1.9; }
.tk-myth__tag { flex: none; font-size: 12px; font-weight: 700; border-radius: 6px;
  padding: 3px 10px; line-height: 1.6; }
.tk-myth--yes { border-right: 3px solid var(--tk-gold); }
.tk-myth--yes .tk-myth__tag { background: var(--tk-gold); color: #1c1c1c; }
.tk-myth--no { border-right: 3px solid #7a7a7a; }
.tk-myth--no .tk-myth__tag { background: #3a3a3a; color: #d8d8d8; }

/* ═══════ نوار اپلیکیشن بالای صفحه — پوسته‌ی alive این کلاس را ندارد ══════
 * مارک‌آپ عیناً همان سایت اصلی است؛ این چند خط فقط همان ظاهر را می‌سازد.
 * ارتفاعش ۵۰px است، دقیقاً همان عددی که خودِ صفحه با margin-top جبرانش می‌کرد.
 * ═══════════════════════════════════════════════════════════════════════ */
.application { position: fixed; top: 0; right: 0; left: 0; height: 50px; z-index: 999999;
  background: #1a1819; border-bottom: 1px solid #2a2728; display: flex; align-items: center;
  gap: 10px; padding: 0 10px; }
.application .icon { flex: none; display: flex; }
.application .icon img { width: 45px; height: 45px; display: block; }
.application .context { flex: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 10px; min-width: 0; }
.application .rightContext { min-width: 0; }
.application .title { color: #fff; font-size: 13px; font-weight: 500; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.application .description { color: #a09a92; font-size: 11px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.application .leftContext { flex: none; display: flex; align-items: center; gap: 8px; }
.application .installButton { background: var(--tk-gold); color: #17150f; border-radius: 6px;
  padding: 7px 14px; font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.application .close { background: none; border: 0; color: #a09a92; font-size: 18px;
  cursor: pointer; line-height: 1; padding: 4px; font-family: FontAwesome; }
body.tk-appbar-closed .application { display: none; }
body.tk-appbar-closed .header-main-center { margin-top: 0 !important; }
@media screen and (max-width: 1000px) {
  .application .description { display: none; }
  body:not(.tk-appbar-closed) .mobile-bar { top: 50px; }
}

/* ═══════════════════ بخش‌های مخصوص همین سایت ══════════════════════════ */
.tk-in30 { border-right: 4px solid var(--tk-gold); background: var(--tk-bg-3);
  border-radius: 0 12px 12px 0; padding: 18px 20px; }
.tk-in30 p { margin: 0; color: var(--tk-text); font-size: 17px; line-height: 2; }
.tk-costly { counter-reset: c; list-style: none; padding: 0; margin: 0; }
.tk-costly li { counter-increment: c; position: relative; padding: 14px 54px 14px 16px;
  margin-bottom: 8px; background: var(--tk-bg-3); border: 1px solid var(--tk-line-soft);
  border-radius: 10px; }
.tk-costly li::before { content: counter(c); position: absolute; right: 14px; top: 14px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--tk-gold); color: #17150f;
  font-weight: 700; font-size: 14px; text-align: center; line-height: 28px; }
.tk-costly b { display: block; color: var(--tk-text); margin-bottom: 5px; }
.tk-costly span { color: var(--tk-text-2); line-height: 1.9; }
.tk-ready { border-right: 4px solid var(--tk-neon-2); background: var(--tk-bg-3);
  border-radius: 0 12px 12px 0; padding: 18px 20px; }
.tk-ready p { margin: 0; color: var(--tk-text); line-height: 2; }
