:root {
    --background: #f7f8fa;
    --surface: #ffffff;
    --surface-secondary: #f3f4f6;
    --text: #111722;
    --text-muted: #586070;
    --border: #dde1e7;
    --accent: #ef1d25;
    --accent-soft: #fff2f3;
    --header: #07131d;
    --header-text: #ffffff;
    --focus: #1f6feb;
    --success: #18794e;
    --warning: #9a6700;
    color-scheme: light;
}

:root[data-theme="dark"] {
    --background: #0f1115;
    --surface: #171a20;
    --surface-secondary: #20242c;
    --text: #f0f3f7;
    --text-muted: #a8b0bd;
    --border: #303640;
    --accent: #ff4d55;
    --accent-soft: #331b1f;
    --header: #090a0d;
    --header-text: #ffffff;
    --focus: #7bb1ff;
    --success: #56d18f;
    --warning: #e3b341;
    color-scheme: dark;
}

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

html {
    min-width: 320px;
    background: var(--background);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--background);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
}

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

a:hover {
    color: var(--accent);
}

img,
iframe,
video {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
    color: var(--text);
}

input,
select,
textarea {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

button,
.button,
input[type="submit"] {
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    filter: brightness(.96);
}

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

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

.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 20;
    transform: translateY(-150%);
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
}

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

.site-header {
    background: var(--header);
    color: var(--header-text);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.seoAdWrapper {
    background: var(--header);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.seoTop {
    color: rgba(255, 255, 255, .82);
    display: grid;
}

.seoTop__content {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    overflow-x: auto;
    position: relative;
    scrollbar-width: none;
}

.seoTop__content::-webkit-scrollbar {
    display: none;
}

.seoTop h1,
.seoTop p {
    margin: 0;
    padding: 7px 0;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
}

.site-header__inner {
    width: min(1240px, calc(100% - 48px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: grid;
    flex: 0 0 auto;
    line-height: 1.1;
}

.brand__name {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.brand__name span,
.brand em {
    color: var(--accent);
}

.primary-nav,
.mobile-menu,
.sidebar-nav,
.site-footer nav {
    display: flex;
}

.primary-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: 18px;
}

.primary-nav a,
.mobile-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.primary-nav a:hover,
.mobile-menu a:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
}

.search-toggle,
.theme-toggle,
.icon-button {
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
}

.search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.icon-button,
.theme-toggle {
    width: 42px;
    min-width: 42px;
    display: inline-grid;
    place-items: center;
}

.theme-toggle {
    width: 42px;
    min-width: 42px;
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    display: block;
}

.theme-toggle .theme-toggle__sun,
:root[data-theme="dark"] .theme-toggle .theme-toggle__moon {
    display: none;
}

:root[data-theme="dark"] .theme-toggle .theme-toggle__sun {
    display: block;
}

.user-dropdown {
    position: relative;
}

.user-toggle {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
}

.user-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 30;
    width: 280px;
    max-width: calc(100vw - 20px);
    display: none;
    padding: 14px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.user-dropdown.is-open .user-menu-panel {
    display: block;
}

.head-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.head-user__photo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.head-user__name {
    min-width: 0;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.head-user-nav {
    display: grid;
    gap: 2px;
    padding: 10px 0;
}

.head-user-nav a,
.head-user-footer a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 8px;
    border-radius: 6px;
    color: var(--text);
}

.head-user-nav a:hover,
.head-user-footer a:hover {
    background: var(--surface-secondary);
    color: var(--accent);
}

.head-user-footer {
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.head-user-footer--links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.head-login-form {
    display: grid;
    gap: 8px;
}

.head-login-form label {
    color: var(--text-muted);
    font-size: 13px;
}

.head-login-form input,
.head-login-form button {
    min-height: 38px;
}

.header-search {
    display: none;
    position: absolute;
    right: max(24px, calc((100vw - 1240px) / 2));
    top: 76px;
    z-index: 12;
    width: 320px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: var(--header);
}

.header-search.is-open {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-search input[type="search"] {
    min-height: 38px;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, .68);
}

.header-search button {
    min-height: 38px;
    padding-inline: 12px;
}

.menu-toggle {
    display: none;
}

.mobile-menu {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 8px;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--header);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mobile-menu[hidden] {
    display: none !important;
}

.page-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 32px;
}

.layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    padding-top: 36px;
}

.layout__content,
.broadcasts,
.static-page,
.form-page,
.message-box,
.search-page,
.profile-page,
.pm-page {
    min-width: 0;
}

.speedbar,
#dle-speedbar {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.sidebar-block {
    padding: 22px 16px;
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
}

.sidebar-block + .sidebar-block {
    border-radius: 0;
}

.sidebar-block:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 6px 6px;
}

