:root {
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --site-max-width: 120rem;
    --frame-width: 120rem;
    --surface: #ffffff;
    --text: #2f2f2f;
    --text-soft: #666666;
    --button-text: #ffffff;
    --button-bg: #2f2f2f;
    --outline: #555555;
    --neon-blue: rgba(102, 191, 255, 0.92);
    --lazal-hover-filter: drop-shadow(0 0 1.2rem var(--neon-blue));
    --lazal-text-link-hover-shadow: 0 0 12px rgba(102, 191, 255, 0.72);
    --lazal-hover-transition: filter 0.25s ease;
    --lazal-focus-outline: 0.2rem solid rgba(102, 191, 255, 0.55);
    --lazal-focus-outline-offset: 0.3rem;
    --lazal-positive: #4caf50;
    --lazal-negative: #ff4b4b;
    --lazal-neutral: #000000;
    --lazal-positive-rgb: 76, 175, 80;
    --lazal-negative-rgb: 255, 75, 75;
    --lazal-rating-positive: var(--lazal-positive);
    --lazal-rating-negative: var(--lazal-negative);
    --lazal-rating-neutral: var(--lazal-neutral);
    --lazal-validation-success: var(--lazal-positive);
    --lazal-validation-error: var(--lazal-negative);
    --lazal-result-won: var(--lazal-positive);
    --lazal-result-lost: var(--lazal-negative);
    --lazal-button-text-font-family: 'Noto Sans', sans-serif;
    --lazal-button-text-font-size: 1.5rem;
    --lazal-button-text-font-weight: 400;
    --lazal-active-text-font-weight: 400;
    --lazal-active-text-color: #000;
    --lazal-button-text-line-height: 1.6;
    --lazal-button-text-letter-spacing: normal;
    --lazal-button-text-transform: none;
    --header-gap: 32rem;
    --title-size: 4.7rem;
    --section-title-size: 2.7rem;
    --body-size: 1.7rem;
    --button-size: 1.5rem;
    --content-gap: 8rem;
    --button-gap: 6rem;
    --section-gap-lg: 10rem;
    --section-gap-md: 8.4rem;
    --hero-media-width: 35rem;
    --media-column-width: 30rem;
    --copy-column-width: 55rem;
}

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

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    font-size: 62.5%;
    overflow-x: clip;
    scrollbar-width: thin;
    scrollbar-color: #2f2f2f transparent;
}

html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #2f2f2f;
    border-radius: 999rem;
}

body {
    min-width: var(--frame-width);
    overflow-x: clip;
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    background: var(--surface);
    font-size: var(--body-size);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif', serif;
    color: var(--text);
    font-weight: 500;
    font-stretch: 62.5%;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

h1 {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: var(--title-size);
    line-height: 1.2;
    letter-spacing: 0.03;
}

h2 {
    font-size: var(--section-title-size);
}

p {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: var(--body-size);
    line-height: 1.6;
}

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

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    cursor: pointer;
}

textarea {
    resize: none;
}

fieldset,
legend,
ul,
ol {
    border: none;
    list-style: none;
}

:focus-visible {
    outline: 0.2rem solid var(--outline);
    outline-offset: 0.2rem;
}

.site-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    width: var(--frame-width);
    max-width: none;
    margin: 0 auto;
    padding: 1rem;
    padding-top: 8.5rem;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.header-section {
    position: fixed;
    top: 0;
    left: max(50%, calc(var(--frame-width) / 2));
    transform: translateX(-50%);
    width: var(--frame-width);
    max-width: none;
    padding: 1rem;
    background-color: var(--surface);
    z-index: 1000;
}

.header-section-wrap,
.home-hero-section-wrap,
.home-intro-section-wrap,
.home-experts-section-wrap,
.home-trust-section-wrap,
.home-affiliate-section-wrap,
.home-rules-section-wrap,
.home-stats-section-wrap,
.home-final-section-wrap,
.home-cta-section-wrap,
.footer-section-wrap {
    width: 100%;
}

.header-section-columns {
    display: grid;
    grid-template-columns: 3rem 20rem 3rem;
    align-items: center;
    justify-content: center;
    column-gap: 32rem;
    width: 90rem;
    margin: 0 auto;
}

.header-section-logo,
.header-section-language {
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section-logo {
    justify-self: start;
}

.header-section-language {
    justify-self: end;
}

.header-section-logo a:hover img,
.header-section-logo a:focus-visible img,
.header-section-language a:hover img,
.header-section-language a:focus-visible img {
    filter: drop-shadow(0 0 1.2rem var(--neon-blue));
}

.home-hero-btn:hover,
.home-hero-btn:focus-visible,
.home-cta-btn:hover,
.home-cta-btn:focus-visible {
    filter: var(--lazal-hover-filter);
}

.header-section-lazal {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.header-section-lazal span {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    font-weight: 100;
    font-stretch: 72.5%;
    font-size: 4.7rem;
    line-height: 1.6;
    letter-spacing: 2rem;
    text-align: center;
    margin-right: -2rem;
}

.header-section-lazal-link {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    font-weight: 100;
    font-stretch: 72.5%;
    font-size: 4.7rem;
    line-height: 1.6;
    letter-spacing: 2rem;
    text-align: center;
    margin-right: -2rem;
    transition: var(--lazal-hover-transition);
}

.header-section-lazal-link:hover,
.header-section-lazal-link:focus-visible {
    filter: var(--lazal-hover-filter);
}

.home-hero-section,
.home-cta-section,
.footer-section {
    display: flex;
    justify-content: center;
}

.home-hero-section-wrap,
.home-cta-section-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero-section-media {
    width: var(--hero-media-width);
    padding-top: 6.5rem;
}

.home-hero-section-title {
    text-align: center;
}

.home-hero-section-title h1 {
    margin: 0;
    padding-top: 6rem;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 300;
    font-stretch: 62.5%;
    font-size: 4.7rem;
}

.home-hero-section-columns,
.home-cta-section-columns {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: var(--button-gap);
}

.home-hero-section-columns {
    padding: 9.1rem 0;
}

.home-cta-section-columns {
    padding-top: 5rem;
}

.home-info-links-section {
    display: flex;
    justify-content: center;
    padding-top: 9rem;
}

.home-info-links-section-wrap {
    width: 60rem;
}

.home-info-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10rem;
    width: 100%;
}

.home-info-links__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 25rem;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-info-links__item {
    display: block;
    width: 100%;
    color: #2f2f2f;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

a.home-info-links__item:hover,
a.home-info-links__item:focus-visible {
    color: #000;
    text-shadow: var(--lazal-text-link-hover-shadow);
    outline: none;
}

.home-info-links__item--pending {
    cursor: default;
}

.home-hero-btn,
.home-cta-btn {
    width: 20rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
    background-color: var(--button-bg);
    color: var(--button-text);
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    transition: var(--lazal-hover-transition);
}

.home-intro-section-title h2,
.home-experts-section-title h2,
.home-trust-section-title h2,
.home-affiliate-section-title h2,
.home-rules-section-title h2,
.home-stats-section-title h2,
.home-final-section-title h2 {
    text-align: center;
    padding-bottom: 6rem;
}

.home-experts-section-title h2,
.home-affiliate-section-title h2,
.home-stats-section-title h2 {
    padding-top: var(--section-gap-lg);
}

.home-trust-section-title h2 {
    padding-top: var(--section-gap-md);
}

.home-rules-section-title h2,
.home-final-section-title h2 {
    padding-top: 7rem;
}

.home-intro-section-columns,
.home-experts-section-columns,
.home-trust-section-columns,
.home-affiliate-section-columns,
.home-rules-section-columns,
.home-stats-section-columns,
.home-final-section-columns {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--content-gap);
}

.home-intro-section-media,
.home-experts-section-media,
.home-trust-section-media,
.home-affiliate-section-media,
.home-rules-section-media,
.home-stats-section-media,
.home-final-section-media {
    flex: 0 0 var(--media-column-width);
    width: var(--media-column-width);
}

.home-intro-section-content,
.home-experts-section-content,
.home-trust-section-content,
.home-affiliate-section-content,
.home-rules-section-content,
.home-stats-section-content,
.home-final-section-content {
    flex: 0 0 var(--copy-column-width);
    width: var(--copy-column-width);
    padding-top: 2.5rem;
}

.home-intro-section-content p,
.home-experts-section-content p,
.home-trust-section-content p,
.home-affiliate-section-content p,
.home-rules-section-content p,
.home-stats-section-content p,
.home-final-section-content p {
    margin-bottom: 1.5rem;
}

.footer-section {
    width: 100%;
    margin-top: auto;
    padding-top: 9rem;
    padding-bottom: 2rem;
}

.footer-section-wrap {
    display: flex;
    justify-content: center;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 1.5rem;
    color: var(--text-soft);
}

.language-selection-section {
    display: flex;
    justify-content: center;
}

.language-selection-section-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.language-selection-section-title {
    padding-top: 7rem;
}

.language-selection-section-title h1 {
    font-size: 2.7rem;
}

.language-selection-section-content {
    padding-top: 8.5rem;
}

.language-selection-section-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.language-selection-section-columns {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10rem;
    padding-top: 8rem;
}

.language-selection-section-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.language-selection-section-item img {
    width: 4.5rem;
    display: block;
}

.language-selection-section-item a:hover img,
.language-selection-section-item a:focus-visible img {
    filter: drop-shadow(0 0 1.2rem var(--neon-blue));
}

.language-footer-section {
    padding-top: 9rem;
}

.terms-section {
    display: flex;
    justify-content: center;
}

.terms-section-wrap {
    width: 80rem;
    max-width: 100%;
}

.terms-document {
    padding: 7rem 0 9rem;
}

.terms-document h1 {
    margin: 0;
    text-align: center;
    font-family: 'Noto Serif', serif;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.2;
    color: #2f2f2f;
}

.terms-document__meta {
    margin: 1.5rem 0 0;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #666;
}

.terms-document__intro {
    margin-top: 6rem;
}

.terms-document__section {
    margin-top: 5rem;
}

.terms-document__section h2 {
    margin: 0 0 2rem;
    text-align: left;
    font-family: 'Noto Serif', serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #2f2f2f;
}

.terms-document p,
.terms-document li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.7rem;
    line-height: 1.6;
    font-weight: 400;
    font-stretch: 72.5%;
    color: #2f2f2f;
}

