@font-face {
    font-family: "TikTok Sans";
    src: url("../fonts/tiktok-sans/TikTokSans-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --page: #000000;
    --surface: #0d0d0f;
    --surface-raised: #151517;
    --surface-soft: #1d1d20;
    --text: #ffffff;
    --muted: #a7a7ad;
    --muted-strong: #cbcbcf;
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.24);
    --cyan: #25f4ee;
    --cyan-dark: #16c9c4;
    --pink: #fe2c55;
    --pink-dark: #d91d43;
    --success: #36e69a;
    --warning: #ffcc4d;
    --error: #ff526f;
    --header-height: 82px;
    --player-height: 82px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --content: 1440px;
    --shadow-pair: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 244, 238, 0.48) transparent;
    -webkit-text-size-adjust: 100%;
}

html::-webkit-scrollbar { width: 8px; height: 8px; }
html::-webkit-scrollbar-button { display: none; width: 0; height: 0; background: transparent; }
html::-webkit-scrollbar-track,
html::-webkit-scrollbar-track-piece,
html::-webkit-scrollbar-corner { background: transparent; }
html::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(37, 244, 238, 0.48); background-clip: padding-box; }
html::-webkit-scrollbar-thumb:hover { background-color: rgba(254, 44, 85, 0.66); }

body {
    min-width: 320px;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 5% 8%, rgba(37, 244, 238, 0.09), transparent 23rem),
        radial-gradient(circle at 95% 20%, rgba(254, 44, 85, 0.09), transparent 26rem),
        var(--page);
    color: var(--text);
    font-family: "TikTok Sans", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body.standalone-page {
    padding-bottom: 0;
}

.standalone-page .cookie-banner {
    bottom: calc(var(--player-height) + 20px);
}

.standalone-page .scroll-top {
    bottom: calc(var(--player-height) + 30px);
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
strong {
    text-wrap: balance;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

::selection {
    background: var(--pink);
    color: #fff;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    transform: translateY(-160%);
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-weight: 700;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.section-shell {
    width: min(calc(100% - 48px), var(--content));
    margin-inline: auto;
}

.inner-page-main {
    min-height: 70vh;
}

.inner-page-hero {
    padding-top: 170px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
}

.inner-page-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 760;
    letter-spacing: -0.055em;
    line-height: 1;
}

.inner-page-hero > p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 28px;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.7;
}

.standalone-faq {
    width: min(calc(100% - 48px), 1040px);
    padding-top: 70px;
    padding-bottom: 140px;
}

.standalone-contacts {
    padding-top: 54px;
    grid-template-columns: minmax(210px, 0.36fr) minmax(520px, 1fr);
}

.legal-content {
    width: min(calc(100% - 48px), 1040px);
    padding-top: 68px;
    padding-bottom: 140px;
}

.legal-content article {
    display: grid;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
}

.legal-content article > span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.legal-content h2 {
    margin-bottom: 12px;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.2;
}

.legal-content p {
    max-width: 820px;
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.75;
}

.inner-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.legal-community-page .inner-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.legal-community-page .inner-page-hero::before,
.legal-community-page .inner-page-hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.legal-community-page .inner-page-hero::before {
    width: 430px;
    height: 430px;
    top: 58px;
    right: -120px;
    background: radial-gradient(circle, rgba(37, 244, 238, 0.12), transparent 68%);
}

.legal-community-page .inner-page-hero::after {
    width: 310px;
    height: 310px;
    bottom: -190px;
    left: 8%;
    background: radial-gradient(circle, rgba(254, 44, 85, 0.1), transparent 70%);
}

.legal-overview,
.legal-toc,
.legal-community-page .legal-content {
    width: min(calc(100% - 48px), 1040px);
}

.legal-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    gap: 16px;
    padding-top: 54px;
}

.legal-overview-lead,
.legal-facts,
.legal-toc,
.legal-content.is-detailed > article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(37, 244, 238, 0.045), rgba(255, 255, 255, 0.025) 45%, rgba(254, 44, 85, 0.035));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.legal-overview-lead {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 25px;
    border-radius: 22px;
    transition: border-color 190ms ease, background 190ms ease, box-shadow 190ms ease, transform 190ms var(--ease);
}

.legal-overview-lead > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(37, 244, 238, 0.28);
    border-radius: 17px;
    background: rgba(37, 244, 238, 0.08);
    color: var(--cyan);
    font-size: 23px;
    transition: border-color 190ms ease, background 190ms ease, color 190ms ease, box-shadow 190ms ease, transform 190ms var(--ease);
}

.legal-overview-lead:hover {
    border-color: rgba(37, 244, 238, 0.24);
    background: linear-gradient(145deg, rgba(37, 244, 238, 0.075), rgba(255, 255, 255, 0.03) 45%, rgba(254, 44, 85, 0.055));
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(37, 244, 238, 0.035);
    transform: translateY(-2px);
}

.legal-overview-lead:hover > span {
    border-color: rgba(37, 244, 238, 0.52);
    background: rgba(37, 244, 238, 0.13);
    color: #fff;
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.18), 3px -3px 0 rgba(254, 44, 85, 0.16);
    transform: rotate(-3deg) scale(1.04);
}

.legal-overview-lead > div > p:first-child {
    margin: 0 0 6px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-overview-lead h2 {
    margin: 0 0 9px;
    font-size: clamp(23px, 2.5vw, 31px);
    line-height: 1.15;
}

.legal-overview-lead > div > p:last-child {
    margin: 0;
    color: var(--muted-strong);
    font-size: 15px;
    line-height: 1.7;
}

.legal-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
}

.legal-facts article {
    display: grid;
    min-width: 0;
    align-content: center;
    gap: 4px;
    padding: 17px;
    background: #101014;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.legal-facts i {
    margin-bottom: 5px;
    color: var(--cyan);
    font-size: 15px;
    transition: color 180ms ease, filter 180ms ease, transform 180ms var(--ease);
}

.legal-facts article:hover {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(37, 244, 238, 0.09), #101014 58%, rgba(254, 44, 85, 0.06));
    box-shadow: inset 0 0 0 1px rgba(37, 244, 238, 0.22), 0 12px 28px rgba(0, 0, 0, 0.26);
}

.legal-facts article:hover i {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(37, 244, 238, 0.7));
    transform: translateY(-2px) scale(1.13) rotate(-4deg);
}

.legal-facts article:nth-child(2n):hover i { filter: drop-shadow(0 0 8px rgba(254, 44, 85, 0.65)); }

.legal-facts article:nth-child(2n) i { color: var(--pink); }

.legal-facts strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 18px;
    line-height: 1.1;
}

.legal-facts span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.legal-toc {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
}

.legal-toc > div {
    display: flex;
    min-width: 0;
    gap: 11px;
    align-items: flex-start;
    padding: 7px 4px;
}

.legal-toc > div > i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    background: rgba(254, 44, 85, 0.1);
    color: var(--pink);
}

.legal-toc > div span { display: grid; min-width: 0; gap: 3px; }
.legal-toc > div strong { font-size: 15px; }
.legal-toc > div small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-toc a {
    display: grid;
    min-height: 42px;
    grid-template-columns: 25px minmax(0, 1fr) 18px;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
    color: #d7d7dc;
    font-size: 12px;
    font-weight: 720;
    transition: border-color 170ms ease, background 170ms ease, color 170ms ease, transform 170ms var(--ease);
}

.legal-toc a b {
    color: var(--cyan);
    font-size: 9px;
    letter-spacing: 0.06em;
}

.legal-toc a > i {
    color: #73737c;
    font-size: 10px;
    transition: color 170ms ease, transform 170ms var(--ease);
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
    border-color: rgba(37, 244, 238, 0.3);
    outline: 0;
    background: rgba(37, 244, 238, 0.06);
    color: #fff;
    transform: translateY(-1px);
}

.legal-toc a:hover > i,
.legal-toc a:focus-visible > i { color: var(--pink); transform: translateY(2px); }

.legal-content.is-detailed {
    display: grid;
    gap: 16px;
    padding-top: 28px;
}

.legal-content.is-detailed > article {
    position: relative;
    scroll-margin-top: 104px;
    overflow: hidden;
    padding: 25px;
    border-radius: 22px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    transition: border-color 190ms ease, box-shadow 190ms ease, transform 190ms var(--ease);
}

.legal-content.is-detailed > article::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.62), var(--pink));
    content: "";
    opacity: 0.75;
    transition: right 190ms var(--ease), left 190ms var(--ease), opacity 190ms ease, box-shadow 190ms ease;
}

.legal-content.is-detailed > article:hover,
.legal-content.is-detailed > article:focus-within {
    border-color: rgba(37, 244, 238, 0.2);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.29);
    transform: translateY(-2px);
}

.legal-content.is-detailed > article:hover::before,
.legal-content.is-detailed > article:focus-within::before {
    right: 14px;
    left: 14px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(37, 244, 238, 0.3), 0 0 18px rgba(254, 44, 85, 0.18);
}

.legal-section-marker {
    display: grid;
    width: 54px;
    min-height: 72px;
    align-content: center;
    justify-items: center;
    gap: 8px;
    border: 1px solid rgba(37, 244, 238, 0.2);
    border-radius: 15px;
    background: rgba(37, 244, 238, 0.06);
    transition: border-color 190ms ease, background 190ms ease, box-shadow 190ms ease, transform 190ms var(--ease);
}

.legal-section-marker b {
    color: var(--cyan);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.legal-section-marker i { color: #fff; font-size: 18px; transition: color 190ms ease, filter 190ms ease, transform 190ms var(--ease); }
.legal-content.is-detailed > article:hover .legal-section-marker,
.legal-content.is-detailed > article:focus-within .legal-section-marker {
    border-color: rgba(37, 244, 238, 0.46);
    background: rgba(37, 244, 238, 0.11);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), inset 0 -2px 0 rgba(254, 44, 85, 0.42);
    transform: translateY(-2px);
}
.legal-content.is-detailed > article:hover .legal-section-marker i,
.legal-content.is-detailed > article:focus-within .legal-section-marker i {
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(37, 244, 238, 0.55));
    transform: scale(1.12) rotate(-4deg);
}
.legal-content.is-detailed > article.is-danger .legal-section-marker { border-color: rgba(254, 44, 85, 0.25); background: rgba(254, 44, 85, 0.07); }
.legal-content.is-detailed > article.is-danger .legal-section-marker b,
.legal-content.is-detailed > article.is-danger .legal-section-marker i { color: var(--pink); }
.legal-content.is-detailed > article.is-danger:hover .legal-section-marker,
.legal-content.is-detailed > article.is-danger:focus-within .legal-section-marker { border-color: rgba(254, 44, 85, 0.48); background: rgba(254, 44, 85, 0.11); }
.legal-content.is-detailed > article.is-danger:hover .legal-section-marker i,
.legal-content.is-detailed > article.is-danger:focus-within .legal-section-marker i { color: #fff; filter: drop-shadow(0 0 8px rgba(254, 44, 85, 0.62)); }
.legal-content.is-detailed > article.is-reward .legal-section-marker { box-shadow: inset 0 -2px 0 rgba(254, 44, 85, 0.55); }
.legal-content.is-detailed > article.is-reward:hover .legal-section-marker,
.legal-content.is-detailed > article.is-reward:focus-within .legal-section-marker { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), inset 0 -2px 0 rgba(254, 44, 85, 0.65); }

.legal-section-body { min-width: 0; }

.legal-content.is-detailed .legal-section-body h2 {
    margin: 0 0 9px;
    font-size: clamp(21px, 2.4vw, 28px);
}

.legal-content.is-detailed .legal-section-body > p {
    max-width: 900px;
    font-size: 15px;
    line-height: 1.7;
}

.legal-section-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.legal-section-body li {
    display: grid;
    min-width: 0;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.024);
    color: #c7c7ce;
    font-size: 13px;
    line-height: 1.55;
    transition: border-color 170ms ease, background 170ms ease, color 170ms ease, box-shadow 170ms ease, transform 170ms var(--ease);
}

.legal-section-body li > i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 8px;
    background: rgba(37, 244, 238, 0.08);
    color: var(--cyan);
    font-size: 9px;
    transition: background 170ms ease, color 170ms ease, transform 170ms var(--ease);
}

.legal-section-body li:hover {
    border-color: rgba(37, 244, 238, 0.22);
    background: rgba(37, 244, 238, 0.055);
    color: #fff;
    box-shadow: inset 2px 0 0 rgba(254, 44, 85, 0.58);
    transform: translateX(2px);
}

.legal-section-body li:hover > i {
    background: rgba(37, 244, 238, 0.15);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.legal-content.is-detailed > article.is-danger li > i { background: rgba(254, 44, 85, 0.09); color: var(--pink); }

.legal-section-body > aside {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 13px;
    padding: 11px 13px;
    border: 1px solid rgba(37, 244, 238, 0.15);
    border-radius: 13px;
    background: rgba(37, 244, 238, 0.035);
    transition: border-color 170ms ease, background 170ms ease, box-shadow 170ms ease, transform 170ms var(--ease);
}

.legal-section-body > aside > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: rgba(37, 244, 238, 0.09);
    color: var(--cyan);
    transition: background 170ms ease, color 170ms ease, transform 170ms var(--ease);
}

.legal-section-body > aside:hover {
    border-color: rgba(37, 244, 238, 0.32);
    background: rgba(37, 244, 238, 0.065);
    box-shadow: inset 2px 0 0 rgba(37, 244, 238, 0.42);
    transform: translateY(-1px);
}

.legal-section-body > aside:hover > i {
    background: rgba(254, 44, 85, 0.1);
    color: #fff;
    transform: rotate(-5deg) scale(1.04);
}

.legal-section-body > aside > p {
    align-self: center;
    color: #a9a9b1;
    font-size: 12px;
    line-height: 1.55;
}

.legal-section-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.legal-section-links a {
    display: inline-flex;
    min-height: 40px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid rgba(37, 244, 238, 0.22);
    border-radius: 11px;
    background: rgba(37, 244, 238, 0.055);
    color: #fff;
    font-size: 12px;
    font-weight: 780;
    transition: border-color 170ms ease, background 170ms ease, transform 170ms var(--ease);
}

.legal-section-links a:nth-child(2n) { border-color: rgba(254, 44, 85, 0.22); background: rgba(254, 44, 85, 0.055); }
.legal-section-links a:hover,
.legal-section-links a:focus-visible { border-color: #fff; outline: 0; transform: translateY(-2px); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan) 0 50%, var(--pink) 50%);
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: #fff;
    color: #000;
    box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
}

.button-primary:hover {
    box-shadow: -7px 7px 0 var(--cyan), 7px -7px 0 var(--pink);
}

.button-secondary,
.button-quiet {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
}

