: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;
--rek-min-h: 100px;
} *,
*::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 code {
font-family: var(--tm-font-mono);
font-size: 0.9em;
padding: 1px 5px;
background: rgba(24, 24, 27, 0.95);
border: 1px solid rgba(245, 158, 11, 0.2);
border-radius: var(--tm-radius-sm);
color: #e5e5e5;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
white-space: nowrap;
word-break: break-all;
}
.entry pre code,
.entry pre.wp-block-preformatted code {
background: none;
border: none;
padding: 0;
box-shadow: none;
white-space: pre-wrap;
word-break: normal;
}
.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,
.entry h4 {
font-family: var(--tm-font-sans);
text-transform: uppercase;
letter-spacing: .02em;
color: #fff;
line-height: 1.3;
}
.entry h5,
.entry h6 {
font-family: var(--tm-font-mono);
text-transform: uppercase;
color: #fff;
line-height: 1.4;
}
.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: flex-start;
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
contain: style;
min-height: var(--rek-min-h);
transition: min-height 0.3s ease;
}
.flex-center-rek:empty,
.flex-center-rek.is-empty {
min-height: 0;
padding: 0;
margin: 0;
overflow: hidden;
}
.flex-center-rek.is-loaded {
min-height: 0;
}
.flex-center-rek > *:not(script) {
display: block;
min-width: 0;
max-width: 100%;
box-sizing: border-box;
}
.flex-center-rek :is(iframe, ins, object, embed) {
max-width: 100% !important;
display: block;
margin: 0 auto;
box-sizing: border-box;
}
.flex-center-rek img,
.flex-center-rek video {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
@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 10px 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-search {
margin-top: 12px;
padding-top: 12px;
border-top: 1px solid rgba(55, 65, 81, 0.5);
}
.site-header__drawer-search .site-search__hint {
display: none;
}
.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: 25px 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;
}
}.app-hero {
display: grid;
gap: 16px;
position: relative;
z-index: 2;
isolation: isolate;
border-radius: 0;
overflow: visible;
padding: 0;
margin: 0;
}
.app-hero__icon-wrapper,
.app-hero__content {
position: relative;
z-index: 20;
}
@media (min-width: 768px) {
.app-hero {
grid-template-columns: 140px 1fr;
gap: 28px;
align-items: center;
}
.app-hero__icon-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
}
.app-hero__icon-wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
text-align: center;
}
.app-hero__icon-frame {
position: relative;
width: fit-content;
}
.app-hero__icon {
width: 150px;
height: 150px;
flex-shrink: 0;
border-radius: 32px;
overflow: hidden;
box-shadow: 
0 4px 12px rgba(0, 0, 0, 0.15),
0 16px 48px rgba(0, 0, 0, 0.25),
inset 0 0 0 1px rgba(255, 255, 255, 0.08);
background: var(--tm-bg-card);
position: relative;
z-index: 2;
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.app-hero__icon-frame:hover .app-hero__icon {
transform: translateY(-4px) scale(1.02);
}
.app-hero__icon-frame:hover .app-hero__icon-glow {
opacity: 0.6;
transform: scale(1.1);
}
.app-hero__icon-glow {
position: absolute;
inset: -20px;
background: radial-gradient(circle at center, rgba(59, 130, 246, 0.3), transparent 70%);
filter: blur(24px);
opacity: 0.3;
z-index: 1;
pointer-events: none;
transition: all 0.4s ease;
}
.app-hero__icon img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
@media (min-width: 768px) {
.app-hero__icon {
width: 140px;
height: 140px;
border-radius: 36px;
}
}
.app-hero__icon-fallback {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
background: rgba(255, 255, 255, 0.02);
}
.app-hero__icon-fallback-icon {
font-size: 48px;
}
.app-hero__rating-wrap {
display: flex;
flex-direction: column;
gap: 4px;
width: 100%;
}
.app-hero__rating-display {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 10px 14px;
}
.app-hero__rating-number {
display: flex;
align-items: baseline;
justify-content: center;
gap: 4px;
font-size: 22px;
font-weight: 700;
line-height: 1;
letter-spacing: -0.01em;
color: #fbbf24;
}
.rating-max {
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.4);
letter-spacing: 0;
}
.app-hero__rating-meta {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
width: 100%;
}
.app-hero__stars {
display: flex;
gap: 3px;
justify-content: center;
position: relative;
touch-action: none; }
@media (max-width: 767px) {
.app-hero__rating-display {
padding: 8px 12px;
gap: 5px;
}
.app-hero__rating-number {
font-size: 20px;
}
.app-hero__stars {
gap: 8px; padding: 5px 0;
}
.app-rating__star .icon-star {
font-size: 22px; }
}
.app-rating__star {
background: none;
border: none;
padding: 0;
--fill: 0%;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
outline: none;
box-shadow: none;
-webkit-tap-highlight-color: transparent;
position: relative;
} .app-rating__star::after {
content: '';
position: absolute;
top: -12px;
bottom: -12px;
left: -4px;
right: -4px;
z-index: 10;
}
.app-rating__star .icon-star {
font-size: 14px;
line-height: 1;
color: rgba(255, 255, 255, 0.1);
transition: all 0.2s ease;
display: block;
}
.app-rating__star .icon-star__fill .icon-svg {
color: #fbbf24;
}
.app-rating__star:active,
.app-rating__star.is-pressed {
transform: scale(0.9);
}
.app-rating__star:hover {
transform: scale(1.2);
} .app-hero__stars.is-hovering .app-rating__star { transition: transform 0.2s ease;
}
.app-hero__stars.is-hovering .app-rating__star .icon-star__fill { width: 0 !important;
transition: width 0.1s ease;
}
.app-hero__stars.is-hovering .app-rating__star.is-active-preview .icon-star__fill { width: 100% !important;
}
.app-hero__stars.is-hovering .app-rating__star.is-active-preview {
transform: scale(1.15);
z-index: 2; } .rating-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(8px);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease;
padding: 20px;
}
.rating-modal.is-visible {
opacity: 1;
pointer-events: auto;
}
.rating-modal__content {
transform: scale(0.9);
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
display: flex;
flex-direction: column;
align-items: center;
width: min(100%, 640px);
max-height: min(92vh, 860px);
overflow-y: auto;
position: relative;
border-radius: 28px;
padding: 28px 24px 24px;
background:
radial-gradient(circle at top, rgba(59, 130, 246, 0.2), transparent 45%),
linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.98));
border: 1px solid rgba(59, 130, 246, 0.2);
box-shadow: 0 32px 80px rgba(2, 6, 23, 0.55);
}
.rating-modal.is-visible .rating-modal__content {
transform: scale(1);
}
.rating-modal__close {
position: absolute;
top: 18px;
right: 18px;
width: 40px;
height: 40px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.22);
background: rgba(15, 23, 42, 0.72);
color: #e5e7eb;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.rating-modal__close:hover {
background: rgba(30, 41, 59, 0.92);
border-color: rgba(96, 165, 250, 0.38);
transform: translateY(-1px);
}
.rating-modal__close-icon {
width: 16px;
height: 16px;
}
.rating-modal__eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(96, 165, 250, 0.9);
margin-bottom: 12px;
}
.rating-modal__title {
margin: 0;
font-size: clamp(26px, 5vw, 34px);
line-height: 1.05;
font-weight: 800;
color: #fff;
text-align: center;
}
.rating-modal__subtitle {
margin: 12px auto 0;
max-width: 500px;
font-size: 15px;
line-height: 1.6;
text-align: center;
color: rgba(226, 232, 240, 0.78);
}
.rating-modal__stars {
display: flex;
gap: 6px;
margin: 28px 0 18px;
padding: 0 10px;
justify-content: center;
flex-wrap: nowrap;
width: 100%;
}
.rating-modal__star {
font-size: 34px;
color: rgba(255, 255, 255, 0.15);
transition: all 0.2s ease;
position: relative;
cursor: pointer;
padding: 6px;
flex-shrink: 0;
border: none;
background: transparent;
}
@media (min-width: 400px) {
.rating-modal__stars {
gap: 16px;
}
.rating-modal__star {
font-size: 42px;
padding: 10px;
}
}
@media (min-width: 768px) {
.rating-modal__star {
font-size: 56px;
padding: 20px;
}
.rating-modal__stars {
gap: 32px;
}
}
.rating-modal__star.is-active {
color: #fbbf24;
transform: scale(1.15);
filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.6));
}
.rating-modal__label {
font-size: 24px;
font-weight: 700;
color: white;
text-align: center;
min-height: 1.2em;
margin-bottom: 12px;
}
.rating-modal__tags {
width: 100%;
margin-top: 10px;
padding-top: 18px;
border-top: 1px solid rgba(148, 163, 184, 0.16);
}
.rating-modal__tags[hidden] {
display: none;
}
.rating-modal__tags-head {
margin-bottom: 14px;
text-align: center;
}
.rating-modal__tags-title {
font-size: 16px;
font-weight: 700;
color: #f8fafc;
}
.rating-modal__tags-subtitle {
margin-top: 6px;
font-size: 13px;
color: rgba(148, 163, 184, 0.9);
}
.rating-modal__chips {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.rating-modal__chip {
border: 1px solid rgba(148, 163, 184, 0.2);
background: rgba(30, 41, 59, 0.7);
color: #e5e7eb;
padding: 10px 14px;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
line-height: 1.25;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.rating-modal__chip:hover {
transform: translateY(-1px);
}
.rating-modal__chip--positive {
border-color: rgba(16, 185, 129, 0.2);
}
.rating-modal__chip--critical {
border-color: rgba(248, 113, 113, 0.2);
}
.rating-modal__chip.is-selected {
color: #fff;
box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
}
.rating-modal__chip--positive.is-selected {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(5, 150, 105, 0.92));
border-color: rgba(16, 185, 129, 0.8);
}
.rating-modal__chip--critical.is-selected {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.92), rgba(220, 38, 38, 0.92));
border-color: rgba(248, 113, 113, 0.8);
}
.rating-modal__chip.is-disabled {
opacity: 0.45;
cursor: not-allowed;
}
.rating-modal__submit {
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
border: none;
padding: 14px 32px;
border-radius: 99px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: all 0.2s ease;
opacity: 0.5;
pointer-events: none;
transform: translateY(10px);
margin-top: 24px;
}
.rating-modal__submit:not(:disabled) {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.rating-modal__submit:not(:disabled):hover {
background: #2563eb;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}
.rating-modal__submit:not(:disabled):active {
transform: translateY(0);
}
.rating-modal__hint {
font-size: 14px;
color: rgba(255, 255, 255, 0.5);
margin-top: 16px;
text-align: center;
max-width: 420px;
}
.js-rating.is-voted .app-rating__star {
cursor: default;
pointer-events: none;
}
.app-rating__star.is-on {
--fill: 100%;
}
.app-hero__rating-info {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.app-hero__rating-count {
display: inline-flex;
align-items: baseline;
justify-content: center;
gap: 4px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.35);
letter-spacing: 0.03em;
text-align: center;
text-transform: none;
}
.app-hero__rating-count-label {
text-transform: uppercase;
}
.rating-my {
display: none;
width: fit-content;
max-width: 100%;
margin: 0 auto;
text-align: center;
font-size: 9px;
color: #10b981;
font-weight: 600;
padding: 3px 8px;
background: rgba(16, 185, 129, 0.08);
border: 1px solid rgba(16, 185, 129, 0.15);
border-radius: 6px;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.rating-my:not([hidden]) {
display: block;
}
.download-hub + .rating-insights {
margin-top: 8px;
}
.card--gradient.rating-insights__card {
position: relative;
overflow: hidden;
border-radius: 0;
border: 1px solid rgba(63, 63, 70, 0.72);
background: rgba(24, 24, 27, 0.58);
box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}
.card--gradient.rating-insights__card::before,
.card--gradient.rating-insights__card::after {
content: "";
position: absolute;
pointer-events: none;
}
.card--gradient.rating-insights__card::before {
top: 0;
right: 0;
background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 68%);
}
.card--gradient.rating-insights__card::after {
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
background-size: 22px 22px;
opacity: 0.22;
}
.card__body.rating-insights__body {
position: relative;
display: flex;
flex-direction: column;
gap: 24px;
padding: 26px 24px;
}
.rating-insights__state {
display: flex;
flex-direction: column;
gap: 20px;
}
.rating-insights__head {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
gap: 18px 24px;
padding-bottom: 14px;
border-bottom: 1px solid rgba(63, 63, 70, 0.72);
}
.rating-insights__title-wrap {
display: grid;
gap: 15px;
min-width: 0;
max-width: 620px;
}
.rating-insights__eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0;
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--tm-primary);
}
.rating-insights__eyebrow-icon {
display: inline-flex;
align-items: center;
justify-content: center;
color: inherit;
}
.rating-insights__eyebrow-icon-svg {
width: 15px;
height: 15px;
}
.rating-insights__title {
margin: 0;
font-size: clamp(22px, 3.4vw, 28px);
line-height: 1.08;
color: #fff;
}
.rating-insights__subtitle {
margin: 0;
font-size: 13px;
line-height: 1.6;
color: rgba(212, 212, 216, 0.78);
}
.rating-insights__metric {
--rating-metric-accent: #7bf425;
--rating-metric-accent-rgb: 123, 244, 37;
position: relative;
display: block;
min-width: min(100%, 312px);
width: min(100%, 336px);
margin-left: auto;
padding: 0;
}
.rating-insights__metric--critical {
--rating-metric-accent: #f24e2d;
--rating-metric-accent-rgb: 242, 78, 45;
}
.rating-insights__metric-dot {
position: relative;
width: 8px;
height: 8px;
border-radius: 999px;
background: var(--rating-metric-accent);
box-shadow: 0 0 12px rgba(var(--rating-metric-accent-rgb), 0.85);
animation: ratingInsightsPulse 1.8s ease-in-out infinite;
flex-shrink: 0;
}
.rating-insights__metric-dot::after {
content: "";
position: absolute;
inset: -4px;
border: 1px solid rgba(var(--rating-metric-accent-rgb), 0.34);
border-radius: inherit;
}
.rating-insights__metric--critical .rating-insights__metric-dot {
background: var(--rating-metric-accent);
box-shadow: 0 0 12px rgba(var(--rating-metric-accent-rgb), 0.85);
}
.rating-insights__metric-copy {
display: block;
min-width: 0;
}
.rating-insights__metric-text {
display: inline-flex;
align-items: center;
flex-wrap: wrap;
justify-content: flex-end;
gap: 10px;
margin: 0;
}
.rating-insights__metric-value {
font-family: var(--tm-font-mono);
font-size: 28px;
font-weight: 800;
line-height: 1;
letter-spacing: -0.04em;
color: var(--rating-metric-accent);
}
.rating-insights__metric--critical .rating-insights__metric-value {
color: var(--rating-metric-accent);
}
.rating-insights__metric-label {
font-size: 11px;
font-weight: 700;
line-height: 1.45;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #f4f4f5;
}
.rating-insights__metric[hidden],
.rating-insights__list[hidden],
.rating-insights__empty[hidden],
.rating-insights__foot[hidden],
.rating-insights__mine[hidden] {
display: none !important;
}
.rating-insights__empty {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 20px;
padding: 24px;
border: 1px solid rgba(63, 63, 70, 0.72);
background: rgba(9, 9, 11, 0.42);
position: relative;
overflow: hidden;
}
.rating-insights__empty::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, rgba(245, 158, 11, 0.85), transparent 70%);
pointer-events: none;
}
.rating-insights__empty-copy {
display: grid;
gap: 10px;
min-width: 0;
}
.rating-insights__empty-title {
margin: 0;
font-size: 20px;
font-weight: 800;
line-height: 1.15;
color: #fff;
}
.rating-insights__empty-text {
margin: 0;
max-width: 680px;
font-size: 14px;
line-height: 1.6;
color: rgba(212, 212, 216, 0.82);
}
.rating-insights__cta {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 52px;
padding: 0 26px;
border: 0;
background: var(--tm-primary);
color: #111827;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.24em;
text-transform: uppercase;
cursor: pointer;
overflow: hidden;
clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
box-shadow: 0 16px 28px rgba(245, 158, 11, 0.22);
transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}
.rating-insights__cta::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
opacity: 0.68;
transform: translateY(100%);
transition: transform 0.25s ease;
}
.rating-insights__cta-content {
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.rating-insights__cta-icon {
display: inline-flex;
align-items: center;
justify-content: center;
}
.rating-insights__cta-icon-svg {
width: 15px;
height: 15px;
}
.rating-insights__cta-label {
white-space: nowrap;
}
.rating-insights__cta-corner {
position: absolute;
width: 8px;
height: 8px;
border-color: rgba(17, 24, 39, 0.38);
border-style: solid;
z-index: 1;
}
.rating-insights__cta-corner--tl {
top: 0;
left: 0;
border-width: 1px 0 0 1px;
}
.rating-insights__cta-corner--br {
right: 0;
bottom: 0;
border-width: 0 1px 1px 0;
}
.rating-insights__cta:hover,
.rating-insights__cta:focus-visible {
transform: translateY(-2px);
box-shadow: 0 20px 30px rgba(245, 158, 11, 0.28);
filter: saturate(1.04);
outline: none;
}
.rating-insights__cta:hover::before,
.rating-insights__cta:focus-visible::before {
transform: translateY(0);
}
.rating-insights__cta.is-disabled,
.rating-insights__cta[disabled],
.rating-insights__cta[aria-disabled="true"] {
cursor: default;
transform: none;
filter: none;
box-shadow: none;
background: #3f3f46;
color: rgba(228, 228, 231, 0.78);
}
.rating-insights__cta.is-disabled::before,
.rating-insights__cta[disabled]::before,
.rating-insights__cta[aria-disabled="true"]::before {
transform: translateY(100%);
}
.rating-insights__cta--summary {
min-height: 48px;
padding: 0 22px;
font-size: 12px;
letter-spacing: 0.2em;
box-shadow: 0 14px 24px rgba(245, 158, 11, 0.18);
}
.rating-insights__list {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
@media (min-width: 640px) {
.rating-insights__list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1100px) {
.rating-insights__list {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
.rating-insights__item {
--rating-tag-accent: #7bf425;
--rating-tag-accent-rgb: 123, 244, 37;
position: relative;
padding: 15px 16px;
border: 1px solid rgba(var(--rating-tag-accent-rgb), 0.48);
background:
linear-gradient(180deg, rgba(var(--rating-tag-accent-rgb), 0.12) 0%, rgba(24, 24, 27, 0.38) 100%),
rgba(24, 24, 27, 0.3);
display: grid;
gap: 0;
min-width: 0;
align-content: center;
overflow: hidden;
transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.rating-insights__item::before,
.rating-insights__item::after {
content: "";
position: absolute;
pointer-events: none;
}
.rating-insights__item::before {
inset: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
transform: translateX(-100%);
opacity: 0;
transition: transform 0.28s ease, opacity 0.28s ease;
}
.rating-insights__item::after {
left: 0;
right: 0;
bottom: 0;
height: 2px;
background: var(--rating-tag-accent);
box-shadow: 0 0 14px rgba(var(--rating-tag-accent-rgb), 0.34);
}
.rating-insights__item--positive {
--rating-tag-accent: #7bf425;
--rating-tag-accent-rgb: 123, 244, 37;
}
.rating-insights__item--critical {
--rating-tag-accent: #f24e2d;
--rating-tag-accent-rgb: 242, 78, 45;
border-color: rgba(var(--rating-tag-accent-rgb), 0.5);
background:
linear-gradient(180deg, rgba(var(--rating-tag-accent-rgb), 0.12) 0%, rgba(24, 24, 27, 0.38) 100%),
rgba(24, 24, 27, 0.3);
}
.rating-insights__item:hover::before {
transform: translateX(0);
opacity: 1;
}
.rating-insights__item:hover {
transform: translateY(-1px);
border-color: rgba(var(--rating-tag-accent-rgb), 0.72);
box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}
.rating-insights__item.is-selected {
transform: translateY(-1px);
box-shadow: 0 0 0 1px var(--rating-tag-accent), 0 16px 28px rgba(0, 0, 0, 0.24);
}
.rating-insights__item-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
min-width: 0;
}
.rating-insights__item-label {
min-width: 0;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #fff;
line-height: 1.45;
}
.rating-insights__item-count {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 7px;
min-width: auto;
padding: 5px 10px 5px 8px;
background: rgba(0, 0, 0, 0.24);
border: 1px solid rgba(var(--rating-tag-accent-rgb), 0.3);
border-radius: 999px;
font-family: var(--tm-font-mono);
font-size: 11px;
font-weight: 800;
color: var(--rating-tag-accent);
white-space: nowrap;
flex-shrink: 0;
}
.rating-insights__item-count-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
color: rgba(244, 244, 245, 0.78);
}
.rating-insights__item-count-icon-svg {
width: 11px;
height: 11px;
}
.rating-insights__item-count-value {
display: inline-block;
line-height: 1;
}
.rating-insights__item-foot,
.rating-insights__item-percent,
.rating-insights__item-bar {
display: none;
}
.rating-insights__foot {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 16px 24px;
padding-top: 20px;
}
.rating-insights__foot-side {
display: grid;
gap: 12px;
justify-self: end;
width: min(100%, 320px);
}
.rating-insights__foot-note {
display: inline-flex;
align-items: center;
gap: 10px;
min-width: 0;
}
.rating-insights__foot-note-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
color: rgba(245, 158, 11, 0.92);
flex-shrink: 0;
}
.rating-insights__foot-note-svg {
width: 12px;
height: 12px;
}
.rating-insights__note,
.rating-insights__mine {
margin: 0;
font-size: 11px;
line-height: 1.7;
color: rgba(161, 161, 170, 0.88);
}
.rating-insights__mine {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 8px 14px;
border: 1px solid rgba(123, 244, 37, 0.55);
background: rgba(123, 244, 37, 0.08);
color: #d9f99d;
font-family: var(--tm-font-mono);
font-weight: 700;
letter-spacing: 0.06em;
line-height: 1.6;
max-width: 100%;
text-align: center;
text-transform: uppercase;
white-space: normal;
}
@keyframes ratingInsightsPulse {
0%, 100% {
opacity: 0.55;
transform: scale(0.95);
}
50% {
opacity: 1;
transform: scale(1.05);
}
}
@media (min-width: 1024px) {
.rating-insights__title-wrap {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
grid-template-areas:
"eyebrow eyebrow"
"title metric"
"subtitle subtitle";
align-items: center;
column-gap: 28px;
row-gap: 10px;
max-width: none;
width: 100%;
}
.rating-insights__eyebrow {
grid-area: eyebrow;
}
.rating-insights__title {
grid-area: title;
}
.rating-insights__subtitle {
grid-area: subtitle;
}
.rating-insights__metric {
grid-area: metric;
justify-self: end;
align-self: center;
margin: 0;
}
}
@media (max-width: 1023px) {
.rating-insights__foot {
grid-template-columns: 1fr;
}
.rating-insights__foot-side {
width: 100%;
justify-self: stretch;
}
}
@media (max-width: 767px) {
.rating-modal {
padding: 12px;
}
.rating-modal__content {
border-radius: 24px;
padding: 24px 16px 18px;
}
.rating-modal__subtitle {
font-size: 14px;
}
.rating-modal__chips {
gap: 8px;
}
.rating-modal__chip {
width: calc(50% - 4px);
justify-content: center;
}
.rating-insights__head {
gap: 12px;
}
.rating-insights__title-wrap {
width: 100%;
}
.rating-insights__metric {
width: 100%;
max-width: none;
margin: 2px 0 0;
padding: 0;
}
.rating-insights__metric-text {
justify-content: flex-start;
gap: 15px;
}
.rating-insights__metric-value {
font-size: 26px;
}
.rating-insights__empty {
grid-template-columns: 1fr;
padding: 20px 18px;
}
.rating-insights__cta {
width: 100%;
letter-spacing: 0.16em;
}
.rating-insights__item-head {
align-items: center;
}
.rating-insights__subtitle {
font-size: 12px;
}
.rating-insights__item {
padding: 14px;
}
.rating-insights__item-label {
font-size: 11px;
letter-spacing: 0.06em;
}
.rating-insights__item-count {
padding: 5px 8px;
gap: 6px;
}
.rating-insights__cta--summary {
width: 100%;
}
.rating-insights__mine {
width: 100%;
}
}
.app-hero__content {
display: flex;
flex-direction: column;
gap: 12px;
text-align: center;
min-height: 0;
}
@media (min-width: 768px) {
.app-hero__content {
position: relative;
text-align: left;
align-items: flex-start;
padding-left: 24px;
gap: 14px;
justify-content: space-between;
}
.app-hero__content::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(
180deg,
transparent 0%,
rgba(var(--tm-primary-rgb), 0.12) 15%,
rgba(var(--tm-primary-rgb), 0.35) 50%,
rgba(var(--tm-primary-rgb), 0.12) 85%,
transparent 100%
);
border-radius: 1px;
box-shadow: 0 0 12px rgba(var(--tm-primary-rgb), 0.15);
}
}
.badge-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
flex-direction: column;
justify-content: center;
align-items: center;
}
.badge-row__secondary {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: center;
}
@media (min-width: 768px) {
.badge-row {
flex-direction: row;
justify-content: flex-start;
}
.badge-row__secondary {
justify-content: flex-start;
}
}
.badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 10px;
border-radius: 8px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(255, 255, 255, 0.05);
color: #fff;
max-width: max-content;
}
.badge--blue {
background: rgba(59, 130, 246, 0.15);
border-color: rgba(59, 130, 246, 0.3);
color: #60a5fa;
}
.badge--green {
background: rgba(16, 185, 129, 0.16);
border-color: rgba(16, 185, 129, 0.35);
color: #34d399;
}
.badge--amber {
background: rgba(245, 158, 11, 0.15);
border-color: rgba(245, 158, 11, 0.3);
color: #fbbf24;
}
.badge__icon {
font-size: 14px;
}
.title--xl {
line-height: 1.1;
margin: 0;
display: flex;
flex-direction: column;
gap: 4px;
}
.app-hero .title__main {
font-size: clamp(1.8rem, 4.5vw, 2.6rem);
font-weight: 800;
background: linear-gradient(to right, #fff, #cbd5e1);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -0.02em;
display: block;
} .app-hero .title__modtag {
--mod-accent: #22c55e;
--mod-accent-dim: rgba(34, 197, 94, 0.25);
--mod-glow: rgba(34, 197, 94, 0.35);
--mod-line: 1.35;
display: inline-flex;
align-items: center;
gap: 8px;
align-self: flex-start;
width: fit-content;
max-width: 100%;
margin-top: 10px;
padding: 10px 18px 10px 16px;
font-family: var(--tm-font-mono);
font-size: clamp(0.8rem, 1.8vw, 1rem);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: #4ade80;
background: linear-gradient(135deg, rgba(6, 78, 59, 0.5) 0%, rgba(4, 47, 46, 0.6) 100%);
border: 1px solid rgba(34, 197, 94, 0.5);
border-left: 3px solid #22c55e;
border-radius: 6px;
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.15),
0 2px 10px rgba(0, 0, 0, 0.2),
0 0 18px var(--mod-glow),
inset 0 1px 0 rgba(255, 255, 255, 0.08);
position: relative;
overflow: hidden;
transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
box-sizing: border-box;
}
.app-hero .title__modtag::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(105deg, transparent 0%, rgba(34, 197, 94, 0.06) 50%, transparent 100%);
pointer-events: none;
} .app-hero .title__modtag-icon {
flex-shrink: 0;
width: calc(var(--mod-line) * 1em);
min-width: max(calc(var(--mod-line) * 1em), 22px);
height: calc(var(--mod-line) * 1em);
min-height: max(calc(var(--mod-line) * 1em), 22px);
display: block;
align-self: center;
color: #4ade80;
fill: currentColor;
filter: drop-shadow(0 0 8px var(--mod-glow));
position: relative;
z-index: 1;
}
.app-hero .title__modtag-text {
line-height: var(--mod-line);
position: relative;
z-index: 1;
min-width: 0;
flex: 1 1 auto;
}
.app-hero .title__modtag:hover {
color: #86efac;
border-color: rgba(34, 197, 94, 0.7);
border-left-color: #22c55e;
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.15),
0 4px 16px rgba(0, 0, 0, 0.25),
0 0 28px rgba(34, 197, 94, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
transform: translateY(-1px);
}
.app-hero .title__modtag:hover .title__modtag-icon {
filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}
.app-hero .title__modtag:focus-visible {
outline: 2px solid #22c55e;
outline-offset: 2px;
}
@media (max-width: 768px) {
.app-hero .title--xl {
align-items: center;
text-align: center;
gap: 8px;
}
.app-hero .title__main {
font-size: 1.85rem;
text-align: center;
}
.app-hero .title__modtag {
font-size: 0.875rem;
letter-spacing: 0.08em;
padding: 12px 16px 12px 14px;
gap: 10px;
margin-top: 8px;
white-space: normal;
align-self: center;
text-align: left;
}
.app-hero .title__modtag-icon {
min-width: 26px;
min-height: 26px;
width: 26px;
height: 26px;
}
.app-hero .badge-row {
gap: 10px;
}
.app-hero .badge {
padding: 6px 14px;
font-size: 13px;
}
.app-hero .badge__icon {
font-size: 16px;
}
}
.app-hero__meta {
display: flex;
justify-content: center;
gap: 16px;
margin-bottom: 12px;
}
@media (min-width: 768px) {
.app-hero__meta {
justify-content: flex-start;
}
.app-hero .title__modtag {
margin-top: 12px;
padding: 11px 20px 11px 18px;
}
}
.app-hero__meta-item {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 500;
color: #10b981;
background: rgba(16, 185, 129, 0.1);
padding: 4px 10px;
border-radius: 20px;
}
.app-hero__desc {
font-size: 15px;
line-height: 1.6;
color: var(--tm-text-secondary);
max-width: 700px;
margin: 0 auto;
padding: 0.2rem 1.25rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
.app-hero__desc {
margin: 0;
max-width: none;
}
}
.app-hero__actions {
margin-top: auto;
display: flex;
flex-direction: column;
gap: 10px;
align-items: center;
}
.app-hero__actions > * {
flex: 0 0 auto;
}
@media (min-width: 768px) {
.app-hero__actions {
flex-direction: row;
align-items: center;
margin-top: 0;
}
}
.app-hero__download {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
background: var(--tm-primary);
background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.05) 100%), var(--tm-primary);
color: #fff;
padding: 16px 36px;
border-radius: 24px;
font-weight: 700;
font-size: 18px;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 
0 4px 15px rgba(var(--tm-primary-rgb), 0.4),
0 1px 2px rgba(0,0,0,0.1),
inset 0 1px 1px rgba(255,255,255,0.3);
white-space: nowrap;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
.app-hero__download {
padding: 12px 28px;
border-radius: 16px;
font-size: 16px;
font-weight: 600;
box-shadow: 
0 4px 12px rgba(var(--tm-primary-rgb), 0.3),
0 1px 2px rgba(0,0,0,0.1),
inset 0 1px 1px rgba(255,255,255,0.3);
}
.app-hero__download:hover {
transform: translateY(-2px);
box-shadow: 
0 8px 20px rgba(var(--tm-primary-rgb), 0.4),
0 2px 4px rgba(0,0,0,0.1),
inset 0 1px 1px rgba(255,255,255,0.4);
}
.app-hero__download-icon {
font-size: 18px;
}
.app-hero__download span:last-child {
font-size: 14px;
letter-spacing: 0.05em;
}
}
.app-hero__download::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.25),
transparent
);
transition: 0.5s;
transform: skewX(-15deg);
}
.app-hero__download:hover::before {
left: 100%;
transition: 0.7s ease-in-out;
}
.app-hero__download:hover {
transform: translateY(-4px) scale(1.02);
box-shadow: 
0 12px 28px rgba(var(--tm-primary-rgb), 0.5),
0 4px 8px rgba(0,0,0,0.1),
inset 0 1px 1px rgba(255,255,255,0.4);
color: #fff;
}
.app-hero__download-icon {
font-size: 22px;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
transition: transform 0.3s ease;
}
.app-hero__download:hover .app-hero__download-icon {
transform: scale(1.1) rotate(-10deg);
}
.app-hero__download span:last-child {
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: 15px;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
} .app-hero__share,
.app-hero__discuss {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px 24px;
border-radius: 16px;
font-weight: 600;
font-size: 16px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-family: var(--tm-font-mono);
position: relative;
overflow: hidden;
white-space: nowrap;
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
backdrop-filter: blur(5px);
} .app-hero__share:hover,
.app-hero__discuss:hover {
transform: translateY(-2px);
color: #fff;
} .app-hero__share-icon,
.app-hero__discuss-icon {
font-size: 18px;
transition: transform 0.3s ease;
position: relative;
z-index: 1;
} .app-hero__discuss {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
border-color: rgba(59, 130, 246, 0.3);
}
.app-hero__discuss:hover {
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
border-color: #3b82f6;
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.app-hero__discuss .app-hero__discuss-icon {
color: #60a5fa;
}
.app-hero__discuss:hover .app-hero__discuss-icon {
color: #fff;
transform: scale(1.1) rotate(10deg);
} .app-hero__share {
background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
border-color: rgba(139, 92, 246, 0.3);
}
.app-hero__share:hover {
background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
border-color: #8b5cf6;
box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}
.app-hero__share .app-hero__share-icon {
color: #a78bfa;
}
.app-hero__share:hover .app-hero__share-icon {
color: #fff;
transform: scale(1.1) rotate(10deg);
}
.app-hero__share span,
.app-hero__discuss span {
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 14px;
position: relative;
z-index: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
.app-hero__actions {
flex-wrap: wrap;
gap: 14px;
}
.app-hero__download,
.app-hero__discuss,
.app-hero__share {
flex: 1 1 auto;
min-width: 200px;
}
}
@media (max-width: 767px) {
.app-hero__actions {
flex-direction: row;
flex-wrap: wrap;
gap: 12px;
}
.app-hero__download {
width: 100%;
flex: 0 0 100%;
justify-content: center;
padding: 14px 28px;
max-width: none;
}
.app-hero__discuss,
.app-hero__share {
flex: 1;
min-width: 0;
justify-content: center;
padding: 14px 16px;
}
.app-hero__share-icon,
.app-hero__discuss-icon {
font-size: 16px;
}
.app-hero__discuss span,
.app-hero__share span {
font-size: 12px;
}
} .app-hero__art {
position: absolute;
top: -20%;
right: -5%;
width: 55%;
height: 140%;
z-index: -1;
pointer-events: none;
opacity: 0.18;
transform: rotate(5deg) scale(1.2);
filter: blur(5px) saturate(1.3);
overflow: hidden;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.app-hero__art::before {
content: "";
position: absolute;
inset: -10%;
background: linear-gradient(to right, 
var(--tm-bg) 0%, 
rgba(15, 15, 16, 0.98) 2%, 
rgba(15, 15, 16, 0.9) 5%, 
rgba(15, 15, 16, 0.7) 10%, 
rgba(15, 15, 16, 0.4) 15%, 
rgba(15, 15, 16, 0.1) 20%, 
transparent 25%, 
transparent 75%, 
rgba(15, 15, 16, 0.1) 80%, 
rgba(15, 15, 16, 0.4) 85%, 
rgba(15, 15, 16, 0.7) 90%, 
rgba(15, 15, 16, 0.9) 95%, 
rgba(15, 15, 16, 0.98) 98%, 
var(--tm-bg) 100%
),
linear-gradient(to bottom, 
var(--tm-bg) 0%, 
rgba(15, 15, 16, 0.98) 2%, 
rgba(15, 15, 16, 0.9) 5%, 
rgba(15, 15, 16, 0.7) 10%, 
rgba(15, 15, 16, 0.4) 15%, 
rgba(15, 15, 16, 0.1) 20%, 
transparent 25%, 
transparent 75%, 
rgba(15, 15, 16, 0.1) 80%, 
rgba(15, 15, 16, 0.4) 85%, 
rgba(15, 15, 16, 0.7) 90%, 
rgba(15, 15, 16, 0.9) 95%, 
rgba(15, 15, 16, 0.98) 98%, 
var(--tm-bg) 100%
);
pointer-events: none;
z-index: 2;
}
.app-hero__art::after {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(
ellipse at 50% 50%, 
transparent 0%, 
transparent 25%, 
rgba(15, 15, 16, 0.1) 40%, 
rgba(15, 15, 16, 0.3) 55%, 
rgba(15, 15, 16, 0.5) 70%, 
rgba(15, 15, 16, 0.7) 82%, 
rgba(15, 15, 16, 0.85) 92%, 
var(--tm-bg) 100%
);
pointer-events: none;
z-index: 1;
}
.app-hero:hover .app-hero__art {
opacity: 0.22;
transform: rotate(5deg) scale(1.23);
}
@media (max-width: 767px) {
.app-hero__art {
top: -10%;
left: 50%;
right: auto;
width: 100%;
height: 120%;
transform: translateX(-50%) rotate(2deg) scale(1.05);
opacity: 0.14;
filter: blur(4px) saturate(1.2);
}
.app-hero__art::before {
background: linear-gradient(to right, 
var(--tm-bg) 0%, 
rgba(15, 15, 16, 0.95) 3%, 
rgba(15, 15, 16, 0.8) 8%, 
rgba(15, 15, 16, 0.5) 15%, 
rgba(15, 15, 16, 0.2) 20%, 
transparent 25%, 
transparent 75%, 
rgba(15, 15, 16, 0.2) 80%, 
rgba(15, 15, 16, 0.5) 85%, 
rgba(15, 15, 16, 0.8) 92%, 
rgba(15, 15, 16, 0.95) 97%, 
var(--tm-bg) 100%
),
linear-gradient(to bottom, 
var(--tm-bg) 0%, 
rgba(15, 15, 16, 0.95) 3%, 
rgba(15, 15, 16, 0.8) 8%, 
rgba(15, 15, 16, 0.5) 15%, 
rgba(15, 15, 16, 0.2) 20%, 
transparent 25%, 
transparent 75%, 
rgba(15, 15, 16, 0.2) 80%, 
rgba(15, 15, 16, 0.5) 85%, 
rgba(15, 15, 16, 0.8) 92%, 
rgba(15, 15, 16, 0.95) 97%, 
var(--tm-bg) 100%
);
}
.app-hero:hover .app-hero__art {
transform: translateX(-50%) rotate(2deg) scale(1.08);
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.app-hero__art {
width: 70%;
height: 135%;
top: -18%;
right: -5%;
opacity: 0.16;
}
}
.app-hero__art-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
position: relative;
z-index: 0;
}
.app-hero__art-grid {
position: absolute;
inset: 0;
background-image: 
linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
background-size: 60px 60px;
opacity: 0.3;
pointer-events: none;
mix-blend-mode: overlay;
z-index: 1;
}
.card--gradient::before {
content: "";
position: absolute;
inset: 0;
background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
background-size: 24px 24px;
z-index: 0;
pointer-events: none;
}
.app-hero__icon {
box-shadow: 0 20px 40px -10px rgba(var(--tm-primary-rgb), 0.25), 
0 0 0 1px rgba(255, 255, 255, 0.1);
}
.app-hero__icon::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to bottom right, rgba(255,255,255,0.15), transparent);
pointer-events: none;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
@media (min-width: 768px) {
.specs-grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
} .spec:nth-child(4n+1) {
border-left: none;
}
}
.spec {
background: var(--tm-surface);
border-left: 2px solid var(--tm-border);
border-radius: var(--tm-radius-sm);
padding: 12px;
position: relative;
overflow: hidden;
transition: background .2s ease, transform .2s ease, border-color .2s ease;
--spec-ghost: rgba(245, 158, 11, 0.6);
}
.spec:hover {
background: var(--tm-surface-3);
border-left-color: var(--tm-primary);
transform: translateX(4px);
}
.spec__ghost {
position: absolute;
top: 2px;
right: 5px;
padding: 6px;
color: var(--spec-ghost);
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
transform: translate(6px, -2px);
}
.spec__ghost .icon-svg {
font-size: 35px;
}
.spec:nth-child(1) {
--spec-ghost: rgba(59, 130, 246, 0.75);
}
.spec:nth-child(2) {
--spec-ghost: rgba(16, 185, 129, 0.75);
}
.spec:nth-child(3) {
--spec-ghost: rgba(245, 158, 11, 0.75);
}
.spec:nth-child(4) {
--spec-ghost: rgba(244, 114, 182, 0.75);
}
.spec:nth-child(5) {
--spec-ghost: rgba(99, 102, 241, 0.75);
}
.spec:nth-child(6) {
--spec-ghost: rgba(14, 165, 233, 0.75);
}
.spec:nth-child(7) {
--spec-ghost: rgba(234, 179, 8, 0.75);
}
.spec:nth-child(8) {
--spec-ghost: rgba(248, 113, 113, 0.75);
}
.spec__label {
color: var(--tm-primary);
font-size: 10px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: .14em;
margin-bottom: 6px;
}
.spec__value {
color: #fff;
font-size: 13px;
font-weight: 900;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.spec__bar {
height: 2px;
background: #374151;
margin-top: 10px;
overflow: hidden;
}
.spec__bar > span {
display: block;
height: 100%;
width: 65%;
background: var(--tm-primary);
}
.spec__bar--66 > span {
width: 66%;
}
.spec__bar--80 > span {
width: 80%;
}
.spec__bar--75 > span {
width: 75%;
}
.spec__bar--50 > span {
width: 50%;
}
.spec__bar--100 > span {
width: 100%;
}
.mod-instructions {
position: relative;
border-radius: 32px;
padding: 8px clamp(32px, 5vw, 32px) clamp(32px, 5vw, 32px);
background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
border: 1px solid rgba(255, 255, 255, 0.05);
overflow: hidden;
}
.mod-instructions::before {
content: "";
position: absolute;
top: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
filter: blur(60px);
pointer-events: none;
z-index: 1;
}
.mod-instructions__wrap {
position: relative;
z-index: 2;
display: grid;
}
.mod-instructions__intro {
display: flex;
flex-direction: column;
max-width: 800px;
}
.mod-instructions__title {
text-transform: uppercase;
font-size: clamp(24px, 4vw, 36px);
display: inline-flex;
align-items: center;
gap: 20px;
color: #fff;
}
.mod-instructions__title-icon {
width: 48px;
height: 48px;
padding: 10px;
border-radius: 16px;
color: #fbbf24;
background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.05));
border: 1px solid rgba(251, 191, 36, 0.4);
}
.mod-instructions__subtitle {
font-size: 16px;
font-weight: 500;
}
.mod-instructions__layout {
display: flex;
flex-direction: column;
gap: 40px;
}
.mod-instructions__cards {
display: grid;
gap: 24px;
grid-template-columns: 1fr 1fr;
}
.mod-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 24px;
padding: 10px 20px 20px 20px;
display: flex;
flex-direction: column;
gap: 24px;
position: relative;
transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mod-card:hover {
transform: translateY(-6px);
background: rgba(255, 255, 255, 0.04);
border-color: rgba(251, 191, 36, 0.3);
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}
.mod-card__head {
display: flex;
align-items: center;
gap: 16px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mod-card__icon {
width: 28px;
height: 28px;
color: #fbbf24;
filter: drop-shadow(0 4px 6px rgba(251, 191, 36, 0.4));
}
.mod-card__title {
font-family: var(--tm-font-sans, sans-serif);
font-weight: 700;
font-size: 18px;
letter-spacing: 0.02em;
text-transform: uppercase;
color: #fff;
}
.mod-steps {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0;
counter-reset: modstep;
}
.mod-steps li {
position: relative;
padding-left: 56px;
padding-bottom: 24px;
font-size: 15px;
line-height: 1.6;
color: #d4d4d8;
}
.mod-steps li:last-child {
padding-bottom: 0;
}
.mod-steps li::after {
content: "";
position: absolute;
left: 15px;
top: 36px;
bottom: 0;
width: 2px;
background: rgba(255, 255, 255, 0.1);
border-radius: 1px;
}
.mod-steps li:last-child::after {
display: none;
}
.mod-steps li::before {
counter-increment: modstep;
content: counter(modstep);
position: absolute;
left: 0;
top: 2px;
width: 32px;
height: 32px;
border-radius: 10px;
display: grid;
place-items: center;
font-size: 14px;
font-weight: 800;
color: #fbbf24;
background: rgba(251, 191, 36, 0.1);
border: 1px solid rgba(251, 191, 36, 0.2);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
z-index: 1;
}
.mod-card:hover .mod-steps li::before {
background: #fbbf24;
color: #000;
border-color: #fbbf24;
}
.mod-formats {
background: linear-gradient(160deg, #18181b 0%, #101012 100%);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 24px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 15px;
}
.mod-formats__head {
display: flex;
align-items: center;
gap: 16px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mod-formats__icon {
width: 28px;
height: 28px;
color: #fbbf24;
filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}
.mod-formats__title {
font-family: var(--tm-font-sans, sans-serif);
font-weight: 700;
font-size: 18px;
letter-spacing: 0.02em;
text-transform: uppercase;
color: #fff;
}
.mod-formats__subtitle {
font-size: 14px;
color: #a1a1aa;
line-height: 1.6;
}
.mod-formats__list {
list-style: none;
margin: 0;
padding: 0;
display: grid;
gap: 16px;
grid-template-columns: 1fr;
}
.mod-formats__list li {
display: grid;
grid-template-columns: auto 1fr;
gap: 16px;
align-items: start;
padding: 16px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 16px;
transition: background 0.2s ease;
}
.mod-formats__list li:hover {
background: rgba(255, 255, 255, 0.06);
}
.mod-formats__tag {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
padding: 8px 0;
border-radius: 10px;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #000;
background: #e4e4e7;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.mod-formats__list span:last-child {
font-size: 13px;
line-height: 1.5;
color: #d4d4d8;
align-self: center;
}
.mod-formats__apps {
margin-top: 16px;
display: grid;
gap: 16px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
justify-items: center;
}
.mod-formats__apps-title {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.mod-formats__apps-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.mod-app-chip {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 12px 20px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 14px;
color: #e4e4e7;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
position: relative;
overflow: hidden;
}
.mod-app-chip::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
transform: translateX(-100%);
transition: transform 0.6s ease;
}
.mod-app-chip:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(251, 191, 36, 0.4);
color: #fff;
transform: translateY(-3px);
box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.4);
}
.mod-app-chip:hover::before {
transform: translateX(100%);
}
.mod-app-chip__icon {
width: 20px;
height: 20px;
color: #fbbf24;
filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
} @media (max-width: 1024px) { }
@media (max-width: 768px) {
.mod-instructions__cards {
grid-template-columns: 1fr;
}
.mod-formats__list {
grid-template-columns: 1fr;
}
.mod-formats__apps-grid {
flex-direction: column;
gap: 12px;
}
.mod-app-chip {
width: 100%;
justify-content: center;
padding: 14px 20px;
}
}
@media (max-width: 640px) {
.mod-instructions {
padding: 24px 20px;
border-radius: 24px;
}
.mod-steps li {
padding-left: 48px;
}
.mod-formats__list li {
grid-template-columns: 1fr;
gap: 10px;
}
.mod-formats__tag {
width: auto;
padding: 6px 12px;
}
}
.feature-list {
display: grid;
grid-template-columns: 1fr;
gap: 14px 40px;
position: relative;
z-index: 1;
}
@media (min-width: 768px) {
.feature-list {
grid-template-columns: 1fr 1fr;
}
}
.feature-row {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #111827;
padding-bottom: 10px;
}
.feature-row:hover {
border-bottom-color: #374151;
}
.feature-row__left {
display: inline-flex;
align-items: center;
gap: 10px;
}
.feature-row__prompt {
color: var(--tm-primary);
font-weight: 900;
font-size: 12px;
}
.feature-row__name {
color: #d1d5db;
font-size: 12px;
letter-spacing: .04em;
}
.feature-row__state {
font-size: 10px;
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
padding: 3px 8px;
border-radius: var(--tm-radius-sm);
}
.feature-row__state--active {
background: var(--tm-primary);
color: #000;
box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}
.feature-row__state--stable {
background: rgba(16, 185, 129, 0.15);
border: 1px solid rgba(16, 185, 129, 0.35);
color: #34d399;
}
.gallery {
background: var(--tm-surface-2);
border: 1px solid var(--tm-border);
border-radius: var(--tm-radius-sm);
box-shadow: 0 0 8px rgba(245, 158, 11, 0.14);
padding: 0;
position: relative;
overflow: hidden;
}
.gallery::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(520px 320px at 10% 0%, rgba(245, 158, 11, 0.18), transparent 60%),
radial-gradient(520px 320px at 90% 0%, rgba(59, 130, 246, 0.12), transparent 60%);
opacity: 1;
pointer-events: none;
}
.gallery::after {
content: "";
position: absolute;
inset: 0;
background:
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: 10px 10px;
opacity: 0.12;
pointer-events: none;
}
.gallery__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
background: var(--tm-surface);
border-bottom: 1px solid #374151;
padding: 12px 14px;
margin: 0;
position: relative;
z-index: 1;
}
.gallery__head::after {
content: "";
position: absolute;
right: 14px;
top: 50%;
width: 8px;
height: 8px;
border-radius: 2px;
background: rgba(245, 158, 11, 0.95);
transform: translateY(-50%);
box-shadow:
-14px 0 0 rgba(59, 130, 246, 0.9),
-28px 0 0 rgba(16, 185, 129, 0.9);
}
.gallery__title {
font-size: 12px;
font-weight: 900;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--tm-primary);
display: inline-flex;
align-items: center;
gap: 10px;
margin: 0;
}
.gallery__title .icon-svg {
font-size: 18px;
line-height: 1;
}
.gallery__controls {
display: inline-flex;
gap: 8px;
}
.gallery__btn {
width: 32px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(245, 158, 11, 0.3);
color: var(--tm-primary);
background: transparent;
border-radius: var(--tm-radius-sm);
cursor: pointer;
}
.gallery__btn:hover {
background: var(--tm-primary);
color: #000;
}
.gallery__carousel-wrap {
position: relative;
z-index: 1;
padding: 14px 1px 14px 7px;
}
.gallery__carousel-wrap::before,
.gallery__carousel-wrap::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 100px;
z-index: 2;
pointer-events: none;
transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
.gallery__carousel-wrap::before,
.gallery__carousel-wrap::after {
width: 40px;
}
}
.gallery__carousel-wrap::before {
left: 0;
background: linear-gradient(to right, var(--tm-surface-2) 0%, transparent 100%);
}
.gallery__carousel-wrap::after {
right: 0;
background: linear-gradient(to left, var(--tm-surface-2) 0%, transparent 100%);
}
.gallery__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(245, 158, 11, 0.3);
color: var(--tm-primary);
background: rgba(0, 0, 0, 0.55);
border-radius: var(--tm-radius-sm);
cursor: pointer;
z-index: 3;
}
.gallery__arrow:hover {
background: var(--tm-primary);
color: #000;
}
.gallery__arrow--prev {
left: 10px;
}
.gallery__arrow--next {
right: 10px;
}
.carousel {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
gap: 16px;
padding-bottom: 8px;
scrollbar-width: none;
}
.carousel.carousel--center {
justify-content: center;
}
.carousel::-webkit-scrollbar {
display: none;
}
@media (hover: hover) and (pointer: fine) {
.carousel {
cursor: grab;
user-select: none;
}
.carousel.carousel--dragging {
cursor: grabbing;
}
}
@media (hover: hover) and (pointer: fine) {
.carousel img {
-webkit-user-drag: none;
user-select: none;
}
}
.shot {
flex: 0 0 auto;
width: 85%;
scroll-snap-align: center;
border: 1px solid rgba(55, 65, 81, 1);
background: #000;
position: relative;
cursor: pointer;
overflow: hidden;
border-radius: 14px;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
.shot {
width: 45%;
}
}
.shot::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(135deg, rgba(59, 130, 246, 0.18), transparent 55%),
linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 60%);
opacity: 0.9;
pointer-events: none;
}
.shot::after {
content: "";
position: absolute;
inset: 10px;
border: 1px solid rgba(245, 158, 11, 0.15);
border-radius: 12px;
pointer-events: none;
}
.shot img {
width: 100%;
height: 220px;
object-fit: contain;
object-position: center;
opacity: .85;
filter: none;
transition: opacity .35s ease;
position: relative;
z-index: 1;
}
.shot:hover img {
opacity: 1;
}
.shot__hint {
position: absolute;
bottom: 8px;
right: 8px;
background: rgba(0, 0, 0, 0.8);
color: var(--tm-primary);
padding: 6px 8px;
font-size: 10px;
border: 1px solid rgba(245, 158, 11, 0.3);
opacity: 0;
transition: opacity .25s ease;
z-index: 2;
cursor: pointer;
}
.shot:hover .shot__hint {
opacity: 1;
}
.download-hub {
position: relative;
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;
border: 1px solid rgba(63, 63, 70, 0.5);
border-radius: 4px;
overflow: hidden;
}
.download-hub__lines {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px),
radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 20%);
background-size: 20px 20px, 20px 20px, 100% 100%;
opacity: 0.2;
pointer-events: none;
z-index: 1;
}
.download-hub__blueprint {
position: absolute;
top: 0;
right: 0;
width: 260px;
height: 260px;
background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 65%);
opacity: 0.2;
pointer-events: none;
z-index: 0;
}
.download-hub__code {
position: absolute;
inset: 0;
overflow: hidden;
pointer-events: none;
opacity: 0.15;
z-index: 1;
}
.download-hub__code-col {
position: absolute;
top: -100%;
width: 20px;
font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 10px;
color: #f59e0b;
text-align: center;
animation: downloadHubScroll linear infinite;
writing-mode: vertical-rl;
text-orientation: upright;
white-space: nowrap;
}
.download-hub__code-col--one {
left: 5%;
animation-duration: 15s;
animation-delay: 2s;
}
.download-hub__code-col--two {
left: 15%;
animation-duration: 22s;
animation-delay: 0s;
}
.download-hub__code-col--three {
left: 25%;
animation-duration: 18s;
animation-delay: 5s;
}
.download-hub__code-col--four {
left: 65%;
animation-duration: 12s;
animation-delay: 1s;
}
.download-hub__code-col--five {
left: 85%;
animation-duration: 25s;
animation-delay: 3s;
}
.download-hub__scan-line {
position: absolute;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
animation: downloadHubScanline 4s linear infinite;
pointer-events: none;
box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
z-index: 3;
}
.download-hub__content {
position: relative;
z-index: 2;
padding: 15px;
display: flex;
flex-direction: column;
}
.download-hub__header-card {
position: relative;
background: transparent;
border: none;
padding: 20px 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
isolation: isolate;
box-shadow: none;
}
.download-hub__header-card:hover {
border-color: transparent;
box-shadow: none;
transform: none;
}
.download-hub__unified-heading {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
font-weight: normal;
} .download-hub__deco-corner {
position: absolute;
width: 24px;
height: 24px;
border-color: var(--tm-primary);
opacity: 0.8;
transition: all 0.3s ease;
filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.4));
}
.download-hub__deco-corner--tl {
top: 0;
left: 0;
border-top: 3px solid;
border-left: 3px solid;
}
.download-hub__deco-corner--tr {
top: 0;
right: 0;
border-top: 3px solid;
border-right: 3px solid;
}
.download-hub__deco-corner--bl {
bottom: 0;
left: 0;
border-bottom: 3px solid;
border-left: 3px solid;
}
.download-hub__deco-corner--br {
bottom: 0;
right: 0;
border-bottom: 3px solid;
border-right: 3px solid;
}
.download-hub__header-card:hover .download-hub__deco-corner {
width: 36px;
height: 36px;
opacity: 1;
filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8));
} .download-hub__label-row {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
width: 100%;
max-width: 500px;
margin-bottom: 20px;
}
.download-hub__label-line {
flex: 1;
height: 2px;
background: linear-gradient(90deg, transparent, var(--tm-primary), transparent);
opacity: 0.6;
}
.download-hub__label-line--left {
background: linear-gradient(90deg, transparent, var(--tm-primary));
}
.download-hub__label-line--right {
background: linear-gradient(90deg, var(--tm-primary), transparent);
}
.download-hub__label-content {
display: flex;
align-items: center;
gap: 12px;
font-family: var(--tm-font-mono);
font-size: 1.25rem;
text-transform: uppercase;
letter-spacing: 0.25em;
color: var(--tm-primary);
font-weight: 800;
text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}
.download-hub__label-icon {
width: 24px;
height: 24px;
fill: currentColor;
} .download-hub__game-title {
display: block;
margin: 0;
padding: 0;
font-family: var(--tm-font-sans);
font-size: 3.5rem;
font-weight: 900;
line-height: 1.1;
color: #fff;
text-transform: uppercase;
letter-spacing: -0.02em;
background: linear-gradient(180deg, #fff 0%, #e5e5e5 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
margin-bottom: 20px;
position: relative;
z-index: 2;
} .download-hub__mod-row {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.download-hub__mod-badge {
font-family: var(--tm-font-mono);
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #fff;
background: linear-gradient(135deg, #f59e0b, #d97706);
padding: 8px 24px;
border-radius: 6px;
box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
.download-hub__header-card {
padding: 32px 16px;
}
.download-hub__game-title {
font-size: 2.25rem;
}
.download-hub__label-row {
max-width: 100%;
gap: 12px;
}
.download-hub__label-content {
font-size: 1rem;
}
}
.download-hub__tagline-body {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 6px 16px;
background: #131315;
}
.download-hub__tagline-item {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #d1d5db;
}
.download-hub__tagline-divider {
width: 1px;
height: 12px;
background: #374151;
}
.download-hub__tagline-dot {
width: 6px;
height: 6px;
border-radius: 999px;
background: #f59e0b;
box-shadow: 0 0 6px rgba(245, 158, 11, 0.8);
}
.download-hub__status {
margin-top: 18px;
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
font-size: 10px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #5eead4;
font-weight: 700;
}
.download-hub__status-item {
display: inline-flex;
align-items: center;
gap: 8px;
}
.download-hub__status-dot {
width: 4px;
height: 4px;
border-radius: 50%;
background: #14b8a6;
box-shadow: 0 0 5px rgba(20, 184, 166, 0.8);
}
.download-hub__header-bars {
display: none;
flex-direction: column;
gap: 10px;
align-items: flex-end;
opacity: 0.4;
}
.download-hub__header-bar {
height: 2px;
background: #1f2937;
border-radius: 999px;
overflow: hidden;
position: relative;
}
.download-hub__header-bar::after {
content: "";
position: absolute;
inset: 0;
background: rgba(245, 158, 11, 0.4);
}
.download-hub__header-bar--one {
width: 64px;
}
.download-hub__header-bar--two {
width: 32px;
align-self: flex-end;
}
.download-hub__header-bar--three {
width: 48px;
}
.download-hub__header-divider {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
}
.download-hub__grid {
display: grid;
gap: 24px;
align-items: start;
}
.download-hub__specs {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.download-hub__spec-card {
position: relative;
padding: 12px;
border-radius: 2px;
background-color: #121214;
background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 12px 12px;
border: 1px solid #3f3f46;
border-left: 2px solid var(--spec-color, #f59e0b);
overflow: hidden;
transition: all 0.3s ease;
}
.download-hub__spec-card:hover {
background-color: #1c1c1f;
background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
transform: translateX(4px);
}
.download-hub__spec-icon {
position: absolute;
top: 8px;
right: 8px;
font-size: 24px;
color: var(--spec-color, #71717a);
opacity: 1;
transition: color 0.3s ease, transform 0.3s ease;
}
.download-hub__spec-card:hover .download-hub__spec-icon {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
}
.download-hub__spec-label {
font-size: 10px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(245, 158, 11, 0.7);
margin-bottom: 6px;
}
.download-hub__spec-value {
font-size: 14px;
font-weight: 800;
color: #fff;
font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
.download-hub__spec-bar {
width: 100%;
height: 2px;
background: #374151;
margin-top: 8px;
overflow: hidden;
}
.download-hub__spec-bar span {
display: block;
height: 100%;
background: var(--spec-color, #f59e0b);
width: var(--spec-progress, 70%);
}
.download-hub__spec-card--requirements { --spec-progress: 100%; --spec-color: #4ade80; }
.download-hub__spec-card--version { --spec-progress: 100%; --spec-color: #60a5fa; }
.download-hub__spec-card--updated { --spec-progress: 100%; --spec-color: #f59e0b; }
.download-hub__spec-card--type { --spec-progress: 100%; --spec-color: #a78bfa; }
.download-hub__spec-card--developer { --spec-progress: 100%; --spec-color: #fbbf24; }
.download-hub__spec-card--size { --spec-progress: 100%; --spec-color: #c084fc; }
.download-hub__spec-card--format { --spec-progress: 100%; --spec-color: #f472b6; }
.download-hub__spec-card--language { --spec-progress: 100%; --spec-color: #2dd4bf; }
.download-hub__badge-row {
grid-column: 1 / -1;
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 6px;
}
.download-hub__badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
border-radius: 2px;
font-size: 11px;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
flex: 1 1 auto;
justify-content: center;
}
.download-hub__badge-icon {
font-size: 14px;
}
.download-hub__badge--safe {
background: rgba(34, 197, 94, 0.2);
border: 1px solid rgba(34, 197, 94, 0.2);
color: #22c55e;
}
.download-hub__badge--free {
background: rgba(59, 130, 246, 0.2);
border: 1px solid rgba(59, 130, 246, 0.2);
color: #60a5fa;
}
.download-hub__badge--latest {
background: rgba(245, 158, 11, 0.2);
border: 1px solid rgba(245, 158, 11, 0.2);
color: #f59e0b;
}
.download-hub__panel {
position: relative;
padding: 20px;
border-radius: 2px;
border: 1px solid rgba(63, 63, 70, 0.5);
background-color: #121214;
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: 20px 20px;
display: flex;
flex-direction: column;
gap: 16px;
}
.download-hub__panel-corner {
position: absolute;
width: 14px;
height: 14px;
border: 2px solid rgba(245, 158, 11, 1);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.download-hub__panel:hover .download-hub__panel-corner {
border-color: #f59e0b;
transform: scale(1.3);
}
.download-hub__panel-corner--tl {
top: 0;
left: 0;
border-right: none;
border-bottom: none;
transform-origin: top left;
}
.download-hub__panel-corner--tr {
top: 0;
right: 0;
border-left: none;
border-bottom: none;
transform-origin: top right;
}
.download-hub__panel-corner--bl {
bottom: 0;
left: 0;
border-right: none;
border-top: none;
transform-origin: bottom left;
}
.download-hub__panel-corner--br {
bottom: 0;
right: 0;
border-left: none;
border-top: none;
transform-origin: bottom right;
}
.download-hub__panel-line {
position: absolute;
background: #1f2937;
}
.download-hub__panel-line--x {
height: 1px;
left: 12px;
right: 12px;
top: 50%;
}
.download-hub__panel-line--y {
width: 1px;
top: 12px;
bottom: 12px;
left: 50%;
}
.download-hub__panel-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
position: relative;
z-index: 1;
}
.download-hub__panel-title {
font-size: 10px;
color: #6b7280;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
}
.download-hub__panel-status {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 9px;
font-weight: 700;
color: #f59e0b;
}
.download-hub__panel-dot {
width: 6px;
height: 6px;
border-radius: 999px;
background: #f59e0b;
box-shadow: 0 0 6px rgba(245, 158, 11, 0.8);
}
.download-hub__download-btn {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 18px 20px;
background-color: #fbbf24;
background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 10px, transparent 10px, transparent 20px);
clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
color: #111827;
text-decoration: none;
font-weight: 800;
position: relative;
overflow: hidden;
box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.download-hub__download-btn::before {
content: "";
position: absolute;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
border: 1px dashed rgba(0, 0, 0, 0.2);
clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
pointer-events: none;
}
.download-hub__download-btn:hover {
background-color: #fcd34d;
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}
.download-hub__download-btn-text {
display: flex;
flex-direction: column;
gap: 6px;
z-index: 1;
}
.download-hub__download-btn-title {
font-size: 20px;
line-height: 1;
text-transform: uppercase;
}
.download-hub__download-btn-sub {
font-size: 9px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
display: inline-flex;
align-items: center;
gap: 6px;
}
.download-hub__download-btn-sub-icon {
font-size: 12px;
}
.download-hub__download-btn-icon {
width: 72px;
height: 72px;
border: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 12px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.1);
z-index: 1;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.download-hub__download-btn:not(.is-locked):hover .download-hub__download-btn-icon {
transform: scale(1.1) rotate(-8deg);
background: rgba(255, 255, 255, 0.15);
border-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.download-hub__download-btn-icon-svg {
font-size: 36px;
}
.download-hub__download-btn-icon-svg--lock {
display: none;
}
.download-hub__download-btn--disabled {
background: #18181b;
color: #52525b;
cursor: not-allowed;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 10px, transparent 10px, transparent 20px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.download-hub__download-btn--disabled::before {
border-color: rgba(255, 255, 255, 0.1);
opacity: 0.5;
}
.download-hub__download-btn.is-locked {
background: linear-gradient(145deg, #292524 0%, #1c1917 100%);
color: #fafaf9;
cursor: not-allowed;
box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
transform: none;
border: 1px solid rgba(245, 158, 11, 0.4);
}
.download-hub__download-btn.is-locked::before {
display: block;
border-color: rgba(245, 158, 11, 0.35);
opacity: 0.8;
}
.download-hub__download-btn.is-locked .download-hub__download-btn-icon-svg--download {
display: none;
}
.download-hub__download-btn.is-locked .download-hub__download-btn-icon-svg--lock {
display: inline-flex;
color: #fbbf24;
}
.download-hub__download-btn.is-locked .download-hub__download-btn-title {
color: #fafaf9;
}
.download-hub__download-btn.is-locked .download-hub__download-btn-sub {
color: #4ade80;
font-weight: 800;
}
.download-hub__download-btn.is-locked::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
height: 6px;
width: 0%;
background: linear-gradient(90deg, #f59e0b, #fbbf24);
box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
z-index: 2;
border-radius: 0 4px 4px 0;
}
.download-hub__download-btn.is-locked.is-counting::after {
animation: dl-progress-fill var(--dl-duration, 10s) linear forwards;
}
@keyframes dl-progress-fill {
to { width: 100%; }
}
.download-hub__noscript-link {
margin: 12px 0 0;
font-size: 14px;
}
.download-hub__noscript-link a {
color: #fbbf24;
text-decoration: underline;
}
.download-hub__gp-btn {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border: 1px solid rgba(63, 63, 70, 0.6);
background: #18181b;
color: #e4e4e7;
text-decoration: none;
border-radius: 4px;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
z-index: 1;
border-left: 3px solid #3ddc84;
}
.download-hub__gp-btn:hover,
.download-hub__gp-btn:focus-visible {
background: #27272a;
border-color: rgba(61, 220, 132, 0.5);
border-left-color: #3ddc84;
color: #fff;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 15px rgba(61, 220, 132, 0.1);
outline: none;
}
.download-hub__gp-icon {
font-size: 24px;
color: #3ddc84;
transition: transform 0.2s ease;
}
.download-hub__gp-btn:hover .download-hub__gp-icon {
transform: scale(1.1);
}
.download-hub__gp-text {
display: flex;
flex-direction: column;
gap: 4px;
}
.download-hub__gp-sub {
font-size: 9px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #9ca3af;
}
.download-hub__gp-title {
font-size: 14px;
font-weight: 600;
letter-spacing: 0.08em;
}
.download-hub__ads {
margin-top: 8px;
}
.download-hub__ads:has(.is-empty) {
margin: 0;
min-height: 0;
}
.download-hub__alert {
position: relative;
padding: 16px;
border-top: 2px solid rgba(239, 68, 68, 0.8);
background: rgba(127, 29, 29, 0.4);
overflow: hidden;
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.download-hub__alert-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 12px;
}
.download-hub__alert:last-child {
margin-bottom: 0;
}
.download-hub__alert::before {
content: "";
position: absolute;
inset: 0;
background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(239, 68, 68, 0.1) 10px, rgba(239, 68, 68, 0.1) 20px);
}
.download-hub__alert-icon {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid rgba(239, 68, 68, 0.8);
background: rgba(239, 68, 68, 0.3);
position: relative;
z-index: 1;
flex-shrink: 0;
}
.download-hub__alert-icon-svg {
font-size: 22px;
color: #fca5a5;
}
.download-hub__alert-title {
margin: 0;
font-size: 16px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #fca5a5;
text-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}
.download-hub__alert-text {
margin: 0;
font-size: 11px;
line-height: 1.6;
color: #e5e7eb;
font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.download-hub__alert--security {
border-top-color: rgba(245, 158, 11, 0.8);
background: rgba(245, 158, 11, 0.1);
}
.download-hub__alert--security::before {
background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(245, 158, 11, 0.05) 10px, rgba(245, 158, 11, 0.05) 20px);
}
.download-hub__alert--security .download-hub__alert-icon {
border-color: rgba(245, 158, 11, 0.8);
background: rgba(245, 158, 11, 0.2);
}
.download-hub__alert--security .download-hub__alert-icon-svg,
.download-hub__alert--security .download-hub__alert-title {
color: #fbbf24;
text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}
@keyframes downloadHubScroll {
0% { transform: translateY(0); opacity: 0; }
10% { opacity: 0.7; }
90% { opacity: 0.7; }
100% { transform: translateY(200%); opacity: 0; }
}
@keyframes downloadHubScanline {
0% { top: -10%; opacity: 0; }
5% { opacity: 0.5; }
90% { opacity: 0.5; }
100% { top: 110%; opacity: 0; }
}
@media (min-width: 768px) {
.download-hub__header-eyebrow,
.download-hub__status {
justify-content: flex-start;
}
}
@media (min-width: 1024px) {
.download-hub__content {
display: flex;
flex-direction: column;
gap: 10px;
}
.download-hub__header-card {
order: 1;
}
.download-hub__ads {
order: 2;
align-self: center;
width: 100%;
display: flex;
justify-content: center;
margin: 0;
}
.download-hub__grid {
order: 3;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: 32px;
}
.download-hub__alert {
order: 4;
}
.download-hub__specs {
grid-column: span 7;
}
.download-hub__panel {
grid-column: span 5;
}
.download-hub__header-bars {
display: flex;
}
}
@media (max-width: 640px) {
.download-hub__content {
display: flex;
flex-direction: column;
gap: 10px;
}
.download-hub__grid {
display: contents;
}
.download-hub__header-card {
order: 1;
}
.download-hub__specs {
order: 2;
}
.download-hub__ads {
order: 3;
margin: 0;
}
.download-hub__panel {
order: 4;
}
.download-hub__alert {
order: 5;
}
.download-hub__thumb-inner {
width: 96px;
height: 96px;
}
.download-hub__download-btn {
flex-direction: column;
align-items: flex-start;
}
.download-hub__download-btn-title {
font-size: 22px;
}
.download-hub__download-btn-sub {
font-size: 11px;
}
}
.not-found__card {
text-align: center;
padding: 4rem 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
.not-found__icon-wrap {
width: 90px;
height: 90px;
background: rgba(var(--tm-primary-rgb), 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem;
color: var(--tm-primary);
box-shadow: 0 0 30px rgba(var(--tm-primary-rgb), 0.1);
}
.not-found__icon {
font-size: 3rem;
}
.not-found__title {
margin-bottom: 1.5rem;
font-size: 2.25rem;
}
.not-found__text {
color: var(--tm-text-secondary);
max-width: 550px;
margin: 0 auto 3rem;
line-height: 1.6;
font-size: 1.1rem;
}
.not-found__actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 2.5rem;
border-top: 1px solid var(--tm-border);
padding-top: 3rem;
width: 100%;
max-width: 600px;
margin: 0 auto;
}
.not-found__suggestions {
width: 100%;
text-align: center;
}
.not-found__label {
font-weight: 700;
margin-bottom: 1.25rem;
color: var(--tm-text);
font-size: 1.2rem;
}
.not-found__list {
margin: 0 0 2rem;
padding: 0;
list-style: none;
color: var(--tm-text-secondary);
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.not-found__list li {
position: relative;
padding-left: 1.5rem;
display: inline-block;
margin: 0 auto;
text-align: left;
}
.not-found__list li::before {
content: "→";
position: absolute;
left: 0;
color: var(--tm-primary);
font-weight: bold;
}
.not-found__btn {
display: inline-flex;
align-items: center;
padding: 0.875rem 2rem;
text-decoration: none;
font-weight: 600;
transition: all 0.2s ease;
}
.not-found__search--mobile-only {
display: none;
width: 100%;
}
@media (max-width: 767px) {
.not-found__search--mobile-only {
display: block;
}
.not-found__actions {
gap: 2.5rem;
}
.not-found__search {
order: -1;
}
.not-found__search .site-search__wrap {
max-width: 100%;
margin: 0 auto;
background: var(--tm-surface-2);
border: 1px solid var(--tm-border);
border-radius: var(--tm-radius-md);
padding: 0 1.25rem;
display: flex;
align-items: center;
position: relative;
height: 54px;
}
.not-found__search .site-search__icon {
color: var(--tm-muted);
margin-right: 1rem;
flex-shrink: 0;
font-size: 1.1rem;
position: static;
transform: none;
}
.not-found__search input[type="search"] {
flex: 1;
height: 100%;
background: none;
border: none;
color: var(--tm-text);
font-size: 1rem;
outline: none;
padding: 0;
margin: 0;
display: block;
}
.not-found__search .site-search__hint {
display: none;
}
.not-found__search .site-search__results {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--tm-surface-3);
border: 1px solid var(--tm-border);
border-radius: 0 0 var(--tm-radius-md) var(--tm-radius-md);
z-index: 100;
display: none;
}
.not-found__search .site-search__results.is-open {
display: block;
}
}
.layout__main--download {
width: 100%;
}
.related-apps { position: relative; z-index: 1; margin-top: 40px; }
.related-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.rel-card {
display: flex;
flex-direction: column;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 20px;
padding: 16px;
text-decoration: none;
color: var(--color-text-main, #fff);
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
overflow: hidden;
height: 100%;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
transform: translateZ(0);
}
@media (max-width: 767px) {
.rel-card {
backdrop-filter: none;
-webkit-backdrop-filter: none;
transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
}
.rel-card:hover {
transform: translateY(-6px);
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.15);
box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
.rel-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.25);
}
}
.rel-card__head {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 12px;
}
.rel-card__icon {
width: 60px;
height: 60px;
border-radius: 16px;
overflow: hidden;
background: rgba(0, 0, 0, 0.2);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
flex-shrink: 0;
}
.rel-card__icon img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
transform: translateZ(0);
}
@media (max-width: 767px) {
.rel-card__icon img {
transition: transform 0.2s ease;
}
}
.rel-card:hover .rel-card__icon img { transform: scale(1.12); }
@media (max-width: 767px) {
.rel-card:hover .rel-card__icon img { 
transform: scale(1.08); 
}
}
.rel-card__icon-fallback {
width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
color: rgba(255, 255, 255, 0.2);
}
.rel-card__svg { width: 28px; height: 28px; fill: currentColor; }
.rel-card__badge {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.4);
transition: all 0.3s ease;
}
@media (max-width: 767px) {
.rel-card__badge {
transition: background 0.2s ease, color 0.2s ease;
}
}
.rel-card:hover .rel-card__badge {
background: #4CAF50;
color: #fff;
transform: rotate(-15deg) scale(1.1);
}
@media (max-width: 767px) {
.rel-card:hover .rel-card__badge {
transform: scale(1.05);
}
}
.rel-card__dl-icon { width: 14px; height: 14px; fill: currentColor; }
.rel-card__body {
flex: 1;
display: flex;
flex-direction: column;
}
.rel-card__title {
font-weight: 700;
font-size: 15px;
line-height: 1.3;
margin-bottom: 4px;
display: -webkit-box;
line-clamp: 2;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
color: var(--color-text-title, #fff);
}
.rel-card__meta {
margin-bottom: 12px;
min-height: 16px;
}
.rel-card__cat {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: rgba(255, 255, 255, 0.4);
font-weight: 600;
}
.rel-card__footer {
margin-top: auto;
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 12px;
border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.rel-card__rating {
display: flex;
align-items: center;
gap: 4px;
color: #FFC107;
font-weight: 700;
font-size: 12px;
}
.rel-card__star { width: 10px; height: 10px; fill: currentColor; }
.rel-card__ver {
background: rgba(255, 255, 255, 0.08);
padding: 3px 8px;
border-radius: 6px;
font-family: monospace;
font-size: 11px;
letter-spacing: -0.3px;
color: rgba(255, 255, 255, 0.7);
} @media (min-width: 576px) {
.related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 992px) {
.related-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card { padding: 20px; }
.rel-card__icon { width: 72px; height: 72px; }
.rel-card__title { font-size: 16px; }
}
.section-kicker {
display: flex;
align-items: center;
gap: 8px;
margin: 0 0 10px;
}
.section-kicker__bar {
width: 4px;
height: 16px;
background: var(--tm-primary);
}
.section-kicker__text {
margin: 0;
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--tm-muted);
}
.section-kicker--specs {
position: relative;
justify-content: center;
padding: 6px 0;
}
.section-kicker--specs::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 50%;
height: 2px;
background: rgba(var(--tm-primary-rgb), .28);
transform: translateY(-50%);
}
.section-kicker--specs .section-kicker__text {
position: relative;
z-index: 1;
padding: 0 14px;
background: var(--tm-bg);
color: var(--tm-primary);
}
.section-kicker--specs .section-kicker__text::before,
.section-kicker--specs .section-kicker__text::after {
content: '';
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
border: 1px solid rgba(var(--tm-primary-rgb), .6);
background: rgba(var(--tm-primary-rgb), .25);
box-shadow: 0 0 0 2px rgba(var(--tm-primary-rgb), .12);
vertical-align: middle;
margin: 0 10px;
transform: translateY(-1px);
}
.section-kicker--related {
margin-bottom: 16px;
justify-content: flex-start;
}
.section-kicker--related .section-kicker__text {
font-size: 22px;
color: #fff;
letter-spacing: -0.01em;
display: flex;
align-items: center;
gap: 16px;
width: 100%;
}
.section-kicker--related .section-kicker__text::before {
content: '';
width: 6px;
height: 24px;
background: var(--tm-primary);
border-radius: 4px;
box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}
.section-kicker--related .section-kicker__text::after {
content: '';
flex: 1;
height: 1px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
margin-left: 8px;
}
.card--gradient {
background: linear-gradient(135deg, var(--tm-surface) 0%, var(--tm-surface-2) 100%);
}
.card--hero {
overflow: visible;
position: relative;
}
.card--hero .card__body {
position: relative;
z-index: 2;
overflow: hidden;
}
.card__body {
padding: 20px;
position: relative;
z-index: 1;
}
.blog-article__head {
display: flex;
align-items: center;
gap: 16px;
padding: 8px 10px;
margin: -20px -20px 24px;
background: linear-gradient(90deg, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
border-bottom: 1px solid rgba(245, 158, 11, 0.18);
border-left: 3px solid var(--tm-primary);
position: relative;
z-index: 2;
overflow: hidden;
}
.blog-article__head::before {
content: "DESC";
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 52px;
font-weight: 900;
font-family: var(--tm-font-mono, monospace);
color: rgba(245, 158, 11, 0.04);
letter-spacing: 0.1em;
pointer-events: none;
user-select: none;
white-space: nowrap;
line-height: 1;
}
.blog-article__head-icon-wrap {
width: 46px;
height: 46px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
border-radius: 14px;
background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.04));
border: 1px solid rgba(245, 158, 11, 0.35);
box-shadow: 0 0 16px rgba(245, 158, 11, 0.1);
}
.blog-article__head-icon {
width: 22px;
height: 22px;
color: var(--tm-primary);
filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.4));
}
.blog-article__head-body {
display: flex;
flex-direction: column;
gap: 3px;
}
.blog-article__head-kicker {
font-family: var(--tm-font-mono, monospace);
font-size: 10px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(245, 158, 11, 0.55);
line-height: 1;
}
.blog-article__head-title {
font-size: 18px;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
color: #fff;
margin: 0;
line-height: 1.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 {
--rek-min-h: 50px;
padding: 0;
margin: 0;
}
.flex-center-rek > *:not(script) {
max-width: 100%;
}
}
.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;
}
.feedback__compose > .comment-respond,
.feedback-item .comment-respond {
display: block;
background: rgba(24, 24, 27, 0.6);
border: 1px solid rgba(55, 65, 81, 0.7);
padding: 14px;
border-radius: 2px;
}
.feedback-item .comment-respond {
margin-top: 14px;
}
@media (min-width: 768px) {
.feedback__compose > .comment-respond,
.feedback-item .comment-respond {
padding: 18px;
}
}
.feedback__form {
display: grid;
gap: 12px;
}
.feedback__toast {
margin-bottom: 12px;
padding: 11px 14px;
border: 1px solid rgba(55, 65, 81, 0.85);
background: rgba(24, 24, 27, 0.92);
color: #f5f5f5;
font-family: var(--tm-font-mono);
font-size: 11px;
line-height: 1.5;
opacity: 0;
transform: translateY(-6px);
transition: opacity .18s ease, transform .18s ease;
}
.feedback-item > .feedback__toast {
margin-top: 14px;
}
.feedback__toast.is-visible {
opacity: 1;
transform: translateY(0);
}
.feedback__toast.is-success {
border-color: rgba(245, 158, 11, 0.45);
box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.08);
}
.feedback__toast.is-error {
border-color: rgba(239, 68, 68, 0.55);
color: #fecaca;
box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.08);
}
.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__btn[disabled] {
opacity: 0.7;
cursor: wait;
}
.feedback__form.is-submitting .feedback__textarea,
.feedback__form.is-submitting .feedback__input {
opacity: 0.88;
}
.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--client-preview {
border-color: rgba(245, 158, 11, 0.45);
box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.12);
}
.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;
}.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; }
}