.terms-document p {
    margin: 0 0 1.5rem;
}

.terms-document p:last-child {
    margin-bottom: 0;
}

.terms-document ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0 0 1.5rem;
    padding-left: 2.2rem;
    list-style: disc;
}

.terms-document a {
    color: #000;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.terms-document a:hover,
.terms-document a:focus-visible {
    color: #000;
    text-shadow: var(--lazal-text-link-hover-shadow);
    outline: none;
}

.login-section {
    display: flex;
    justify-content: center;
}

.login-section-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.login-section-title {
    padding-top: 7rem;
}

.login-section-title h1 {
    font-size: 2.7rem;
    text-align: center;
}

.login-section-content {
    padding-top: 8.5rem;
}

.login-section-content p {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-section-columns {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6rem;
    padding-top: 8rem;
}

.login-section .login-btn {
    width: 20rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    color: #ffffff;
    text-decoration: none;
    background-color: #2f2f2f;
    border-radius: 5rem;
    border: none;
    transition: var(--lazal-hover-transition);
}

.login-section .login-btn:hover,
.login-section .login-btn:focus-visible {
    filter: var(--lazal-hover-filter);
    outline: none;
}

.username-section {
    display: flex;
    justify-content: center;
}

.username-section-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.username-section-title {
    padding-top: 7rem;
}

.username-section-title h1 {
    font-size: 2.7rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
}

.username-section-content {
    padding-top: 8.5rem;
    width: 80rem;
    max-width: 100%;
}

.username-section-content p {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: var(--text);
}

.username-section-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5rem;
}

.username-section .username-input-group {
    display: flex;
    align-items: center;
    background-color: var(--button-bg);
    border-radius: 5rem;
    width: 32rem;
    max-width: 100%;
    height: 5rem;
    margin-bottom: 2rem;
    transition: filter 0.25s ease;
    border: 1px solid transparent;
}

.username-section .username-field {
    background: transparent;
    border: none;
    color: var(--button-text);
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    width: 100%;
    padding: 0 1.5rem;
    text-align: center;
    outline: none;
}

.username-section .username-input-group:focus-within {
    filter: drop-shadow(0 0 12px rgba(102, 191, 255, 0.9));
}

.username-agreement {
    width: 50rem;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
}

.username-agreement input {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0;
    accent-color: #2f2f2f;
    flex: 0 0 auto;
    cursor: pointer;
}

.username-agreement span {
    display: inline;
    line-height: 1.4;
}

.username-agreement a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.username-agreement a:hover,
.username-agreement a:focus-visible {
    color: #000;
    text-shadow: var(--lazal-text-link-hover-shadow);
    outline: none;
}

.username-section-columns {
    padding-top: 3.3rem;
}

.username-section .username-submit-btn {
    width: 20rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button-bg);
    border-radius: 5rem;
    color: var(--button-text);
    border: none;
    cursor: pointer;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    transition: var(--lazal-hover-transition);
}

.username-section .username-submit-btn:hover,
.username-section .username-submit-btn:focus-visible {
    filter: var(--lazal-hover-filter);
}

.login-error {
    color: var(--lazal-validation-error);
    font-size: 1.4rem;
    text-align: center;
}

.lazal-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--surface);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition:
        opacity 0.46s var(--ease-out),
        visibility 0s linear 0.46s;
}

.lazal-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.lazal-modal-overlay[hidden] {
    display: none;
}

.lazal-modal-transition-ready .page-transition-shell {
    transition: opacity 0.42s var(--ease-out);
    will-change: opacity;
}

.lazal-modal-is-open .page-transition-shell {
    opacity: 0;
}

.lazal-modal {
    width: 70rem;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    transform: none;
}

.lazal-modal-title {
    margin: 0;
    font-family: 'Noto Serif', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
    letter-spacing: 0;
}

.lazal-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.lazal-modal-body p,
.lazal-modal-body li {
    font-family: 'Noto Sans', sans-serif;
    font-stretch: 72.5%;
    font-size: 1.7rem;
    line-height: 1.5;
    color: var(--text);
    text-align: center;
}

.lazal-modal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lazal-modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.lazal-modal-button {
    width: 11rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 5rem;
    background-color: #2f2f2f;
    color: #ffffff;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    transition: var(--lazal-hover-transition);
}

.lazal-modal-button:hover,
.lazal-modal-button:focus-visible {
    filter: var(--lazal-hover-filter);
}

@media (prefers-reduced-motion: reduce) {
    .lazal-modal-overlay,
    .lazal-modal,
    .lazal-modal-transition-ready .page-transition-shell {
        transition: none !important;
    }
}

.profile-container {
    padding: 0;
}

.page-transition-body {
    background: #fff;
}

.page-transition-shell {
    opacity: 1;
}

.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2500;
}

.page-transition-pending .page-transition-shell {
    opacity: 0;
}

.page-transition-pending .page-transition-overlay {
    opacity: 1;
    visibility: visible;
}

.boot-splash-overlay {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s var(--ease-out), visibility 0s linear 0.45s;
}

.boot-splash-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
    opacity: 0;
    transform: translateY(1.8rem);
    transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.boot-splash-overlay.is-active,
.boot-splash-pending .boot-splash-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.boot-splash-overlay.is-active .boot-splash-overlay__inner,
.boot-splash-pending .boot-splash-overlay__inner {
    opacity: 1;
    transform: translateY(0);
}