.button-secondary:hover,
.button-quiet:hover {
    border-color: var(--cyan);
    background: rgba(37, 244, 238, 0.08);
}

.button-light {
    background: #000;
    color: #fff;
    box-shadow: -4px 4px 0 var(--pink), 4px -4px 0 rgba(255, 255, 255, 0.75);
}

.round-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #111113;
    color: #fff;
    cursor: pointer;
    transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.round-button:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
    color: var(--cyan);
}

.round-button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
    transform: none;
}

.site-header {
    position: fixed;
    z-index: 120;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height 220ms var(--ease), background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: var(--line);
    background: rgba(0, 0, 0, 0.86);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: grid;
    width: min(calc(100% - 48px), var(--content));
    height: 100%;
    align-items: center;
    margin-inline: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
}

.brand {
    position: relative;
    display: inline-grid;
    width: 46px;
    min-height: 46px;
    place-items: center;
    isolation: isolate;
    font-weight: 850;
    line-height: 1;
}

.brand-mark {
    position: relative;
    z-index: 7;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 42px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.09em;
    transition: transform 260ms var(--ease);
}

.brand-mark::before,
.brand-mark::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    content: "T";
}

.brand-mark::before {
    color: var(--cyan);
    transform: translate(-3px, 2px);
}

.brand-mark::after {
    color: var(--pink);
    transform: translate(3px, -2px);
}

.brand-mark b {
    position: relative;
    z-index: 2;
    font: inherit;
}

.brand-name {
    position: absolute;
    z-index: 6;
    left: 48px;
    display: inline-flex;
    width: max-content;
    padding: 5px 8px 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    background: rgba(5, 5, 6, 0.94);
    font-size: 20px;
    letter-spacing: -0.025em;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 100% 0 0 round 9px);
    transform: translateX(-12px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    transition: opacity 220ms ease, transform 300ms var(--ease), clip-path 300ms var(--ease);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
    transform: translateY(-2px) scale(1.04);
}

.brand:hover .brand-name,
.brand:focus-visible .brand-name {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 9px);
    transform: translateX(0);
}

.brand-tall {
    color: #fff;
    text-shadow: -2px 2px 0 var(--cyan);
}

.brand-vix {
    color: #fff;
    text-shadow: 2px -2px 0 var(--pink);
}

.desktop-navigation {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.desktop-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--muted-strong);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease;
}

.navigation-unread {
    display: inline-grid;
    min-width: 19px;
    height: 19px;
    place-items: center;
    padding: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 0 16px rgba(254, 44, 85, 0.34);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.desktop-navigation a i {
    color: var(--muted);
    font-size: 13px;
}

.desktop-navigation a:hover,
.desktop-navigation a.is-current {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.desktop-navigation a.is-current {
    box-shadow: inset 0 -2px 0 var(--cyan), inset 0 2px 0 rgba(254, 44, 85, 0.72);
}

.desktop-navigation a:hover i,
.desktop-navigation a.is-current i {
    color: var(--cyan);
}

.header-actions,
.language-switcher {
    display: flex;
    align-items: center;
}

.header-actions {
    gap: 8px;
}

.language-switcher {
    gap: 4px;
    margin-right: 3px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.language-button {
    display: inline-flex;
    width: 38px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    opacity: 0.65;
    transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}

.language-button:hover,
.language-button.is-current {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.09);
    opacity: 1;
}

.language-button.is-current {
    box-shadow: inset 0 -2px 0 var(--cyan);
}

.language-button img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.auth-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.auth-button:hover {
    transform: translateY(-2px);
}

.auth-login,
.auth-account,
.auth-logout {
    background: #0d0d0f;
    color: #fff;
}

.auth-login:hover,
.auth-account:hover,
.auth-logout:hover {
    border-color: var(--cyan);
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.65);
}

.auth-register {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
}

.auth-register:hover {
    box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink);
}

.auth-account {
    border-color: rgba(37, 244, 238, 0.42);
    background: rgba(37, 244, 238, 0.09);
    color: #eaffff;
    box-shadow: inset 0 -2px 0 rgba(37, 244, 238, 0.72);
}

.auth-account > i { color: var(--cyan); transition: color 180ms ease, transform 180ms var(--ease); }

.auth-account:hover,
.auth-account.is-current {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #050506;
    box-shadow: -4px 4px 0 rgba(254, 44, 85, 0.76), 0 12px 26px rgba(37, 244, 238, 0.15);
}

.auth-account:hover > i,
.auth-account.is-current > i { color: #050506; transform: rotate(-7deg) scale(1.08); }

.auth-logout {
    border-color: rgba(254, 44, 85, 0.42);
    background: rgba(254, 44, 85, 0.09);
    color: #ff91a6;
    box-shadow: inset 0 -2px 0 rgba(254, 44, 85, 0.72);
}

.auth-logout > i { color: var(--pink); transition: color 180ms ease, transform 180ms var(--ease); }

.auth-logout:hover {
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;
    box-shadow: 4px -4px 0 rgba(37, 244, 238, 0.76), 0 12px 26px rgba(254, 44, 85, 0.18);
}

.auth-logout:hover > i { color: #fff; transform: translateX(3px); }

.logout-form {
    margin: 0;
}

.mobile-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: #0d0d0f;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.mobile-menu-backdrop {
    position: fixed;
    z-index: 190;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 220ms ease;
}

.mobile-menu-backdrop.is-visible {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    display: flex;
    width: min(420px, 100%);
    height: 100dvh;
    padding: 20px;
    transform: translateX(105%);
    flex-direction: column;
    border-left: 1px solid rgba(37, 244, 238, 0.42);
    background: #070708;
    box-shadow: -8px 0 0 rgba(254, 44, 85, 0.32);
    transition: transform 320ms var(--ease);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.mobile-navigation {
    display: grid;
    gap: 8px;
    padding: 22px 0;
    overflow-y: auto;
}

.mobile-navigation a {
    display: grid;
    min-height: 58px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #101012;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
}

.mobile-navigation .navigation-unread {
    grid-column: 3;
    grid-row: 1;
    margin-right: 24px;
}

.mobile-navigation a > i:first-child {
    color: var(--cyan);
}

.mobile-navigation a > i:last-child {
    color: var(--muted);
    font-size: 13px;
}

.mobile-navigation a:hover,
.mobile-navigation a.is-current {
    border-color: var(--pink);
    background: rgba(254, 44, 85, 0.07);
}

.mobile-navigation a.is-current {
    color: #fff;
    box-shadow: inset 3px 0 0 var(--cyan), inset -3px 0 0 var(--pink);
}

.mobile-navigation a.is-current > i:last-child {
    color: var(--pink);
}

.mobile-menu-footer {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.mobile-language-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
}

.mobile-language {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted-strong);
    font-weight: 600;
}

.mobile-language.is-current {
    border-color: var(--cyan);
    color: #fff;
}

.mobile-language img {
    border-radius: 3px;
}

.mobile-auth {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
}

button.mobile-auth {
    cursor: pointer;
}

.mobile-auth-login {
    background: #121214;
}

.mobile-auth-register {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
}

.mobile-auth-account {
    border-color: rgba(37, 244, 238, 0.52);
    background: rgba(37, 244, 238, 0.11);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--cyan);
}

.mobile-auth-account > i { color: var(--cyan); }

.mobile-auth-logout {
    border-color: rgba(254, 44, 85, 0.52);
    background: rgba(254, 44, 85, 0.11);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--pink);
}

.mobile-auth-logout > i { color: var(--pink); }

.hero {
    position: relative;
    display: flex;
    min-height: 860px;
    align-items: center;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 100px;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 10% 0 auto;
    height: 520px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.14;
    pointer-events: none;
}

.hero-orb-cyan {
    top: 18%;
    right: 34%;
    background: var(--cyan);
}

.hero-orb-pink {
    right: 2%;
    bottom: 18%;
    background: var(--pink);
}

.hero-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    align-items: center;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: clamp(42px, 6vw, 100px);
}

.hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 650px;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 750;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero-title-punctuation {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 8px;
    vertical-align: 0.08em;
}

.hero-title-punctuation i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.hero-title-punctuation i:first-child {
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(37, 244, 238, 0.55);
}

.hero-title-punctuation i:last-child {
    background: var(--pink);
    box-shadow: 0 0 16px rgba(254, 44, 85, 0.52);
}

.hero-text {
    max-width: 610px;
    margin-bottom: 34px;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-era-dial {
    --era-travel: -320px;
    position: relative;
    width: min(100%, 560px);
    min-width: 0;
    max-width: 100%;
    margin-top: 48px;
    padding: 14px 0 15px;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    cursor: ew-resize;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.hero-era-dial::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 2px;
    height: 9px;
    background: #fff;
    box-shadow: -3px 0 0 var(--cyan), 3px 0 0 var(--pink);
    content: "";
    opacity: 0.82;
    transform: translateX(-50%);
}

.hero-era-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: clamp(18px, 2.3vw, 28px);
    padding-inline: 10px;
    will-change: transform;
}

.hero-era-track span {
    display: inline-block;
    min-width: 78px;
    color: #fff;
    font-size: clamp(18px, 1.7vw, 23px);
    font-weight: 850;
    letter-spacing: -0.045em;
    text-align: center;
    transform-origin: center;
}

.hero-era-track span:nth-child(3n + 1) {
    color: var(--cyan);
}

.hero-era-track span:nth-child(3n + 2) {
    color: #fff;
}

.hero-era-track span:nth-child(3n) {
    color: var(--pink);
}

.hero-era-track .is-landmark {
    color: #fff;
    font-size: clamp(21px, 2vw, 27px);
    text-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
}

.hero-era-dial:hover .hero-era-track,
.hero-era-dial:focus-visible .hero-era-track {
    animation: era-compass 5.8s cubic-bezier(0.7, 0, 0.3, 1) infinite alternate;
}

.hero-era-dial:hover .hero-era-track span,
.hero-era-dial:focus-visible .hero-era-track span {
    animation: era-year-live 780ms ease-in-out infinite alternate;
}

.hero-era-dial:hover .hero-era-track span:nth-child(2n),
.hero-era-dial:focus-visible .hero-era-track span:nth-child(2n) {
    animation-delay: -390ms;
}

@keyframes era-compass {
    from { transform: translateX(0); }
    to { transform: translateX(var(--era-travel)); }
}

@keyframes era-year-live {
    from { transform: perspective(160px) rotateX(-11deg) translateY(1px); opacity: 0.72; }
    to { transform: perspective(160px) rotateX(9deg) translateY(-2px); opacity: 1; }
}

.hero-radio-stage {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 0;
    min-width: 0;
    flex-direction: column;
    gap: 26px;
}

.hero-card-stage {
    position: relative;
    display: grid;
    min-height: 590px;
    min-width: 0;
    padding: 52px 24px 30px;
    place-items: start center;
}

.hero-stage-grid {
    position: absolute;
    inset: 14px 16px 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.7;
}

.hero-radio-card {
    position: relative;
    z-index: 2;
    width: min(460px, calc(100% - 46px));
    min-height: 490px;
    margin-inline: auto;
    padding: 20px;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    background: #09090a;
    box-shadow: -8px 8px 0 var(--cyan), 8px -8px 0 var(--pink), 0 30px 90px rgba(0, 0, 0, 0.65);
    transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.hero-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card-topline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-card-topline span i,
.station-live i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 14px rgba(54, 230, 154, 0.85);
}

.hero-card-topline b {
    color: var(--success);
    font-size: 12px;
}

.hero-artwork-wrap {
    position: relative;
    display: grid;
    min-height: 300px;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle, rgba(37, 244, 238, 0.16), transparent 58%),
        #111113;
}

.vinyl-rings {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 30px rgba(255, 255, 255, 0.018),
        inset 0 0 0 60px rgba(255, 255, 255, 0.018),
        inset 0 0 0 90px rgba(255, 255, 255, 0.018);
}

.station-artwork {
    position: relative;
    display: grid;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.18)),
        #141416;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.station-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-artwork {
    z-index: 2;
    width: 242px;
    height: 242px;
    border-radius: 50%;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.hero-play-button {
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 22px;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 21px;
    box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink);
    transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.hero-play-button:hover {
    transform: scale(1.06);
    box-shadow: -8px 8px 0 var(--cyan), 8px -8px 0 var(--pink);
}

.hero-radio-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
}

.hero-radio-info span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-radio-info h2 {
    margin: 4px 0 2px;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.12;
}

.hero-radio-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.equalizer {
    display: flex;
    height: 28px;
    align-items: flex-end;
    gap: 3px;
}

.equalizer i {
    display: block;
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: var(--cyan);
}

.equalizer i:nth-child(2) {
    height: 17px;
    background: #fff;
}

.equalizer i:nth-child(3) {
    height: 11px;
    background: var(--pink);
}

.equalizer i:nth-child(4) {
    height: 22px;
}

.is-playing .equalizer i,
.equalizer.is-active i {
    animation: equalize 720ms ease-in-out infinite alternate;
}

.is-playing .equalizer i:nth-child(2) {
    animation-delay: -420ms;
}

.is-playing .equalizer i:nth-child(3) {
    animation-delay: -240ms;
}

.is-playing .equalizer i:nth-child(4) {
    animation-delay: -560ms;
}

@keyframes equalize {
    from { height: 5px; }
    to { height: 26px; }
}

.hero-station-stack {
    position: relative;
    z-index: 5;
    display: grid;
    width: 100%;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: rgba(7, 7, 8, 0.94);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform 240ms var(--ease), border-color 240ms ease, box-shadow 240ms ease;
}

.hero-stack-heading,
.hero-stack-link {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 7px;
    grid-column: 1 / -1;
}

