:root {
  --bg: #0D0820;
  --bg-2: #161030;
  --bg-3: #1F1840;
  --card: #1A1235;
  --card-hover: #221945;
  --gold: #FFD700;
  --gold-2: #FFC400;
  --gold-hover: #FFB400;
  --purple: #6B5BFF;
  --purple-2: #8B7BFF;
  --green: #00C566;
  --red: #FF5577;
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.72);
  --text-soft: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 8px 28px rgba(0,0,0,0.5);
  --shadow-gold: 0 6px 22px rgba(255,215,0,0.32);
  --shadow-purple: 0 6px 22px rgba(107,91,255,0.42);
  --transition: 0.22s cubic-bezier(0.22,0.88,0.28,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(107,91,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(255,215,0,0.10) 0%, transparent 55%),
    linear-gradient(160deg, #0D0820 0%, #1A0E40 50%, #0F0825 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: 1.75rem; margin: 0 0 14px; }
h2 { font-size: 1.4rem; margin: 28px 0 12px; padding-left: 12px; position: relative; }
h2::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 22px; border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), var(--purple));
  box-shadow: 0 0 10px rgba(255,215,0,0.4);
}
h3 { font-size: 1.1rem; margin: 22px 0 10px; color: var(--gold-2); }
h4 { font-size: 0.95rem; margin: 16px 0 8px; }
p { margin: 0 0 14px; color: var(--text-muted); font-size: 0.95rem; }
strong, b { color: var(--text); font-weight: 700; }

.tr-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.tr-promostrip {
  background: linear-gradient(90deg, var(--card) 0%, var(--bg-3) 50%, var(--card) 100%);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: 11.5px;
  color: var(--text-muted);
  overflow: hidden;
}
.tr-promostrip__track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: trMarq 32s linear infinite;
  will-change: transform;
}
.tr-promostrip span { display: inline-flex; align-items: center; gap: 5px; }
.tr-promostrip i { color: var(--gold); font-style: normal; }
@keyframes trMarq { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.tr-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,8,32,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.tr-header__inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; row-gap: 10px; padding: 0 16px; max-width: 1200px; margin: 0 auto; }
.tr-burger {
  width: 40px; height: 40px; display: flex; flex-direction: column;
  justify-content: center; gap: 5px; padding: 8px; border-radius: 10px;
  background: transparent; border: 1px solid var(--border);
}
.tr-burger span { display: block; height: 2px; width: 22px; background: var(--text); border-radius: 2px; }
.tr-logo { display: inline-flex; line-height: 0; }
.tr-logo__wrap { position: relative; display: inline-block; line-height: 0; }
.tr-logo__img { height: 38px; width: auto; }
.tr-logo__flag {
  position: absolute; top: -4px; right: -8px;
  width: 20px; height: 20px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  z-index: 2;
}
.tr-header__nav { display: none; margin-left: auto; }
.tr-header__nav ul { display: flex; gap: 16px; align-items: center; }
.tr-header__nav a { color: var(--text-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; transition: color var(--transition); }
.tr-header__nav a:hover { color: var(--gold); }
.tr-header__auth { order: 5; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-left: 0; }

.tr-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 800; font-size: 14px; text-align: center; line-height: 1;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  text-decoration: none;
}
.tr-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}
.tr-btn--gold:hover { transform: translateY(-1px); filter: brightness(1.06); color: var(--bg); box-shadow: 0 10px 28px rgba(255,215,0,0.45); }
.tr-btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--gold); }
.tr-btn--ghost:hover { background: rgba(255,215,0,0.12); color: var(--gold); }
.tr-btn--purple { background: linear-gradient(135deg, var(--purple), var(--purple-2)); color: var(--text); box-shadow: var(--shadow-purple); }
.tr-btn--purple:hover { transform: translateY(-1px); filter: brightness(1.08); color: var(--text); }
.tr-btn--dark { background: var(--bg-3); color: var(--text); border: 1px solid var(--border-strong); }
.tr-btn--dark:hover { background: var(--card-hover); transform: translateY(-1px); color: var(--text); }
.tr-btn--lg { height: 52px; padding: 0 28px; font-size: 15px; }
.tr-btn--block { width: 100%; }

.tr-mobnav {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,8,32,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; flex-direction: column; padding: 76px 24px 32px;
  overflow-y: auto;
}
.tr-mobnav.is-open { display: flex; }
.tr-mobnav a { color: var(--text); font-size: 16px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); display: block; }
.tr-mobnav a:hover { color: var(--gold); }
.tr-mobnav__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.tr-mobnav__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card); color: var(--text); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
}