.boot-splash-overlay.is-leaving {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.boot-splash-overlay__wordmark {
    font-family: 'Noto Sans', sans-serif;
    font-size: 5.6rem;
    font-weight: 100;
    font-stretch: 72.5%;
    line-height: 1.1;
    letter-spacing: 1.4rem;
    color: #2f2f2f;
    text-align: center;
    margin-right: -1.4rem;
    filter: drop-shadow(0 0 1.6rem rgba(47, 47, 47, 0.05));
}

.boot-splash-overlay__loader {
    width: 12rem;
    height: 0.1rem;
    background: rgba(47, 47, 47, 0.14);
    overflow: hidden;
    position: relative;
}

.boot-splash-overlay__loader-line {
    position: absolute;
    top: 0;
    left: -4.4rem;
    width: 4.4rem;
    height: 100%;
    background: #2f2f2f;
    animation: bootSplashLine 1.35s cubic-bezier(0.3, 0.1, 0.2, 1) infinite;
}

@keyframes bootSplashLine {
    0% {
        transform: translateX(0);
        opacity: 0.14;
    }

    45% {
        opacity: 1;
    }

    100% {
        transform: translateX(16.4rem);
        opacity: 0.14;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .page-transitions-ready .page-transition-shell {
        transition: opacity 0.38s var(--ease-out);
        will-change: opacity;
    }

    .page-transitions-ready .page-transition-overlay {
        transition: opacity 0.38s var(--ease-out), visibility 0s linear 0.38s;
        will-change: opacity;
    }

    .page-transitions-ready.page-is-leaving .page-transition-shell {
        opacity: 0;
    }

    .page-transitions-ready.page-is-leaving .page-transition-overlay {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .page-transitions-ready.page-is-scrolling-top .page-transition-shell {
        opacity: 0;
    }

    .page-transitions-ready.page-is-scrolling-top .page-transition-overlay {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .page-transitions-ready.page-is-scroll-revealing .page-transition-overlay {
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.16s, 0.54s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .boot-splash-overlay,
    .boot-splash-overlay__inner {
        transition: none !important;
    }

    .boot-splash-overlay__loader-line {
        animation: none !important;
        left: 3.8rem;
        opacity: 1;
    }

    .page-transition-shell,
    .page-transition-overlay {
        transition: none !important;
    }
}

.network-section {
    display: flex;
    justify-content: center;
}

.network-section-wrap {
    width: 95rem;
}

.network-section-columns {
    padding-top: 7rem;
}

.network-sidebar {
    position: fixed;
    top: 15.3rem;
    left: max(50%, calc(var(--frame-width) / 2));
    transform: translateX(-47.5rem);
    width: 20rem;
}

.network-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.network-sidebar-link {
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    color: #2f2f2f;
    text-decoration: none;
    transition: var(--lazal-hover-transition);
}

.network-sidebar-form {
    margin: 0;
}

.network-sidebar-button {
    width: 100%;
    text-align: left;
    padding: 0;
    background: none;
    border: none;
}

.network-sidebar-link:hover,
.network-sidebar-link.active {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    font-weight: var(--lazal-active-text-font-weight);
}

.network-sidebar-link:focus-visible {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    outline: var(--lazal-focus-outline);
    outline-offset: var(--lazal-focus-outline-offset);
}

/* --- User balance summary (visual-only placeholder) --- */
.user-balance-summary {
    /* блок целиком */
    --user-balance-width: 14rem;
    --user-balance-shift-x: 0rem;
    --user-balance-margin-top: 10rem;
    --user-balance-margin-bottom: 0rem;
    --user-balance-margin-left: 0rem;
    --user-balance-margin-right: auto;

    /* сумма $ 0.00 */
    --user-balance-amount-size: 2.2rem;
    --user-balance-amount-margin-bottom: 1.7rem;
    --user-balance-amount-shift-x: 0rem;

    /* кнопка */
    --user-balance-button-width: 100%;
    --user-balance-button-height: 4rem;
    --user-balance-button-radius: 999rem;
    --user-balance-button-font-size: 1.2rem;
    --user-balance-button-letter-spacing: 0.08em;
    --user-balance-button-shift-x: 0rem;
    --user-balance-items-gap: var(--user-balance-amount-margin-bottom);

    width: var(--user-balance-width);
    margin-top: var(--user-balance-margin-top);
    margin-bottom: var(--user-balance-margin-bottom);
    margin-left: var(--user-balance-margin-left);
    margin-right: var(--user-balance-margin-right);
    transform: translateX(var(--user-balance-shift-x));
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--user-balance-items-gap);
}

.user-balance-summary__amount {
    margin-bottom: 0;
    align-self: center;
    font-size: var(--user-balance-amount-size);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #2f2f2f;
    transform: translateX(var(--user-balance-amount-shift-x));
}

.user-balance-summary__button {
    width: var(--user-balance-button-width);
    min-height: var(--user-balance-button-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.8rem;
    border: 0;
    border-radius: var(--user-balance-button-radius);
    background: #2f2f2f;
    color: #ffffff;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    cursor: pointer;
    appearance: none;
    transform: translateX(var(--user-balance-button-shift-x));
    transition: var(--lazal-hover-transition);
}

.user-balance-summary__button:hover,
.user-balance-summary__button:focus-visible {
    filter: var(--lazal-hover-filter);
    outline: none;
}

.network-content-area {
    margin-left: 21rem;
}

.network-content-title {
    text-align: center;
}

.network-feed-page .network-content-title {
    margin-bottom: 8.2rem;
}

.network-followed-experts-section {
    margin-bottom: 8.2rem;
}

.network-content-title h2 {
    font-size: 2.2rem;
    color: #2f2f2f;
    margin: 0;
    text-align: center;
}

.network-empty {
    margin: 0 auto;
    color: #2f2f2f;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    font-stretch: normal;
}

.experts-page {
    padding-bottom: 0rem;
}

.experts-page__intro {
    max-width: 60rem;
    margin: 4rem auto 0;
}

.experts-page__intro p {
    margin: 0 0 1.5rem;
    color: #2f2f2f;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.7rem;
    line-height: 1.6;
    text-align: center;
}

.experts-page__intro p:last-child {
    margin-bottom: 0;
}

.experts-page__leaderboard {
    width: 60rem;
    margin: 8.2rem auto 0;
    --experts-left-offset: 0rem;
    --experts-avatar-size: 4.8rem;
    --experts-avatar-name-gap: 0.5rem;
    --experts-name-nickname-gap: 2rem;
    --experts-nickname-width: 14rem;
    --experts-nickname-rating-gap: 3rem;
    --experts-rating-width: 10rem;
    --experts-rating-accuracy-gap: 1.4rem;
    --experts-accuracy-width: 5.8rem;
}

.experts-page__placeholder {
    text-align: center;
}

.experts-page__placeholder p {
    margin: 0;
    color: #2f2f2f;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    font-stretch: normal;
}

.experts-page__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.experts-page__row {
    display: grid;
    grid-template-columns:
        var(--experts-left-offset)
        var(--experts-avatar-size)
        var(--experts-avatar-name-gap)
        minmax(0, 1fr)
        var(--experts-name-nickname-gap)
        var(--experts-nickname-width)
        var(--experts-nickname-rating-gap)
        var(--experts-rating-width)
        var(--experts-rating-accuracy-gap)
        var(--experts-accuracy-width);
    align-items: center;
    column-gap: 0;
}

.experts-page__avatar {
    grid-column: 2;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.experts-page__identity {
    grid-column: 4;
    min-width: 0;
}

.experts-page__nickname {
    grid-column: 6;
    min-width: 0;
}

.experts-page__nickname-text {
    display: block;
    color: #666;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.experts-page__name {
    margin: 0;
    color: #2f2f2f;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.7rem;
    line-height: 1.25;
    white-space: nowrap;
}

.experts-page__name-link {
    color: #2f2f2f;
    text-decoration: none;
    filter: none;
    text-shadow: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.experts-page__name-link:hover,
.experts-page__name-link:focus-visible {
    color: #000;
    text-shadow: var(--lazal-text-link-hover-shadow);
    outline: none;
}

.experts-page__metric {
    min-width: 0;
    text-align: center;
}

.experts-page__metric--rating {
    grid-column: 8;
}

.experts-page__metric--accuracy {
    grid-column: 10;
}

.experts-page__metric-value {
    display: block;
    color: #2f2f2f;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
}

.experts-page__metric--rating .experts-page__metric-value {
    color: var(--lazal-rating-positive);
}

.experts-page__metric--accuracy .experts-page__metric-value {
    color: #2f2f2f;
}

.experts-page__loader {
    height: 3rem;
    margin-top: 2rem;
}

.experts-page__loader[aria-hidden="true"] {
    display: none;
}

.experts-page__loader.is-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.experts-page__loader.is-loading::after {
    content: '';
    width: 2rem;
    height: 2rem;
    border: 0.2rem solid rgba(102, 191, 255, 0.3);
    border-top-color: rgba(102, 191, 255, 0.9);
    border-radius: 50%;
    animation: expertsLoaderSpin 0.7s linear infinite;
}

@keyframes expertsLoaderSpin {
    to { transform: rotate(360deg); }
}

.experts-page__error-notice {
    margin-top: 2rem;
    color: #666;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

.network-content-feed {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-bottom: 9.5rem;
}

.network-prediction-list {
    display: block;
}

.network-prediction-list .network-content-feed:last-child {
    padding-bottom: 0;
}

.network-content-feed.network-feed-card-is-removing {
    opacity: 0;
    transform: translateY(-0.8rem);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.network-feed-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 4rem;
}

.network-feed-loader[aria-hidden="true"] {
    display: none;
}

.network-feed-loader.is-loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: #2f2f2f;
    border-radius: 50%;
    animation: profileFeedSpin 0.7s linear infinite;
}

.network-feed-error-notice {
    margin: 0 auto 2.4rem;
    max-width: 48rem;
    padding: 1.6rem 2rem;
    border: 1px solid rgba(47, 47, 47, 0.12);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
    box-shadow: 0 1.2rem 3rem rgba(47, 47, 47, 0.05);
}

@media (prefers-reduced-motion: reduce) {
    .network-content-feed.network-feed-card-is-removing {
        transition: none;
        transform: none;
    }
}

.network-post {
    padding: 0 5rem;
}

.network-post-header {
    display: flex;
    justify-content: center;
}

.network-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.network-post-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.network-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.network-post-name {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 1.7rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.network-post-name-link {
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.network-post-name-link:hover,
.network-post-name-link:focus-visible {
    color: #000;
    text-shadow: var(--lazal-text-link-hover-shadow);
    outline: none;
}

.network-post-date {
    margin: 0;
    display: block;
    font-family: 'Noto Sans', sans-serif;
    color: #666;
    font-weight: 500;
    font-stretch: 72.5%;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.network-post-body {
    padding-top: 2.5rem;
}

.network-post-meta {
    text-align: center;
}

.network-post-title {
    margin: 0;
    font-family: 'Noto Serif', serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.network-post-title-time {
    margin-top: 1rem;
    margin-bottom: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.network-post-match-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6.5rem;
    padding-top: 6rem;
}

.network-post-team {
    width: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.network-post-team img {
    width: 10rem;
    height: 10rem;
    max-width: 10rem;
    max-height: 10rem;
    object-fit: contain;
    object-position: center center;
    flex-shrink: 0;
}

.network-post-team span {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.network-post-center {
    --network-post-center-width: 9rem;
    --network-post-center-height: 10rem;
    --network-post-center-y: 0rem;
    --network-post-vs-size: 3.7rem;
    --network-post-score-main-size: 3rem;
    --network-post-score-half-size: 2rem;
    --network-post-score-lines-gap: 0.7rem;

    width: var(--network-post-center-width);
    min-width: var(--network-post-center-width);
    height: var(--network-post-center-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateY(var(--network-post-center-y));
    transition: opacity 0.35s ease;
}

.network-post-action {
    transition: opacity 0.35s ease;
}

.network-post-prediction {
    transition: opacity 0.35s ease;
}

.card-fading {
    opacity: 0;
}

.network-post-vs {
    white-space: nowrap;
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: var(--network-post-vs-size);
    line-height: 1.6;
    letter-spacing: 0;
}

.network-post-details {
    padding-top: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.network-post-odds {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 1.7rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.network-post-odds span {
    font-weight: 500;
}

.network-post-prediction {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 1.7rem;
    line-height: 1.6;
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.network-post-forecast {
    --network-post-forecast-gap: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--network-post-forecast-gap);
}

.network-post-prediction-label {
    font-weight: 400;
}

.network-post-prediction-value {
    margin-top: 0.1rem;
}

.network-post-forecast-value {
    margin-top: 0;
}

.network-post-prediction-value span {
    font-weight: 500;
}

.network-post-action {
    margin-top: 1.5rem;
}

.network-post-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 5rem;
    border: 0;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    color: #ffffff;
    background-color: #2f2f2f;
    border-radius: 5rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--lazal-hover-transition);
}

.network-post-buy-btn:hover,
.network-post-buy-btn:focus-visible {
    filter: var(--lazal-hover-filter);
    outline: none;
}

.network-post-buy-btn[disabled] {
    cursor: default;
    filter: none;
    opacity: 0.78;
}

.network-post-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--network-post-score-lines-gap);
    width: 100%;
    text-align: center;
}

.network-post-score-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.network-post-score-value {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.network-post-score-value--match {
    font-size: var(--network-post-score-main-size);
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: 0;
}

.network-post-score-value--half {
    font-size: var(--network-post-score-half-size);
    font-weight: 400;
    color: #666;
    letter-spacing: 0;
}


.network-post-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #e07b00;
    letter-spacing: 0;
}

.network-post-live-badge::before {
    content: '';
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #e07b00;
    animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.network-post-result {
    display: inline-flex;
    align-items: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
}

.network-post-result--won   { color: var(--lazal-result-won); }
.network-post-result--lost  { color: var(--lazal-result-lost); }
.network-post-result--push  { color: #888; }
.network-post-result--pending { color: #888; }

.network-post-result-img {
    display: block;
    height: 5rem;
    width: auto;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 3rem;
    padding-bottom: 4rem;
    width: 100%;
}

.profile-main-avatar {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.profile-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-self: center;
    margin-top: 0;
    margin-right: auto;
}

.profile-display-name {
    font-family: 'Noto Sans', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0;
    line-height: 1.1;
}

/* Profile header nickname and presence text. */
.profile-nickname {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    line-height: 1.25;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.profile-status {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.profile-status .profile-status-indicator {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.35rem;
    background-color: #ccc;
}

.profile-status.online .profile-status-indicator {
    background-color: var(--lazal-positive);
}

.profile-status.offline .profile-status-indicator {
    background-color: var(--lazal-negative);
}

.profile-status .profile-status-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    color: #2f2f2f;
    line-height: 1.2;
}

.profile-actions-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.profile-container .profile-subscribe-btn {
    width: 16rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    color: #ffffff;
    background-color: #2f2f2f;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--lazal-hover-transition);
}

.profile-container .profile-subscribe-btn:hover,
.profile-container .profile-subscribe-btn:focus-visible {
    filter: var(--lazal-hover-filter);
    outline: none;
}

.profile-sub-count-num {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #2f2f2f;
    line-height: 1;
    padding-top: 0.7rem;
}

.profile-sub-count-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    color: #666;
}

[data-profile-subscription-root] [data-profile-subscribe-label],
[data-profile-subscription-root] [data-profile-subscriber-count] {
    transition: opacity 0.16s var(--ease-out);
}

[data-profile-subscription-root] .is-profile-subscription-fading {
    opacity: 0;
}

/* --- Profile rating summary --- */
.profile-rating-summary {
    --profile-rating-margin-top: 0;
    --profile-rating-margin-bottom: 2.4rem;
    --profile-rating-header-margin-bottom: 2rem;
    --profile-rating-header-gap: 0.8rem;
    --profile-rating-headline-size: 1.4rem;
    --profile-rating-headline-gap: 0.35rem;
    --profile-rating-headline-label-size: 1.3rem;
    --profile-rating-grid-gap: 5.2rem;
    --profile-rating-item-width: 9.6rem;
    --profile-rating-item-padding-y: 1.4rem;
    --profile-rating-item-padding-x: 1.2rem;
    --profile-rating-value-size: 2.2rem;
    --profile-rating-label-size: 1.3rem;
    --profile-rating-border-color: rgba(47, 47, 47, 0.14);

    margin: var(--profile-rating-margin-top) 0 var(--profile-rating-margin-bottom);
    text-align: center;
}

.profile-rating-summary__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--profile-rating-header-gap);
    margin-bottom: var(--profile-rating-header-margin-bottom);
    line-height: 1;
    white-space: nowrap;
}

.profile-rating-summary__headline {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--profile-rating-headline-gap);
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--profile-rating-headline-size);
    line-height: 1;
    color: #2f2f2f;
    white-space: nowrap;
}

.profile-rating-summary__headline-label {
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f2f2f;
    font-size: var(--profile-rating-headline-label-size);
}

.profile-rating-summary__headline-value {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: var(--profile-rating-headline-label-size);
}

[data-profile-rating-total][data-rating-tone="positive"] { color: var(--lazal-rating-positive); }
[data-profile-rating-total][data-rating-tone="negative"] { color: var(--lazal-rating-negative); }
[data-profile-rating-total][data-rating-tone="neutral"]  { color: var(--lazal-rating-neutral); }


.profile-rating-summary__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--profile-rating-grid-gap);
}

.profile-rating-summary__item {
    width: var(--profile-rating-item-width);
    padding: var(--profile-rating-item-padding-y) var(--profile-rating-item-padding-x);
    text-align: center;
    box-sizing: border-box;
}

.profile-rating-summary__value {
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--profile-rating-value-size);
    line-height: 1;
    font-weight: 500;
    color: #2f2f2f;
}

.profile-rating-summary__label {
    margin-top: 3.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--profile-rating-label-size);
    line-height: 1.2;
    font-weight: 400;
    color: #666;
}

.statistics-page {
    padding-bottom: 0rem;
}

.statistics-intro {
    max-width: 60rem;
    margin: 8rem auto 0;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    color: #2f2f2f;
}

.statistics-intro p {
    margin-bottom: 1.5rem;
    text-align: center;
}

.statistics-intro__rating-principles {
    margin: 4rem 0;
}

.statistics-intro__rating-principles p {
    margin-bottom: 1.4rem;
    font-size: 1.7rem;
    font-weight: 500;
}

.statistics-intro__rating-principles p:last-child {
    margin-bottom: 0;
}

.statistics-intro p:last-child {
    margin-bottom: 0;
}

.statistics-summary-list {
    display: flex;
    flex-direction: column;
    gap: 7.7rem;
    margin-top: 8.5rem;
}

.statistics-summary-block {
    --statistics-rating-header-gap: 0.8rem;
    --statistics-rating-header-margin-bottom: 2rem;
    --statistics-rating-headline-label-size: 1.4rem;
    --statistics-rating-grid-gap: 3.2rem;
    --statistics-rating-item-width: 8.8rem;
    --statistics-rating-item-padding-y: 1.4rem;
    --statistics-rating-item-padding-x: 1rem;
    --statistics-rating-value-size: 2.2rem;
    --statistics-rating-label-size: 1.3rem;

    text-align: center;
}

.statistics-summary-block__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--statistics-rating-header-gap);
    margin-bottom: var(--statistics-rating-header-margin-bottom);
    font-family: 'Noto Sans', sans-serif;
    line-height: 1;
    white-space: nowrap;
}

.statistics-summary-block__headline-label {
    font-size: var(--statistics-rating-headline-label-size);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.statistics-summary-block__headline-value {
    font-size: var(--statistics-rating-headline-label-size);
    font-weight: 500;
    letter-spacing: 2px;
    color: #000000;
}

.statistics-summary-block__headline-value[data-rating-tone="positive"] { color: var(--lazal-rating-positive); }
.statistics-summary-block__headline-value[data-rating-tone="negative"] { color: var(--lazal-rating-negative); }
.statistics-summary-block__headline-value[data-rating-tone="neutral"]  { color: var(--lazal-rating-neutral); }

.statistics-summary-block__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--statistics-rating-grid-gap);
}

.statistics-summary-block__item {
    width: var(--statistics-rating-item-width);
    padding: var(--statistics-rating-item-padding-y) var(--statistics-rating-item-padding-x);
    text-align: center;
    box-sizing: border-box;
}

.statistics-summary-block__value {
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--statistics-rating-value-size);
    line-height: 1;
    font-weight: 500;
    color: #2f2f2f;
}

.statistics-summary-block__label {
    margin-top: 3.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--statistics-rating-label-size);
    line-height: 1.2;
    font-weight: 400;
    color: #666;
}

.profile-tabs {
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-top: 7.2rem;
    margin-bottom: 8.2rem;
}

.profile-tabs .profile-tab-item {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: var(--lazal-button-text-font-weight);
    color: #2f2f2f;
    cursor: pointer;
    transition: var(--lazal-hover-transition);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none;
    border: none;
}

.profile-tabs .profile-tab-item:hover,
.profile-tabs .profile-tab-item.active {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    font-weight: var(--lazal-active-text-font-weight);
}

.profile-tabs .profile-tab-item:focus-visible {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    outline: var(--lazal-focus-outline);
    outline-offset: var(--lazal-focus-outline-offset);
}

.profile-tabs .profile-tab-item-static {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: var(--lazal-button-text-font-weight);
    color: #2f2f2f;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: default;
}

.profile-tabs .profile-tab-item-static.active {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    font-weight: var(--lazal-active-text-font-weight);
}

.profile-container .profile-tab-pane {
    display: none;
}

.profile-container .profile-tab-pane.active {
    display: block;
    animation: fadeIn 0.32s var(--ease-out);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-container .profile-empty-feed-stub {
    color: #2f2f2f;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    font-stretch: normal;
}

.profile-feed-error-notice,
.publish-runtime-notice {
    margin: 0 auto 2.4rem;
    max-width: 48rem;
    padding: 1.6rem 2rem;
    border: 1px solid rgba(47, 47, 47, 0.12);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
    box-shadow: 0 1.2rem 3rem rgba(47, 47, 47, 0.05);
}

.profile-feed-error-notice {
    margin-top: 1rem;
}

.profile-prediction-list {
    display: block;
}

.profile-prediction-list .network-content-feed:last-child {
    padding-bottom: 0;
}

.profile-prediction-card {
    border: 1px dashed #eee;
    border-radius: 2rem;
    padding: 2rem 2.4rem;
}

.profile-prediction-meta,
.profile-prediction-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.profile-prediction-meta {
    margin-bottom: 1.6rem;
}

.profile-prediction-league,
.profile-prediction-time,
.profile-prediction-selection,
.profile-prediction-odds {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.2rem;
    color: #666;
}

.profile-prediction-match {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.6rem;
    color: #2f2f2f;
}

.profile-prediction-separator {
    color: #666;
}

.profile-feed-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 4rem;
}

.profile-feed-loader[aria-hidden="true"] {
    display: none;
}

.profile-feed-loader.is-loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: #2f2f2f;
    border-radius: 50%;
    animation: profileFeedSpin 0.7s linear infinite;
}

@keyframes profileFeedSpin {
    to { transform: rotate(360deg); }
}

.publish-submit-btn {
    min-width: 18rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
    background-color: #2f2f2f;
    color: #fff;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    transition: var(--lazal-hover-transition);
}

.publish-submit-btn:hover,
.publish-submit-btn:focus-visible {
    filter: var(--lazal-hover-filter);
    outline: none;
}

.publish-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    align-items: flex-start;
}