.hero-stack-heading {
    color: var(--muted-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-stack-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-stack-heading span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 13px rgba(37, 244, 238, 0.8);
}

.hero-stack-heading > i {
    color: var(--pink);
}

.hero-stack-link {
    border-top: 1px solid var(--line);
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    transition: color 180ms ease, padding 180ms var(--ease);
}

.hero-stack-link:hover {
    padding-left: 12px;
    color: var(--cyan);
}

.hero-stack-link i {
    color: var(--pink);
}

.hero-mini-station {
    display: grid;
    min-height: 68px;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(11, 11, 13, 0.94);
    color: #fff;
    cursor: pointer;
    grid-template-columns: 28px 46px minmax(0, 1fr) 32px;
    gap: 9px;
    text-align: left;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.hero-station-stack .hero-mini-station {
    min-height: 72px;
    padding-inline: 9px;
    grid-template-columns: 20px 40px minmax(0, 1fr) 22px;
    gap: 7px;
}

.hero-station-stack .mini-artwork {
    width: 40px;
    height: 40px;
}

.hero-mini-station:hover {
    transform: translateX(-5px);
    border-color: var(--cyan);
    background: #151517;
}

.hero-mini-index {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.mini-artwork {
    display: grid;
    width: 46px;
    height: 46px;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #19191b;
    font-size: 12px;
    font-weight: 800;
}

.mini-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-copy {
    min-width: 0;
}

.mini-copy strong,
.mini-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-copy strong {
    font-size: 14px;
}

.mini-copy small {
    color: var(--muted);
    font-size: 12px;
}

.hero-mini-station > i {
    color: var(--pink);
}

.stats-strip {
    display: grid;
    overflow: hidden;
    margin-top: -26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #0b0b0d;
    grid-template-columns: repeat(4, 1fr);
}

.stats-strip article {
    position: relative;
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
    isolation: isolate;
    transition: transform 240ms var(--ease), background 240ms ease, box-shadow 240ms ease;
}

.stats-strip article:last-child {
    border-right: 0;
}

.stats-strip article::after {
    position: absolute;
    right: 39px;
    bottom: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 11px 0 0 #fff, 22px 0 0 var(--pink);
    content: "";
    transition: transform 220ms var(--ease), filter 220ms ease;
}

.stats-strip strong {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color 220ms ease, letter-spacing 220ms ease, transform 220ms var(--ease);
}

.stats-strip strong small {
    color: var(--cyan);
    font-size: 13px;
    letter-spacing: 0;
}

.stats-strip span {
    color: var(--muted);
    font-size: 14px;
}

.about-section,
.player-section,
.faq-section,
.contacts-section {
    display: grid;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 80px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: clamp(55px, 8vw, 130px);
}

.about-visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
        radial-gradient(circle at 28% 30%, rgba(37, 244, 238, 0.13), transparent 34%),
        radial-gradient(circle at 74% 68%, rgba(254, 44, 85, 0.12), transparent 34%),
        #0b0b0d;
    background-size: 16px 16px, 100% 100%, 100% 100%, auto;
    box-shadow: -6px 6px 0 rgba(37, 244, 238, 0.9), 6px -6px 0 rgba(254, 44, 85, 0.9);
    transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.about-world-scene {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.about-world-glow {
    position: absolute;
    width: min(76%, 470px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 36%, rgba(37, 244, 238, 0.25), transparent 42%),
        radial-gradient(circle at 68% 62%, rgba(254, 44, 85, 0.22), transparent 46%);
    filter: blur(24px);
}

.about-world {
    position: relative;
    width: min(76%, 430px);
    height: auto;
    opacity: 0.9;
    mix-blend-mode: screen;
    filter: saturate(1.22) contrast(1.08) drop-shadow(-7px 7px 18px rgba(37, 244, 238, 0.2)) drop-shadow(7px -7px 18px rgba(254, 44, 85, 0.18));
}

.about-stereo {
    position: absolute;
    z-index: 3;
    top: 52%;
    left: 50%;
    width: min(66%, 440px);
    min-width: 340px;
    padding: 13px 15px 15px;
    transform: translate(-50%, -44%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 25px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 24%),
        linear-gradient(180deg, #19191c, #070708);
    box-shadow: -7px 7px 0 rgba(37, 244, 238, 0.92), 7px -7px 0 rgba(254, 44, 85, 0.92), 0 26px 60px rgba(0, 0, 0, 0.62);
    transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.about-stereo-handle {
    position: absolute;
    z-index: -1;
    top: -32px;
    right: 54px;
    left: 54px;
    height: 38px;
    border: 8px solid #18181b;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    box-shadow: -2px 0 0 var(--cyan), 2px 0 0 var(--pink);
}

.about-stereo-topbar {
    display: flex;
    min-height: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #d7d7db;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.about-stereo-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.about-stereo-topbar span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(37, 244, 238, 0.7);
}

.about-stereo-topbar b {
    color: var(--pink);
    font-size: 10px;
}

.about-stereo-body {
    display: grid;
    align-items: center;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #101012;
    background-size: 16px 16px;
    grid-template-columns: 86px minmax(0, 1fr) 86px;
    gap: 11px;
}

.about-stereo-speaker {
    position: relative;
    display: grid;
    width: 86px;
    height: 116px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    background: #080809;
    box-shadow: inset 0 0 0 4px #151518;
}

.about-stereo-speaker::before,
.about-stereo-speaker::after {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4b4b51;
    content: "";
}

.about-stereo-speaker::before { top: 8px; left: 8px; }
.about-stereo-speaker::after { right: 8px; bottom: 8px; }

.about-stereo-speaker > i {
    display: block;
    width: 65px;
    height: 65px;
    border: 7px solid #232327;
    border-radius: 50%;
    background: radial-gradient(circle, #080809 0 20%, #29292e 21% 32%, #0d0d0f 34% 59%, #202025 61% 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 0 2px #050506;
}

.about-stereo-speaker > span {
    position: absolute;
    top: 13px;
    width: 18px;
    height: 18px;
    border: 4px solid #29292e;
    border-radius: 50%;
    background: #050506;
}

.about-stereo-center {
    display: grid;
    min-width: 0;
    gap: 8px;
}

.about-stereo-display {
    position: relative;
    min-height: 71px;
    padding: 9px 9px 28px;
    overflow: hidden;
    border: 1px solid rgba(37, 244, 238, 0.2);
    border-radius: 10px;
    background: rgba(2, 9, 10, 0.95);
    box-shadow: inset 0 0 20px rgba(37, 244, 238, 0.06);
}

.about-stereo-display [data-player-status] {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-stereo-display [data-player-status]::before {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
}

.about-stereo-display strong {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    color: #fff;
    font-size: 12px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-stereo-spectrum {
    position: absolute;
    right: 8px;
    bottom: 7px;
    left: 8px;
    display: grid;
    height: 19px;
    align-items: end;
    grid-template-columns: repeat(14, minmax(2px, 1fr));
    gap: 2px;
}

.about-stereo-spectrum i {
    display: block;
    height: 38%;
    min-height: 2px;
    transform: scaleY(0.45);
    transform-origin: bottom;
    border-radius: 3px 3px 1px 1px;
    background: var(--cyan);
    opacity: 0.46;
}

.about-stereo-spectrum i:nth-child(3n) { height: 76%; background: #fff; }
.about-stereo-spectrum i:nth-child(4n) { height: 94%; background: var(--pink); }
.about-stereo-spectrum i:nth-child(5n) { height: 58%; }

.about-visual.is-playing .about-stereo-spectrum i {
    opacity: 1;
    animation: about-stereo-live 660ms ease-in-out infinite alternate;
}

.about-visual.is-playing .about-stereo-spectrum i:nth-child(2n) { animation-delay: -360ms; }
.about-visual.is-playing .about-stereo-spectrum i:nth-child(3n) { animation-duration: 840ms; }
.about-visual.is-playing .about-stereo-spectrum i:nth-child(5n) { animation-duration: 480ms; }

@keyframes about-stereo-live {
    from { transform: scaleY(0.22); }
    to { transform: scaleY(1); }
}

.about-stereo-deck {
    display: grid;
    min-height: 43px;
    align-items: center;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #09090a;
    grid-template-columns: 35px minmax(42px, 1fr) 34px;
    gap: 7px;
}

.about-stereo-art {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #111113;
}

.about-stereo-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stereo-tape {
    position: relative;
    display: flex;
    height: 27px;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #303036;
    border-radius: 7px;
    background: linear-gradient(160deg, #18181b, #080809);
}

.about-stereo-tape::after {
    position: absolute;
    right: 9px;
    bottom: 4px;
    left: 9px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), #fff, var(--pink));
    content: "";
}

.about-stereo-tape i {
    width: 12px;
    height: 12px;
    border: 3px dotted #777780;
    border-radius: 50%;
}

.about-stereo-play {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 11px;
    box-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
    transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.about-stereo-play:hover {
    transform: scale(1.09);
}

.about-visual.is-playing .about-stereo-play {
    background: var(--pink);
    color: #fff;
}

.about-stereo-play:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.about-station {
    position: absolute;
    z-index: 4;
    display: flex;
    max-width: 180px;
    align-items: center;
    gap: 10px;
    padding: 8px 11px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.88);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
    transition: transform 230ms var(--ease), border-color 230ms ease, box-shadow 230ms ease;
}

.about-station .mini-artwork {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.about-station strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.about-station-1 { top: 5%; left: 4%; }
.about-station-2 { top: 7%; right: 4%; }
.about-station-3 { right: 4%; bottom: 5%; }
.about-station-4 { bottom: 7%; left: 4%; }

.about-copy h2,
.section-heading h2,
.player-copy h2,
.friends-copy h2,
.faq-intro h2,
.contacts-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 740;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.about-copy > p:not(.eyebrow),
.player-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.contacts-copy > p:not(.eyebrow) {
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.75;
}

.check-list,
.player-point-list {
    display: grid;
    gap: 11px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.player-point-list li {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted-strong);
    transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.check-list li i,
.player-point-list li i {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--cyan);
    color: #000;
    font-size: 11px;
    transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.check-list li:nth-child(3n + 2) i,
.player-point-list li:nth-child(3n + 2) i {
    background: #fff;
}

.check-list li:nth-child(3n) i,
.player-point-list li:nth-child(3n) i {
    background: var(--pink);
    color: #fff;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
}

.text-link i {
    color: var(--pink);
    transition: transform 180ms var(--ease);
}

.text-link:hover i {
    transform: translateX(5px);
}

.radio-section,
.advantages-section,
.friends-section {
    padding-top: 145px;
    padding-bottom: 70px;
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: 38px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
    gap: 50px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.7;
}

.radio-toolbar {
    display: grid;
    align-items: center;
    margin-bottom: 30px;
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
    gap: 18px;
}

.station-search {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: #0c0c0e;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.station-search:focus-within {
    border-color: var(--cyan);
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.5), 3px -3px 0 rgba(254, 44, 85, 0.5);
}

.station-search > i {
    margin-left: 18px;
    color: var(--cyan);
}

.station-search input {
    width: 100%;
    min-width: 0;
    height: 56px;
    padding: 0 52px 0 13px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.station-search input::placeholder {
    color: #77777e;
}

.station-search input::-webkit-search-cancel-button {
    display: none;
    -webkit-appearance: none;
}

.station-search button {
    position: absolute;
    right: 7px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: #1a1a1d;
    color: #fff;
    cursor: pointer;
}

.filter-row {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding: 4px;
}

.filter-chip {
    min-height: 46px;
    flex: 0 0 auto;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #0d0d0f;
    color: var(--muted-strong);
    cursor: pointer;
    font-size: 14px;
    font-weight: 650;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.filter-chip:hover {
    transform: translateY(-2px);
    border-color: var(--pink);
    color: #fff;
}

.filter-chip.is-active {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
}

.station-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.station-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #0b0b0d;
    transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.station-card:has(.station-play-button:hover),
.station-card:has(.station-play-button:focus-visible) {
    transform: translateY(-6px);
    border-color: rgba(37, 244, 238, 0.65);
    box-shadow: -4px 4px 0 rgba(37, 244, 238, 0.72), 4px -4px 0 rgba(254, 44, 85, 0.72);
}

.station-card-art {
    position: relative;
    display: grid;
    aspect-ratio: 1.22 / 1;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        #111113;
    background-size: 24px 24px;
}

.station-number {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 14px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.station-card .station-artwork {
    width: min(56%, 170px);
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}

.station-play-button {
    position: absolute;
    z-index: 3;
    right: 17px;
    bottom: 16px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
    box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
    transition: transform 180ms var(--ease);
}

.station-play-button:hover {
    transform: scale(1.08);
}

.station-card-body {
    padding: 19px;
}

.station-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.station-card h3 {
    min-height: 50px;
    margin-bottom: 4px;
    font-size: 21px;
    font-weight: 720;
    line-height: 1.18;
}

.station-card-body > p {
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 650;
}

.station-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.station-card dl div {
    display: grid;
    align-items: baseline;
    grid-template-columns: minmax(70px, 0.72fr) minmax(0, 1.28fr);
    gap: 10px;
}

.station-card dt,
.station-card dd {
    margin: 0;
    font-size: 13px;
}

.station-card dt {
    color: #77777e;
}

.station-card dd {
    overflow: hidden;
    color: var(--muted-strong);
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station-empty {
    display: grid;
    min-height: 260px;
    place-items: center;
    padding: 36px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-md);
    background: #0a0a0b;
    text-align: center;
}

.station-empty i {
    color: var(--pink);
    font-size: 34px;
}

.station-empty p {
    margin: 12px 0;
    color: var(--muted-strong);
}

.advantages-section .section-heading {
    grid-template-columns: 1fr;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.advantage-card {
    position: relative;
    min-height: 270px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #0b0b0d;
    transition: transform 230ms var(--ease), border-color 230ms ease, box-shadow 230ms ease;
}

.advantage-card:nth-child(even) {
    background: #101012;
}

.advantage-card::after {
    position: absolute;
    right: -28px;
    bottom: -45px;
    width: 115px;
    height: 115px;
    border: 1px solid rgba(37, 244, 238, 0.26);
    border-radius: 50%;
    box-shadow: 0 0 0 16px rgba(254, 44, 85, 0.05), 0 0 0 32px rgba(37, 244, 238, 0.035);
    content: "";
}

.advantage-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: #000;
    color: var(--cyan);
    font-size: 21px;
    box-shadow: 3px 3px 0 var(--pink);
}

.advantage-index {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #66666d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.advantage-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.2;
}

.advantage-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.player-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
}

.player-console {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: #09090a;
    box-shadow: -7px 7px 0 var(--cyan), 7px -7px 0 var(--pink);
    transition: transform 250ms var(--ease), border-color 250ms ease, box-shadow 250ms ease;
}

.console-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.console-display {
    display: grid;
    min-height: 150px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #111113;
    background-size: 22px 22px;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 18px;
}

.console-art {
    width: 96px;
    height: 96px;
    border-radius: 50%;
}

.console-copy {
    min-width: 0;
}

.console-copy span,
.console-copy strong {
    display: block;
}

.console-copy span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.console-copy strong {
    overflow: hidden;
    margin-top: 4px;
    font-size: clamp(22px, 2.4vw, 32px);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-badge {
    padding: 5px 8px;
    border: 1px solid var(--pink);
    border-radius: 6px;
    color: var(--pink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.54;
    transition: border-color 180ms ease, color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.player-section.is-playing .live-badge {
    border-color: #36e69a;
    color: #36e69a;
    opacity: 1;
    box-shadow: 0 0 18px rgba(54, 230, 154, 0.2);
}

.console-spectrum {
    display: grid;
    height: 94px;
    align-items: end;
    margin-top: 14px;
    padding: 16px 18px 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #0d0d0f;
    background-size: 18px 18px;
    grid-template-columns: repeat(28, minmax(2px, 1fr));
    gap: 4px;
}

.console-spectrum i {
    display: block;
    height: 58%;
    min-height: 5px;
    border-radius: 5px 5px 2px 2px;
    background: var(--cyan);
    opacity: 0.38;
    transform: scaleY(0.45);
    transform-origin: 50% 100%;
}

.console-spectrum i:nth-child(4n + 1) { height: 34%; }
.console-spectrum i:nth-child(4n + 2) { height: 76%; }
.console-spectrum i:nth-child(4n + 3) { height: 48%; background: #fff; }
.console-spectrum i:nth-child(7n) { height: 88%; background: var(--pink); }

.player-section.is-playing .console-spectrum i {
    opacity: 1;
    animation: console-spectrum-live 760ms ease-in-out infinite alternate;
}

.player-section.is-playing .console-spectrum i:nth-child(3n + 1) { animation-delay: -540ms; }
.player-section.is-playing .console-spectrum i:nth-child(3n + 2) { animation-delay: -280ms; }
.player-section.is-playing .console-spectrum i:nth-child(5n) { animation-duration: 980ms; }
.player-section.is-playing .console-spectrum i:nth-child(7n) { animation-duration: 620ms; }

@keyframes console-spectrum-live {
    0% { transform: scaleY(0.18); }
    45% { transform: scaleY(0.72); }
    100% { transform: scaleY(1); }
}

.console-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
}

.console-play {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
}

.console-volume {
    display: flex;
    min-width: 130px;
    flex: 1;
    align-items: center;
}

input[type="range"] {
    width: 100%;
    height: 5px;
    accent-color: var(--cyan);
    cursor: pointer;
}

.friends-card {
    position: relative;
    display: grid;
    min-height: 440px;
    align-items: center;
    overflow: hidden;
    padding: clamp(34px, 6vw, 80px);
    border-radius: var(--radius-lg);
    background: #fff;
    color: #000;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
    gap: 50px;
    box-shadow: -8px 8px 0 var(--cyan), 8px -8px 0 var(--pink);
    transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.friends-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 12px;
    background: var(--pink);
    box-shadow: 4px 0 24px rgba(254, 44, 85, 0.2);
    content: "";
}

.friends-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    pointer-events: none;
}

.friends-pattern i {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid #000;
    border-radius: 50%;
}

.friends-pattern i:nth-child(1) { top: -80px; left: 28%; }
.friends-pattern i:nth-child(2) { right: 8%; bottom: -70px; }
.friends-pattern i:nth-child(3) { top: 28%; right: 30%; width: 80px; height: 80px; }
.friends-pattern i:nth-child(4) { bottom: 7%; left: 8%; width: 60px; height: 60px; }
.friends-pattern i:nth-child(5) { top: 8%; right: 4%; width: 44px; height: 44px; background: #000; }

.friends-copy {
    position: relative;
    z-index: 2;
}

.friends-copy .eyebrow {
    color: #333;
}

.friends-copy h2 {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: clamp(34px, 4.5vw, 58px);
}

.friends-copy > p:not(.eyebrow) {
    max-width: 700px;
    margin-bottom: 30px;
    color: #313137;
    font-size: 18px;
    line-height: 1.7;
}

.friends-visual {
    position: relative;
    z-index: 2;
    min-height: 280px;
}

.friend-avatar,
.friend-center {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.friend-avatar {
    width: 82px;
    height: 82px;
    border: 5px solid #fff;
    background: #000;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.friend-avatar-one { top: 4%; left: 6%; box-shadow: -6px 6px 0 var(--cyan); }
.friend-avatar-two { top: 2%; right: 2%; box-shadow: 6px -6px 0 var(--pink); }
.friend-avatar-three { right: 14%; bottom: 1%; box-shadow: -6px 6px 0 var(--cyan); }

.friend-center {
    top: 50%;
    left: 50%;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #000;
    font-size: 34px;
    box-shadow: -8px 8px 0 var(--cyan), 8px -8px 0 var(--pink), 0 18px 40px rgba(0, 0, 0, 0.2);
}

.friends-visual::before,
.friends-visual::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px;
    height: 230px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(0, 0, 0, 0.22);
    border-radius: 50%;
    content: "";
}

.friends-visual::after {
    width: 320px;
    height: 190px;
    transform: translate(-50%, -50%) rotate(25deg);
}

.faq-section {
    align-items: start;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.12fr);
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: grid;
    min-height: 92px;
    align-items: center;
    padding: 18px 4px;
    cursor: pointer;
    list-style: none;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 14px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary > span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.faq-item summary strong {
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 650;
}

.faq-item summary > i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.faq-item[open] summary > i {
    transform: rotate(45deg);
    border-color: var(--pink);
    background: var(--pink);
    color: #fff;
}

.faq-item > div {
    padding: 0 58px 26px;
}

.faq-item > div p {
    max-width: 780px;
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.75;
}

.contacts-section {
    align-items: start;
    padding-bottom: 150px;
    grid-template-columns: minmax(280px, 0.55fr) minmax(520px, 1.1fr);
}

.contacts-copy {
    position: sticky;
    top: 110px;
}

.contact-route-card {
    --route-accent: var(--cyan);
    --route-glow: rgba(37, 244, 238, 0.16);
    position: relative;
    display: grid;
    min-height: 88px;
    align-items: center;
    padding: 15px 16px 15px 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background:
        radial-gradient(circle at 0 50%, var(--route-glow), transparent 44%),
        #0b0b0d;
    color: #fff;
    grid-template-columns: 52px minmax(0, 1fr) 24px;
    gap: 14px;
    isolation: isolate;
    overflow: hidden;
    transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-route-list {
    display: grid;
    margin-top: 34px;
    gap: 12px;
}

.contact-route-card::before {
    position: absolute;
    z-index: -1;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--route-accent);
    box-shadow: 0 0 18px var(--route-accent);
    content: "";
}

.contact-route-card.is-pink {
    --route-accent: var(--pink);
    --route-glow: rgba(254, 44, 85, 0.16);
}

.contact-route-card.is-white {
    --route-accent: #fff;
    --route-glow: rgba(255, 255, 255, 0.1);
}

.contact-route-card:hover,
.contact-route-card:focus-visible {
    z-index: 1;
    transform: translateY(-4px) translateX(3px);
    border-color: color-mix(in srgb, var(--route-accent) 70%, #fff 30%);
    outline: 0;
    box-shadow: 0 14px 34px var(--route-glow);
}

.contact-route-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--route-accent) 48%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--route-accent) 12%, #111113 88%);
    color: var(--route-accent);
    font-size: 18px;
    box-shadow: inset 0 0 18px var(--route-glow);
    transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease;
}

.contact-route-card:hover .contact-route-icon,
.contact-route-card:focus-visible .contact-route-icon {
    transform: rotate(-5deg) scale(1.07);
    background: var(--route-accent);
    color: #050506;
}

.contact-route-copy,
.contact-route-copy strong,
.contact-route-copy span {
    display: block;
    min-width: 0;
}

.contact-route-copy strong {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 780;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.contact-route-copy span {
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-route-card > i:last-child {
    color: var(--route-accent);
    font-size: 13px;
    transition: transform 220ms var(--ease);
}

.contact-route-card:hover > i:last-child,
.contact-route-card:focus-visible > i:last-child {
    transform: translateX(4px) rotate(-4deg);
}

.contact-form {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: #0b0b0d;
    box-shadow: -6px 6px 0 rgba(37, 244, 238, 0.7), 6px -6px 0 rgba(254, 44, 85, 0.7);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.contact-form:hover {
    border-color: rgba(255, 255, 255, 0.24);
}

.contact-form:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: -8px 8px 0 rgba(37, 244, 238, 0.78), 8px -8px 0 rgba(254, 44, 85, 0.78), 0 22px 70px rgba(0, 0, 0, 0.34);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 7px;
    font-size: 14px;
    font-weight: 650;
}

.contact-form .form-field > span {
    color: var(--muted-strong);
    transition: color 180ms ease, transform 180ms var(--ease);
}

.contact-form .form-field:hover > span,
.contact-form .form-field:focus-within > span {
    color: #fff;
    transform: translateX(3px);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: 0;
    background: #151517;
    color: #fff;
    font-size: 16px;
    font-weight: 450;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(37, 244, 238, 0.12);
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
    background: #19191c;
}

.contact-form .form-field input:hover,
.contact-form .form-field select:hover,
.contact-form .form-field textarea:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

.form-field [aria-invalid="true"] {
    border-color: var(--error);
}

.support-upload-field {
    display: grid;
    gap: 11px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background 180ms ease;
}

.support-upload-field:focus-within {
    border-color: rgba(37, 244, 238, 0.42);
    background: rgba(37, 244, 238, 0.025);
}

.support-upload-heading {
    display: flex;
    gap: 10px;
    align-items: center;
}

.support-upload-heading > span:first-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 10px;
    background: rgba(37, 244, 238, 0.08);
    color: var(--cyan);
    font-size: 12px;
}

.support-upload-heading > div {
    min-width: 0;
}

.support-upload-heading strong {
    display: block;
    color: #f1f1f4;
    font-size: 12px;
}

.support-upload-heading p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.support-upload-control {
    position: relative;
    display: flex;
    gap: 11px;
    min-width: 0;
    padding: 12px;
    align-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    background: rgba(5, 5, 7, 0.3);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.support-upload-control:hover,
.support-upload-control:focus-within {
    border-color: rgba(37, 244, 238, 0.48);
    background: rgba(37, 244, 238, 0.04);
    transform: translateY(-1px);
}

.support-upload-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.support-upload-control > span:first-of-type {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    flex: 0 0 38px;
    border-radius: 11px;
    background: rgba(254, 44, 85, 0.075);
    color: var(--pink);
}

.support-upload-control > span:last-child {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.support-upload-control strong {
    color: #ededf1;
    font-size: 11px;
}

.support-upload-control small {
    color: #777780;
    font-size: 9px;
    line-height: 1.4;
}

.support-upload-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.support-upload-preview[hidden] {
    display: none;
}

.support-upload-preview > span {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    background: #0c0c0f;
}

.support-upload-preview img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.support-upload-preview > span > span {
    display: grid;
    min-width: 0;
    gap: 2px;
    padding: 7px 8px;
}

.support-upload-preview strong,
.support-upload-preview small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.support-upload-preview strong {
    color: #d8d8dd;
    font-size: 9px;
}

.support-upload-preview small {
    color: #71717a;
    font-size: 8px;
}

.support-upload-field > .field-error {
    min-height: 0;
    color: var(--error);
    font-size: 10px;
}

.form-field small,
.symbol-captcha > small,
.consent-error {
    min-height: 19px;
    color: var(--error);
    font-size: 13px;
    font-weight: 500;
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.symbol-captcha {
    min-width: 0;
    margin: 2px 0 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #101012;
}

.gift-captcha {
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--ease);
}

.gift-captcha:hover,
.gift-captcha:focus-within {
    border-color: rgba(37, 244, 238, 0.42);
    box-shadow: inset 0 0 34px rgba(37, 244, 238, 0.035), 0 16px 40px rgba(0, 0, 0, 0.2);
}

.symbol-captcha legend {
    padding: 0 8px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 700;
}

.captcha-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 15px;
}

.captcha-target {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.captcha-target > span {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    border-radius: 13px;
    background: #fff;
    color: #000;
    font-size: 26px;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
}

.captcha-target small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.gift-captcha .captcha-target {
    flex: 1 1 auto;
}

.gift-captcha .captcha-target > .captcha-target-gift {
    display: grid;
    width: min(230px, 46vw);
    min-width: 168px;
    height: auto;
    min-height: 76px;
    flex: 0 1 230px;
    align-items: center;
    padding: 7px 12px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(37, 244, 238, 0.1), transparent 44%),
        linear-gradient(315deg, rgba(254, 44, 85, 0.1), transparent 44%),
        #171719;
    color: #fff;
    font-size: 13px;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
}

.captcha-target-gift img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.38));
}

.captcha-target-gift b {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.captcha-grid {
    display: grid;
    grid-template-columns: repeat(9, minmax(42px, 1fr));
    gap: 7px;
}

.captcha-grid button {
    min-width: 0;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #19191b;
    color: #fff;
    cursor: pointer;
    font-size: 21px;
    transition: transform 160ms var(--ease), border-color 160ms ease, background 160ms ease;
}

.captcha-grid button:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
}

.captcha-grid button.is-selected {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
}

.captcha-reel {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        #09090a;
    background-size: 18px 18px;
    box-shadow: inset 0 14px 28px rgba(0, 0, 0, 0.45), inset 0 -14px 28px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.captcha-reel::before,
.captcha-reel::after {
    position: absolute;
    z-index: 2;
    right: 10px;
    left: 10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 244, 238, 0.58), rgba(255, 255, 255, 0.35), rgba(254, 44, 85, 0.58), transparent);
    content: "";
    pointer-events: none;
}

.captcha-reel::before {
    top: calc(33.333% + 3px);
}

.captcha-reel::after {
    bottom: calc(33.333% + 3px);
}

.gift-captcha .captcha-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.gift-captcha .captcha-grid button {
    position: relative;
    display: grid;
    min-height: 112px;
    align-content: center;
    justify-items: center;
    padding: 8px 7px 7px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: linear-gradient(145deg, #1a1a1d, #111113);
    color: var(--muted-strong);
    font-size: 12px;
    gap: 3px;
    overflow: hidden;
}

.gift-captcha .captcha-grid button::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 35%, rgba(37, 244, 238, 0.12), transparent 46%);
    content: "";
    opacity: 0;
    transition: opacity 180ms ease;
}

.gift-captcha .captcha-grid button img {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.42));
    transition: transform 200ms var(--ease), filter 200ms ease;
}

.gift-captcha .captcha-grid button span {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: 11px;
    font-weight: 680;
    line-height: 1.2;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gift-captcha .captcha-grid button:hover,
.gift-captcha .captcha-grid button:focus-visible {
    transform: translateY(-3px) scale(1.015);
    border-color: var(--cyan);
    outline: 0;
    box-shadow: 0 9px 22px rgba(37, 244, 238, 0.12);
}

.gift-captcha .captcha-grid button:hover::before,
.gift-captcha .captcha-grid button:focus-visible::before,
.gift-captcha .captcha-grid button.is-selected::before {
    opacity: 1;
}

.gift-captcha .captcha-grid button:hover img,
.gift-captcha .captcha-grid button:focus-visible img {
    transform: translateY(-2px) scale(1.1) rotate(-2deg);
}

.gift-captcha .captcha-grid button.is-selected {
    transform: translateY(-2px);
    border-color: #fff;
    background: linear-gradient(145deg, rgba(37, 244, 238, 0.19), rgba(254, 44, 85, 0.2)), #151517;
    color: #fff;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink), 0 12px 26px rgba(0, 0, 0, 0.35);
}

.gift-captcha .captcha-grid button.is-selected img {
    transform: scale(1.08);
    filter: drop-shadow(-3px 4px 6px rgba(37, 244, 238, 0.28)) drop-shadow(3px -3px 6px rgba(254, 44, 85, 0.24));
}

.gift-captcha.is-spinning .captcha-reel {
    border-color: rgba(254, 44, 85, 0.5);
    box-shadow: inset 0 14px 28px rgba(0, 0, 0, 0.55), inset 0 -14px 28px rgba(0, 0, 0, 0.55), 0 0 28px rgba(254, 44, 85, 0.1);
}

.gift-captcha.is-spinning .captcha-grid button {
    animation: gift-reel-spin 360ms cubic-bezier(0.3, 0.75, 0.3, 1) infinite;
    pointer-events: none;
}

.gift-captcha.is-spinning .captcha-slot-1 { animation-delay: -34ms; }
.gift-captcha.is-spinning .captcha-slot-2 { animation-delay: -68ms; }
.gift-captcha.is-spinning .captcha-slot-3 { animation-delay: -102ms; }
.gift-captcha.is-spinning .captcha-slot-4 { animation-delay: -136ms; }
.gift-captcha.is-spinning .captcha-slot-5 { animation-delay: -170ms; }
.gift-captcha.is-spinning .captcha-slot-6 { animation-delay: -204ms; }
.gift-captcha.is-spinning .captcha-slot-7 { animation-delay: -238ms; }
.gift-captcha.is-spinning .captcha-slot-8 { animation-delay: -272ms; }

.gift-captcha.is-spinning .captcha-refresh i {
    animation: captcha-refresh-spin 540ms linear infinite;
}

@keyframes gift-reel-spin {
    0% { transform: translateY(-10px) scaleY(0.92); filter: blur(0); }
    50% { transform: translateY(10px) scaleY(1.04); filter: blur(1.4px); }
    100% { transform: translateY(-10px) scaleY(0.92); filter: blur(0); }
}

@keyframes captcha-refresh-spin {
    to { transform: rotate(1turn); }
}

.consent-field {
    display: grid;
    align-items: start;
    cursor: pointer;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
}

.consent-field input {
    position: absolute;
    opacity: 0;
}

.consent-field > span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: #151517;
    color: transparent;
}

.consent-field input:focus-visible + span {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

.consent-field input:checked + span {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #000;
}

.consent-field b {
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.register-page {
    display: grid;
    align-items: start;
    padding-top: 132px;
    padding-bottom: 150px;
    grid-template-columns: minmax(350px, 0.82fr) minmax(560px, 1.18fr);
    gap: clamp(44px, 6vw, 88px);
}

.register-cover {
    position: sticky;
    top: 104px;
    min-height: 710px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 24% 24%, rgba(37, 244, 238, 0.16), transparent 34%),
        radial-gradient(circle at 78% 76%, rgba(254, 44, 85, 0.15), transparent 36%),
        #09090b;
    box-shadow: -7px 7px 0 rgba(37, 244, 238, 0.78), 7px -7px 0 rgba(254, 44, 85, 0.78);
    isolation: isolate;
    transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.register-cover:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: -10px 10px 0 var(--cyan), 10px -10px 0 var(--pink), 0 30px 74px rgba(0, 0, 0, 0.5);
}

.register-cover-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5;
}

.register-cover-glow {
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    width: 82%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 62%);
    box-shadow: inset -18px 0 50px rgba(254, 44, 85, 0.13), inset 18px 0 50px rgba(37, 244, 238, 0.13);
    transform: translate(-50%, -50%);
}

.register-world {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: min(116%, 560px);
    max-width: none;
    height: auto;
    opacity: 0.72;
    filter: saturate(0.72) contrast(1.12) drop-shadow(0 24px 45px rgba(0, 0, 0, 0.48));
    transform: translate(-50%, -50%);
}

.register-access-card {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: min(68%, 286px);
    min-height: 350px;
    align-content: start;
    justify-items: center;
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 26px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        rgba(8, 8, 11, 0.9);
    background-size: 18px 18px;
    box-shadow: -8px 8px 0 rgba(37, 244, 238, 0.88), 8px -8px 0 rgba(254, 44, 85, 0.88), 0 28px 60px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%) rotate(-2deg);
    transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.register-cover:hover .register-access-card {
    transform: translate(-50%, -50%) rotate(1deg) scale(1.025);
    box-shadow: -10px 10px 0 var(--cyan), 10px -10px 0 var(--pink), 0 34px 70px rgba(0, 0, 0, 0.62);
}

.register-access-brand {
    justify-self: stretch;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-align: center;
}

.register-access-brand span {
    color: #fff;
    text-shadow: -2px 2px 0 var(--cyan);
}

.register-access-brand b {
    color: #fff;
    text-shadow: 2px -2px 0 var(--pink);
}

.register-access-avatar {
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    margin: 28px 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: #fff;
    color: #050506;
    font-size: 34px;
    box-shadow: -6px 6px 0 var(--cyan), 6px -6px 0 var(--pink);
}

.register-access-lines {
    display: grid;
    width: 78%;
    gap: 9px;
}

.register-access-lines i {
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.register-access-lines i:first-child {
    width: 100%;
    background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.22));
}

.register-access-lines i:nth-child(2) {
    width: 72%;
}

.register-access-lines i:last-child {
    width: 88%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), var(--pink));
}

.register-access-signal {
    display: flex;
    height: 32px;
    align-items: end;
    margin-top: 22px;
    gap: 5px;
}

.register-access-signal i {
    width: 7px;
    border-radius: 4px 4px 1px 1px;
    background: var(--cyan);
    animation: register-signal 740ms ease-in-out infinite alternate;
}

.register-access-signal i:nth-child(1) { height: 35%; }
.register-access-signal i:nth-child(2) { height: 70%; animation-delay: -280ms; }
.register-access-signal i:nth-child(3) { height: 100%; background: #fff; animation-delay: -520ms; }
.register-access-signal i:nth-child(4) { height: 58%; background: var(--pink); animation-delay: -160ms; }
.register-access-signal i:nth-child(5) { height: 82%; background: var(--pink); animation-delay: -420ms; }

.register-orbit {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(10, 10, 12, 0.9);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.44);
    transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease;
}

.register-orbit-radio {
    top: 13%;
    left: 10%;
    color: var(--cyan);
}

.register-orbit-games {
    top: 21%;
    right: 8%;
}

.register-orbit-friends {
    right: 12%;
    bottom: 12%;
    color: var(--pink);
}

.register-cover:hover .register-orbit-radio { transform: translate(6px, -5px) rotate(-7deg); }
.register-cover:hover .register-orbit-games { transform: translate(-7px, 4px) rotate(6deg); color: var(--cyan); }
.register-cover:hover .register-orbit-friends { transform: translate(-5px, -7px) rotate(-5deg); background: var(--pink); color: #fff; }

.register-cover-scan {
    position: absolute;
    z-index: 3;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), #fff, var(--pink), transparent);
    opacity: 0.5;
    animation: register-scan 4.2s ease-in-out infinite;
}

@keyframes register-signal {
    from { transform: scaleY(0.34); opacity: 0.55; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes register-scan {
    0%, 100% { top: 9%; opacity: 0; }
    18%, 82% { opacity: 0.54; }
    50% { top: 91%; opacity: 0.28; }
}

.register-form-column {
    display: grid;
    min-width: 0;
    gap: 26px;
}

.register-page .auth-intro h1 {
    max-width: 720px;
    margin: 13px 0 17px;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 760;
    letter-spacing: -0.055em;
    line-height: 1;
}

.register-page .auth-intro > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 14px;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.65;
}

.register-login-link {
    display: inline-flex;
    width: fit-content;
    min-height: 48px;
    align-items: center;
    padding: 5px 7px 5px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    font-size: 14px;
    font-weight: 760;
    gap: 14px;
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.72), 3px -3px 0 rgba(254, 44, 85, 0.72);
    transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.register-login-link i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 9px;
    background: #fff;
    color: #080809;
    box-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
    transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.register-login-link:hover,
.register-login-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    outline: 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.register-login-link:hover i,
.register-login-link:focus-visible i {
    background: var(--pink);
    color: #fff;
    transform: translateX(2px) rotate(-3deg);
}

.register-panel {
    position: relative;
    display: grid;
    gap: 17px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #0b0b0d;
    background-size: 24px 24px;
    box-shadow: -6px 6px 0 rgba(37, 244, 238, 0.72), 6px -6px 0 rgba(254, 44, 85, 0.72);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.register-panel:hover,
.register-panel:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: -8px 8px 0 var(--cyan), 8px -8px 0 var(--pink), 0 24px 64px rgba(0, 0, 0, 0.38);
}

.register-panel .form-field > span {
    color: var(--muted-strong);
    transition: color 180ms ease, transform 180ms var(--ease);
}

.register-panel .form-row {
    align-items: start;
}

.register-panel .form-field {
    align-content: start;
}

.register-panel .form-field:hover > span,
.register-panel .form-field:focus-within > span {
    color: #fff;
    transform: translateX(3px);
}

.register-panel .form-field input:hover,
.register-panel .form-field select:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.register-panel .form-field input:focus,
.register-panel .form-field select:focus {
    background: #19191c;
}

.register-country-field select {
    cursor: pointer;
}

.register-panel .password-field {
    position: relative;
    display: block;
}

.register-panel .password-field input {
    padding-right: 54px;
}

.register-panel .password-field button {
    position: absolute;
    top: 50%;
    right: 7px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.register-panel .password-field button:hover,
.register-panel .password-field button:focus-visible {
    border-color: rgba(37, 244, 238, 0.45);
    outline: 0;
    background: rgba(37, 244, 238, 0.08);
    color: var(--cyan);
    transform: translateY(-50%) scale(1.05);
}

.auth-error-summary {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid rgba(254, 44, 85, 0.46);
    border-radius: 12px;
    background: rgba(254, 44, 85, 0.08);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.auth-error-summary i {
    margin-top: 4px;
    color: var(--pink);
}

.consent-card {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.consent-card:hover,
.consent-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: -2px 2px 0 rgba(37, 244, 238, 0.7), 2px -2px 0 rgba(254, 44, 85, 0.7);
}

.register-legal-link {
    display: inline-flex;
    margin: 2px 3px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 780;
    box-shadow: inset 0 -2px 0 var(--cyan);
    transition: transform 180ms var(--ease), border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.register-legal-link:last-of-type {
    box-shadow: inset 0 -2px 0 var(--pink);
}

.register-legal-link:hover,
.register-legal-link:focus-visible {
    transform: translateY(-2px);
    border-color: #fff;
    outline: 0;
    color: #fff;
    box-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
}

.register-panel .auth-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 2px;
}

.login-access-card {
    min-height: 338px;
}

.login-panel {
    align-self: start;
}

.auth-recovery-link {
    display: grid;
    min-height: 50px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 760;
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 10px;
    transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.auth-recovery-link > i:first-child,
.auth-recovery-link > i:last-child {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: rgba(37, 244, 238, 0.08);
    color: var(--cyan);
    transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.auth-recovery-link > i:last-child {
    background: rgba(254, 44, 85, 0.08);
    color: var(--pink);
}

.auth-recovery-link:hover,
.auth-recovery-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.34);
    outline: 0;
    background: rgba(255, 255, 255, 0.065);
    color: #fff;
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.54), 3px -3px 0 rgba(254, 44, 85, 0.54);
}

.auth-recovery-link:hover > i:first-child,
.auth-recovery-link:focus-visible > i:first-child {
    background: var(--cyan);
    color: #050506;
    transform: rotate(-6deg);
}

.auth-recovery-link:hover > i:last-child,
.auth-recovery-link:focus-visible > i:last-child {
    background: var(--pink);
    color: #fff;
    transform: translateX(3px);
}

.recovery-access-card,
.reset-access-card {
    min-height: 338px;
}

.recovery-panel,
.reset-panel {
    align-self: start;
}

.recovery-back-link:hover i,
.recovery-back-link:focus-visible i {
    transform: translateX(-3px) rotate(3deg);
}

.reset-page {
    grid-template-columns: minmax(350px, 0.9fr) minmax(480px, 1.1fr);
}

.reset-page .register-cover {
    min-height: 590px;
}

.reset-invalid-card {
    min-height: 310px;
    align-content: center;
    justify-items: start;
}

.reset-invalid-card > i {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 26px;
    box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
}

.reset-invalid-card strong {
    margin-top: 8px;
    font-size: clamp(25px, 4vw, 34px);
    letter-spacing: -0.035em;
}

.reset-invalid-card p {
    max-width: 530px;
    color: var(--muted-strong);
    font-size: 16px;
    line-height: 1.65;
}

.reset-invalid-card .button {
    min-height: 52px;
    margin-top: 6px;
}

.two-factor-page {
    grid-template-columns: minmax(350px, 0.9fr) minmax(480px, 1.1fr);
}

.two-factor-page .register-cover {
    min-height: 590px;
}

.two-factor-access-card {
    min-height: 328px;
}

.two-factor-cover-code {
    display: grid;
    width: 84%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
}

.two-factor-cover-code i {
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 -3px 0 rgba(37, 244, 238, 0.42);
    animation: two-factor-code-pulse 1.8s ease-in-out infinite alternate;
}

.two-factor-cover-code i:nth-child(2),
.two-factor-cover-code i:nth-child(5) {
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.72);
    animation-delay: -620ms;
}

.two-factor-cover-code i:nth-child(3),
.two-factor-cover-code i:nth-child(6) {
    box-shadow: inset 0 -3px 0 rgba(254, 44, 85, 0.6);
    animation-delay: -1.18s;
}

.two-factor-panel {
    align-self: start;
}

.two-factor-code-field input {
    min-height: 74px;
    padding-right: 22px;
    padding-left: calc(22px + 0.38em);
    border-color: rgba(255, 255, 255, 0.2);
    font-size: clamp(24px, 4vw, 34px);
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    letter-spacing: 0.38em;
    text-align: center;
}

.two-factor-code-field input:hover {
    border-color: rgba(254, 44, 85, 0.56);
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.34), 3px -3px 0 rgba(254, 44, 85, 0.34);
}

.two-factor-code-field input:focus {
    border-color: var(--cyan);
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.48), 3px -3px 0 rgba(254, 44, 85, 0.48), 0 0 0 3px rgba(37, 244, 238, 0.1);
}

@keyframes two-factor-code-pulse {
    from { transform: translateY(0); background: rgba(255, 255, 255, 0.06); }
    to { transform: translateY(-4px); background: rgba(255, 255, 255, 0.14); }
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: #070708;
}

.footer-grid {
    display: grid;
    min-height: 360px;
    align-items: start;
    padding-top: 64px;
    padding-bottom: 54px;
    grid-template-columns: minmax(240px, 1fr) minmax(160px, 0.5fr) minmax(190px, 0.65fr) minmax(300px, 1fr);
    gap: clamp(28px, 3vw, 50px);
}

.footer-brand p {
    max-width: 330px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 16px;
}

.footer-flags {
    display: flex;
    gap: 6px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column a {
    display: flex;
    min-height: 34px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 15px;
    transition: color 180ms ease, transform 180ms var(--ease);
}

.footer-column a i {
    width: 18px;
    color: #707077;
    text-align: center;
}

.footer-column a:hover,
.footer-column a.is-current {
    transform: translateX(4px);
    color: #fff;
}

.footer-column a:hover i,
.footer-column a.is-current i {
    color: var(--cyan);
}

.footer-column a.is-current {
    text-shadow: 2px 0 12px rgba(254, 44, 85, 0.34);
}

.footer-signature {
    position: relative;
    display: grid;
    min-height: 180px;
    align-content: center;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #0b0b0d;
    background-size: 22px 22px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    box-shadow: inset 0 0 0 1px rgba(37, 244, 238, 0.04);
    isolation: isolate;
    overflow: hidden;
    transition: transform 240ms var(--ease), border-color 240ms ease, box-shadow 240ms ease, background-position 360ms var(--ease);
}

.footer-signature::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), #fff 50%, var(--pink));
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 180ms ease, transform 300ms var(--ease), filter 300ms ease;
}

.footer-signature::after {
    position: absolute;
    z-index: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 44, 85, 0.16), rgba(37, 244, 238, 0.07) 42%, transparent 70%);
    content: "";
    opacity: 0;
    pointer-events: none;
    right: -70px;
    bottom: -90px;
    transform: scale(0.72);
    transition: opacity 260ms ease, transform 360ms var(--ease);
}

.footer-signature > * {
    position: relative;
    z-index: 1;
}

.footer-signature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background-position: 7px -5px;
    box-shadow: -5px 5px 0 rgba(37, 244, 238, 0.78), 5px -5px 0 rgba(254, 44, 85, 0.78), 0 22px 48px rgba(0, 0, 0, 0.32);
}

.footer-signature:hover::before {
    filter: drop-shadow(0 0 8px rgba(37, 244, 238, 0.42)) drop-shadow(0 0 8px rgba(254, 44, 85, 0.36));
    opacity: 1;
    transform: scaleX(1);
}

.footer-signature:hover::after {
    opacity: 1;
    transform: scale(1.08);
}

.footer-signature > i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: #fff;
    color: #000;
    font-size: 18px;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
    transition: transform 240ms var(--ease), color 200ms ease, background 200ms ease, box-shadow 240ms ease;
}