.tr-hero {
  position: relative; padding: 24px 0 26px;
  background:
    linear-gradient(180deg, rgba(13,8,32,0.78) 0%, rgba(13,8,32,0.58) 35%, rgba(13,8,32,0.92) 100%),
    url("/pack/media/uygulama-genel-bakis.webp") center/cover no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}
.tr-hero__inner { position: relative; z-index: 2; text-align: center; }
.tr-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(107,91,255,0.16); border: 1px solid rgba(107,91,255,0.4);
  color: var(--purple-2); padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.tr-hero__eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--purple); border-radius: 50%; animation: trPulse 2s infinite; }
@keyframes trPulse { 0%,100% { opacity: 1; transform: scale(1) } 50% { opacity: 0.5; transform: scale(0.8) } }

.tr-hero h1 {
  font-size: clamp(1.6rem, 6.5vw, 2.4rem);
  text-shadow: 0 3px 14px rgba(0,0,0,0.6);
  margin-bottom: 14px;
  line-height: 1.15;
}
.tr-hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--purple-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.tr-hero__lead {
  font-size: 0.96rem; line-height: 1.6; max-width: 540px;
  margin: 0 auto 18px; color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.tr-hero__cta { display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 360px; margin: 0 auto 18px; }
.tr-hero__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  font-size: 11.5px; color: rgba(255,255,255,0.78);
}
.tr-hero__trust li {
  background: rgba(0,0,0,0.45); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.tr-hero__visual { display: none; }

.tr-license {
  display: flex; gap: 12px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,197,102,0.10), rgba(255,215,0,0.06));
  border: 1px solid rgba(0,197,102,0.32);
  border-radius: var(--radius);
  padding: 14px 16px; margin: 18px 0;
}
.tr-license__icon { font-size: 26px; flex: 0 0 auto; }
.tr-license b { display: block; color: var(--text); font-weight: 800; font-size: 13.5px; margin-bottom: 4px; }
.tr-license small { color: var(--text-muted); font-size: 12px; line-height: 1.5; }

.tr-breadcrumb { padding: 12px 0 0; font-size: 12px; color: var(--text-soft); }
.tr-breadcrumb ul { display: flex; gap: 8px; flex-wrap: wrap; }
.tr-breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.tr-breadcrumb a { color: var(--gold); }

.tr-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; padding: 10px 14px; margin: 12px 0 18px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; color: var(--text-soft); }
.tr-meta b { color: var(--text); margin-right: 4px; }

.tr-toc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px; margin: 18px 0;
}
.tr-toc__title { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 800; margin-bottom: 10px; }
.tr-toc ol { padding: 0; counter-reset: trtoc; }
.tr-toc li { counter-increment: trtoc; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.tr-toc li:last-child { border-bottom: none; }
.tr-toc li::before { content: counter(trtoc, decimal-leading-zero) ". "; color: var(--gold); font-weight: 700; }
.tr-toc a { color: var(--text-muted); font-size: 13px; }
.tr-toc a:hover { color: var(--gold); }

.tr-block { padding: 20px 0; border-bottom: 1px solid var(--border); }
.tr-block:last-child { border-bottom: none; }
.tr-block__cover { margin: 14px 0 16px; border-radius: var(--radius); overflow: hidden; }
.tr-block__cover img { width: 100%; }

.tr-howto { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 14px 0 0; }
.tr-howto__item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.tr-howto__item:hover { border-color: rgba(255,215,0,0.32); transform: translateY(-1px); }
.tr-howto__step { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--bg); padding: 3px 10px; font-size: 10px; font-weight: 800; letter-spacing: 0.4px; border-radius: 6px; margin-bottom: 8px; text-transform: uppercase; }
.tr-howto__title { font-size: 14.5px; font-weight: 800; margin: 0 0 6px; color: var(--text); padding: 0; }
.tr-howto__title::before { display: none; }
.tr-howto__item p { font-size: 13px; margin: 0 0 10px; }
.tr-howto__item img { width: 100%; max-width: 360px; border-radius: var(--radius-sm); border: 1px solid var(--border); margin: 8px auto 0; display: block; }