.publish-transition-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 4;
}

.publish-line-stage {
    --publish-line-offset: 18.3rem;
    --publish-line-league-gap: 1rem;
    --publish-line-star-width: 2rem;
    --publish-line-flag-size: 2rem;
    --publish-line-league-font-size: 1.5rem;
    --publish-line-item-gap: 0.8rem;
    --publish-line-time-width: 8.2rem;
    --publish-line-time-gap: 1.6rem;
    --publish-line-team-gap: 0.8rem;
    --publish-line-logo-size: 2.8rem;
    --publish-line-team-font-size: 1.5rem;
    --publish-line-time-font-size: 1.2rem;
    --publish-line-team-hover-color: #000000;
    --publish-line-team-hover-shadow: 0 0 12px rgba(102, 191, 255, 0.55);
    width: calc(100% - var(--publish-line-offset));
    max-width: none;
    margin: 0 0 0 var(--publish-line-offset);
    padding-left: 0;
}

.publish-match-stage-shell,
.publish-compose-stage {
    width: 68rem;
    max-width: 100%;
    margin: 0;
    align-self: center;
}

.publish-line-stage,
.publish-match-stage-shell,
.publish-compose-stage {
    position: relative;
    z-index: 1;
}

.publish-stage-is-entering,
.publish-stage-is-leaving {
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .publish-transition-overlay {
        transition: opacity 0.28s var(--ease-out), visibility 0s linear 0.28s;
        will-change: opacity;
    }

    .publish-flow.is-transitioning .publish-transition-overlay {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .publish-flow.is-revealing .publish-transition-overlay {
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.1s, 0.38s;
    }

    .publish-line-stage,
    .publish-match-stage-shell,
    .publish-compose-stage {
        transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
        will-change: opacity, transform;
    }

    .publish-stage-is-entering {
        transform: translateY(8px);
    }

    .publish-stage-is-entering,
    .publish-stage-is-leaving {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .publish-transition-overlay,
    .publish-line-stage,
    .publish-match-stage-shell,
    .publish-compose-stage {
        transition: none !important;
    }
}

.publish-line-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.publish-line-filter {
    --publish-line-filter-margin-top: 0rem;
    --publish-line-filter-margin-bottom: 2.5rem;
    --publish-line-filter-shift-x: 0rem;
    --publish-line-filter-gap: 2rem;
    --publish-line-filter-label-size: 1.5rem;
    --publish-line-filter-label-weight: 400;
    --publish-line-filter-label-color: #2f2f2f;
    --publish-line-filter-label-shift-x: 0rem;
    --publish-line-filter-label-shift-y: 0rem;
    --publish-line-filter-options-gap: 2rem;
    --publish-line-filter-option-size: 1.5rem;
    --publish-line-filter-option-weight: 400;
    --publish-line-filter-option-color: #2f2f2f;
    --publish-line-filter-option-padding-x: 0rem;
    --publish-line-filter-option-padding-y: 0rem;
    --publish-line-filter-option-shift-y: 0rem;
    --publish-line-filter-active-weight: 400;
    --publish-line-filter-glow: var(--lazal-hover-filter);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--publish-line-filter-gap);
    margin-top: var(--publish-line-filter-margin-top);
    margin-bottom: var(--publish-line-filter-margin-bottom);
    white-space: nowrap;
    transform: translateX(var(--publish-line-filter-shift-x));
}

[data-publish-line-filter][hidden],
.publish-line-filter[hidden] {
    display: none !important;
}

.publish-line-filter__label {
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--publish-line-filter-label-size);
    font-weight: var(--publish-line-filter-label-weight);
    line-height: 1.6;
    letter-spacing: normal;
    text-transform: none;
    color: var(--publish-line-filter-label-color);
    transform: translate(
        var(--publish-line-filter-label-shift-x),
        var(--publish-line-filter-label-shift-y)
    );
}