.footer-signature:hover > i {
    background: #0a0a0c;
    color: #fff;
    box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink), 0 0 24px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) rotate(-7deg) scale(1.08);
}

.footer-signature strong {
    display: block;
    margin: 1px 0 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.3;
    text-transform: uppercase;
    transition: letter-spacing 240ms var(--ease), text-shadow 240ms ease;
}

.footer-signature:hover strong {
    letter-spacing: 0.12em;
    text-shadow: -2px 2px 12px rgba(37, 244, 238, 0.4), 2px -2px 12px rgba(254, 44, 85, 0.36);
}

.footer-signature p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    transition: color 220ms ease;
}

.footer-signature:hover p {
    color: var(--muted-strong);
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: var(--muted-strong);
}

.cookie-banner {
    position: fixed;
    z-index: 140;
    right: 22px;
    bottom: calc(var(--player-height) + 20px);
    left: 22px;
    display: grid;
    max-width: 1020px;
    min-height: 108px;
    align-items: center;
    margin-left: auto;
    padding: 17px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(10, 10, 11, 0.96);
    box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink), 0 18px 50px rgba(0, 0, 0, 0.55);
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 16px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.cookie-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    color: #000;
    font-size: 20px;
}

.cookie-copy strong {
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
}

.cookie-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-copy a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-actions .button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
}