.sidebar-block h2 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
}

.sidebar-nav {
    flex-direction: column;
    gap: 0;
}

.sidebar-nav a {
    display: block;
    padding: 8px 0;
    color: var(--text);
    font-size: 14px;
}

.sidebar-nav a:hover {
    color: var(--accent);
}

.sidebar-nav a.is-active {
    color: var(--accent);
    font-weight: 900;
}

.sidebar-toggle {
    min-height: 34px;
    width: 100%;
    margin-top: 10px;
    padding: 6px 10px;
    border-color: var(--border);
    background: var(--surface-secondary);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.sidebar-toggle:hover {
    color: var(--accent);
    filter: none;
}

.page-heading {
    padding: 28px 0 24px;
}

.page-heading h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.15;
}

.page-heading p {
    max-width: 760px;
    margin: 0;
    color: var(--text-muted);
}

.broadcasts {
    background: transparent;
    border: 0;
    border-radius: 0;
}

.broadcast-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 0;
    margin: 0 0 38px;
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 0;
}

.broadcast-tabs .nav-link {
    min-height: 76px;
    display: grid;
    place-items: center;
    padding: 0 18px;
    border-bottom: 3px solid transparent;
    color: var(--text);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.broadcast-tabs .nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.broadcast-tabs .is-live {
    display: flex;
    justify-content: center;
}

.broadcast-tabs .is-live::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 9px;
    display: inline-block;
    border-radius: 50%;
    background: var(--accent);
}

.broadcast-panels {
    padding: 0;
}

.sport-group + .sport-group {
    margin-top: 28px;
}

.sport-group__title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 14px 20px;
    color: var(--text);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.sport-group__title span {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--text);
    font-size: 21px;
}

.tournament-group {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.tournament-group + .tournament-group {
    margin-top: 14px;
}

.tournament-group__title {
    min-height: 50px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 25px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    font-weight: 800;
}

.match-list {
    display: block;
}

.match-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    min-height: 58px;
    padding: 0;
    color: var(--text);
    border-top: 1px solid var(--border);
}

.match-row:first-child {
    border-top: 0;
}

.match-row:hover {
    background: var(--accent-soft);
    color: var(--text);
}

.match-row__time,
.match-row__title {
    min-height: 58px;
    display: flex;
    align-items: center;
}