.publish-line-filter__options {
    display: inline-flex;
    align-items: center;
    gap: var(--publish-line-filter-options-gap);
}

.publish-line-filter__option {
    appearance: none;
    display: inline-block;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--publish-line-filter-option-size);
    font-weight: var(--publish-line-filter-option-weight);
    line-height: 1.6;
    letter-spacing: normal;
    text-transform: none;
    color: var(--publish-line-filter-option-color);
    padding:
        var(--publish-line-filter-option-padding-y)
        var(--publish-line-filter-option-padding-x);
    text-decoration: none;
    transform: translateY(var(--publish-line-filter-option-shift-y));
    -webkit-tap-highlight-color: transparent;
    transition: var(--lazal-hover-transition);
}

.publish-line-filter .publish-line-filter__option:hover,
.publish-line-filter .publish-line-filter__option.is-active {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    font-weight: var(--lazal-active-text-font-weight);
}

.publish-line-filter .publish-line-filter__option:focus-visible {
    color: var(--lazal-active-text-color);
    filter: var(--lazal-hover-filter);
    outline: var(--lazal-focus-outline);
    outline-offset: var(--lazal-focus-outline-offset);
}

.publish-line-filter__option.is-active {
    color: var(--lazal-active-text-color);
    font-weight: var(--lazal-active-text-font-weight);
}