.radio-dock {
    position: fixed;
    z-index: 130;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: grid;
    height: var(--player-height);
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(8, 8, 9, 0.95);
    box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.72), 3px -3px 0 rgba(254, 44, 85, 0.72), 0 15px 50px rgba(0, 0, 0, 0.56);
    grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.48fr) auto minmax(170px, 0.65fr) auto 46px;
    gap: 14px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: right 300ms var(--ease), left 300ms var(--ease), width 300ms var(--ease), height 300ms var(--ease), border-radius 300ms var(--ease);
}

.dock-station {
    display: grid;
    min-width: 0;
    align-items: center;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 11px;
}

.dock-art {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.dock-spectrum {
    display: grid;
    height: 48px;
    min-width: 110px;
    align-items: end;
    padding: 7px 8px 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #0d0d0f;
    background-size: 100% 11px;
    grid-template-columns: repeat(20, minmax(2px, 1fr));
    gap: 3px;
}

.dock-spectrum i {
    display: block;
    height: 72%;
    min-height: 4px;
    transform: scaleY(0.3);
    transform-origin: bottom;
    border-radius: 4px 4px 1px 1px;
    background: var(--cyan);
    opacity: 0.34;
}

.dock-spectrum i:nth-child(3n) { height: 42%; background: var(--pink); }
.dock-spectrum i:nth-child(4n) { height: 94%; }
.dock-spectrum i:nth-child(5n) { height: 58%; background: var(--pink); }
.dock-spectrum i:nth-child(7n) { height: 82%; }

.radio-dock.is-playing .dock-spectrum i {
    opacity: 0.94;
    animation: dock-spectrum-live 680ms ease-in-out infinite alternate;
}

.radio-dock.is-playing .dock-spectrum i:nth-child(2n) { animation-duration: 520ms; animation-delay: -310ms; }
.radio-dock.is-playing .dock-spectrum i:nth-child(3n) { animation-duration: 790ms; animation-delay: -470ms; }
.radio-dock.is-playing .dock-spectrum i:nth-child(5n) { animation-duration: 430ms; animation-delay: -190ms; }
.radio-dock.is-playing .dock-spectrum i:nth-child(7n) { animation-duration: 860ms; animation-delay: -620ms; }

@keyframes dock-spectrum-live {
    from { transform: scaleY(0.18); }
    to { transform: scaleY(1); }
}

.dock-copy {
    min-width: 0;
}

.dock-copy span,
.dock-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dock-copy span {
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

[data-player-status] {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: #a5a5ad;
    transition: color 180ms ease, text-shadow 180ms ease;
}

[data-player-status]::before {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    opacity: 0.72;
}

[data-player-status][data-player-state="playing"] {
    color: #36e69a;
    text-shadow: 0 0 14px rgba(54, 230, 154, 0.48);
}

[data-player-status][data-player-state="playing"]::before {
    box-shadow: 0 0 12px rgba(54, 230, 154, 0.95);
    animation: status-live 900ms ease-in-out infinite alternate;
}

[data-player-status][data-player-state="connecting"] {
    color: #ffd166;
}

[data-player-status][data-player-state="connecting"]::before {
    animation: status-connecting 700ms ease-in-out infinite alternate;
}

[data-player-status][data-player-state="paused"] {
    color: #a5a5ad;
}

[data-player-status][data-player-state="unavailable"] {
    color: var(--pink);
    text-shadow: 0 0 12px rgba(254, 44, 85, 0.38);
}

@keyframes status-live {
    from { transform: scale(0.78); opacity: 0.68; }
    to { transform: scale(1.18); opacity: 1; }
}

@keyframes status-connecting {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

.station-card:has([data-station-play][data-station-active="true"]),
.hero-mini-station[data-station-active="true"] {
    border-color: var(--cyan);
    box-shadow: inset 0 0 0 1px rgba(37, 244, 238, 0.22), 0 0 28px rgba(37, 244, 238, 0.09);
}

[data-station-play][data-station-active="true"] {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
}

.dock-copy strong {
    margin-top: 1px;
    font-size: 15px;
}

.dock-controls,
.dock-volume {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dock-controls .round-button,
.dock-volume .round-button,
.dock-collapse {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
}

.dock-play {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: -2px 2px 0 var(--cyan), 2px -2px 0 var(--pink);
}

.radio-dock.is-playing .dock-play,
.hero-radio-stage.is-playing .hero-play-button,
.player-section.is-playing .console-play {
    border-color: #fff;
    background: var(--pink);
    color: #fff;
    box-shadow: -3px 3px 0 var(--cyan), 0 0 24px rgba(254, 44, 85, 0.28);
}

.radio-dock[data-player-state="playing"] {
    border-color: rgba(54, 230, 154, 0.72);
}

.radio-dock[data-player-state="connecting"] {
    border-color: rgba(255, 209, 102, 0.72);
}

.radio-dock[data-player-state="unavailable"] {
    border-color: rgba(254, 44, 85, 0.82);
}

.dock-volume label {
    display: flex;
    width: min(12vw, 160px);
    min-width: 96px;
}

.dock-catalog {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 650;
}

.dock-catalog:hover {
    border-color: var(--cyan);
    color: #fff;
}

.radio-catalog-layer {
    position: fixed;
    z-index: 690;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    transition: opacity 190ms ease, visibility 190ms ease;
}

.radio-catalog-layer.is-open { visibility: visible; opacity: 1; }

.radio-catalog-dialog {
    display: grid;
    width: min(980px, 100%);
    max-height: min(790px, calc(100vh - 44px));
    max-height: min(790px, calc(100dvh - 44px));
    min-height: 0;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 17px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(37, 244, 238, 0.32);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(37, 244, 238, 0.075), transparent 35%),
        linear-gradient(325deg, rgba(254, 44, 85, 0.08), transparent 40%),
        #101013;
    box-shadow: -6px 6px 0 rgba(37, 244, 238, 0.2), 6px -6px 0 rgba(254, 44, 85, 0.2), 0 40px 110px rgba(0, 0, 0, 0.72);
    transform: translateY(18px) scale(0.985);
    transition: transform 190ms var(--ease);
}

.radio-catalog-layer.is-open .radio-catalog-dialog { transform: none; }
.radio-catalog-dialog > header { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.radio-catalog-dialog > header > div { display: flex; min-width: 0; gap: 14px; align-items: center; }
.radio-catalog-dialog > header > div > span { display: grid; width: 56px; height: 56px; place-items: center; flex: 0 0 auto; border-radius: 18px; background: linear-gradient(135deg, rgba(37, 244, 238, 0.15), rgba(254, 44, 85, 0.14)); color: var(--cyan); font-size: 21px; }
.radio-catalog-dialog h2 { margin: 0; font-size: 25px; letter-spacing: -0.025em; }
.radio-catalog-dialog header p { margin: 3px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.radio-catalog-search {
    display: flex;
    min-height: 50px;
    gap: 11px;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.34);
    color: var(--cyan);
    transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.radio-catalog-search:focus-within { border-color: var(--cyan); background: rgba(37, 244, 238, 0.035); box-shadow: 0 0 0 3px rgba(37, 244, 238, 0.1); }
.radio-catalog-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #fff; font: inherit; font-size: 15px; }

.radio-catalog-results {
    display: grid;
    min-height: 0;
    overflow: hidden;
}

.radio-catalog-results > * { grid-area: 1 / 1; }

.radio-catalog-grid {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 2px 5px 2px 2px;
    scrollbar-gutter: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 244, 238, 0.42) transparent;
}

.radio-catalog-grid::-webkit-scrollbar { width: 8px; height: 8px; }
.radio-catalog-grid::-webkit-scrollbar-button { display: none; width: 0; height: 0; background: transparent; }
.radio-catalog-grid::-webkit-scrollbar-track,
.radio-catalog-grid::-webkit-scrollbar-track-piece,
.radio-catalog-grid::-webkit-scrollbar-corner { background: transparent; }
.radio-catalog-grid::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(37, 244, 238, 0.48); background-clip: padding-box; }
.radio-catalog-grid::-webkit-scrollbar-thumb:hover { background-color: rgba(254, 44, 85, 0.66); }

.radio-catalog-station {
    display: grid;
    min-width: 0;
    min-height: 82px;
    grid-template-columns: 58px minmax(0, 1fr) 38px;
    gap: 11px;
    align-items: center;
    padding: 11px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.025);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform 170ms var(--ease), border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.radio-catalog-station:hover,
.radio-catalog-station:focus-visible { border-color: rgba(37, 244, 238, 0.5); outline: 0; background: rgba(37, 244, 238, 0.075); box-shadow: -2px 2px 0 rgba(37, 244, 238, 0.34), 2px -2px 0 rgba(254, 44, 85, 0.3); transform: translateY(-2px); }
.radio-catalog-art { display: grid; width: 58px; height: 58px; place-items: center; overflow: hidden; border-radius: 16px; background: #09090b; color: var(--cyan); }
.radio-catalog-art img { width: 100%; height: 100%; object-fit: cover; }
.radio-catalog-copy { display: grid; min-width: 0; gap: 3px; }
.radio-catalog-copy strong,
.radio-catalog-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.radio-catalog-copy strong { font-size: 15px; }
.radio-catalog-copy small { color: var(--muted); font-size: 12px; }
.radio-catalog-action { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: rgba(37, 244, 238, 0.12); color: var(--cyan); }
.radio-catalog-station[data-station-active="true"] { border-color: rgba(37, 244, 238, 0.82); background: linear-gradient(110deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.14)); color: #fff; box-shadow: inset 4px 0 0 var(--cyan), inset -4px 0 0 var(--pink), 0 0 24px rgba(37, 244, 238, 0.12); }
.radio-catalog-station[data-station-active="true"] .radio-catalog-art { background: linear-gradient(135deg, rgba(37, 244, 238, 0.34), rgba(254, 44, 85, 0.32)); color: #fff; }
.radio-catalog-station[data-station-active="true"] .radio-catalog-copy small { color: #e7e7eb; }
.radio-catalog-station[data-station-active="true"] .radio-catalog-action { background: linear-gradient(135deg, var(--cyan), var(--pink)); color: #fff; }
.radio-catalog-empty { z-index: 1; align-self: start; margin: 2px; padding: 24px; border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 16px; background: rgba(0, 0, 0, 0.22); color: var(--muted); text-align: center; }
.radio-catalog-empty[hidden],
.radio-catalog-grid[hidden],
.radio-catalog-station[hidden],
.radio-catalog-pagination[hidden] { display: none !important; }

.radio-catalog-pagination {
    display: flex;
    min-width: 0;
    min-height: 38px;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-catalog-pagination > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.radio-catalog-pagination-controls,
.radio-catalog-pages {
    display: flex;
    min-width: 0;
    gap: 5px;
    align-items: center;
}

.radio-catalog-pagination-controls > button,
.radio-catalog-page {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform 160ms var(--ease), border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.radio-catalog-pagination-controls > button:hover:not(:disabled),
.radio-catalog-pagination-controls > button:focus-visible,
.radio-catalog-page:hover,
.radio-catalog-page:focus-visible {
    border-color: rgba(37, 244, 238, 0.55);
    outline: 0;
    background: rgba(37, 244, 238, 0.09);
    color: #fff;
    transform: translateY(-1px);
}

.radio-catalog-pagination-controls > button:disabled { opacity: 0.34; cursor: default; }
.radio-catalog-page[aria-current="page"] { border-color: transparent; background: linear-gradient(135deg, var(--cyan), var(--pink)); color: #050506; box-shadow: 0 0 18px rgba(37, 244, 238, 0.16); }
.radio-catalog-page-ellipsis { display: grid; width: 20px; height: 34px; place-items: center; flex: 0 0 auto; color: var(--muted); }
body.radio-catalog-open { overflow: hidden; }

.radio-dock.is-collapsed {
    right: 18px;
    left: auto;
    width: min(560px, calc(100% - 36px));
    grid-template-columns: minmax(150px, 1fr) minmax(110px, 160px) 52px 44px;
    gap: 10px;
}

.radio-dock.is-collapsed .dock-volume,
.radio-dock.is-collapsed .dock-catalog {
    display: none;
}

.radio-dock.is-collapsed .dock-controls {
    display: flex;
    justify-content: center;
}

.radio-dock.is-collapsed .dock-controls .round-button:not(.dock-play) {
    display: none;
}

.radio-dock.is-collapsed .dock-play {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.radio-dock.is-collapsed .dock-collapse i {
    transform: rotate(180deg);
}

.scroll-top {
    position: fixed;
    z-index: 110;
    right: 26px;
    bottom: calc(var(--player-height) + 30px);
    display: grid;
    width: 48px;
    height: 48px;
    transform: translateY(20px);
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
    transition: opacity 180ms ease, transform 180ms var(--ease);
}

.scroll-top.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-region {
    position: fixed;
    z-index: 1600;
    top: 94px;
    right: 20px;
    display: grid;
    width: min(380px, calc(100% - 40px));
    gap: 8px;
    pointer-events: none;
}

.toast {
    display: grid;
    min-height: 58px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-left: 4px solid var(--cyan);
    border-radius: 12px;
    background: #111113;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    pointer-events: auto;
    animation: toast-in 260ms var(--ease) both;
}

.toast.is-error {
    border-left-color: var(--error);
}

.toast.is-error i {
    color: var(--error);
}

.toast i {
    color: var(--cyan);
}

.toast p {
    margin: 0;
    font-size: 14px;
}

@keyframes toast-in {
    from { transform: translateX(24px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.reveal-ready [data-reveal] {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 700ms var(--ease), opacity 700ms ease;
}

.reveal-ready [data-reveal].is-visible {
    transform: translateY(0);
    opacity: 1;
}

@media (hover: hover) {
    .check-list li:hover,
    .player-point-list li:hover {
        transform: translateX(6px);
        background: rgba(255, 255, 255, 0.055);
        color: #fff;
    }

    .check-list li:nth-child(3n + 1):hover,
    .player-point-list li:nth-child(3n + 1):hover {
        border-color: rgba(37, 244, 238, 0.55);
        box-shadow: inset 3px 0 0 var(--cyan), 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .check-list li:nth-child(3n + 2):hover,
    .player-point-list li:nth-child(3n + 2):hover {
        border-color: rgba(255, 255, 255, 0.42);
        box-shadow: inset 3px 0 0 #fff, 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .check-list li:nth-child(3n):hover,
    .player-point-list li:nth-child(3n):hover {
        border-color: rgba(254, 44, 85, 0.58);
        box-shadow: inset 3px 0 0 var(--pink), 0 12px 28px rgba(0, 0, 0, 0.24);
    }

    .check-list li:hover i,
    .player-point-list li:hover i {
        transform: scale(1.14) rotate(-7deg);
    }

    .check-list li:nth-child(3n + 1):hover i,
    .player-point-list li:nth-child(3n + 1):hover i {
        box-shadow: 0 0 17px rgba(37, 244, 238, 0.42);
    }

    .check-list li:nth-child(3n + 2):hover i,
    .player-point-list li:nth-child(3n + 2):hover i {
        box-shadow: 0 0 17px rgba(255, 255, 255, 0.32);
    }

    .check-list li:nth-child(3n):hover i,
    .player-point-list li:nth-child(3n):hover i {
        box-shadow: 0 0 17px rgba(254, 44, 85, 0.48);
    }

    .hero-radio-card:hover {
        transform: translateY(-7px) scale(1.008);
        border-color: rgba(255, 255, 255, 0.28);
        box-shadow: -10px 10px 0 var(--cyan), 10px -10px 0 var(--pink), 0 36px 100px rgba(0, 0, 0, 0.7);
    }

    .hero-station-stack:hover {
        transform: translateY(-5px);
        border-color: rgba(37, 244, 238, 0.42);
        box-shadow: 0 30px 76px rgba(0, 0, 0, 0.66), inset 0 1px 0 rgba(254, 44, 85, 0.22);
    }

    .stats-strip article:hover {
        z-index: 2;
        transform: translateY(-5px);
        background: #141416;
        box-shadow: inset 0 3px 0 var(--pink), inset 0 -3px 0 var(--cyan), 0 18px 34px rgba(0, 0, 0, 0.34);
    }

    .stats-strip article:hover strong {
        color: #fff;
        letter-spacing: -0.02em;
        transform: translateX(3px);
    }

    .stats-strip article:hover::after {
        filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.42));
        animation: stats-signal 760ms ease-in-out infinite alternate;
    }

    .reveal-ready .about-visual[data-reveal].is-visible:hover {
        transform: translateY(-7px);
        border-color: rgba(255, 255, 255, 0.24);
        box-shadow: -9px 9px 0 var(--cyan), 9px -9px 0 var(--pink), 0 28px 70px rgba(0, 0, 0, 0.48);
    }

    .reveal-ready .about-visual[data-reveal].is-visible:hover .about-stereo {
        transform: translate(-50%, -44%) scale(1.018);
        box-shadow: -9px 9px 0 rgba(37, 244, 238, 0.96), 9px -9px 0 rgba(254, 44, 85, 0.96), 0 32px 70px rgba(0, 0, 0, 0.68);
    }

    .about-station:hover {
        transform: translateY(-5px) scale(1.035);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.72), 3px -3px 0 rgba(254, 44, 85, 0.72), 0 16px 36px rgba(0, 0, 0, 0.46);
    }

    .reveal-ready [data-reveal].is-visible.station-card:hover,
    .reveal-ready [data-reveal].is-visible.station-card:focus-within {
        transform: translateY(-7px);
        border-color: rgba(37, 244, 238, 0.65);
        box-shadow: -4px 4px 0 rgba(37, 244, 238, 0.72), 4px -4px 0 rgba(254, 44, 85, 0.72), 0 22px 52px rgba(0, 0, 0, 0.38);
    }

    .reveal-ready [data-reveal].is-visible.advantage-card:hover {
        transform: translateY(-7px);
        border-color: rgba(254, 44, 85, 0.48);
        box-shadow: -4px 4px 0 rgba(37, 244, 238, 0.66), 4px -4px 0 rgba(254, 44, 85, 0.66), 0 20px 44px rgba(0, 0, 0, 0.34);
    }

    .reveal-ready .player-console[data-reveal].is-visible:hover {
        transform: translateY(-7px);
        border-color: rgba(255, 255, 255, 0.28);
        box-shadow: -10px 10px 0 var(--cyan), 10px -10px 0 var(--pink), 0 30px 70px rgba(0, 0, 0, 0.42);
    }

    .friends-card:hover {
        transform: translateY(-7px);
        box-shadow: -11px 11px 0 var(--cyan), 11px -11px 0 var(--pink), 0 30px 70px rgba(0, 0, 0, 0.38);
    }
}

@keyframes stats-signal {
    from { transform: translateX(-2px) scale(0.82); opacity: 0.72; }
    to { transform: translateX(2px) scale(1.18); opacity: 1; }
}

@media (max-width: 1279px) {
    .desktop-navigation a {
        padding-inline: 9px;
    }

    .desktop-navigation a i {
        display: none;
    }

    .auth-button span {
        display: none;
    }

    .auth-button {
        width: 44px;
        padding-inline: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
        gap: 44px;
    }

    .station-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    :root {
        --header-height: 74px;
    }

    .desktop-navigation,
    .header-actions {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-radio-stage {
        width: min(720px, 100%);
        min-height: 0;
        margin-inline: auto;
    }

    .hero-radio-card {
        width: min(470px, calc(100% - 50px));
        margin-inline: auto;
    }

    .stats-strip {
        margin-top: 0;
    }

    .about-section,
    .player-section,
    .faq-section,
    .contacts-section {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-visual {
        order: 2;
    }

    .about-copy {
        order: 1;
    }

    .radio-toolbar {
        grid-template-columns: 1fr;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .player-copy,
    .faq-intro,
    .contacts-copy {
        position: static;
        max-width: 820px;
    }

    .standalone-contacts {
        grid-template-columns: 1fr;
    }

    .contact-route-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-route-card {
        grid-template-columns: 48px minmax(0, 1fr) 18px;
        padding-inline: 15px;
        gap: 11px;
    }

    .friends-card {
        grid-template-columns: 1fr 0.65fr;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }

    .footer-signature {
        min-height: 124px;
        grid-column: 1 / -1;
    }

    .radio-dock {
        grid-template-columns: minmax(170px, 1fr) minmax(95px, 0.42fr) auto minmax(125px, 0.55fr) 44px 46px;
    }

    .dock-catalog {
        width: 44px;
        min-height: 44px;
        justify-content: center;
        padding: 0;
    }

    .dock-catalog span { display: none; }
}

@media (max-width: 760px) {
    :root {
        --player-height: 176px;
    }

    body {
        padding-bottom: 0;
    }

    .section-shell,
    .header-inner {
        width: min(calc(100% - 28px), var(--content));
    }

    .inner-page-hero {
        padding-top: 120px;
        padding-bottom: 48px;
    }

    .standalone-faq {
        width: min(calc(100% - 28px), 1040px);
        padding-top: 42px;
        padding-bottom: 90px;
    }

    .legal-content {
        width: min(calc(100% - 28px), 1040px);
        padding-top: 38px;
        padding-bottom: 90px;
    }

    .standalone-page .cookie-banner {
        bottom: calc(var(--player-height) + 20px);
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-radio-stage {
        min-height: 0;
    }

    .hero-card-stage {
        padding: 44px 18px 28px;
    }

    .hero-radio-card {
        width: min(460px, calc(100% - 24px));
        margin-inline: auto;
        padding: 16px;
        box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink);
    }

    .hero-artwork-wrap {
        min-height: 280px;
    }

    .hero-artwork {
        width: 210px;
        height: 210px;
    }

    .hero-station-stack {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-station-stack .hero-mini-station {
        min-height: 68px;
        padding-inline: 12px;
        grid-template-columns: 28px 46px minmax(0, 1fr) 32px;
        gap: 9px;
    }

    .hero-station-stack .mini-artwork {
        width: 46px;
        height: 46px;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stats-strip article {
        min-height: 118px;
        padding: 20px;
        border-bottom: 1px solid var(--line);
    }

    .stats-strip article:nth-child(2) {
        border-right: 0;
    }

    .stats-strip article:nth-child(3),
    .stats-strip article:nth-child(4) {
        border-bottom: 0;
    }

    .about-section,
    .player-section,
    .faq-section,
    .contacts-section {
        padding-top: 100px;
        padding-bottom: 45px;
    }

    .about-visual {
        min-height: 450px;
        box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
    }

    .about-world-glow {
        width: min(82%, 390px);
    }

    .about-world {
        width: min(78%, 360px);
    }

    .about-stereo {
        width: min(68%, 400px);
        min-width: 330px;
    }

    .about-station {
        max-width: 150px;
    }

    .about-station .mini-artwork {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .radio-section,
    .advantages-section,
    .friends-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .station-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .station-card h3 {
        font-size: 19px;
    }

    .station-card dl div {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .station-card dd {
        text-align: left;
    }

    .player-console {
        padding: 16px;
        box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
    }

    .console-display {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .console-art {
        width: 76px;
        height: 76px;
    }

    .live-badge {
        display: none;
    }

    .friends-card {
        min-height: auto;
        grid-template-columns: 1fr;
        box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink);
    }

    .friends-visual {
        min-height: 260px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-route-list {
        grid-template-columns: 1fr;
    }

    .captcha-grid {
        grid-template-columns: repeat(5, minmax(42px, 1fr));
    }

    .gift-captcha .captcha-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cookie-banner {
        right: 12px;
        bottom: calc(var(--player-height) + 20px);
        left: 12px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .cookie-icon {
        width: 42px;
        height: 42px;
    }

    .cookie-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .radio-dock {
        right: 8px;
        bottom: 7px;
        left: 8px;
        height: var(--player-height);
        padding: 8px 10px;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: 56px 48px 50px;
        gap: 4px 8px;
    }

    .dock-station {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-right: 92px;
    }

    .dock-spectrum {
        height: 44px;
        min-width: 0;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .dock-controls {
        grid-column: 1;
        grid-row: 3;
        justify-content: flex-start;
    }

    .dock-volume {
        grid-column: 2;
        grid-row: 3;
        justify-content: flex-end;
    }

    .dock-volume label {
        width: min(28vw, 120px);
        min-width: 78px;
    }

    .dock-collapse {
        position: absolute;
        top: 12px;
        right: 10px;
    }

    .dock-catalog {
        position: absolute;
        top: 12px;
        right: 60px;
    }

    .radio-dock.is-collapsed {
        right: 8px;
        bottom: 7px;
        left: auto;
        width: min(360px, calc(100% - 16px));
        height: 82px;
        grid-template-columns: minmax(0, 1fr) minmax(72px, 100px) 52px 42px;
        grid-template-rows: 1fr;
        gap: 6px;
    }

    .radio-dock.is-collapsed .dock-station {
        grid-column: 1;
        grid-row: 1;
        padding-right: 0;
    }

    .radio-dock.is-collapsed .dock-spectrum {
        height: 52px;
        grid-column: 2;
        grid-row: 1;
    }

    .radio-dock.is-collapsed .dock-controls {
        grid-column: 3;
        grid-row: 1;
    }

    .radio-dock.is-collapsed .dock-collapse {
        position: static;
        grid-column: 4;
        grid-row: 1;
    }

    .radio-dock.is-collapsed .dock-catalog { display: none; }

    .radio-catalog-layer { place-items: stretch; padding: 10px; }
    .radio-catalog-dialog { width: 100%; max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); align-self: center; padding: 17px; border-radius: 21px; }
    .radio-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .scroll-top {
        right: 16px;
        bottom: calc(var(--player-height) + 22px);
    }
}

@media (max-width: 520px) {
    .section-shell,
    .header-inner {
        width: min(calc(100% - 22px), var(--content));
    }

    .brand-name {
        font-size: 18px;
    }

    .hero h1 {
        font-size: clamp(37px, 12vw, 42px);
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-era-dial {
        margin-top: 34px;
    }

    .hero-radio-stage {
        min-height: 0;
    }

    .hero-card-stage {
        min-height: 530px;
        padding: 38px 8px 24px;
    }

    .hero-radio-card {
        width: min(430px, calc(100% - 12px));
        min-height: 450px;
        margin-inline: auto;
    }

    .hero-card-topline {
        font-size: 11px;
    }

    .hero-artwork-wrap {
        min-height: 245px;
    }

    .hero-artwork {
        width: 180px;
        height: 180px;
    }

    .vinyl-rings {
        width: 235px;
        height: 235px;
    }

    .hero-play-button {
        right: 18px;
        bottom: 18px;
        width: 60px;
        height: 60px;
    }

    .hero-station-stack {
        width: 100%;
    }

    .console-spectrum {
        height: 78px;
        padding: 13px 12px 10px;
        gap: 3px;
    }

    .console-display {
        min-height: 124px;
        padding: 14px;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .console-art {
        width: 64px;
        height: 64px;
    }

    .console-copy strong {
        font-size: 20px;
        line-height: 1.12;
        text-overflow: clip;
        white-space: normal;
    }

    .stats-strip article {
        padding: 17px;
    }

    .stats-strip article::after {
        right: 13px;
        bottom: 13px;
    }

    .stats-strip strong {
        font-size: 32px;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-world-glow {
        width: min(94%, 320px);
    }

    .about-world {
        width: min(92%, 300px);
    }

    .about-stereo {
        top: 52%;
        width: min(84%, 270px);
        min-width: 0;
        padding: 9px 10px 10px;
        border-radius: 19px;
        box-shadow: -4px 4px 0 rgba(37, 244, 238, 0.92), 4px -4px 0 rgba(254, 44, 85, 0.92), 0 20px 42px rgba(0, 0, 0, 0.64);
    }

    .about-stereo-handle {
        top: -24px;
        right: 40px;
        left: 40px;
        height: 28px;
        border-width: 6px;
    }

    .about-stereo-topbar {
        min-height: 20px;
        font-size: 8px;
    }

    .about-stereo-body {
        padding: 7px;
        border-radius: 13px;
        grid-template-columns: 52px minmax(0, 1fr) 52px;
        gap: 6px;
    }

    .about-stereo-speaker {
        width: 52px;
        height: 91px;
        border-radius: 11px;
    }

    .about-stereo-speaker::before,
    .about-stereo-speaker::after {
        width: 4px;
        height: 4px;
    }

    .about-stereo-speaker > i {
        width: 42px;
        height: 42px;
        border-width: 5px;
    }

    .about-stereo-speaker > span {
        top: 9px;
        width: 13px;
        height: 13px;
        border-width: 3px;
    }

    .about-stereo-display {
        min-height: 56px;
        padding: 6px 6px 22px;
    }

    .about-stereo-display [data-player-status] {
        font-size: 7px;
    }

    .about-stereo-display strong {
        font-size: 10px;
    }

    .about-stereo-spectrum {
        right: 5px;
        bottom: 5px;
        left: 5px;
        height: 14px;
        gap: 1px;
    }

    .about-stereo-deck {
        min-height: 34px;
        padding: 3px;
        grid-template-columns: 28px minmax(32px, 1fr) 28px;
        gap: 4px;
    }

    .about-stereo-art {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .about-stereo-tape {
        height: 22px;
    }

    .about-stereo-tape i {
        width: 9px;
        height: 9px;
        border-width: 2px;
    }

    .about-stereo-play {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }

    .about-station strong {
        display: none;
    }

    .about-station {
        width: auto;
        padding: 6px;
    }

    .about-station .mini-artwork {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .station-grid {
        grid-template-columns: 1fr;
    }

    .station-card-art {
        aspect-ratio: 1.45 / 1;
    }

    .station-card dl div {
        grid-template-columns: minmax(76px, 0.75fr) minmax(0, 1.25fr);
        gap: 10px;
    }

    .station-card dd {
        text-align: right;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        min-height: 235px;
    }

    .console-controls {
        flex-wrap: wrap;
    }

    .console-volume {
        width: 100%;
        flex-basis: 100%;
    }

    .friends-card {
        padding: 32px 24px;
    }

    .friend-avatar {
        width: 68px;
        height: 68px;
    }

    .friend-center {
        width: 96px;
        height: 96px;
    }

    .faq-item summary {
        min-height: 82px;
        grid-template-columns: 30px minmax(0, 1fr) 40px;
        gap: 8px;
    }

    .faq-item > div {
        padding: 0 0 24px 38px;
    }

    .contact-form {
        padding: 18px;
        box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
    }

    .captcha-target {
        align-items: flex-start;
    }

    .gift-captcha .captcha-head {
        align-items: flex-start;
    }

    .gift-captcha .captcha-target {
        align-items: stretch;
        flex-direction: column;
    }

    .gift-captcha .captcha-target > .captcha-target-gift {
        width: min(100%, 250px);
        min-width: 0;
        flex-basis: auto;
    }

    .captcha-target small {
        font-size: 12px;
    }

    .captcha-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gift-captcha .captcha-grid button {
        min-height: 104px;
        padding-inline: 5px;
    }

    .gift-captcha .captcha-grid button img {
        width: 52px;
        height: 52px;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        padding-block: 18px;
        flex-direction: column;
        gap: 6px;
    }

    .cookie-banner {
        max-height: min(310px, calc(100dvh - var(--player-height) - 28px));
        overflow-y: auto;
        grid-template-columns: 1fr;
    }

    .cookie-icon {
        display: none;
    }

    .cookie-actions {
        display: grid;
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .dock-copy strong {
        max-width: none;
    }

    .dock-controls .round-button,
    .dock-volume .round-button {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .radio-dock.is-collapsed {
        grid-template-columns: minmax(76px, 1fr) minmax(64px, 82px) 48px 38px;
        padding-inline: 8px;
    }

    .radio-dock.is-collapsed .dock-art {
        width: 42px;
        height: 42px;
    }

    .radio-dock.is-collapsed .dock-station {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 7px;
    }

    .radio-dock.is-collapsed .dock-copy span {
        font-size: 9px;
    }

    .radio-dock.is-collapsed .dock-copy strong {
        font-size: 12px;
    }

    .radio-dock.is-collapsed .dock-spectrum {
        min-width: 0;
        padding-inline: 5px;
        gap: 2px;
    }

    .radio-dock.is-collapsed .dock-play {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .radio-dock.is-collapsed .dock-collapse {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .radio-catalog-dialog { gap: 14px; padding: 15px; }
    .radio-catalog-dialog > header { align-items: flex-start; }
    .radio-catalog-dialog > header > div > span { display: none; }
    .radio-catalog-dialog h2 { font-size: 21px; }
    .radio-catalog-dialog header p { font-size: 13px; }
    .radio-catalog-grid { grid-template-columns: 1fr; gap: 7px; padding-block: 1px; }
    .radio-catalog-station { min-height: 72px; grid-template-columns: 50px minmax(0, 1fr) 38px; padding: 10px; }
    .radio-catalog-art { width: 50px; height: 50px; border-radius: 14px; }
    .radio-catalog-pagination { flex-direction: column; gap: 8px; align-items: stretch; }
    .radio-catalog-pagination > p { text-align: center; }
    .radio-catalog-pagination-controls { justify-content: center; }
    .radio-catalog-pagination-controls > button,
    .radio-catalog-page { width: 32px; height: 32px; border-radius: 10px; }
    .radio-catalog-page-ellipsis { width: 16px; height: 32px; }
}

@media (max-width: 1040px) {
    .register-page {
        width: min(calc(100% - 28px), 820px);
        padding-top: 112px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .register-cover {
        position: relative;
        top: auto;
        min-height: 500px;
    }

    .register-world {
        width: min(78%, 520px);
    }
}

@media (max-width: 760px) {
    .register-page {
        padding-top: 102px;
        padding-bottom: 110px;
        gap: 40px;
    }

    .register-cover {
        min-height: 430px;
        box-shadow: -5px 5px 0 rgba(37, 244, 238, 0.78), 5px -5px 0 rgba(254, 44, 85, 0.78);
    }

    .register-world {
        width: min(100%, 430px);
    }

    .register-access-card {
        width: min(62%, 238px);
        min-height: 300px;
        padding: 20px;
        border-radius: 22px;
    }

    .register-access-avatar {
        width: 86px;
        height: 86px;
        margin: 23px 0 20px;
        font-size: 28px;
    }

    .register-orbit {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .register-panel {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    .register-page {
        width: min(calc(100% - 22px), 820px);
        padding-top: 92px;
        padding-bottom: 92px;
        gap: 34px;
    }

    .register-cover {
        min-height: 350px;
        border-radius: 22px;
        box-shadow: -3px 3px 0 var(--cyan), 3px -3px 0 var(--pink);
    }

    .register-cover-glow {
        width: 94%;
    }

    .register-world {
        width: min(118%, 350px);
    }

    .register-access-card {
        width: min(68%, 206px);
        min-height: 264px;
        padding: 17px;
        border-radius: 19px;
        box-shadow: -5px 5px 0 rgba(37, 244, 238, 0.88), 5px -5px 0 rgba(254, 44, 85, 0.88), 0 22px 44px rgba(0, 0, 0, 0.56);
    }

    .register-access-brand {
        padding-bottom: 12px;
        font-size: 20px;
    }

    .register-access-avatar {
        width: 70px;
        height: 70px;
        margin: 18px 0 17px;
        font-size: 23px;
        box-shadow: -4px 4px 0 var(--cyan), 4px -4px 0 var(--pink);
    }

    .register-access-signal {
        height: 24px;
        margin-top: 16px;
    }

    .register-orbit {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .register-orbit-radio {
        top: 9%;
        left: 7%;
    }

    .register-orbit-games {
        top: 15%;
        right: 6%;
    }

    .register-orbit-friends {
        right: 8%;
        bottom: 8%;
    }

    .register-page .auth-intro h1 {
        font-size: 38px;
    }

    .register-login-link {
        width: 100%;
        justify-content: space-between;
    }

    .register-panel {
        padding: 18px;
        border-radius: 20px;
        box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.8), 3px -3px 0 rgba(254, 44, 85, 0.8);
    }

    .register-legal-link {
        margin-inline: 1px;
        padding-inline: 6px;
    }

    .two-factor-page .register-cover {
        min-height: 350px;
    }

    .reset-page .register-cover {
        min-height: 350px;
    }

    .auth-recovery-link {
        grid-template-columns: 32px minmax(0, 1fr) 28px;
        padding-inline: 9px;
    }

    .reset-invalid-card {
        min-height: 280px;
    }

    .two-factor-cover-code {
        gap: 5px;
    }

    .two-factor-cover-code i {
        height: 29px;
        border-radius: 7px;
    }

    .two-factor-code-field input {
        min-height: 66px;
        padding-right: 12px;
        padding-left: calc(12px + 0.24em);
        font-size: 25px;
        letter-spacing: 0.24em;
    }
}

@media (max-width: 760px) {
    .legal-overview,
    .legal-toc,
    .legal-community-page .legal-content {
        width: min(calc(100% - 28px), 1040px);
    }

    .legal-overview {
        grid-template-columns: 1fr;
        padding-top: 34px;
    }

    .legal-overview-lead {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
        border-radius: 18px;
    }

    .legal-overview-lead > span {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 18px;
    }

    .legal-overview-lead h2 { font-size: 23px; }
    .legal-overview-lead > div > p:last-child { font-size: 14px; line-height: 1.62; }
    .legal-facts { border-radius: 18px; }
    .legal-facts article { min-height: 104px; padding: 14px; }
    .legal-facts strong { font-size: 16px; }

    .legal-toc {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
        border-radius: 18px;
    }

    .legal-toc > div { padding: 0 2px; }
    .legal-toc ol { grid-template-columns: 1fr; }
    .legal-toc a { min-height: 40px; }

    .legal-content.is-detailed {
        gap: 12px;
        padding-top: 20px;
        padding-bottom: 90px;
    }

    .legal-content.is-detailed > article {
        padding: 18px;
        border-radius: 18px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .legal-content.is-detailed > article::before { right: 18px; left: 18px; }

    .legal-section-marker {
        width: 44px;
        min-height: 62px;
        gap: 6px;
        border-radius: 13px;
    }

    .legal-section-marker i { font-size: 15px; }
    .legal-content.is-detailed .legal-section-body h2 { font-size: 21px; line-height: 1.2; }
    .legal-content.is-detailed .legal-section-body > p { font-size: 14px; line-height: 1.65; }
    .legal-section-body ul { grid-template-columns: 1fr; margin-top: 14px; }
    .legal-section-body li { padding: 9px 10px; font-size: 12.5px; }
    .legal-section-body > aside { grid-template-columns: 30px minmax(0, 1fr); padding: 10px; }
    .legal-section-body > aside > i { width: 30px; height: 30px; }
}

@media (max-width: 420px) {
    .inner-page-hero-actions { display: grid; grid-template-columns: 1fr; }
    .inner-page-hero-actions .button { width: 100%; }
    .legal-community-page .inner-page-hero > p:not(.eyebrow) { font-size: 16px; line-height: 1.6; }
    .legal-facts article { min-height: 96px; padding: 12px; }
    .legal-facts strong { font-size: 15px; }
    .legal-facts span { font-size: 10px; }
    .legal-content.is-detailed > article { padding: 15px; grid-template-columns: 1fr; gap: 11px; }
    .legal-section-marker { width: 100%; min-height: 40px; grid-template-columns: max-content max-content; justify-content: start; gap: 8px; padding-inline: 11px; }
    .legal-section-marker i { font-size: 14px; }
    .legal-content.is-detailed .legal-section-body h2 { font-size: 19px; }
    .legal-section-links { display: grid; grid-template-columns: 1fr; }
    .legal-section-links a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready [data-reveal] {
        transform: none;
        opacity: 1;
    }
}

@media (forced-colors: active) {
    .button,
    .station-card,
    .advantage-card,
    .contact-form,
    .register-cover,
    .register-panel,
    .radio-dock,
    .cookie-banner,
    .legal-overview-lead,
    .legal-facts,
    .legal-toc,
    .legal-content.is-detailed > article {
        border: 2px solid CanvasText;
        box-shadow: none;
    }
}