.tr-progress { position: relative; height: 6px; background: var(--bg-2); border-radius: 999px; margin: 12px 0 18px; }
.tr-progress__fill { position: absolute; left: 0; top: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 999px; box-shadow: 0 0 10px rgba(255,215,0,0.45); }

.tr-proscons { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 16px 0; }
.tr-proscons__col { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.tr-proscons__col--pros { border-left: 4px solid var(--green); }
.tr-proscons__col--cons { border-left: 4px solid var(--red); }
.tr-proscons__col h3 { color: var(--text); font-size: 14.5px; margin: 0 0 10px; padding: 0; }
.tr-proscons__col h3::before { display: none; }
.tr-proscons__col ul { padding: 0; }
.tr-proscons__col li { padding: 6px 0 6px 22px; position: relative; font-size: 13px; color: var(--text-muted); }
.tr-proscons__col--pros li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; top: 6px; }
.tr-proscons__col--cons li::before { content: "✗"; position: absolute; left: 0; color: var(--red); font-weight: 800; top: 6px; }

.tr-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin: 18px 0; }
.tr-stats > div { text-align: center; padding: 6px; }
.tr-stats b { display: block; font-size: 18px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.tr-stats span { display: block; font-size: 10.5px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.6px; }

.tr-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--radius);
  margin: 14px 0 20px; background: var(--card);
  position: relative;
}
.tr-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 480px; }
.tr-table th, .tr-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.tr-table th { background: var(--bg-3); color: var(--text); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.4px; }
.tr-table tr:last-child td { border-bottom: none; }

.tr-bonus {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-3) 50%, var(--card) 100%);
  border: 1px solid rgba(255,215,0,0.32);
  border-radius: var(--radius); padding: 20px;
  margin: 22px 0; box-shadow: var(--shadow);
}
.tr-bonus::before { content: ""; position: absolute; top: -50%; right: -10%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(255,215,0,0.16) 0%, transparent 60%); pointer-events: none; }
.tr-bonus__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; position: relative; z-index: 1; }
.tr-bonus__icon { font-size: 32px; line-height: 1; }
.tr-bonus__title { font-size: 18px; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--purple-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 0; }
.tr-bonus__sub { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }
.tr-bonus__list { display: grid; grid-template-columns: 1fr; gap: 6px; margin: 0 0 12px; position: relative; z-index: 1; padding: 0; }
.tr-bonus__list li { font-size: 13px; color: rgba(255,255,255,0.85); padding-left: 18px; position: relative; }
.tr-bonus__list li::before { content: "★"; position: absolute; left: 0; color: var(--gold); }
.tr-bonus__code { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.45); border: 1px dashed rgba(255,215,0,0.5); border-radius: var(--radius-sm); padding: 8px 14px; margin: 0 0 12px; font-size: 12px; color: var(--text-muted); }
.tr-bonus__code code { color: var(--gold); font-weight: 800; letter-spacing: 1.2px; font-family: 'SF Mono', Consolas, monospace; }
.tr-bonus__copy { background: var(--gold); color: var(--bg); border: none; padding: 7px 14px; font-weight: 800; border-radius: var(--radius-sm); font-size: 11px; cursor: pointer; transition: background var(--transition); }
.tr-bonus__copy:hover { background: var(--gold-hover); }
.tr-bonus__copy.is-copied { background: var(--green); color: var(--text); }

.tr-cta-block {
  background: linear-gradient(180deg, var(--card), var(--bg));
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: var(--radius); padding: 20px;
  margin: 22px 0; text-align: center;
}
.tr-cta-block__title { font-size: 16px; font-weight: 800; color: var(--gold); margin: 0 0 6px; padding: 0; }
.tr-cta-block__title::before { display: none; }
.tr-cta-block__sub { font-size: 12.5px; color: var(--text-soft); margin: 0 0 14px; }
.tr-cta-block__buttons { display: grid; grid-template-columns: 1fr; gap: 10px; }