.match-row__time {
    justify-content: center;
    color: var(--text);
    border-right: 1px solid var(--border);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.match-row__time--live {
    color: #ffffff;
    font-size: 0;
}

.match-row__time--live::before {
    content: "LIVE";
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.match-row__title {
    min-width: 0;
    padding: 0 26px;
    overflow-wrap: anywhere;
    font-size: 19px;
    font-weight: 800;
}

.empty-state {
    padding: 24px;
    background: var(--surface-secondary);
    border: 1px dashed var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    text-align: center;
}

.story-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 42px;
    gap: 18px;
    align-items: center;
    padding: 24px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.story-card + .story-card {
    margin-top: 10px;
}

.story-card:hover {
    border-color: var(--accent);
}

.story-card__meta {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-right: 18px;
    border-right: 1px solid var(--border);
    color: var(--text-muted);
}

.story-card__date {
    min-width: 0;
}

.story-card__date-value {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.story-card__category {
    min-width: 0;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.story-card__category a {
    color: inherit;
}

.story-card__category a:hover {
    color: var(--accent);
}

.story-card__body {
    min-width: 0;
}

.story-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.story-card__summary {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

.story-card__summary p:first-child {
    margin-top: 0;
}

.story-card__summary p:last-child {
    margin-bottom: 0;
}

.story-card__arrow {
    grid-column: 3;
    align-self: center;
    justify-self: end;
    color: var(--text);
    font-size: 34px;
    font-weight: 900;
}

.meta-pill,
.full-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.full-meta .meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 2px 8px;
    margin: 0;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.full-story,
.static-page,
.form-page,
.message-box,
.search-page,
.profile-page,
.pm-page,
.comments-area,
.add-comment,
.poll-block {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.full-story h1,
.static-page h1,
.form-page h1,
.message-box h1 {
    margin: 0 0 10px;
    line-height: 1.25;
    font-size: 24px;
}

.full-text,
.static-page,
.comment-text {
    overflow-wrap: anywhere;
}

.full-text {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.full-text p:first-child,
.static-page p:first-child {
    margin-top: 0;
}

.full-text table,
.static-page table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

.full-text th,
.full-text td,
.static-page th,
.static-page td {
    padding: 8px;
    border: 1px solid var(--border);
}

.player {
    margin: 18px 0;
}

.player__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050507;
    border-radius: 8px;
}

.player__frame iframe,
.player__frame video,
.player__frame object,
.player__frame embed {
    width: 100%;
    height: 100%;
    border: 0;
}
.player__empty {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    background: #111318;
    color: #ffffff;
    text-align: center;
    isolation: isolate;
}
.player__empty::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(5, 8, 13, .68);
}

.player__empty-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #111318;
}

.player__empty-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    opacity: .55;
}

.player-countdown,
.player-countdown-fallback {
    position: relative;
    z-index: 1;
}

.player-countdown {
    display: grid;
    gap: 8px;
    justify-items: center;
}

.player-countdown__label {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    font-weight: 700;
}

.player-countdown__value,
.player-countdown-fallback {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.player-countdown.is-soon .player-countdown__value,
.player-countdown.is-finished .player-countdown__value {
    font-size: 22px;
}

.player-countdown + span,
.player-countdown-fallback + span {
    display: none;
}
blockquote {
    margin: 16px 0;
    padding: 10px 14px;
    border-left: 4px solid var(--accent);
    background: var(--surface-secondary);
}

pre,
code {
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
}

code {
    padding: 1px 4px;
}

pre {
    padding: 12px;
    overflow-x: auto;
}

.comments-area,
.add-comment {
    margin-top: 18px;
}

.comment {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

.comment:first-child {
    border-top: 0;
}

.comment__avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment__head,
.comment__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.comment__author {
    color: var(--text);
    font-weight: 800;
}

.comment__actions {
    margin-top: 8px;
}

.form-grid,
.form-row {
    display: grid;
    padding-top: 10px;
}

.form-grid {
    gap: 12px;
}

.form-row {
    gap: 6px;
}

.form-actions,
.check-row,
.user-menu,
.pm-nav,
.not-found__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-top: 10px;
}

.check-row {
    color: var(--text-muted);
}

.check-row input {
    width: auto;
    min-height: auto;
}

.user-menu a,
.pm-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.profile-summary {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.profile-summary__avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-summary__data {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 8px 14px;
    margin: 0;
}

.profile-summary__data dt {
    color: var(--text-muted);
}

.profile-summary__data dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.profile-text,
.pm-content {
    margin-top: 16px;
}

.pm-page,
.stats-page {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pm-nav {
    margin: 12px 0;
}

.pm-nav a,
.pm-nav span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.pm-progress {
    margin: 12px 0;
    color: var(--text-muted);
}

.pm-list,
.pm-message,
.pm-form {
    margin-top: 14px;
}

.pm-message__header {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.pm-message__header h2 {
    margin: 0 0 6px;
}

.pm-message__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.pm-message__text {
    padding: 14px 0;
}

.pm-message__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.stats-page h1,
.stats-page h2 {
    margin: 0 0 14px;
}

.stats-page h2 {
    margin-top: 22px;
    font-size: 22px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.stats-item {
    display: grid;
    gap: 6px;
    padding: 14px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.stats-title {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.stats-value {
    color: var(--accent);
    font-size: 30px;
    line-height: 1;
}

.addnews-xfields {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.addnews-xfields h2 {
    margin: 0;
    font-size: 18px;
}

.navigation,
.pagi-nav,
#dle-content .navigation {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.navigation a,
.navigation span,
.pagi-nav a,
.pagi-nav span {
    min-width: 36px;
    min-height: 36px;
    display: inline-grid;
    place-items: center;
    padding: 5px 10px;
    background: var(--surface);
    border-radius: 6px;
}

.navigation span,
.pagi-nav span {
    color: var(--accent);
    border-color: var(--accent);
}

.info,
.berrors,
.message-box,
.ui-message {
    border-left: 4px solid var(--accent);
}

.seo-text {
    background: var(--background);
}

.seo-text__inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 14px 0 34px;
}

.seo-text__box {
    padding: 22px 24px;
    background: var(--surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.seo-text h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 22px;
}

.seo-text p {
    max-width: 900px;
    margin: 0 0 10px;
}

.seo-text p:last-child {
    margin-bottom: 0;
}

.related-news {
    margin-top: 24px;
}

.related-news h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.related-item {
    border-top: 1px solid var(--border);
}

.related-item:first-child {
    border-top: 0;
}

.related-item__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
}

.related-item__title {
    font-weight: 800;
    overflow-wrap: anywhere;
}

.related-item__meta {
    color: var(--text-muted);
    font-size: 14px;
    white-space: nowrap;
}

.site-footer {
    margin-top: 24px;
    background: var(--header);
    color: #ffffff;
}

.site-footer__inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    gap: 22px;
    padding: 28px 0;
    color: rgba(255, 255, 255, .9);
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    padding-top: 10px;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    max-width: 100%;
    padding: 6px 10px;
    overflow-wrap: anywhere;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
.tg-banner { display: block; max-width: 1200px; margin: 15px auto; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px #0003; transition: .3s; }
.tg-banner:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 136, 204, .4); }
.tg-banner img { width: 100%; height: auto; display: block; }

.register-gate {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 12, 18, 0.78);
    backdrop-filter: blur(6px);
}

.register-gate__box {
    width: min(100%, 420px);
    padding: 28px;
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.register-gate__box p {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.register-gate__button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.register-gate-lock {
    overflow: hidden;
}
.register-gate__box {
    position: relative;
}

.register-gate__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.register-gate__close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

#searchsuggestions {
	z-index: 9999;
	width: 100%;
	max-width: 520px;
	box-sizing: border-box;
	background: var(--bg, #fff);
	border: 1px solid rgba(128, 128, 128, 0.2);
	border-radius: 6px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

#searchsuggestions > a {
	position: relative;
	display: block;
	padding: 12px 15px;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

#searchsuggestions > a:hover {
	background: rgba(128, 128, 128, 0.08);
}

#searchsuggestions > a:hover::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #e53935;
}

#searchsuggestions .searchheading {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#searchsuggestions .seperator {
	display: block;
}

#searchsuggestions .seperator a {
	display: block;
	padding: 10px 15px;
	text-align: center;
	font-size: 13px;
	color: #888;
	text-decoration: none;
}

#searchsuggestions .seperator a:hover {
	background: rgba(128, 128, 128, 0.08);
	color: inherit;
}

#searchsuggestions > a:last-of-type {
	border-bottom: 0;
}

@media (max-width: 600px) {
	#searchsuggestions {
		left: 10px !important;
		right: 10px !important;
		width: auto !important;
		max-width: none;
	}

	#searchsuggestions > a {
		padding: 11px 12px;
	}

	#searchsuggestions .searchheading {
		font-size: 14px;
	}
}
.player__gate {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #050505;
    color: #fff;
}

.player__gate-video {
    position: absolute;
    inset: -25px;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    object-fit: cover;
    filter: blur(1px);
    transform: scale(1.08);
    opacity: .78;
}

.player__gate-blur {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 0, 0, .18) 0%,
            rgba(0, 0, 0, .38) 55%,
            rgba(0, 0, 0, .72) 100%
        );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.player__live {
    position: absolute;
    z-index: 4;
    top: 18px;
    left: 18px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 11px;

    background: #e50914;
    color: #fff;

    border-radius: 5px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .5px;
}

.player__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: player-live-pulse 1.2s infinite;
}

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

    50% {
        opacity: .35;
    }
}

