:root {
--tm-primary: #f59e0b;
--tm-primary-rgb: 245, 158, 11;
--tm-primary-hover: #d97706;
--tm-bg: #0f0f10;
--tm-surface: #18181b;
--tm-surface-2: #121214;
--tm-surface-3: #27272a;
--tm-bg-card: #18181b;
--tm-text: #e5e5e5;
--tm-muted: #a3a3a3;
--tm-text-muted: #a3a3a3;
--tm-border: #3f3f46;
--tm-blue: #3b82f6;
--tm-green: #10b981;
--tm-red: #ef4444;
--tm-shadow: 0 18px 40px rgba(0, 0, 0, .35);
--tm-radius: 2px;
--tm-radius-sm: 2px;
--tm-radius-md: 4px;
--tm-radius-lg: 8px;
--tm-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--tm-font-sans: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
} *,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
color: var(--tm-text);
background-color: var(--tm-bg);
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 30px 30px;
font-family: var(--tm-font-mono);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-wrap: break-word;
width: 100%;
overflow-x: hidden;
} * {
scrollbar-width: auto;
scrollbar-color: rgba(var(--tm-primary-rgb), .7) var(--tm-surface-2);
} @supports (-moz-appearance: none) {
* {
scrollbar-width: thin;
}
}
*::-webkit-scrollbar {
width: 14px;
height: 14px;
}
*::-webkit-scrollbar-track {
background: var(--tm-surface-2);
border-radius: 999px;
}
*::-webkit-scrollbar-thumb {
background: rgba(var(--tm-primary-rgb), .8);
border-radius: 999px;
border: 3px solid var(--tm-surface-2);
}
*::-webkit-scrollbar-thumb:hover {
background: rgba(var(--tm-primary-rgb), 1);
}
::selection {
background: var(--tm-primary);
color: #000;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
button {
font: inherit;
}
.layout__main {
min-width: 0;
}
@media (min-width: 1025px) {
body.home .layout,
body.front-page .layout {
grid-template-columns: 100%;
}
body.home .layout__sidebar,
body.front-page .layout__sidebar {
display: none;
}
.layout__main--full {
grid-column: 1 / -1;
}
} .card {
background: var(--tm-surface);
border: 1px solid var(--tm-border);
position: relative;
overflow: visible;
} .card:not(.card--hero) {
overflow: hidden;
}
.card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 12px;
height: 12px;
border-top: 2px solid var(--tm-primary);
border-left: 2px solid var(--tm-primary);
z-index: 2;
}
.card::after {
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 12px;
height: 12px;
border-bottom: 2px solid var(--tm-primary);
border-right: 2px solid var(--tm-primary);
z-index: 2;
}
.card__body {
padding: 16px;
}
@media (min-width: 768px) {
.card__body {
padding: 24px;
}
} .title {
font-family: var(--tm-font-sans);
text-transform: uppercase;
letter-spacing: -0.02em;
margin: 0 0 12px;
}
.title--xl {
font-size: 40px;
line-height: 1;
}
@media (min-width: 768px) {
.title--xl {
font-size: 50px;
}
}
.title--page {
font-size: 22px;
}
.title--page-lg {
font-size: 28px;
}
.title--post {
font-size: 18px;
margin-bottom: 8px;
}
.title--section {
font-size: 20px;
}
.title--mb-md {
margin-bottom: 14px;
}
.title__modtag {
color: var(--tm-primary);
}
.muted {
color: var(--tm-muted);
} .crumbs {
margin: 0 0 14px;
min-width: 0;
overflow: hidden;
}
.crumbs__list {
display: flex;
flex-wrap: nowrap;
align-items: center;
column-gap: 8px;
row-gap: 4px;
margin: 0;
padding: 0;
list-style: none;
font-family: var(--tm-font-mono);
font-size: 12px;
line-height: 1.4;
letter-spacing: 0.06em;
color: var(--tm-muted);
min-width: 0;
}
.crumbs__item {
display: inline-flex;
align-items: center;
flex-shrink: 0;
}
.crumbs__item:last-child {
min-width: 0;
flex: 1 1 0;
overflow: hidden;
}
.crumbs__item:not(:last-child)::after {
content: "\203A";
font-size: 10px;
opacity: 0.5;
margin-left: 2px;
flex-shrink: 0;
}
.crumbs__link,
.crumbs__current {
padding: 4px 6px;
border-radius: var(--tm-radius-sm);
transition: color 0.15s ease;
}
.crumbs__link {
display: inline-flex;
align-items: center;
color: var(--tm-muted);
text-decoration: none;
white-space: nowrap;
}
.crumbs__link:hover {
color: var(--tm-primary);
}
.crumbs__link:focus-visible {
outline: 2px solid rgba(var(--tm-primary-rgb), 0.6);
outline-offset: 2px;
}
.crumbs__current {
display: block;
min-width: 0;
color: var(--tm-primary);
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 767px) {
.crumbs__list {
font-size: 11px;
}
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 18px;
background: rgba(245, 158, 11, 0.1);
border: 1px solid rgba(245, 158, 11, 0.3);
color: var(--tm-primary);
text-transform: uppercase;
letter-spacing: .14em;
font-weight: 800;
font-size: 11px;
position: relative;
overflow: hidden;
}
.btn::before {
content: "";
position: absolute;
inset: 0;
background: rgba(245, 158, 11, 0.2);
transform: translateX(110%);
transition: transform .25s ease;
}
.btn:hover::before {
transform: translateX(0);
}
.btn > * {
position: relative;
z-index: 1;
}
.btn:hover {
background: var(--tm-primary);
color: #000;
} .scan-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05));
background-size: 100% 4px;
opacity: .3;
pointer-events: none;
z-index: 1;
}
.scan-line {
position: absolute;
left: 0;
right: 0;
height: 4px;
background: rgba(245, 158, 11, 0.4);
opacity: .5;
box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
animation: tm-scanline 4s linear infinite;
pointer-events: none;
z-index: 3;
}
@keyframes tm-scanline {
0% {
top: -10%;
opacity: 0;
}
5% {
opacity: .5;
}
90% {
opacity: .5;
}
100% {
top: 110%;
opacity: 0;
}
}
.glitch-hover:hover {
text-shadow: 2px 0 var(--tm-primary), -2px 0 var(--tm-blue);
} .terminal {
background: var(--tm-surface-2);
border: 1px solid var(--tm-border);
box-shadow: 0 0 8px rgba(245, 158, 11, 0.2);
border-radius: var(--tm-radius-sm);
overflow: hidden;
}
.terminal__head {
background: var(--tm-surface);
padding: 0 14px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #374151;
}
.terminal__title {
display: flex;
align-items: center;
gap: 10px;
color: var(--tm-primary);
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
font-size: 12px;
}
.terminal__dots {
display: flex;
gap: 6px;
}
.terminal__dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, .15);
}
.terminal__dot--red {
background: rgba(239, 68, 68, 0.8);
border-color: rgba(239, 68, 68, 0.3);
}
.terminal__dot--yellow {
background: rgba(245, 158, 11, 0.8);
border-color: rgba(245, 158, 11, 0.3);
}
.terminal__dot--green {
background: rgba(16, 185, 129, 0.8);
border-color: rgba(16, 185, 129, 0.3);
}
.terminal__body {
padding: 18px;
position: relative;
}
.terminal__watermark {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: clamp(56px, 3vw, 72px);
font-weight: 900;
color: rgba(255, 255, 255, 0.06);
pointer-events: none;
user-select: none;
line-height: 1;
white-space: nowrap;
}
.terminal__text {
position: relative;
z-index: 1;
}
.terminal__text.entry {
font-size: 13px;
}
.terminal__text.entry p {
margin: 0 0 10px;
}
.terminal__text.entry p:last-child {
margin-bottom: 0;
}
.terminal__text.entry ul,
.terminal__text.entry ol {
margin: 0 0 10px 18px;
padding: 0;
}
.terminal__text.entry li {
margin: 0 0 6px;
}
.terminal__text.entry li:last-child {
margin-bottom: 0;
}
.terminal__text.entry strong {
color: #fff;
}
.terminal__text.entry code {
background: rgba(0, 0, 0, 0.35);
border: 1px solid rgba(55, 65, 81, 0.7);
padding: 2px 6px;
border-radius: 6px;
}
.entry {
font-size: 14px;
line-height: 1.65;
}
.entry.blog-article__content .page-article__thumb {
text-align: center;
}
.entry.blog-article__content .page-article__thumb img {
margin-left: auto;
margin-right: auto;
}
.entry.blog-article__content img {
cursor: zoom-in;
transition: transform .2s ease, box-shadow .2s ease;
}
.entry.blog-article__content img:hover {
transform: translateY(-1px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.entry.blog-article__content .wp-lightbox-container .lightbox-trigger {
display: none;
}
.entry ul li::marker {
color: var(--tm-primary);
text-shadow: 0 0 6px rgba(245, 158, 11, 0.45);
}
.entry ol li::marker {
color: var(--tm-primary);
font-weight: 700;
font-family: var(--tm-font-mono);
text-shadow: 0 0 6px rgba(245, 158, 11, 0.35);
}
.entry ul.wp-block-list,
.entry ul.wp-block-list ul {
list-style-type: disc;
}
.entry ul.wp-block-list ul,
.entry ul.wp-block-list ol,
.entry ol.wp-block-list ul,
.entry ol.wp-block-list ol {
margin: 6px 0 0;
padding-left: 16px;
}
.post-list__item {
margin-bottom: 18px;
}
.post-meta {
font-size: 11px;
margin-bottom: 8px;
}
.post-list__pagination {
margin-top: 18px;
}
.section-space-md {
margin-top: 11px;
}
.section-space-lg {
margin-top: 32px;
}
.entry a {
color: var(--tm-primary);
text-decoration: underline;
text-underline-offset: 2px;
}
.entry h2,
.entry h3 {
font-family: var(--tm-font-sans);
text-transform: uppercase;
letter-spacing: .02em;
color: #fff;
}
.preformatted-block {
position: relative;
margin: 18px 0;
max-width: 100%;
}
.entry pre.wp-block-preformatted {
margin: 0;
padding: 16px;
border: 1px solid rgba(63, 63, 70, 0.9);
font-size: 13px;
line-height: 1.7;
font-family: var(--tm-font-mono);
box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
max-height: clamp(220px, 50vh, 420px);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
scrollbar-gutter: stable;
white-space: pre-wrap;
word-break: break-word;
overflow-wrap: anywhere;
max-width: 100%;
box-sizing: border-box;
}
.entry pre.wp-block-preformatted * {
color: inherit;
}
.preformatted-copy {
position: absolute;
top: 10px;
right: 20px;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 9px;
font-size: 10px;
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
border-radius: 999px;
border: 1px solid rgba(55, 65, 81, 0.7);
background: rgba(15, 23, 42, 0.72);
color: rgba(226, 232, 240, 0.95);
cursor: pointer;
backdrop-filter: blur(6px);
z-index: 2;
}
.preformatted-copy:hover {
background: rgba(245, 158, 11, 0.92);
border-color: rgba(245, 158, 11, 0.9);
color: #000;
}
.preformatted-copy.is-copied {
background: rgba(245, 158, 11, 0.92);
border-color: rgba(245, 158, 11, 0.9);
color: #000;
}
.preformatted-copy .icon-svg {
font-size: 14px;
line-height: 1;
}
@media (max-width: 640px) {
.entry pre.wp-block-preformatted {
padding: 12px;
font-size: 12px;
}
.preformatted-copy {
top: 8px;
right: 8px;
padding: 4px 8px;
font-size: 9px;
}
} .entry figure.wp-block-table {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
max-width: 100%;
margin: 24px 0;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(17, 24, 39, 0.4);
}
.entry table {
border-collapse: collapse;
width: 100%;
max-width: 100%;
table-layout: auto;
margin: 0;
}
.entry table.has-fixed-layout {
table-layout: fixed;
}
.entry table .has-text-align-center {
text-align: center;
}
.entry table th,
.entry table td {
vertical-align: middle;
padding: 14px 16px;
line-height: 1.5;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.entry table td.has-text-align-center img,
.entry table th.has-text-align-center img {
display: block;
margin-left: auto;
margin-right: auto;
}
.entry table td.has-text-align-center > span[itemprop="image"] {
display: block;
width: fit-content;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.entry table td img {
max-width: 100%;
height: auto;
border-radius: 4px;
}
.entry figure.wp-block-table thead,
.entry table thead {
border: none;
}
.entry table thead th {
background: rgba(0, 0, 0, 0.3);
color: var(--tm-primary);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
border-bottom: 1px solid rgba(245, 158, 11, 0.2);
white-space: nowrap;
}
.entry table tbody tr {
transition: background-color 0.2s ease;
}
.entry table tbody tr:last-child td {
border-bottom: none;
}
.entry table tbody tr:hover {
background: rgba(255, 255, 255, 0.03);
}
.entry table tbody tr:hover td {
color: #fff;
}
.entry figure.wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
background: rgba(255, 255, 255, 0.02);
}
.entry figure.wp-block-table table {
min-width: 600px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
margin-bottom: 0;
}
.entry figure.wp-block-table figcaption.wp-element-caption {
color: var(--tm-muted);
font-size: 0.85em;
text-align: center;
padding: 12px 16px;
font-style: italic;
width: 100%;
display: block;
background: rgba(0, 0, 0, 0.2);
border-top: 1px solid rgba(255, 255, 255, 0.02);
position: sticky;
left: 0;
z-index: 2;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (min-width: 768px) {
.layout__main--download {
width: 100%;
}
.layout__sidebar--download {
display: none;
}
}
@keyframes icon-glow {
0%, 100% {
transform: scale(1);
opacity: 0.3;
}
50% {
transform: scale(1.3);
opacity: 0.6;
}
} .flex-center-rek {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 12px;
width: 100%;
max-width: 100%;
overflow: hidden;
box-sizing: border-box;
}
.flex-center-rek > *:not(script) {
display: block;
min-width: 0;
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.flex-center-rek :is(iframe, ins, object, embed, img, video) {
max-width: 100% !important;
width: auto !important;
height: auto !important;
display: block;
margin: 0 auto;
box-sizing: border-box;
}
@keyframes tm-pulse {
0%,
100% {
opacity: .65;
}
50% {
opacity: 1;
}
} .icon-svg {
width: 1em;
height: 1em;
display: inline-block;
fill: currentColor;
flex-shrink: 0;
}
.icon-star {
position: relative;
display: inline-block;
width: 1em;
height: 1em;
}
.icon-star .icon-svg {
width: 1em;
height: 1em;
display: block;
}
.icon-star__fill {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: var(--fill, 0%);
overflow: hidden;
}.site-header {
position: relative;
z-index: 50;
background: rgba(24, 24, 27, 0.95);
border-bottom: 1px solid var(--tm-border);
box-shadow: 0 18px 30px rgba(0, 0, 0, .2);
}
@media (min-width: 1025px) {
.site-header {
backdrop-filter: blur(12px);
}
}
.site-header__glow {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 1px;
background: linear-gradient(to right, transparent, rgba(245, 158, 11, 0.4), transparent);
}
.site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
padding: 6px 0;
position: relative;
}
.brand {
display: flex;
align-items: center;
gap: 14px;
}
.brand__logo {
display: block;
height: 36px;
width: auto;
max-width: 180px;
object-fit: contain;
}
.brand__mark-wrap {
position: relative;
}
.brand__mark-glow {
position: absolute;
inset: 0;
background: rgba(245, 158, 11, 0.2);
filter: blur(12px);
border-radius: 999px;
}
.brand__mark {
position: relative;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: var(--tm-bg);
border: 1px solid var(--tm-primary);
color: var(--tm-primary);
box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
border-radius: var(--tm-radius-sm);
}
.brand__text {
display: flex;
flex-direction: column;
}
.brand__name {
font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
font-weight: 800;
letter-spacing: -0.02em;
font-size: 18px;
line-height: 1;
text-transform: uppercase;
color: #fff;
}
.brand__name-accent {
color: var(--tm-primary);
}
.brand__sub {
margin-top: 4px;
font-size: 10px;
letter-spacing: .22em;
text-transform: uppercase;
color: #9ca3af;
}
.site-search {
display: none;
flex: 1 1 auto;
max-width: 640px;
margin: 0 48px;
}
@media (min-width: 1025px) {
.site-search {
display: block;
}
}
.site-search.site-search--standalone {
display: block;
flex: 0 0 auto;
max-width: 720px;
margin: 0;
width: 100%;
}
@media (min-width: 1025px) {
.site-search.site-search--standalone {
display: none;
}
}
.site-search__wrap {
position: relative;
}
.site-search__icon {
position: absolute;
top: 50%;
left: 12px;
transform: translateY(-50%);
color: #6b7280;
font-size: 16px;
pointer-events: none;
}
.site-search__hint {
position: absolute;
top: 50%;
right: 12px;
transform: translateY(-50%);
font-size: 10px;
color: #6b7280;
background: var(--tm-surface);
padding: 2px 6px;
border: 1px solid #374151;
}
.site-search input[type="search"] {
width: 100%;
padding: 10px 64px 10px 40px;
background: rgba(39, 39, 42, 0.5);
border: 1px solid #374151;
color: #fff;
outline: none;
text-transform: uppercase;
letter-spacing: .08em;
font-size: 12px;
}
.site-search input[type="search"]::placeholder {
color: #6b7280;
}
.site-search input[type="search"]:focus {
background: rgba(39, 39, 42, 1);
border-color: rgba(245, 158, 11, 0.5);
box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.5);
}
.site-search__results {
position: absolute;
left: 0;
right: 0;
top: calc(100% + 6px);
background: rgba(24, 24, 27, 0.98);
border: 1px solid #374151;
box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
max-height: 360px;
overflow: auto;
display: none;
z-index: 30;
}
.site-search__results.is-open {
display: block;
}
.site-search__item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
border-top: 1px solid rgba(55, 65, 81, 0.5);
color: #e5e7eb;
}
.site-search__item:first-child {
border-top: 0;
}
.site-search__item:hover,
.site-search__item:focus {
background: rgba(245, 158, 11, 0.08);
color: #fff;
}
.site-search__item-title {
font-size: 12px;
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.site-search__item-meta {
flex: 0 0 auto;
font-size: 10px;
letter-spacing: .18em;
text-transform: uppercase;
color: #9ca3af;
}
.site-actions {
display: flex;
align-items: center;
gap: 14px;
}
.site-header__nav {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.site-header__nav li {
list-style: none;
margin: 0;
padding: 0;
}
.site-header__nav a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 12px 12px;
border-radius: var(--tm-radius-sm);
border: 1px solid rgba(245, 158, 11, 0.22);
background: rgba(245, 158, 11, 0.08);
color: #e5e7eb;
font-size: 12px;
font-weight: 900;
letter-spacing: .12em;
text-transform: uppercase;
}
.site-header__nav a:hover,
.site-header__nav a:focus {
background: rgba(245, 158, 11, 1);
border-color: rgba(245, 158, 11, 1);
color: #000;
}
.site-header__nav ul {
list-style: none;
margin: 8px 0 0 10px;
padding: 0 0 0 12px;
border-left: 1px solid rgba(55, 65, 81, 0.5);
display: flex;
flex-direction: column;
gap: 8px;
}
.site-header__nav ul a {
font-size: 11px;
padding: 10px 12px;
border-color: #374151;
background: rgba(39, 39, 42, 0.4);
color: #e5e7eb;
}
.site-header__nav ul a:hover,
.site-header__nav ul a:focus {
background: rgba(245, 158, 11, 0.16);
border-color: rgba(245, 158, 11, 0.35);
color: #fff;
}
@media (min-width: 1025px) {
.site-header__nav {
display: flex;
flex-direction: row;
gap: 14px;
align-items: center;
}
.site-header__nav > li > ul {
display: none;
}
.site-header__nav > li > a {
font-size: 12px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
color: #000;
padding: 10px 18px;
background: var(--tm-primary);
border: 1px solid var(--tm-primary);
border-radius: var(--tm-radius-lg);
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 15px -4px rgba(var(--tm-primary-rgb), 0.5),
inset 0 1px 1px rgba(255, 255, 255, 0.3);
}
.site-header__nav > li > a:hover {
color: #fff;
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(8px);
}
}
.site-header__menu-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(245, 158, 11, 0.1);
border: 1px solid rgba(245, 158, 11, 0.3);
color: var(--tm-primary);
border-radius: var(--tm-radius-sm);
}
@media (min-width: 1025px) {
.site-header__menu-btn {
display: none;
}
}
html.tm-menu-open,
html.tm-menu-open body {
overflow: hidden;
}
.site-header__drawer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .2s ease, visibility .2s ease;
z-index: 60;
overflow: hidden;
contain: paint;
will-change: transform;
}
html.tm-menu-open .site-header__drawer {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.site-header__drawer-backdrop {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.55);
}
.site-header__drawer-panel {
position: absolute;
top: 0;
right: -100%; height: 100%;
width: min(360px, 86vw);
background: rgba(24, 24, 27, 0.98);
border-left: 1px solid #374151;
box-shadow: -18px 0 60px rgba(0, 0, 0, 0.55);
transition: right .2s ease; padding: 14px;
}
html.tm-menu-open .site-header__drawer-panel {
right: 0; }
.site-header__drawer-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(55, 65, 81, 0.5);
margin-bottom: 12px;
}
.site-header__drawer-title {
font-size: 11px;
font-weight: 900;
letter-spacing: .18em;
text-transform: uppercase;
color: #e5e7eb;
}
.site-header__drawer-close {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background: rgba(39, 39, 42, 0.7);
border: 1px solid #374151;
color: #e5e7eb;
border-radius: var(--tm-radius-sm);
}
@media (min-width: 1025px) {
.site-header__drawer {
position: static;
width: auto;
height: auto;
opacity: 1;
visibility: visible;
pointer-events: auto;
overflow: visible;
contain: none;
will-change: auto;
z-index: auto;
}
.site-header__drawer-backdrop,
.site-header__drawer-head {
display: none;
}
.site-header__drawer-panel {
position: static;
right: auto;
height: auto;
width: auto;
background: transparent;
border-left: 0;
box-shadow: none;
transition: none;
padding: 0;
}
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 16px;
width: 100%; }
.site-main {
flex: 1 0 auto;
padding: 16px 0;
position: relative;
}
.layout {
display: grid;
grid-template-columns: 100%;
gap: 32px;
}
@media (min-width: 1025px) {
.layout {
grid-template-columns: 3fr 1fr;
align-items: start;
}
}.site-footer {
border-top: 1px solid rgba(55, 65, 81, 1);
background: var(--tm-surface);
margin-top: auto;
position: relative;
overflow: hidden;
contain: paint;
}
.site-footer__glow {
position: absolute;
left: 0;
right: 0;
top: 0;
height: 1px;
background: rgba(245, 158, 11, 0.4);
}
@media (min-width: 768px) {
.site-footer__glow {
background: linear-gradient(to right, transparent, rgba(245, 158, 11, 0.5), transparent);
}
}
.site-footer__inner {
padding: 44px 0;
content-visibility: auto;
contain-intrinsic-size: 1px 1000px;
}
.site-footer__brand {
margin-bottom: 0;
display: inline-flex;
justify-content: center;
}
.site-footer__brand .brand__logo {
height: 40px;
width: auto;
max-width: 100%;
}
.site-footer__desc {
font-size: 11px;
line-height: 1.5;
margin: 12px auto 0;
color: #9ca3af;
max-width: 600px;
text-align: center;
}
.site-footer__grid {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
}
.site-footer__grid--top {
gap: 24px;
}
.site-footer__grid--mid {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
gap: 16px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
@media (min-width: 768px) {
.site-footer__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.site-footer__grid--top {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
}
@media (min-width: 1024px) {
.site-footer__grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.site-footer__grid--top {
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.site-footer__grid--mid {
grid-template-columns: 1fr;
}
}
.site-footer__h {
font-size: 17px;
font-weight: 900;
color: var(--tm-primary);
text-transform: uppercase;
letter-spacing: .14em;
border-bottom: 1px solid rgba(245, 158, 11, 0.2);
padding-bottom: 10px;
display: inline-block;
margin: 0 0 14px;
}
.site-footer__list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
font-size: 12px;
}
.site-footer__list a {
color: #9ca3af;
}
.site-footer__list a:hover {
color: #fff;
}
.site-footer__list--cards {
gap: 12px;
}
.site-footer__list--cards .site-footer__card {
color: #e5e7eb;
text-decoration: none;
}
.site-footer__list--cards .site-footer__card:hover {
color: #fff;
}
.site-footer__item {
margin: 0;
}
.site-footer__card {
display: flex;
gap: 14px;
align-items: center;
padding: 12px;
border-radius: var(--tm-radius-lg);
border: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(255, 255, 255, 0.06);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
min-width: 0;
position: relative;
overflow: hidden;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
will-change: transform;
}
@media (max-width: 767px) {
.site-footer__card {
transition: none !important;
transform: none !important;
box-shadow: none !important;
will-change: auto;
}
.site-footer__card::before {
display: none !important;
}
.site-footer__card:hover {
transform: none !important;
box-shadow: none !important;
background: rgba(255, 255, 255, 0.08) !important;
}
}
.site-footer__card::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.05), transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}
.site-footer__card:hover {
border-color: rgba(245, 158, 11, 0.3);
background: rgba(255, 255, 255, 0.07);
transform: translateY(-3px);
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.site-footer__card:hover::before {
opacity: 1;
}
.site-footer__thumb-wrap {
width: 52px;
height: 52px;
flex: 0 0 52px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: #000;
overflow: hidden;
display: inline-flex;
align-items: center;
justify-content: center;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
will-change: transform;
}
@media (max-width: 767px) {
.site-footer__thumb-wrap {
transition: none !important;
transform: none !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
will-change: auto;
}
.site-footer__card:hover .site-footer__thumb-wrap {
transform: none !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}
}
.site-footer__card:hover .site-footer__thumb-wrap {
border-color: var(--tm-primary);
transform: scale(1.1) rotate(-4deg);
box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}
.site-footer__thumb {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.site-footer__thumb-fallback {
color: var(--tm-primary);
font-size: 26px;
opacity: 0.8;
}
.site-footer__card-main {
min-width: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.site-footer__title {
font-size: 13px;
font-weight: 700;
letter-spacing: -0.01em;
text-transform: none;
line-height: 1.3;
color: #fff;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color 0.3s ease;
}
.site-footer__card:hover .site-footer__title {
color: var(--tm-primary);
}
.site-footer__meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
}
.site-footer__genres {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px 12px;
}
.site-footer__genres > li {
display: flex;
min-width: 0;
}
.site-footer__genre {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(255, 255, 255, 0.06);
color: #e5e7eb;
text-decoration: none;
min-width: 0;
width: 100%;
min-height: 44px;
transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
will-change: transform;
}
@media (max-width: 767px) {
.site-footer__genre {
transition: none !important;
transform: none !important;
box-shadow: none !important;
will-change: auto;
}
.site-footer__genre:hover {
transform: none !important;
box-shadow: none !important;
background: rgba(255, 255, 255, 0.08) !important;
}
.site-footer__genre:hover .site-footer__genre-ico {
transform: none !important;
}
}
.site-footer__genre:hover {
border-color: rgba(245, 158, 11, 0.3);
background: rgba(255, 255, 255, 0.08);
color: var(--tm-primary);
transform: translateY(-2px);
box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4);
}
.site-footer__brandbox {
text-align: center;
}
.site-footer__brandbox .site-footer__brand {
display: inline-flex;
justify-content: center;
}
.site-footer__brandbox .site-footer__desc {
max-width: 520px;
margin-left: auto;
margin-right: auto;
}
.site-footer__genre-ico {
width: 24px;
height: 24px;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--tm-primary);
font-size: 20px;
flex: 0 0 24px;
transition: transform 0.3s ease;
}
.site-footer__genre:hover .site-footer__genre-ico {
transform: scale(1.15);
}
.site-footer__genre-txt {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 11px;
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
}
.site-footer__chip {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 3px 8px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(255, 255, 255, 0.05);
font-size: 10px;
font-weight: 700;
letter-spacing: .02em;
text-transform: none;
color: #fff;
line-height: 1.2;
transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.site-footer__chip--amber {
border-color: rgba(245, 158, 11, 0.4);
background: linear-gradient(to bottom, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.15));
color: #ffc107;
box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}
.site-footer__chip--version {
border-color: rgba(59, 130, 246, 0.4);
background: linear-gradient(to bottom, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
color: #60a5fa;
box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}
.site-footer__chip--rating {
border-color: rgba(16, 185, 129, 0.4);
background: linear-gradient(to bottom, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.15));
color: #10b981;
box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}
.site-footer__star-icon {
font-size: 12px;
color: #10b981;
}
.site-footer__chip--muted {
border-color: rgba(156, 163, 175, 0.3);
background: linear-gradient(to bottom, rgba(156, 163, 175, 0.15), rgba(156, 163, 175, 0.1));
color: #d1d5db;
}
.site-footer__chip-icon {
font-size: 10px;
line-height: 1;
}
.site-footer__chip-ico {
font-size: 10px;
line-height: 1;
}
.site-footer__stars {
display: inline-flex;
align-items: center;
gap: 2px;
padding: 2px 6px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.05);
background: rgba(255, 255, 255, 0.02);
}
.site-footer__star {
--fill: 0%;
font-size: 11px;
line-height: 1;
color: rgba(255, 255, 255, 0.1);
display: inline-block;
position: relative;
}
.site-footer__star::after {
content: 'star';
position: absolute;
left: 0;
top: 0;
width: var(--fill);
overflow: hidden;
white-space: nowrap;
color: #facc15;
}
.site-footer__star.is-on {
--fill: 100%;
}
.site-footer__bottom {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
text-align: center;
padding-top: 20px;
}
@media (min-width: 768px) {
.site-footer__bottom {
flex-direction: column;
justify-content: center;
}
}
.site-footer__copy {
font-size: 13px;
color: #9ca3af;
font-weight: 500;
display: flex;
flex-direction: column;
gap: 2px;
}
.site-footer__copy-sub {
font-size: 13px;
color: #6b7280;
font-weight: 400;
}
.site-footer__docs {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
}
@media (min-width: 768px) {
.site-footer__docs {
justify-content: center;
}
}
.site-footer__docs-link {
color: #9ca3af;
font-size: 13px;
text-decoration: none;
white-space: nowrap;
padding: 6px 12px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 6px;
transition: all 0.2s ease;
}
.site-footer__docs-link:hover {
color: #fff;
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.1);
transform: translateY(-1px);
}
.disclaimer {
margin-top: 24px;
font-size: 13px;
text-align: center;
line-height: 1.6;
padding: 16px;
background: rgba(0, 0, 0, 0.2);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.03);
margin-left: auto;
margin-right: auto;
}
.disclaimer p {
margin: 0;
}
@media (max-width: 767px) {
.site-footer__grid--top {
grid-template-columns: 1fr;
gap: 32px;
}
.site-footer__genres {
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.site-footer__docs {
gap: 6px;
}
.site-footer__docs-link {
font-size: 13px;
padding: 5px 10px;
}
}.blog-head {
margin: 0;
}
.blog-head__title {
margin: 0 0 12px;
}
.blog-post .blog-head__title {
text-align: center;
} .blog-meta {
display: inline-flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 1.25rem;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
border-radius: 16px;
padding: 12px 24px;
margin: 10px 0 20px;
color: rgba(255, 255, 255, 0.9);
font-family: var(--tm-font-mono);
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.03em;
line-height: 1;
}
.blog-post .blog-head {
display: flex;
flex-direction: column;
align-items: center;
}
.blog-meta__item,
.blog-meta__badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
position: relative;
white-space: nowrap;
}
.blog-meta__item:not(:last-child)::after {
content: "";
display: block;
width: 3px;
height: 3px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
position: absolute;
right: -0.75rem;
top: 50%;
transform: translateY(-50%);
}
.blog-meta__badge {
margin-right: 0.5rem;
}
.blog-meta__badge {
background: linear-gradient(135deg, var(--tm-primary) 0%, darken(var(--tm-primary), 20%) 100%);
background: var(--tm-primary);
background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
padding: 6px 12px;
border-radius: 8px;
font-weight: 700;
font-size: 0.7rem;
text-transform: uppercase;
color: #fff;
text-decoration: none;
box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-meta .blog-meta__badge:hover {
transform: translateY(-1px);
box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
color: #fff;
}
.blog-meta__icon,
.blog-meta__badge-icon {
width: 14px;
height: 14px;
opacity: 0.8;
color: var(--tm-primary);
}
.blog-meta__badge-icon {
color: #fff;
}
.blog-meta a {
color: inherit;
text-decoration: none;
transition: color 0.2s ease;
}
.blog-meta a:hover {
color: var(--tm-primary);
}
.blog-meta__sep {
display: none;
}
@media (max-width: 767px) {
.blog-meta {
display: grid;
width: 100%;
box-sizing: border-box;
gap: 12px;
padding: 16px;
border-radius: 12px;
justify-items: center;
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(8px);
}
.blog-meta__item:not(:last-child)::after {
display: none;
}
.blog-meta__badge {
margin-right: 0;
width: auto;
justify-self: center;
text-align: center;
}
.blog-post .blog-meta:not(.blog-meta--page) {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
column-gap: 12px;
row-gap: 8px;
}
.blog-post .blog-meta:not(.blog-meta--page) .blog-meta__badge {
flex: 0 0 100%;
width: 100%;
justify-content: center;
order: -1;
margin-bottom: 4px;
}
.blog-post .blog-meta:not(.blog-meta--page) .blog-meta__item--date {
margin-right: 0;
}
.blog-post .blog-meta:not(.blog-meta--page) .blog-meta__item--readtime {
margin-left: 0;
}
.blog-meta.blog-meta--page {
display: flex;
justify-content: center;
gap: 20px;
}
.blog-meta.blog-meta--page .blog-meta__item:first-child::after {
content: "";
display: block;
width: 1px;
height: 12px;
background: rgba(255, 255, 255, 0.2);
position: absolute;
right: -11px;
top: 50%;
transform: translateY(-50%);
}
}
.blog-article {
background: linear-gradient(135deg, rgba(24, 24, 27, 1) 0%, rgba(18, 18, 20, 1) 100%);
}
.blog-article__scan {
position: absolute;
inset: 0;
pointer-events: none;
background:
repeating-linear-gradient(
135deg,
rgba(255, 140, 0, 0.05),
rgba(255, 140, 0, 0.05) 2px,
transparent 2px,
transparent 18px
);
background-color: #0f0f0f;
opacity: 0.55;
z-index: 0;
}
.blog-article .card__body {
z-index: 1;
position: relative;
}
.blog-article__content h2,
.blog-article__content h3 {
position: relative;
padding-left: 16px;
}
.blog-article__content h2::before,
.blog-article__content h3::before {
content: ">";
position: absolute;
left: 0;
top: 0;
color: var(--tm-primary);
font-weight: 900;
}
.blog-article__content blockquote {
border-left: 2px solid var(--tm-primary);
background: rgba(245, 158, 11, 0.05);
padding: 14px 16px;
margin: 18px 0;
}
.blog-article__content pre {
background: rgba(0, 0, 0, 0.4);
border: 1px solid rgba(55, 65, 81, 0.85);
padding: 14px;
max-height: clamp(220px, 50vh, 420px);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
scrollbar-gutter: stable;
}
.blog-related {
margin-top: 18px;
}
.blog-related__title {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 14px;
font-size: 12px;
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--tm-primary);
border-bottom: 1px solid rgba(245, 158, 11, 0.18);
padding-bottom: 10px;
}
.blog-related__title .icon-svg {
font-size: 18px;
line-height: 1;
}
.blog-related__list {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}
@media (min-width: 640px) {
.blog-related__list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1025px) {
.blog-related__list {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
.blog-related__item {
display: flex;
gap: 10px;
align-items: center;
padding: 10px 10px;
border-radius: 14px;
border: 1px solid rgba(245, 158, 11, 0.14);
background: rgba(18, 18, 20, 0.92);
transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
min-width: 0;
}
.blog-related--below {
margin-top: 18px;
}
.blog-related__item:hover {
border-color: rgba(245, 158, 11, 0.32);
background: rgba(24, 24, 27, 0.92);
transform: translateY(-1px);
}
.blog-related__thumb {
width: 44px;
height: 44px;
flex: 0 0 44px;
border-radius: 12px;
border: 1px solid rgba(245, 158, 11, 0.18);
background: rgba(17, 24, 39, 0.7);
overflow: hidden;
display: inline-flex;
align-items: center;
justify-content: center;
color: #9ca3af;
}
.blog-related__thumb img {
width: 44px;
height: 44px;
object-fit: cover;
display: block;
}
.blog-related__meta {
min-width: 0;
display: flex;
flex-direction: column;
gap: 4px;
}
.blog-related__name {
font-size: 11px;
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
line-height: 1.2;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
color: #e5e7eb;
}
.blog-related__sub {
font-size: 10px;
color: #6b7280;
font-family: var(--tm-font-mono);
letter-spacing: .08em;
text-transform: uppercase;
}
.blog-related__more {
margin-top: 12px;
}
.blog-related__more-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: var(--tm-primary);
white-space: nowrap;
}
.blog-related__more-link:hover {
color: #fff;
}
.blog-related__more-link .icon-svg {
font-size: 18px;
line-height: 1;
}.layout__sidebar {
display: none;
}
@media (min-width: 1025px) {
.layout__sidebar {
display: block;
position: sticky;
top: 24px;
height: fit-content;
}
}
.sidebar {
display: flex;
flex-direction: column;
gap: 32px;
}
.ad {
background: var(--tm-surface);
border: 1px dashed rgba(107, 114, 128, 0.9);
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.ad--tall {
min-height: 600px;
}
.ad--sticky {
position: static;
top: auto;
width: 100%;
max-width: 100%;
}
@media (max-width: 1023px) {
.layout__sidebar .ad--sticky {
position: static !important;
top: auto !important;
left: auto !important;
right: auto !important;
width: auto !important;
}
}
.ad--sticky > * {
width: 100%;
max-width: 100%;
}
.ad--sticky iframe,
.ad--sticky ins,
.ad--sticky object,
.ad--sticky embed {
width: 100% !important;
max-width: 100% !important;
}
.ad--sticky img {
max-width: 100%;
height: auto;
}
@media (max-width: 767px) {
.flex-center-rek {
padding: 0;
margin: 0;
}
.flex-center-rek > *:not(script),
.flex-center-rek :is(iframe, ins, object, embed, img, video) {
max-width: 100% !important;
width: 100% !important;
}
}
.ad__grid {
position: absolute;
inset: 0;
background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
background-size: 8px 8px;
opacity: .2;
mix-blend-mode: overlay;
transition: opacity .3s ease;
}
.ad:hover .ad__grid {
opacity: .35;
mix-blend-mode: normal;
}
.ad__corner {
position: absolute;
width: 12px;
height: 12px;
border-color: rgba(245, 158, 11, 0.5);
}
.ad__corner--tl {
top: 0;
left: 0;
border-top: 1px solid;
border-left: 1px solid;
}
.ad__corner--tr {
top: 0;
right: 0;
border-top: 1px solid;
border-right: 1px solid;
}
.ad__corner--bl {
bottom: 0;
left: 0;
border-bottom: 1px solid;
border-left: 1px solid;
}
.ad__corner--br {
bottom: 0;
right: 0;
border-bottom: 1px solid;
border-right: 1px solid;
}
.ad__inner {
background: rgba(0, 0, 0, 0.6);
border: 1px solid rgba(55, 65, 81, 1);
backdrop-filter: blur(10px);
padding: 18px;
text-align: center;
position: relative;
z-index: 1;
}
.ad__label {
font-size: 9px;
text-transform: uppercase;
letter-spacing: .2em;
color: var(--tm-primary);
font-weight: 900;
margin-bottom: 14px;
animation: tm-pulse 1.6s ease-in-out infinite;
}
.ad__icon {
width: 64px;
height: 64px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
display: inline-flex;
align-items: center;
justify-content: center;
color: #6b7280;
margin: 0 auto 10px;
}
.ad__size {
font-size: 10px;
color: #9ca3af;
}
.ad__btn {
margin-top: 14px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 6px 10px;
font-size: 9px;
background: rgba(245, 158, 11, 0.2);
border: 1px solid rgba(245, 158, 11, 0.3);
color: var(--tm-primary);
text-transform: uppercase;
letter-spacing: .12em;
font-weight: 900;
}
.ad__btn:hover {
background: var(--tm-primary);
color: #000;
}.comments {
margin-top: 32px;
}
.feedback {
margin-top: 24px;
}
.feedback__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 22px;
padding: 12px 14px;
background: var(--tm-surface-2);
border: 1px solid rgba(63, 63, 70, 0.6);
border-radius: 12px;
}
.feedback__title {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 12px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: .14em;
color: #fff;
margin: 0;
}
.feedback__title-icon {
width: 32px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(245, 158, 11, 0.1);
border-radius: 999px;
color: var(--tm-primary);
}
.feedback__title-icon .icon-svg {
font-size: 16px;
}
.feedback__entries {
background: rgba(24, 24, 27, 1);
border-radius: 999px;
border: 1px solid rgba(55, 65, 81, 0.85);
padding: 0 10px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.feedback__entries-text {
font-size: 12px;
color: #d1d1d1;
font-family: var(--tm-font-mono);
line-height: 1;
display: block;
}
.feedback__compose {
margin-bottom: 18px;
background: rgba(24, 24, 27, 0.6);
border: 1px solid rgba(55, 65, 81, 0.7);
padding: 14px;
border-radius: 2px;
}
@media (min-width: 768px) {
.feedback__compose {
padding: 18px;
}
}
.feedback__form {
display: grid;
gap: 12px;
}
.feedback__fields {
display: grid;
gap: 12px;
}
.feedback__row {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
@media (min-width: 768px) {
.feedback__row {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.feedback__input-group {
position: relative;
}
.feedback__input-icon {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #6b7280;
}
.feedback__input,
.feedback__textarea {
width: 100%;
background: rgba(39, 39, 42, 0.8);
border: 1px solid rgba(55, 65, 81, 0.85);
color: #fff;
padding: 10px 10px 10px 38px;
outline: none;
border-radius: 2px;
font-family: var(--tm-font-mono);
font-size: 12px;
}
.feedback__textarea {
padding-left: 10px;
min-height: 120px;
resize: vertical;
}
.feedback__input::placeholder,
.feedback__textarea::placeholder {
color: rgba(156, 163, 175, 0.75);
}
.feedback__input:focus,
.feedback__textarea:focus {
background: rgba(39, 39, 42, 1);
border-color: rgba(245, 158, 11, 0.55);
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}
.feedback__input-group:focus-within .feedback__input-icon {
color: var(--tm-primary);
}
.feedback__textarea-wrap {
display: flex;
flex-direction: column;
}
.feedback__submit-inner {
margin-top: 10px;
display: grid;
gap: 12px;
}
.feedback__cookies {
display: flex;
align-items: center;
gap: 10px;
margin: 0;
padding: 10px 12px;
background: rgba(39, 39, 42, 0.5);
border: 1px solid rgba(55, 65, 81, 0.75);
border-radius: 2px;
color: rgba(156, 163, 175, 0.9);
font-size: 11px;
line-height: 1.45;
}
.feedback__cookies input[type="checkbox"] {
width: 16px;
height: 16px;
margin-top: 2px;
accent-color: var(--tm-primary);
flex: 0 0 auto;
}
.feedback__cookies label {
cursor: pointer;
}
@media (min-width: 768px) {
.feedback__btn {
justify-self: end;
}
}
@media (max-width: 767px) {
.feedback__btn {
width: 100%;
justify-content: center;
}
}
.feedback__btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
background: rgba(245, 158, 11, 0.15);
border: 1px solid rgba(245, 158, 11, 0.35);
color: var(--tm-primary);
text-transform: uppercase;
letter-spacing: .14em;
font-weight: 900;
font-size: 11px;
cursor: pointer;
border-radius: 2px;
}
.feedback__btn:hover {
background: var(--tm-primary);
color: #000;
}
.feedback__login-note {
margin-top: 10px;
}
.comments__login-note {
margin-top: 10px;
}
.feedback__list {
display: flex;
flex-direction: column;
gap: 16px;
}
.feedback-item {
background: rgba(39, 39, 42, 0.8);
border: 1px solid rgba(55, 65, 81, 0.85);
padding: 18px;
border-radius: 2px;
transition: border-color .2s ease;
}
.feedback-item:hover {
border-color: rgba(107, 114, 128, 0.95);
}
.feedback-item.depth-2,
.feedback-item.depth-3,
.feedback-item.depth-4,
.feedback-item.depth-5 {
margin-left: 10px;
}
@media (min-width: 768px) {
.feedback-item.depth-2,
.feedback-item.depth-3,
.feedback-item.depth-4,
.feedback-item.depth-5 {
margin-left: 22px;
}
}
.feedback-item__row {
display: flex;
align-items: flex-start;
gap: 16px;
}
.feedback-item__avatar {
width: 40px;
height: 40px;
background: linear-gradient(135deg, rgba(107, 114, 128, 0.9), rgba(0, 0, 0, 1));
border: 1px solid rgba(75, 85, 99, 0.9);
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-family: var(--tm-font-mono);
color: #d1d5db;
font-weight: 900;
border-radius: 2px;
flex: 0 0 auto;
}
.feedback-item__avatar--root {
background: rgba(15, 15, 16, 1);
border-color: rgba(245, 158, 11, 0.8);
color: var(--tm-primary);
box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}
.feedback-item__avatar--root .icon-svg {
font-size: 20px;
}
.feedback-item__main {
flex: 1 1 auto;
min-width: 0;
}
.feedback-item__top {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px 12px;
margin-bottom: 10px;
}
.feedback-item__who {
display: inline-flex;
align-items: center;
gap: 10px;
min-width: 0;
}
.feedback-item__name {
font-size: 12px;
font-weight: 900;
color: var(--tm-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.feedback-item__badge {
font-size: 9px;
padding: 2px 6px;
background: var(--tm-primary);
color: #000;
font-weight: 900;
border-radius: 2px;
letter-spacing: .14em;
box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
flex: 0 0 auto;
}
.feedback-item__badge--pending {
background: rgba(239, 68, 68, 1);
color: #000;
box-shadow: 0 0 8px rgba(239, 68, 68, 0.45);
}
.feedback-item__stamp {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 10px;
color: rgba(245, 158, 11, 0.7);
text-transform: uppercase;
white-space: nowrap;
}
.feedback-item__stamp .icon-svg {
font-size: 14px;
}
.feedback-item__text {
font-size: 12px;
color: #e5e7eb;
font-family: var(--tm-font-mono);
line-height: 1.6;
margin-bottom: 12px;
}
.feedback-item__bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px 12px;
border-top: 1px solid rgba(55, 65, 81, 0.5);
padding-top: 10px;
}
.feedback-item__timestamp {
font-size: 10px;
color: rgba(245, 158, 11, 0.6);
font-family: var(--tm-font-mono);
white-space: nowrap;
}
.feedback-item__actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.feedback-item__actions a {
font-size: 10px;
color: var(--tm-primary);
font-family: var(--tm-font-mono);
text-transform: uppercase;
letter-spacing: .14em;
font-weight: 900;
}
.feedback-item__actions a:hover {
color: #fff;
}
.comments__head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 14px;
}
.comments__title {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 12px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: .14em;
color: #fff;
margin: 0;
}
.comments__title .icon-svg {
color: var(--tm-primary);
}
.comments__count {
color: var(--tm-muted);
font-weight: 700;
}
.comments__compose {
border-top: 1px solid rgba(63, 63, 70, 0.5);
padding-top: 14px;
}
.comments__form {
display: grid;
gap: 10px;
}
.comments__input-group {
position: relative;
}
.comments__input-icon {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
font-size: 18px;
color: #6b7280;
}
.comments__input,
.comments__textarea {
width: 100%;
background: rgba(39, 39, 42, 0.35);
border: 1px solid rgba(63, 63, 70, 0.8);
color: #fff;
padding: 10px 10px 10px 38px;
outline: none;
border-radius: var(--tm-radius-sm);
}
.comments__textarea {
padding-left: 10px;
}
.comments__btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
background: rgba(245, 158, 11, 0.15);
border: 1px solid rgba(245, 158, 11, 0.35);
color: var(--tm-primary);
text-transform: uppercase;
letter-spacing: .14em;
font-weight: 900;
font-size: 11px;
cursor: pointer;
border-radius: var(--tm-radius-sm);
}
.comments__btn:hover {
background: var(--tm-primary);
color: #000;
}
.comment {
border-top: 1px solid rgba(63, 63, 70, 0.35);
padding-top: 14px;
margin-top: 14px;
}
.comment__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 14px;
margin-bottom: 10px;
}
.comment__author-info {
display: inline-flex;
align-items: center;
gap: 6px;
color: #e5e7eb;
font-weight: 900;
font-size: 12px;
}
.comment__author-info .icon-svg {
color: var(--tm-primary);
font-size: 18px;
}
.comment__time a {
color: #9ca3af;
font-size: 11px;
display: inline-flex;
align-items: center;
gap: 6px;
}
.comment__content {
color: #d1d5db;
font-size: 13px;
line-height: 1.6;
}
.comment__actions a {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--tm-primary);
font-size: 11px;
text-transform: uppercase;
letter-spacing: .14em;
font-weight: 900;
margin-right: 12px;
}.blog-toc {
background: rgba(17, 24, 39, 0.35);
border-style: dashed;
margin: 18px 0;
}
.blog-toc__title {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0 0 14px;
font-size: 12px;
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--tm-primary);
border-bottom: 1px solid rgba(245, 158, 11, 0.18);
padding-bottom: 10px;
}
.blog-toc__title .icon-svg {
font-size: 18px;
line-height: 1;
}
.blog-toc__details {
margin: 0;
}
.blog-toc__summary {
cursor: pointer;
list-style: none;
}
.blog-toc__summary::-webkit-details-marker {
display: none;
}
.blog-toc__summary::marker {
content: "";
}
.blog-toc__summary .blog-toc__title {
margin: 0;
}
.blog-toc__summary .blog-toc__title::after {
content: none;
}
.blog-toc__details[open] .blog-toc__summary .blog-toc__title::after {
content: none;
}
.blog-toc__chev {
margin-left: auto;
font-size: 18px;
line-height: 1;
color: rgba(156, 163, 175, 0.95);
transition: transform 0.2s ease;
}
.blog-toc__details[open] .blog-toc__chev {
transform: rotate(180deg);
}
.blog-toc__nav {
margin-top: 14px;
}
.blog-toc__list,
.blog-toc__sublist {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.blog-toc__sublist {
margin-top: 10px;
margin-left: 18px;
gap: 8px;
}
.blog-toc__li {
margin: 0;
padding: 0;
}
.blog-toc__link {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 10px;
border: 1px solid rgba(55, 65, 81, 0.8);
background: rgba(24, 24, 27, 0.5);
transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .15s ease;
min-width: 0;
}
.blog-toc__link:hover {
border-color: rgba(245, 158, 11, 0.45);
background: rgba(245, 158, 11, 0.07);
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
transform: translateY(-1px);
}
.blog-toc__prompt {
color: var(--tm-primary);
font-weight: 900;
font-family: var(--tm-font-mono);
line-height: 1.35;
}
.blog-toc__link--l2 {
border-left: 2px solid rgba(245, 158, 11, 0.22);
padding-left: 12px;
}
.blog-toc__link--l3 {
border-left: 2px solid rgba(245, 158, 11, 0.9);
background: rgba(245, 158, 11, 0.05);
padding-left: 18px;
}
.blog-toc__link--l3 .blog-toc__prompt {
color: transparent;
position: relative;
}
.blog-toc__link--l3 .blog-toc__prompt::after {
content: "↳";
position: absolute;
left: 0;
top: 0;
color: var(--tm-primary);
}
.blog-toc__link--l3 .blog-toc__text {
color: rgba(209, 213, 219, 0.95);
}
.blog-toc__text {
color: rgba(229, 231, 235, 0.98);
font-size: 12px;
line-height: 1.35;
letter-spacing: .02em;
overflow-wrap: anywhere;
}.tm-lightbox {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
flex-direction: column;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
font-family: var(--tm-font-sans, system-ui, sans-serif);
}
.tm-lightbox[aria-hidden="false"] {
opacity: 1;
pointer-events: auto;
}
.tm-lightbox__backdrop {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(10px);
z-index: 0;
}
.tm-lightbox__container {
position: relative;
z-index: 1;
flex: 1;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
overflow: hidden;
}
.tm-lightbox__header {
flex: 0 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 24px;
background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
z-index: 10;
}
.tm-lightbox__counter {
color: rgba(255,255,255,0.7);
font-size: 14px;
font-weight: 500;
}
.tm-lightbox__toolbar {
display: flex;
gap: 12px;
}
.tm-lightbox__btn {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.1);
color: #fff;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
}
.tm-lightbox__btn:hover {
background: rgba(255,255,255,0.2);
transform: scale(1.05);
}
.tm-lightbox__btn:active {
transform: scale(0.95);
}
.tm-lightbox__btn--close {
background: rgba(239, 68, 68, 0.2);
border-color: rgba(239, 68, 68, 0.3);
}
.tm-lightbox__btn--close:hover {
background: rgba(239, 68, 68, 0.4);
}
.tm-lightbox__main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
overflow: hidden;
}
.tm-lightbox__viewport {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
cursor: grab;
}
.tm-lightbox__viewport:active {
cursor: grabbing;
}
.tm-lightbox__content {
display: flex;
align-items: center;
justify-content: center;
transform-origin: center;
transition: transform 0.1s linear;
max-width: 100%;
max-height: 100%;
}
.tm-lightbox--dragging .tm-lightbox__content {
transition: none;
}
.tm-lightbox__content img {
max-width: 90vw;
max-height: 80vh;
object-fit: contain;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
user-select: none;
-webkit-user-drag: none;
}
.tm-lightbox__nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
border: 1px solid rgba(255,255,255,0.1);
color: #fff;
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
z-index: 5;
}
.tm-lightbox__nav:hover {
background: rgba(255,255,255,0.1);
transform: translateY(-50%) scale(1.1);
}
.tm-lightbox__nav--prev { left: 20px; }
.tm-lightbox__nav--next { right: 20px; }
.tm-lightbox__footer {
flex: 0 0 auto;
padding: 20px;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
text-align: center;
pointer-events: none;
}
.tm-lightbox__caption {
color: #fff;
font-size: 15px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
max-width: 800px;
margin: 0 auto;
pointer-events: auto;
}
.tm-lightbox__loader {
width: 40px;
height: 40px;
border: 3px solid rgba(255,255,255,0.3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
position: absolute;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -20px;
display: none;
}
@media (max-width: 768px) {
.tm-lightbox__header { padding: 12px 16px; }
.tm-lightbox__toolbar { gap: 8px; }
.tm-lightbox__btn { width: 36px; height: 36px; }
.tm-lightbox__nav { display: none; }
.tm-lightbox__content img { max-width: 100%; max-height: 70vh; }
}