.network-sidebar-link,
.profile-tabs .profile-tab-item,
.profile-tabs .profile-tab-item-static,
.publish-line-filter .publish-line-filter__option {
    color: #2f2f2f;
    font-weight: 400;
}

.network-sidebar-link:hover,
.network-sidebar-link.active,
.profile-tabs .profile-tab-item:hover,
.profile-tabs .profile-tab-item.active,
.profile-tabs .profile-tab-item-static.active,
.publish-line-filter .publish-line-filter__option:hover,
.publish-line-filter .publish-line-filter__option.is-active {
    color: #000;
    filter: var(--lazal-hover-filter);
    font-weight: 400;
}

.network-sidebar-link:focus-visible,
.profile-tabs .profile-tab-item:focus-visible,
.publish-line-filter .publish-line-filter__option:focus-visible {
    color: #000;
    filter: var(--lazal-hover-filter);
    outline: var(--lazal-focus-outline);
    outline-offset: var(--lazal-focus-outline-offset);
}

.publish-line-list,
.publish-load-more-indicator {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.publish-line-stage.is-window-switching .publish-line-list,
.publish-line-stage.is-window-switching .publish-load-more-indicator {
    opacity: 0;
}

.publish-load-more-indicator {
    display: flex;
    justify-content: center;
    padding-top: 2.4rem;
    padding-bottom: 1rem;
    --publish-loader-left: -18.2rem;
    --publish-loader-top: 1rem;
}

.publish-load-more-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    transition: filter 0.25s ease, color 0.25s ease;
    position: relative;
    left: var(--publish-loader-left);
    top: var(--publish-loader-top);
}

.publish-load-more-indicator.is-loading .publish-load-more-text {
    color: #2f2f2f;
    filter: drop-shadow(0 0 12px rgba(102, 191, 255, 0.45));
}

.publish-load-more-indicator.is-finished .publish-load-more-text {
    color: #888;
}

@keyframes lineItemEnter {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineItemLeave {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(5px); }
}

.publish-line-item {
    display: flex;
    flex-direction: column;
    gap: var(--publish-line-item-gap);
    width: 100%;
    max-width: 100%;
    content-visibility: auto;
    contain: layout style paint;
    contain-intrinsic-width: 7.6rem;
    contain-intrinsic-height: auto 11rem;
}

.publish-line-item.is-entering {
    animation: lineItemEnter 0.32s var(--ease-out) forwards;
}

.publish-line-item.is-removing {
    animation: lineItemLeave 0.22s var(--ease-out) forwards;
    pointer-events: none;
}

.publish-line-item.is-render-warmed {
    content-visibility: visible;
}

.publish-league-row {
    display: flex;
    align-items: center;
    gap: var(--publish-line-league-gap);
    justify-content: flex-start;
    width: max-content;
    white-space: nowrap;
}

.publish-league-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--publish-line-star-width);
    padding: 0;
    border: 0;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    color: #888;
    background: transparent;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.25s ease;
}

.publish-league-star.active,
.publish-league-star:hover,
.publish-league-star:focus-visible {
    color: #2f2f2f;
    background: transparent;
    outline: none;
}

