*,
*::before,
*::after {
    letter-spacing: 0;
}

:root {
    --ozon-blue: #f2b32d;
    --ozon-blue-dark: #d99516;
    --ozon-blue-light: rgba(242, 179, 45, 0.14);
    --white: #f8f9fb;
    --surface: #111419;
    --surface-strong: #171b22;
    --surface-raised: #1b2028;
    --surface-muted: #202631;
    --gray-50: #111419;
    --gray-100: #171b22;
    --gray-200: #242a35;
    --gray-300: #313947;
    --gray-400: #616b79;
    --gray-500: #8c95a4;
    --gray-600: #a6adba;
    --gray-700: #c9ced8;
    --gray-800: #e6e8ee;
    --gray-900: #ffffff;
    --text-primary: #f5f6f8;
    --text-secondary: #a0a7b4;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 14px 28px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 20px 46px rgba(0, 0, 0, 0.32);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    --gold: #f2b32d;
    --gold-strong: #f6c34b;
    --gold-dark: #b97613;
    --ink: #0d1015;
    --ink-2: #11151c;
    --ink-3: #171c24;
    --blue-accent: #5e9cff;
    --green-accent: #44d18d;
    --danger-accent: #ef5b4d;
}

html,
body {
    background: #0d1015;
}

body {
    min-height: 100vh;
    color: var(--text-primary);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(180deg, #10161d 0%, #0f1217 38%, #111319 100%);
    background-size: 86px 86px, auto;
}

body::selection {
    background: rgba(242, 179, 45, 0.34);
    color: #fff;
}

a:hover {
    color: var(--gold-strong);
}

.container {
    max-width: 1260px;
    padding-right: 18px;
    padding-left: 18px;
}

.header {
    background: rgba(13, 16, 21, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.header-wrapper {
    min-height: 76px;
    padding: 10px 0;
    gap: 22px;
}

.header-wrapper--catalog-search {
    grid-template-columns: auto minmax(260px, 520px) auto;
}

.logo a {
    gap: 10px;
    color: #fff;
}

.logo-mark-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f3b11f 0%, #f08822 100%);
    box-shadow: 0 14px 28px rgba(217, 149, 22, 0.24);
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    box-shadow: none;
}

.logo-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.logo-note {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.desktop-nav {
    flex: 1;
    min-width: 0;
}

.main-nav ul {
    justify-content: center;
    gap: 12px;
}

.nav-link {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    color: #d6dbe4;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-link i {
    color: #ffffff;
    font-size: 13px;
    opacity: 0.82;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(242, 179, 45, 0.12);
    color: var(--gold-strong);
}

.nav-link:hover i,
.nav-link.active i {
    color: var(--gold-strong);
}

.header-actions {
    gap: 10px;
}

.header-search-link,
.header-cart-link,
.header-login-link,
.header-account-link,
.header-lang-toggle {
    min-height: 42px;
    border-radius: 8px;
}

.header-search-link,
.header-cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    color: #eef0f5;
    border: 1px solid transparent;
}

.header-search-link:hover,
.header-cart-link:hover {
    border-color: rgba(242, 179, 45, 0.34);
    background: rgba(242, 179, 45, 0.1);
}

.header-login-link,
.header-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.header-login-link {
    color: #dce1ea;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.header-account-link {
    color: #101318;
    background: linear-gradient(135deg, #fff4cc 0%, var(--gold) 48%, #d98d1d 100%);
    box-shadow: 0 12px 26px rgba(242, 179, 45, 0.22);
}

.header-account-link:hover {
    color: #101318;
    transform: translateY(-1px);
}

.header-lang-toggle {
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #eef0f5;
}

.header-lang-toggle .flag-icon {
    border-radius: 3px;
}

.header-lang-menu {
    overflow: hidden;
    background: #171b22;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.header-lang-option {
    color: #d7dce6;
}

.header-lang-option:hover,
.header-lang-option.active {
    background: rgba(242, 179, 45, 0.13);
    color: var(--gold-strong);
}

.header-search {
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.05);
}

.header-search-input {
    color: #f6f7fb;
}

.site-announcement {
    background: linear-gradient(90deg, #edc84a 0%, #c58120 100%);
    color: #202018;
    font-size: 14px;
    font-weight: 900;
}

.site-announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    gap: 14px;
}

.site-announcement span,
.site-announcement a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-announcement a {
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: #201a0c;
    border: 2px solid rgba(255, 255, 255, 0.62);
}

.mobile-menu-btn {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.mobile-menu-btn span {
    background: #fff;
}

.mobile-menu,
.mobile-menu-header {
    background: #12161d !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.mobile-menu {
    box-shadow: 18px 0 48px rgba(0, 0, 0, 0.42);
}

.mobile-close-btn,
.mobile-menu-header .logo {
    color: #fff !important;
}

.mobile-nav-list {
    padding: 12px;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: none;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
    color: #d9dee8;
    font-weight: 800;
    text-decoration: none;
}

.mobile-nav-list li a:hover {
    background: rgba(242, 179, 45, 0.12);
    color: var(--gold-strong);
}

.main-content {
    min-height: calc(100vh - 122px);
}

.main-content.with-sidebar {
    padding-left: 272px;
}

.app-page,
.main-catalog,
.dlc-detail-page,
.products-section,
.product-detail-section,
.similar-products,
.sell-section {
    background: transparent !important;
}

.app-page-title,
.app-section-title,
.catalog-title-copy h1,
.dlc-card-title,
.auth-card-title {
    color: #fff !important;
    font-weight: 900;
}

.app-page-subtitle,
.app-section-subtitle,
.app-list-meta,
.catalog-search-query,
.dlc-card-subtitle {
    color: var(--text-secondary) !important;
}

.app-card,
.app-choice-card,
.app-modal-box,
.app-card-note,
.catalog-empty-state,
.filters-sidebar,
.form-section,
.product-gallery,
.product-info,
.admin-header,
.admin-table,
.profile-tabs,
.admin-tabs {
    color: var(--text-primary);
    background: rgba(24, 29, 38, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow-sm) !important;
}

.app-card--hero-orange,
.app-card--hero-blue,
.app-card--hero-purple,
.app-card--hero-dark {
    background:
        linear-gradient(135deg, rgba(242, 179, 45, 0.22) 0%, rgba(94, 156, 255, 0.13) 100%),
        #181d26 !important;
}

.app-input,
.app-select,
.app-textarea,
.app-input-group,
.form-group input,
.form-group textarea,
.form-group select,
.dlc-custom-select select {
    color: #f7f8fb !important;
    background: #10141b !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
}

.app-input:focus,
.app-select:focus,
.app-textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(242, 179, 45, 0.56) !important;
    box-shadow: 0 0 0 4px rgba(242, 179, 45, 0.12) !important;
}

.app-input-addon,
.app-code-action,
.app-dropdown-trigger,
.app-qty,
.app-qty-btn,
.app-tab,
.app-choice-icon,
.app-empty-icon,
.app-icon-chip {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--gold-strong) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.btn,
.app-hero-btn,
.auth-submit,
.auth-secondary-link,
.auth-inline-btn,
.dlc-btn-block {
    border-radius: 8px !important;
    font-weight: 900;
}

.btn-primary,
.app-hero-btn,
.auth-submit,
.dlc-btn-primary,
.catalog-dlc-open {
    color: #101318 !important;
    background: linear-gradient(135deg, #fff3c4 0%, var(--gold) 54%, #cc831a 100%) !important;
    box-shadow: 0 16px 30px rgba(242, 179, 45, 0.18) !important;
}

.btn-primary:hover,
.app-hero-btn:hover,
.auth-submit:hover,
.dlc-btn-primary:hover,
.catalog-dlc-open:hover {
    color: #101318 !important;
    transform: translateY(-1px);
}

.btn-outline,
.dlc-btn-secondary,
.auth-secondary-link,
.auth-inline-btn {
    color: #f0f2f6 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.app-link,
.auth-link,
.app-inline-link,
.home-inline-link {
    color: var(--gold-strong) !important;
}

.sidebar {
    top: 100px;
    background: rgba(18, 22, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.sidebar-nav {
    padding: 0 10px;
}

.sidebar-item,
.mobile-sidebar-item {
    color: #c8ced9;
    background: transparent;
    border-radius: 8px;
}

.sidebar-item:hover,
.sidebar-item.active,
.mobile-sidebar-item:hover,
.mobile-sidebar-item.active {
    color: #fff;
    background: rgba(242, 179, 45, 0.12);
}

.sidebar-icon,
.sidebar-icon.blue,
.sidebar-icon.orange,
.sidebar-icon.purple,
.sidebar-icon.red,
.sidebar-icon.green,
.sidebar-icon.teal {
    color: #101318;
    background: linear-gradient(135deg, #f6d46d 0%, #d28b1e 100%);
    border-radius: 8px;
}

.sidebar-divider {
    background: rgba(255, 255, 255, 0.08);
}

.bottom-nav {
    background: rgba(14, 17, 23, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.36);
}

.bottom-nav-item,
.bottom-nav-item span,
.bottom-nav-item i,
.bottom-nav-item .bottom-nav-icon {
    color: #9ea6b3;
}

.bottom-nav-item.active,
.bottom-nav-item.active span,
.bottom-nav-item.active i,
.bottom-nav-item.active .bottom-nav-icon,
.bottom-nav-item.active .bottom-nav-icon svg {
    color: var(--gold-strong);
}

.bottom-nav-item.active .bottom-nav-icon {
    background: rgba(242, 179, 45, 0.13);
}

.flash-message {
    background: #171b22;
    border-color: rgba(255, 255, 255, 0.09);
    color: #fff;
    border-radius: 8px;
}

.footer {
    margin-top: 0;
    padding: 62px 0 24px;
    background:
        linear-gradient(180deg, rgba(13, 16, 21, 0) 0%, rgba(9, 11, 15, 0.92) 18%, #090b0f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    align-items: start;
}

.footer-logo .logo-text,
.footer .logo-text {
    color: #fff;
}

.footer-logo p,
.footer-bottom,
.footer-bottom p,
.footer-column ul li a {
    color: #8f97a4;
}

.footer-column h4 {
    color: #d7dce4;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-column ul {
    padding: 0;
    margin: 0;
}

.footer-column ul li a:hover {
    color: var(--gold-strong);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
}

.footer-social-row,
.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.footer-social-row a:hover {
    color: #101318;
    background: var(--gold);
}

.footer-payments i {
    color: var(--gold);
    font-size: 18px;
}

.auth-stage {
    position: relative;
    min-height: calc(100vh - 168px);
    padding: 34px 0 72px;
}

.auth-wrap {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 18px;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 24px;
    align-items: stretch;
}

.auth-brand,
.auth-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(24, 29, 38, 0.94);
    box-shadow: var(--shadow-md);
}

.auth-brand {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding: 34px;
    color: #fff;
    background:
        linear-gradient(112deg, rgba(13, 16, 21, 0.9) 0%, rgba(16, 20, 27, 0.65) 42%, rgba(185, 118, 19, 0.3) 100%),
        url('/static/images/standoff.png') center/cover no-repeat;
}

.auth-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.auth-brand-top,
.auth-brand-visual {
    position: relative;
    z-index: 1;
}

.auth-pill,
.auth-brand-tag,
.auth-brand-token {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(8px);
}

.auth-pill {
    padding: 8px 12px;
    margin-bottom: 20px;
    color: var(--gold-strong);
    font-size: 13px;
    font-weight: 900;
}

.auth-pill img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.auth-brand-title {
    margin: 0 0 16px;
    max-width: 560px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.98;
    font-weight: 900;
}

.auth-brand-subtitle {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.6;
}

.auth-brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.auth-brand-tag {
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.auth-brand-tag i {
    color: var(--gold-strong);
}

.auth-brand-visual {
    min-height: 238px;
}

.auth-brand-surface {
    position: absolute;
    inset: 20px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.auth-brand-card {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.auth-brand-card img {
    display: block;
    width: 100%;
    height: auto;
}

.auth-brand-card--main {
    left: 0;
    right: 94px;
    top: 10px;
}

.auth-brand-card--side {
    right: 0;
    bottom: 0;
    width: 42%;
    transform: rotate(-5deg);
}

.auth-brand-token {
    position: absolute;
    padding: 7px 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.auth-brand-token img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 7px;
}

.auth-brand-token--1 { top: 0; right: 16px; }
.auth-brand-token--2 { left: 18px; bottom: 8px; }
.auth-brand-token--3 { right: 112px; bottom: -2px; }

.auth-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.auth-card-head {
    margin-bottom: 22px;
}

.auth-card-copy,
.auth-card-links p,
.auth-form-note {
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.auth-field input {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    color: #fff;
    background: #10141b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.auth-field input:focus {
    outline: none;
    border-color: rgba(242, 179, 45, 0.56);
    box-shadow: 0 0 0 4px rgba(242, 179, 45, 0.12);
}

.auth-captcha {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.auth-card-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.auth-alert {
    margin-bottom: 14px;
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.auth-alert--error {
    background: rgba(239, 91, 77, 0.13);
    border: 1px solid rgba(239, 91, 77, 0.32);
    color: #ffb7ae;
}

.auth-alert--success {
    background: rgba(68, 209, 141, 0.12);
    border: 1px solid rgba(68, 209, 141, 0.26);
    color: #a9f2ce;
}

body.page-catalog .catalog-title-icon,
body.page-catalog .catalog-game-thumb img,
body.page-catalog .catalog-dlc-card,
body.page-catalog .catalog-empty-state {
    background: rgba(24, 29, 38, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow-sm) !important;
}

body.page-catalog .catalog-games-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 18px !important;
}

body.page-catalog .catalog-game-card {
    position: relative;
    display: grid !important;
    align-items: end !important;
    min-height: 172px;
    overflow: hidden;
    border-radius: 8px;
    background: #181d26;
    color: #fff;
    box-shadow: var(--shadow-sm);
}

body.page-catalog .catalog-game-thumb {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    border-radius: 8px !important;
}

body.page-catalog .catalog-game-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.82) 100%);
}

body.page-catalog .catalog-game-thumb img {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.08);
}

body.page-catalog .catalog-game-name {
    position: relative;
    z-index: 1;
    max-width: none !important;
    min-height: 0 !important;
    padding: 0 18px 18px;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

body.page-catalog .catalog-game-badge,
body.page-catalog .catalog-dlc-tag--discount {
    background: linear-gradient(135deg, #fff0bd 0%, var(--gold) 100%) !important;
    color: #17120a !important;
    border-radius: 6px !important;
}

body.page-catalog .catalog-dlc-card {
    overflow: hidden;
}

body.page-catalog .catalog-dlc-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.76) 100%);
}

body.page-catalog .catalog-dlc-content {
    background: #181d26 !important;
}

body.page-catalog .catalog-dlc-title,
body.page-catalog .catalog-dlc-game,
body.page-catalog .catalog-dlc-desc {
    color: #fff !important;
}

body.page-catalog .catalog-dlc-desc,
body.page-catalog .catalog-dlc-game {
    color: var(--text-secondary) !important;
}

body.page-dlc_detail .dlc-card,
body.page-dlc_detail .dlc-text-card,
body.page-dlc_detail .dlc-desc-block,
body.page-dlc_detail .dlc-disclaimer-yellow,
body.page-dlc_detail .dlc-updating-warning,
body.page-dlc_detail .dlc-dmca {
    color: var(--text-primary) !important;
    background: rgba(24, 29, 38, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow-sm) !important;
}

body.page-dlc_detail .dlc-disclaimer-yellow {
    color: #ffe4a3 !important;
}

body.page-dlc_detail .dlc-updating-warning {
    color: #c5dbff !important;
}

body.page-dlc_detail .dlc-dmca {
    color: #ffb7ae !important;
}

body.page-dlc_detail .dlc-card-icon {
    border-radius: 8px !important;
}

.text-secondary,
.opacity-75 {
    color: var(--text-secondary) !important;
}

.badge.bg-white {
    color: #12161d !important;
    background: var(--gold) !important;
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .header-wrapper,
    .header-wrapper--catalog-search {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 64px;
        gap: 8px;
    }

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

    .logo-mark-wrap {
        width: 38px;
        height: 38px;
    }

    .logo-mark {
        width: 26px;
        height: 26px;
    }

    .logo-text {
        max-width: 130px;
        font-size: 16px;
    }

    .logo-note {
        display: none;
    }

    .header-search-link,
    .header-cart-link,
    .header-login-link {
        display: none;
    }

    .header-account-link {
        min-height: 38px;
        max-width: 124px;
        padding: 0 11px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
    }

    .header-lang-toggle {
        min-height: 38px;
        padding: 0 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .site-announcement {
        font-size: 10px;
    }

    .site-announcement-inner {
        min-height: 36px;
    }

    .main-content.with-sidebar {
        padding-left: 0;
    }

    .sidebar {
        display: none;
    }

    .footer {
        padding-top: 42px;
        padding-bottom: 92px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-stage {
        min-height: calc(100vh - 128px);
        padding: 22px 0 48px;
    }

    .auth-wrap {
        padding: 0 12px;
    }

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-brand {
        display: none;
    }

    .auth-card {
        padding: 22px;
    }

    body.page-catalog .catalog-games-grid {
        grid-template-columns: 1fr !important;
    }

    body.page-catalog .catalog-game-card {
        min-height: 140px;
    }

    body.page-catalog .catalog-dlcs-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 420px) {
    .header-actions {
        gap: 5px;
    }

    .header-account-link {
        max-width: 98px;
    }

    .site-announcement span {
        gap: 6px;
    }
}