.tr-callout { display: flex; gap: 12px; padding: 13px 14px; margin: 16px 0; border-radius: 12px; background: var(--card); border-left: 4px solid var(--gold); border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tr-callout__icon { font-size: 20px; line-height: 1.2; flex: 0 0 auto; }
.tr-callout__body p { margin: 0; font-size: 12.5px; color: var(--text-muted); }
.tr-callout__title { font-size: 13px; font-weight: 800; color: var(--text); margin: 0 0 3px; padding: 0; }
.tr-callout__title::before { display: none; }
.tr-callout--info { border-left-color: var(--purple); }
.tr-callout--info .tr-callout__icon { color: var(--purple); }
.tr-callout--warn { border-left-color: var(--red); }
.tr-callout--warn .tr-callout__icon { color: var(--red); }

.tr-reviews__rating { display: flex; gap: 12px; align-items: center; margin: 12px 0 14px; }
.tr-reviews__num { font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1; }
.tr-reviews__stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.tr-reviews__txt { font-size: 12px; color: var(--text-soft); }
.tr-reviews__track {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 4px 0 14px;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.tr-reviews__track::-webkit-scrollbar { height: 4px; }
.tr-reviews__track::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 2px; }
.tr-review {
  flex: 0 0 84%; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
}
.tr-review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tr-review__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple)); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.tr-review__name { font-size: 13px; font-weight: 800; }
.tr-review__date { font-size: 11px; color: var(--text-soft); }
.tr-review__stars { color: var(--gold); margin-bottom: 6px; font-size: 12px; letter-spacing: 1px; }
.tr-review__text { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }

.tr-faq { margin: 14px 0; }
.tr-faq details { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin: 0 0 8px; padding: 12px 14px; transition: border-color var(--transition); }
.tr-faq details:hover { border-color: rgba(255,215,0,0.3); }
.tr-faq details[open] { border-color: rgba(255,215,0,0.45); background: var(--bg-3); }
.tr-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 10px; align-items: center; font-weight: 800; color: var(--text); font-size: 13.5px; }
.tr-faq summary::-webkit-details-marker { display: none; }
.tr-faq summary::after { content: "+"; font-size: 22px; color: var(--gold); font-weight: 400; line-height: 1; }
.tr-faq details[open] summary::after { content: "−"; }
.tr-faq details p { padding-top: 10px; margin: 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

.tr-features { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 16px 0; }
.tr-features__item { display: flex; gap: 12px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; transition: transform var(--transition), border-color var(--transition); }
.tr-features__item:hover { transform: translateY(-2px); border-color: rgba(255,215,0,0.32); }
.tr-features__icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,215,0,0.08); padding: 8px; }
.tr-features__icon img { width: 28px; height: 28px; object-fit: contain; }
.tr-features__body span { display: block; font-weight: 800; color: var(--text); font-size: 13px; margin-bottom: 3px; }
.tr-features__body p { font-size: 12px; margin: 0; color: var(--text-muted); }