.publish-league-flag {
    width: var(--publish-line-flag-size);
    height: calc(var(--publish-line-flag-size) * 0.6667);
    object-fit: cover;
    border: 0.1rem solid #666666;
    border-radius: 0.2rem;
}

.publish-league-title {
    font-family: 'Noto Serif', serif;
    font-size: var(--publish-line-league-font-size);
    color: #2f2f2f;
    white-space: nowrap;
    font-weight: 500;
}

.publish-match-row {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: var(--publish-line-time-width) minmax(0, 1fr);
    align-items: center;
    justify-content: flex-start;
    column-gap: var(--publish-line-time-gap);
    row-gap: 0.45rem;
    padding: 0;
    text-align: left;
    transition: none;
    margin: 0;
}

.publish-match-row-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--publish-line-team-gap);
    width: max-content;
    grid-column: 2;
}

.publish-match-row-time {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    width: 100%;
    text-align: center;
}

.publish-match-row-line--home {
    grid-row: 1;
}

.publish-match-row-line--away {
    grid-row: 2;
}

.publish-match-row:hover,
.publish-match-row:focus-visible,
.publish-match-row.active {
    outline: none;
}

.publish-match-row-time,
.publish-match-card-league,
.publish-match-card-time,
.publish-market-card-period,
.publish-compose-league,
.publish-compose-time {
    font-family: 'Noto Sans', sans-serif;
    color: #666;
    font-weight: 400;
    font-stretch: 72.5%;
    white-space: nowrap;
}

.publish-match-row-date,
.publish-match-row-clock {
    font-size: var(--publish-line-time-font-size);
    line-height: 1.4;
}

.publish-match-card-league {
    margin: 0;
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    line-height: 1.6;
    color: #2f2f2f;
    white-space: normal;
    letter-spacing: 0;
}

.publish-match-card-time {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2f2f2f;
    white-space: normal;
    letter-spacing: 0;
}

.publish-compose-league {
    margin: 2.5rem 0 0;
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    line-height: 1.6;
    color: #2f2f2f;
    white-space: normal;
    letter-spacing: 0;
}

.publish-compose-time {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2f2f2f;
    white-space: normal;
    letter-spacing: 0;
}

.publish-match-row-logo {
    width: var(--publish-line-logo-size);
    height: var(--publish-line-logo-size);
    object-fit: contain;
    object-position: center;
    justify-self: center;
    flex: 0 0 auto;
}

.publish-match-row-team {
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--publish-line-team-font-size);
    color: #2f2f2f;
    white-space: nowrap;
}

.publish-market-card-title,
.publish-compose-choice {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    color: #2f2f2f;
    white-space: nowrap;
}

.publish-match-row:hover .publish-match-row-team,
.publish-match-row:focus-visible .publish-match-row-team,
.publish-match-row.active .publish-match-row-team {
    color: var(--publish-line-team-hover-color);
    text-shadow: var(--publish-line-team-hover-shadow);
}

.publish-match-stage {
    display: none;
}

.publish-match-stage.active {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeIn 0.32s var(--ease-out);
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.publish-match-stage,
.publish-compose-stage {
    --publish-market-catalog-width: 62rem;
    --publish-market-catalog-gap: 2.6rem;
    --publish-market-card-gap: 3rem;
    --publish-market-card-grid-gap-row: 1rem;
    --publish-market-card-grid-gap-column: 2rem;
    --publish-market-card-grid-gap-column-3: 3rem;
    --publish-market-card-option-width-2: 18rem;
    --publish-market-card-option-width-3: 7rem;
    --publish-market-card-option-font-size: 1.5rem;
    --publish-market-card-title-font-size: 1.5rem;
    --publish-market-card-header-gap: 0;
    --publish-market-card-option-line-height: 1.45;
    --publish-market-card-option-color: #2f2f2f;
    --publish-market-card-option-active-color: #2f2f2f;
}

.publish-match-card,
.publish-compose-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    width: 100%;
}

.publish-back-link {
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    color: #666;
    transition: filter 0.25s ease, color 0.25s ease;
    align-self: center;
    width: auto;
    text-align: center;
}

.publish-back-link:hover,
.publish-back-link:focus-visible {
    color: #2f2f2f;
    filter: var(--lazal-hover-filter);
    outline: none;
}

.publish-compose-matchup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9rem;
    padding-top: 6rem;
}

.publish-compose-team {
    width: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.publish-compose-vs {
    width: 4rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publish-compose-vs span {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 3.7rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.publish-match-card-logo {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
    object-position: center;
}

.team-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.publish-compose-logo {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}

.publish-match-card-matchup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9rem;
    padding-top: 6rem;
}

.publish-compose-team span {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    color: #2f2f2f;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    font-stretch: 72.5%;
    letter-spacing: 0;
}

.publish-match-card-team {
    width: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.publish-match-card-team span {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    color: #2f2f2f;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    font-stretch: 72.5%;
    letter-spacing: 0;
}

.publish-compose-teams span {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 2rem;
    color: #2f2f2f;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    font-stretch: 72.5%;
}

.publish-match-card-center {
    width: 4rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publish-match-card-divider {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    color: #2f2f2f;
    font-weight: 400;
    font-stretch: 72.5%;
    font-size: 3.7rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.publish-market-catalog {
    display: flex;
    flex-direction: column;
    gap: var(--publish-market-catalog-gap);
    width: 100%;
    max-width: var(--publish-market-catalog-width);
    margin: 3rem auto 0;
}

.publish-market-card {
    display: flex;
    flex-direction: column;
    gap: var(--publish-market-card-gap);
    align-items: center;
    text-align: center;
    width: 100%;
}

.publish-market-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--publish-market-card-header-gap);
}

.publish-market-card-title {
    font-size: var(--publish-market-card-title-font-size);
    line-height: 1.5;
    font-family: 'Noto Serif', serif;
    font-weight: 500;
}

.publish-market-card-grid {
    display: grid !important;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    align-items: start;
    gap: var(--publish-market-card-grid-gap-row, 1rem) var(--publish-market-card-grid-gap-column, 2rem);
    width: 100%;
    max-width: calc((var(--publish-market-card-option-width-2, 18rem) * 2) + var(--publish-market-card-grid-gap-column, 2rem));
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, var(--publish-market-card-option-width-2, 18rem)));
}

.publish-market-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, var(--publish-market-card-option-width-2, 18rem))) !important;
}

.publish-market-card-grid--3 {
    gap: var(--publish-market-card-grid-gap-row, 1rem) var(--publish-market-card-grid-gap-column-3, 2rem);
    max-width: calc((var(--publish-market-card-option-width-3, 12rem) * 3) + (var(--publish-market-card-grid-gap-column-3, 2rem) * 2));
    grid-template-columns: repeat(3, minmax(0, var(--publish-market-card-option-width-3, 12rem))) !important;
}

.publish-market-card-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--publish-market-card-option-font-size, 1.5rem);
    line-height: var(--publish-market-card-option-line-height, 1.45);
    color: var(--publish-market-card-option-color, #666);
    transition: color 0.25s ease, text-shadow 0.25s ease;
    min-width: 0;
}

.publish-market-card-option:hover,
.publish-market-card-option:focus-visible,
.publish-market-card-option.active {
    color: #000;
    text-shadow: var(--lazal-text-link-hover-shadow);
    outline: none;
}

.publish-compose-stage {
    padding-bottom: 2rem;
}

.publish-compose-screen {
    --compose-spacing-choice: 1rem;
    --compose-spacing-field: 5.5rem;
    --compose-spacing-submit: 3rem;
    --compose-odds-width: 10rem;
    --compose-odds-height: 4rem;
}

.publish-compose-choice {
    margin-top: var(--compose-spacing-choice);
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2f2f2f;
    line-height: 1.6;
    text-align: center;
}

.publish-compose-field {
    width: 100%;
    max-width: var(--compose-odds-width, 10rem);
    margin: 2rem auto 0;
}