.player__gate-content {
    position: absolute;
    z-index: 3;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);

    width: calc(100% - 40px);
    max-width: 520px;

    text-align: center;
}

.player__gate-title {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;

    color: #fff;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, .5),
        0 6px 20px rgba(0, 0, 0, .45);
}

.player__gate-subtitle {
    margin-top: 8px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;

    color: rgba(255, 255, 255, .88);
}

.player__register {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 230px;
    min-height: 52px;

    margin-top: 24px;
    padding: 0 28px;

    border-radius: 8px;

    background: #e50914;
    color: #fff !important;

    text-decoration: none !important;

    font-size: 16px;
    line-height: 1;
    font-weight: 800;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .08);

    transition:
        transform .15s ease,
        background .15s ease;
}

.player__register:hover {
    background: #f20c18;
    transform: translateY(-1px);
}

.player__register:active {
    transform: translateY(1px);
}

.player__controls {
    position: absolute;
    z-index: 5;

    left: 0;
    right: 0;
    bottom: 0;

    height: 58px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .85),
        rgba(0, 0, 0, .05)
    );
}

.player__control {
    appearance: none;
    -webkit-appearance: none;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    cursor: pointer;

    font-size: 18px;
    line-height: 1;
}

.player__control:hover {
    opacity: .8;
}

.player__controls-line {
    position: relative;
    flex: 1;
    height: 3px;

    overflow: hidden;

    border-radius: 3px;
    background: rgba(255, 255, 255, .25);
}

.player__controls-line span {
    display: block;
    width: 32%;
    height: 100%;
    background: #e50914;
}

.player__controls-live {
    color: #ff323c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
}

@media (max-width: 600px) {
    .player__gate {
        min-height: 260px;
    }

    .player__gate-title {
        font-size: 26px;
    }

    .player__gate-subtitle {
        margin-top: 6px;
        font-size: 15px;
    }

    .player__register {
        min-width: 200px;
        min-height: 48px;

        margin-top: 19px;
        padding: 0 22px;

        font-size: 15px;
    }

    .player__live {
        top: 12px;
        left: 12px;

        padding: 6px 9px;
        font-size: 11px;
    }

    .player__controls {
        height: 48px;
        padding: 0 12px;
        gap: 10px;
    }
}