.tr-compare table { width: 100%; min-width: 540px; border-collapse: collapse; font-size: 12.5px; }
.tr-compare th, .tr-compare td { padding: 10px 12px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.tr-compare th { background: var(--bg-3); color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; }
.tr-compare th:first-child, .tr-compare td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.tr-compare .is-yes { color: var(--green); font-weight: 800; }
.tr-compare .is-no { color: var(--red); font-weight: 800; }
.tr-compare__own { color: var(--gold); }

.tr-timeline { margin: 16px 0; padding-left: 18px; border-left: 2px solid var(--gold); }
.tr-timeline__item { position: relative; margin-bottom: 14px; padding: 12px 14px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.tr-timeline__item::before { content: ""; position: absolute; left: -25px; top: 18px; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 3px var(--bg), 0 0 10px rgba(255,215,0,0.55); }
.tr-timeline__item b { display: block; color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.tr-timeline__item p { font-size: 12.5px; color: var(--text-muted); margin: 0; }

.tr-footer {
  position: relative; background: linear-gradient(180deg, var(--bg) 0%, #06031a 100%);
  border-top: 1px solid var(--border); padding: 32px 0 20px; margin-top: 40px;
}
.tr-footer__grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 22px; }
.tr-footer__brand img { height: 38px; width: auto; margin-bottom: 12px; }
.tr-footer__brand p { font-size: 12px; color: var(--text-soft); margin: 0 0 12px; }
.tr-footer__seal { display: flex; flex-wrap: wrap; gap: 6px; }
.tr-footer__seal span { background: var(--card); border: 1px solid var(--border); padding: 4px 9px; border-radius: 6px; font-size: 10.5px; color: var(--text-muted); }
.tr-footer__col-title { font-size: 11.5px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.8px; margin: 0 0 10px; }
.tr-footer__col li { margin: 0; padding: 5px 0; }
.tr-footer__col a { color: var(--text-muted); font-size: 12.5px; }
.tr-footer__col a:hover { color: var(--gold); padding-left: 4px; }
.tr-footer__pay { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; margin-bottom: 22px; }
.tr-footer__pay-title { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 800; margin: 0 0 8px; }
.tr-footer__pay-list { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.tr-footer__pay-list span { background: rgba(255,255,255,0.06); border: 1px solid var(--border); padding: 4px 9px; border-radius: 6px; font-size: 10.5px; color: var(--text); }
.tr-footer__resp { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; margin-bottom: 18px; }
.tr-footer__resp-title { font-size: 11.5px; color: var(--green); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 800; margin: 0 0 8px; }
.tr-footer__resp p { font-size: 11.5px; color: var(--text-muted); margin: 0 0 8px; line-height: 1.55; }
.tr-footer__resp-links { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; }
.tr-footer__resp-links a { color: var(--gold); }
.tr-footer__bottom { border-top: 1px solid var(--border); padding-top: 16px; text-align: center; font-size: 11px; color: var(--text-soft); }

.tr-sticky {
  position: fixed; left: 8px; right: 8px; bottom: 8px; z-index: 80;
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  background: rgba(26,18,53,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,215,0,0.32); border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.55), 0 0 28px rgba(255,215,0,0.1);
  transform: translateY(160%); transition: transform 0.4s cubic-bezier(0.22,0.88,0.28,1);
}
.tr-sticky.is-visible { transform: translateY(0); }
.tr-sticky__icon { width: 40px; height: 40px; border-radius: 10px; padding: 3px; background: rgba(255,255,255,0.06); }
.tr-sticky__info b { display: block; font-size: 13px; color: var(--text); font-weight: 800; line-height: 1.2; }
.tr-sticky__info small { font-size: 10.5px; color: var(--text-soft); }
.tr-sticky__cta { padding: 0 14px; height: 38px; font-size: 12px; }
@media (min-width: 900px) { .tr-sticky { display: none; } }

.tr-totop { position: fixed; right: 14px; bottom: 80px; z-index: 70; width: 42px; height: 42px; background: var(--gold); color: var(--bg); border: none; border-radius: 50%; font-size: 22px; font-weight: 800; cursor: pointer; box-shadow: 0 6px 20px rgba(255,215,0,0.45); opacity: 0; transform: translateY(20px); transition: all 0.3s; pointer-events: none; }
.tr-totop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tr-totop:hover { background: var(--gold-hover); transform: translateY(-2px); }

@media (min-width: 700px) {
  .tr-container { padding: 0 24px; }
  body { font-size: 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.2rem; }
  .tr-hero { padding: 60px 0; }
  .tr-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .tr-hero__lead { font-size: 1.05rem; }
  .tr-hero__cta { grid-template-columns: 1fr 1fr; max-width: 500px; }
  .tr-cta-block__buttons { grid-template-columns: 1fr 1fr; }
  .tr-stats { grid-template-columns: repeat(4, 1fr); }
  .tr-howto { grid-template-columns: 1fr 1fr; }
  .tr-howto__item img { max-width: 100%; }
  .tr-proscons { grid-template-columns: 1fr 1fr; }
  .tr-features { grid-template-columns: 1fr 1fr; }
  .tr-bonus__list { grid-template-columns: 1fr 1fr; }
  .tr-review { flex-basis: 360px; }
  .tr-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .tr-header__inner { flex-wrap: nowrap; }
  .tr-burger { display: none; }
  .tr-header__nav { display: flex; }
  .tr-header__auth { order: 0; width: auto; display: flex; gap: 8px; margin-left: auto; }
  .tr-header__auth .tr-btn { height: 38px; padding: 0 18px; font-size: 12.5px; }

  .tr-hero {
    padding: 60px 0 70px;
    background:
      radial-gradient(ellipse at 80% 50%, rgba(107,91,255,0.18) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 30%, rgba(255,215,0,0.09) 0%, transparent 60%),
      linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
  }
  .tr-hero__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: center; text-align: left; }
  .tr-hero__cta { margin-left: 0; margin-right: auto; }
  .tr-hero__trust { justify-content: flex-start; }
  .tr-hero__visual { display: block; position: relative; }
  .tr-hero__visual img { width: 100%; max-width: 460px; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 80px rgba(107,91,255,0.32); margin-left: auto; }

  .tr-howto { grid-template-columns: 1fr 1fr 1fr; }
  .tr-features { grid-template-columns: 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .tr-promostrip__track, .tr-hero__eyebrow::before { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01s !important; animation-duration: 0.01s !important; }
}