.publish-compose-label {
    width: 100%;
    margin-top: var(--compose-spacing-field);
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2f2f2f;
    text-align: center;
}

.publish-compose-input {
    width: 100%;
    height: var(--compose-odds-height, 5rem);
    background: #2f2f2f;
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 5rem;
    padding: 0 2rem;
    outline: none;
    transition: filter 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.publish-compose-input::-webkit-inner-spin-button,
.publish-compose-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.publish-compose-input:focus {
    filter: drop-shadow(0 0 12px rgba(102, 191, 255, 0.9));
}

.publish-compose-input::placeholder {
    color: #666;
}

.publish-submit-btn {
    margin-top: var(--compose-spacing-submit);
}

.publish-empty-note {
    padding: 2rem 0 1rem;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

.publish-quota-block {
    --publish-quota-block-max-width: 61rem;
    --publish-quota-block-gap: 3rem;
    --publish-quota-title-size: 2rem;
    --publish-quota-copy-size: 1.5rem;
    --publish-quota-countdown-size: 3.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--publish-quota-block-gap);
    width: min(100%, var(--publish-quota-block-max-width));
    margin: 4rem auto 0;
    text-align: center;
    color: #2f2f2f;
}

.publish-quota-block__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--publish-quota-title-size);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.publish-quota-block__subtitle,
.publish-quota-block__hint,
.publish-quota-block__reload-note {
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--publish-quota-copy-size);
    line-height: 1.5;
    color: #2f2f2f;
}

.publish-quota-block__subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--body-size);
    font-weight: 500;
    font-stretch: 72.5%;
    line-height: 1.6;
    letter-spacing: 0;
}

.publish-quota-block__copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: var(--publish-quota-block-max-width);
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--publish-quota-copy-size);
    line-height: 1.6;
    color: #2f2f2f;
    text-align: center;
}

.publish-quota-block__copy p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.publish-quota-block__countdown {
    font-family: 'Bebas Neue', sans-serif;
    font-size: var(--publish-quota-countdown-size);
    line-height: 1;
    letter-spacing: 0.08em;
    color: #2f2f2f;
}

.header-section-logo a:focus-visible,
.header-section-language a:focus-visible,
.header-section-lazal-link:focus-visible,
.home-hero-btn:focus-visible,
.home-cta-btn:focus-visible,
.language-selection-section-item a:focus-visible,
.login-section .login-btn:focus-visible,
.username-section .username-submit-btn:focus-visible,
.network-sidebar-link:focus-visible,
.user-balance-summary__button:focus-visible,
.profile-container .profile-subscribe-btn:focus-visible,
.profile-tabs .profile-tab-item:focus-visible,
.network-post-buy-btn:focus-visible,
.publish-submit-btn:focus-visible,
.publish-back-link:focus-visible,
.publish-league-star:focus-visible,
.publish-market-card-option:focus-visible,
#scrollToTopBtn:focus-visible,
.error-page-btn:focus-visible {
    outline: var(--lazal-focus-outline);
    outline-offset: var(--lazal-focus-outline-offset);
}

/* Final unified text-link hover/current state */
.network-sidebar .network-sidebar-link,
.profile-tabs .profile-tab-item,
.profile-tabs .profile-tab-item-static,
.publish-line-filter .publish-line-filter__option {
    color: #2f2f2f;
    font-weight: 400;
    filter: none;
    text-shadow: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.network-sidebar .network-sidebar-link:hover,
.network-sidebar .network-sidebar-link:focus,
.network-sidebar .network-sidebar-link:focus-visible,
.network-sidebar .network-sidebar-link.active,
.network-sidebar .network-sidebar-link[aria-current="page"],
.profile-tabs .profile-tab-item:hover,
.profile-tabs .profile-tab-item:focus,
.profile-tabs .profile-tab-item:focus-visible,
.profile-tabs .profile-tab-item.active,
.profile-tabs .profile-tab-item[aria-selected="true"],
.profile-tabs .profile-tab-item-static:hover,
.profile-tabs .profile-tab-item-static:focus,
.profile-tabs .profile-tab-item-static:focus-visible,
.profile-tabs .profile-tab-item-static.active,
.publish-line-filter .publish-line-filter__option:hover,
.publish-line-filter .publish-line-filter__option:focus,
.publish-line-filter .publish-line-filter__option:focus-visible,
.publish-line-filter .publish-line-filter__option.is-active,
.publish-line-filter .publish-line-filter__option[aria-pressed="true"] {
    color: #000;
    filter: none;
    text-shadow: var(--lazal-text-link-hover-shadow);
    font-weight: 400;
}

.publish-line-filter .publish-line-filter__option {
    display: inline-block;
    background: transparent;
    border: 0;
    text-decoration: none;
    cursor: pointer;
}

.network-sidebar .network-sidebar-link:focus-visible,
.profile-tabs .profile-tab-item:focus-visible,
.profile-tabs .profile-tab-item-static:focus-visible,
.publish-line-filter .publish-line-filter__option:focus-visible {
    outline: var(--lazal-focus-outline);
    outline-offset: var(--lazal-focus-outline-offset);
}

#scrollToTopBtn {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 1000;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background-color: #3a3a3a;
    color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease-out), visibility 0s linear 0.28s, filter 0.25s ease, background-color 0.25s ease;
}

#scrollToTopBtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2rem;
    height: 1.2rem;
    border-top: 0.22rem solid #ffffff;
    border-left: 0.22rem solid #ffffff;
    transform: translate(-50%, -32%) rotate(45deg);
}

#scrollToTopBtn:hover,
#scrollToTopBtn:focus-visible {
    filter: var(--lazal-hover-filter);
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* ---------------------------------------------------------------------------
   404 — страница не найдена
--------------------------------------------------------------------------- */

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12rem 0 16rem;
    text-align: center;
    gap: 2rem;
}

.not-found-page {
    flex: 1 0 auto;
    align-items: center;
}

.not-found-page .network-section-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-page .error-page {
    width: 100%;
    padding: 4rem 0 6rem;
}

.error-page-code {
    font-family: 'Noto Serif', serif;
    font-size: 14rem;
    font-weight: 300;
    font-stretch: 62.5%;
    color: #2f2f2f;
    line-height: 1;
    letter-spacing: -0.5rem;
    filter: drop-shadow(0 0 3rem rgba(102, 191, 255, 0.35));
}

.error-page-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #2f2f2f;
    line-height: 1.3;
}

.error-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 5rem;
    margin-top: 2rem;
    border-radius: 5rem;
    background-color: #2f2f2f;
    color: #ffffff;
    font-family: var(--lazal-button-text-font-family);
    font-size: var(--lazal-button-text-font-size);
    font-weight: var(--lazal-button-text-font-weight);
    line-height: var(--lazal-button-text-line-height);
    letter-spacing: var(--lazal-button-text-letter-spacing);
    text-transform: var(--lazal-button-text-transform);
    text-decoration: none;
    transition: var(--lazal-hover-transition);
}

.error-page-btn:hover,
.error-page-btn:focus-visible {
    filter: var(--lazal-hover-filter);
    outline: none;
}

/* ---------------------------------------------------------------------------
   Statistics — placeholder pane (profile tabs)
--------------------------------------------------------------------------- */

.profile-stats-placeholder {
    padding: 2rem 0;
}

.profile-stats-placeholder__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #2f2f2f;
    margin-bottom: 1rem;
}

.profile-stats-placeholder__text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* ---------------------------------------------------------------------------
   Publish success - new prediction card fade-in
--------------------------------------------------------------------------- */

@keyframes lazal-publish-new-card-enter {
    from {
        opacity: 0;
        transform: translateY(-0.8rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.is-publish-new-card {
    animation: lazal-publish-new-card-enter 0.45s var(--ease-out) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .is-publish-new-card {
        animation: none;
    }

    [data-profile-subscription-root] [data-profile-subscribe-label],
    [data-profile-subscription-root] [data-profile-subscriber-count] {
        transition: none !important;
    }
}
