:root {
    --bg-main: #132742;
    --bg-panel: #213857;
    --bg-panel-soft: #2a4263;
    --bg-panel-accent: #4782c5;
    --bg-panel-border: #2f4a70;
    --text-main: #d6e7ff;
    --text-soft: #9eb4d0;
    --accent-yellow: #f8c544;
    --accent-red: #ff6d53;
    --ok: #2db37f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 15% 15%, #27466a 0%, rgba(39, 70, 106, 0) 45%),
        radial-gradient(circle at 85% 85%, #1d3858 0%, rgba(29, 56, 88, 0) 40%),
        var(--bg-main);
}

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

.site-shell,
.admin-shell {
    width: min(1140px, calc(100% - 56px));
    margin: 0 auto;
    min-height: 100vh;
    padding: 36px 0 28px;
}

.site-header,
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: 900;
    color: #f7fbff;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: #e14a2b;
    border: 2px solid #0f1f35;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 4px;
    height: 4px;
    background: #101c31;
}

.logo-mark::before {
    left: 6px;
}

.logo-mark::after {
    right: 6px;
}

.store-label {
    color: #f0d047;
    border: 2px dashed rgba(240, 208, 71, 0.72);
    padding: 5px 14px;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-btn {
    min-width: 232px;
    min-height: 52px;
    border-radius: 4px;
    border: 1px dashed rgba(111, 150, 196, 0.62);
    background: rgba(45, 71, 103, 0.76);
    color: #cfe4ff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
}

.player-chip,
.player-tag {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    min-height: 44px;
    background: rgba(86, 127, 180, 0.24);
    border: 1px dashed rgba(160, 197, 245, 0.45);
    color: #cfe4ff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.25px;
}

.logout-icon-btn {
    width: 44px;
    height: 44px;
    border: 1px dashed rgba(160, 197, 245, 0.45);
    border-radius: 4px;
    background: rgba(45, 71, 103, 0.76);
    position: relative;
    cursor: pointer;
}

.logout-icon-btn::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 11px;
    width: 16px;
    height: 20px;
    border: 2px solid #5ea2ef;
    border-left: 0;
    border-radius: 0 2px 2px 0;
}

.logout-icon-btn::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 16px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #5ea2ef;
    border-right: 2px solid #5ea2ef;
    transform: rotate(45deg);
}

.btn {
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.07);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.btn-primary {
    background: linear-gradient(180deg, #5ea2ef 0%, #4f91db 100%);
    color: #f5f9ff;
}

.btn-ghost {
    background: rgba(86, 126, 176, 0.2);
    border: 1px dashed rgba(160, 197, 245, 0.4);
    color: #c4ddff;
}

.btn-wide {
    min-width: 210px;
}

.btn-sm {
    padding: 6px 10px;
    font-size: 13px;
}

.hero {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.hero-copy h1,
.store-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy p,
.store-hero p {
    margin-top: 16px;
    max-width: 640px;
    color: var(--text-soft);
    font-size: 24px;
    line-height: 1.35;
}

.hero-art,
.login-art {
    min-height: 340px;
    border-radius: 10px;
    border: 1px solid var(--bg-panel-border);
    background:
        linear-gradient(180deg, rgba(12, 25, 42, 0.15), rgba(12, 25, 42, 0.65)),
        url('/images/hero.png') center / cover no-repeat;
}

.social-block {
    margin-top: 34px;
}

.social-block h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 180px));
    gap: 10px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 4px;
    font-weight: 700;
}

.social-vk {
    background: #2f81d9;
}

.social-discord {
    background: #5b66f4;
}

.social-youtube {
    background: #d8191f;
}

.social-tiktok {
    background: #202126;
}

.featured {
    margin-top: 42px;
}

.featured h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.offer-grid.compact {
    margin-top: 10px;
}

.offer-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    border-radius: 6px;
    overflow: hidden;
}

.offer-top {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px 8px;
    background: rgba(31, 50, 76, 0.78);
}

.offer-top h2,
.offer-top h3 {
    margin: 0;
    font-size: 34px;
    color: #ffd94e;
}

.old-price {
    color: var(--accent-red);
    text-decoration: line-through;
    font-weight: 700;
    font-size: 18px;
}

.offer-image {
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-panel-soft);
    padding: 10px;
}

.offer-image img {
    max-width: 85%;
    max-height: 140px;
    image-rendering: pixelated;
}

.offer-badge {
    margin: 0;
    min-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 37, 57, 0.9);
    color: #ffd635;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-price {
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-panel-accent);
    font-size: 32px;
    font-weight: 700;
}

.btn-buy {
    width: calc(100% - 16px);
    margin: 8px;
}

.store-hero {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.store-player {
    display: flex;
    align-items: flex-start;
}

.store-benefits {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.benefit-card {
    border: 1px solid var(--bg-panel-border);
    background: var(--bg-panel);
    border-radius: 4px;
    padding: 16px 18px;
}

.benefit-card h3 {
    margin: 0;
    font-size: 21px;
}

.benefit-card p {
    margin: 6px 0 0;
    color: var(--text-soft);
}

.login-layout {
    margin: 40px auto;
    max-width: 940px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.login-card {
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    border-radius: 8px;
    padding: 26px 24px;
}

.login-card h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
}

.login-card p {
    margin: 12px 0 18px;
    font-size: 20px;
    color: var(--text-soft);
}

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

.login-form input,
.admin-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #3b567c;
    border-radius: 4px;
    background: #223754;
    color: #eaf2ff;
    font-size: 17px;
    padding: 8px 12px;
}

.field-error {
    margin: 0;
    color: #ff8f81;
    font-weight: 700;
}

.site-footer {
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    color: rgba(145, 164, 190, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

.footer-legal {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.footer-legal-icon {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    flex-shrink: 0;
    background: #e14a2b;
    border: 2px solid #0f1f35;
    position: relative;
}

.footer-legal-icon::before,
.footer-legal-icon::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #101c31;
}

.footer-legal-icon::before {
    left: 9px;
}

.footer-legal-icon::after {
    right: 9px;
}

.footer-legal p {
    margin: 0;
}

.footer-support {
    margin-top: 8px !important;
}

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

.pay-badge {
    min-width: 60px;
    min-height: 26px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(154, 188, 233, 0.23);
    background: rgba(25, 42, 65, 0.34);
}

.pay-visa {
    color: #4ea2ff;
}

.pay-mastercard {
    color: #ec945e;
}

.pay-mir {
    color: #2cb06d;
}

.pay-sbp {
    color: #9fd8ff;
}

.empty-note {
    background: rgba(43, 63, 91, 0.8);
    border: 1px dashed rgba(156, 188, 233, 0.4);
    padding: 14px;
    border-radius: 6px;
}

.admin-body {
    background: #101e32;
}

.admin-main {
    margin-top: 20px;
}

.panel {
    background: #162845;
    border: 1px solid #2a4263;
    border-radius: 6px;
    padding: 16px;
}

.panel h2 {
    margin-top: 0;
}

.panel-success {
    border-color: rgba(67, 184, 123, 0.5);
    color: #9ae8bf;
    margin-bottom: 12px;
}

.panel-error {
    border-color: rgba(255, 111, 89, 0.5);
    color: #ffb2a3;
    margin: 10px 0;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #2b4466;
    text-align: left;
    padding: 10px 8px;
    vertical-align: middle;
}

.admin-table th {
    color: #8cb4e6;
    font-weight: 700;
}

.admin-card {
    max-width: 460px;
    margin: 70px auto 0;
    background: #162845;
    border: 1px solid #2a4263;
    border-radius: 6px;
    padding: 20px;
}

.admin-form {
    display: grid;
    gap: 10px;
}

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

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.checkbox input {
    width: 18px;
    height: 18px;
    min-height: 18px;
}

.admin-actions {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.page-landing {
    background:
        radial-gradient(circle at 0 100%, rgba(31, 80, 139, 0.45), rgba(31, 80, 139, 0) 48%),
        radial-gradient(circle at 85% 88%, rgba(24, 71, 126, 0.35), rgba(24, 71, 126, 0) 44%),
        #182c47;
}

.page-landing .site-shell {
    width: min(1024px, calc(100% - 52px));
    min-height: 100vh;
    padding: 40px 0 30px;
    display: flex;
    flex-direction: column;
}

.page-landing main {
    flex: 1;
    display: flex;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.landing-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-logo-text {
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: 900;
    color: #f7fbff;
}

.landing-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: #e14a2b;
    border: 2px solid #0f1f35;
    position: relative;
    flex-shrink: 0;
}

.landing-logo-mark::before,
.landing-logo-mark::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 4px;
    height: 4px;
    background: #101c31;
}

.landing-logo-mark::before {
    left: 6px;
}

.landing-logo-mark::after {
    right: 6px;
}

.landing-store-label {
    color: #f0d047;
    border: 2px dashed rgba(240, 208, 71, 0.72);
    padding: 5px 14px;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.landing-auth-btn {
    min-width: 232px;
    min-height: 52px;
    border-radius: 4px;
    border: 1px dashed rgba(111, 150, 196, 0.62);
    background: rgba(45, 71, 103, 0.76);
    color: #cfe4ff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
}

.landing-main {
    width: 100%;
    margin-top: 58px;
    display: grid;
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.landing-main-left h1 {
    margin: 0;
    font-size: clamp(44px, 4.7vw, 68px);
    line-height: 1.12;
    letter-spacing: 0.3px;
    font-weight: 900;
    color: #d8e7fa;
    text-transform: uppercase;
}

.landing-main-left p {
    margin: 20px 0 0;
    color: #9fb4ce;
    font-size: clamp(17px, 1.65vw, 34px);
    line-height: 1.37;
    font-weight: 600;
}

.landing-download-btn {
    margin-top: 22px;
    width: 100%;
    max-width: 400px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 4px;
    border: 2px dashed rgba(148, 192, 248, 0.53);
    background: linear-gradient(180deg, #5f9fe8 0%, #4f8ed6 100%);
    color: #ecf4ff;
    font-size: 38px;
    font-weight: 700;
}

.landing-download-icon {
    font-size: 40px;
    line-height: 1;
}

.landing-community-title {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-community-title h2 {
    margin: 0;
    color: #d6e7fb;
    font-size: 43px;
    font-weight: 700;
}

.landing-camp-placeholder {
    width: 40px;
    height: 48px;
    border-radius: 6px;
    border: 1px dashed rgba(154, 192, 240, 0.44);
    background:
        radial-gradient(circle at 52% 27%, #f9b86c 0%, #d4702e 42%, rgba(212, 112, 46, 0) 62%),
        linear-gradient(165deg, rgba(80, 114, 153, 0.3), rgba(80, 114, 153, 0));
    position: relative;
}

.landing-camp-placeholder::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 8px;
    height: 10px;
    border-radius: 4px;
    background: rgba(77, 97, 123, 0.82);
}

.landing-social-grid {
    margin-top: 12px;
    width: 100%;
    max-width: 400px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.landing-social {
    min-height: 56px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 30px;
    font-weight: 700;
    border: 1px dashed rgba(194, 217, 247, 0.38);
}

.landing-social-icon {
    font-size: 21px;
    line-height: 1;
    text-transform: uppercase;
}

.landing-social-vk {
    background: #2480ea;
}

.landing-social-discord {
    background: #5b63e8;
}

.landing-social-youtube {
    background: #eb161a;
}

.landing-social-tiktok {
    background: #222632;
}

.landing-main-right {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-vehicle-placeholder {
    width: min(100%, 468px);
    aspect-ratio: 1.06;
    border-radius: 12px;
    border: 2px dashed rgba(140, 174, 218, 0.35);
    background:
        radial-gradient(circle at 34% 42%, rgba(248, 176, 69, 0.28), rgba(248, 176, 69, 0) 58%),
        linear-gradient(145deg, rgba(80, 123, 174, 0.32), rgba(20, 39, 64, 0.28));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.landing-vehicle-placeholder::before {
    content: "";
    position: absolute;
    width: 82%;
    height: 40%;
    bottom: 14%;
    left: 9%;
    border-radius: 32px 32px 22px 22px;
    border: 2px solid rgba(198, 218, 245, 0.36);
    background:
        linear-gradient(180deg, rgba(229, 161, 57, 0.42), rgba(229, 161, 57, 0)),
        rgba(35, 58, 86, 0.62);
}

.landing-vehicle-text {
    position: absolute;
    right: 18px;
    top: 18px;
    color: rgba(217, 232, 250, 0.78);
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.7px;
    line-height: 1.2;
}

.landing-footer {
    margin-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.landing-footer-legal {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    color: rgba(145, 164, 190, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

.landing-footer-legal p {
    margin: 0;
}

.landing-legal-icon {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    flex-shrink: 0;
    background: #e14a2b;
    border: 2px solid #0f1f35;
    position: relative;
}

.landing-legal-icon::before,
.landing-legal-icon::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #101c31;
}

.landing-legal-icon::before {
    left: 9px;
}

.landing-legal-icon::after {
    right: 9px;
}

.landing-footer-support {
    margin-top: 8px !important;
}

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

.landing-pay-badge {
    min-width: 60px;
    min-height: 26px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(154, 188, 233, 0.23);
    background: rgba(25, 42, 65, 0.34);
}

.landing-pay-visa {
    color: #4ea2ff;
}

.landing-pay-mastercard {
    color: #ec945e;
}

.landing-pay-mir {
    color: #2cb06d;
}

.landing-pay-sbp {
    color: #9fd8ff;
}

.page-login {
    background:
        radial-gradient(circle at 18% 82%, rgba(37, 88, 153, 0.34), rgba(37, 88, 153, 0) 50%),
        radial-gradient(circle at 84% 24%, rgba(20, 54, 97, 0.34), rgba(20, 54, 97, 0) 46%),
        #192e48;
}

.page-login .site-shell {
    width: min(1140px, calc(100% - 56px));
    min-height: 100vh;
    padding: 42px 0 30px;
    display: flex;
    flex-direction: column;
}

.page-login main {
    flex: 1;
    display: flex;
}

.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auth-logo-text {
    font-size: 50px;
    letter-spacing: 1px;
    font-weight: 900;
    color: #f7fbff;
}

.auth-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: #e14a2b;
    border: 2px solid #0f1f35;
    position: relative;
    flex-shrink: 0;
}

.auth-logo-mark::before,
.auth-logo-mark::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 4px;
    height: 4px;
    background: #101c31;
}

.auth-logo-mark::before {
    left: 6px;
}

.auth-logo-mark::after {
    right: 6px;
}

.auth-store-label {
    color: #f0d047;
    border: 2px dashed rgba(240, 208, 71, 0.72);
    padding: 5px 14px;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.auth-account-btn {
    min-width: 232px;
    min-height: 52px;
    border-radius: 4px;
    border: 1px dashed rgba(111, 150, 196, 0.62);
    background: rgba(45, 71, 103, 0.76);
    color: #cfe4ff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
}

.auth-stage {
    position: relative;
    flex: 1;
    margin-top: 72px;
    min-height: 620px;
}

.auth-form-card {
    width: min(100%, 640px);
    margin: 0 auto;
    text-align: center;
}

.auth-form-card h1 {
    margin: 0;
    font-size: clamp(52px, 5.4vw, 68px);
    line-height: 1.1;
    text-transform: uppercase;
    color: #d3e7ff;
    font-weight: 900;
}

.auth-form-card p {
    margin: 12px 0 0;
    color: #95a9c4;
    font-size: clamp(21px, 2.15vw, 45px);
    line-height: 1.3;
    font-weight: 600;
}

.auth-form {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.auth-form input {
    width: 100%;
    min-height: 74px;
    border: 1px solid #344f73;
    border-radius: 4px;
    background: #253a57;
    color: #d9e9ff;
    font-size: 35px;
    padding: 0 16px;
}

.auth-form input::placeholder {
    color: #5d728d;
    text-transform: uppercase;
    font-weight: 700;
}

.auth-submit-btn {
    width: 100%;
    min-height: 76px;
    border-radius: 4px;
    border: 2px dashed rgba(148, 192, 248, 0.53);
    background: linear-gradient(180deg, #5f9fe8 0%, #4f8ed6 100%);
    color: #ecf4ff;
    font-size: 48px;
    font-weight: 700;
    cursor: pointer;
}

.auth-decor {
    position: absolute;
    border-radius: 10px;
    border: 2px dashed rgba(148, 192, 248, 0.42);
    background:
        radial-gradient(circle at 50% 26%, rgba(247, 182, 84, 0.36), rgba(247, 182, 84, 0) 52%),
        linear-gradient(150deg, rgba(88, 124, 169, 0.34), rgba(16, 34, 57, 0.48));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.auth-decor span {
    color: rgba(210, 225, 245, 0.9);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    font-weight: 700;
}

.auth-decor-left {
    width: 280px;
    height: 200px;
    left: 18px;
    bottom: 94px;
}

.auth-decor-right {
    width: 210px;
    height: 156px;
    right: 20px;
    bottom: 110px;
}

.auth-footer {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.auth-footer-legal {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    color: rgba(145, 164, 190, 0.9);
    font-size: 13px;
    line-height: 1.4;
}

.auth-footer-legal p {
    margin: 0;
}

.auth-legal-icon {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    flex-shrink: 0;
    background: #e14a2b;
    border: 2px solid #0f1f35;
    position: relative;
}

.auth-legal-icon::before,
.auth-legal-icon::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #101c31;
}

.auth-legal-icon::before {
    left: 9px;
}

.auth-legal-icon::after {
    right: 9px;
}

.auth-footer-support {
    margin-top: 8px !important;
}

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

.auth-pay-badge {
    min-width: 60px;
    min-height: 26px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(154, 188, 233, 0.23);
    background: rgba(25, 42, 65, 0.34);
}

.auth-pay-visa {
    color: #4ea2ff;
}

.auth-pay-mastercard {
    color: #ec945e;
}

.auth-pay-mir {
    color: #2cb06d;
}

.auth-pay-sbp {
    color: #9fd8ff;
}

@media (max-width: 1100px) {
    .hero,
    .login-layout {
        grid-template-columns: 1fr;
    }

    .hero-art,
    .login-art {
        min-height: 260px;
    }

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

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

    .page-landing .site-shell {
        width: calc(100% - 28px);
        padding-top: 22px;
    }

    .landing-main {
        margin-top: 26px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-main-right {
        min-height: 300px;
        order: -1;
    }

    .landing-vehicle-placeholder {
        width: min(100%, 520px);
        aspect-ratio: 1.35;
    }

    .landing-footer {
        margin-top: 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .page-login .site-shell {
        width: calc(100% - 28px);
        padding-top: 22px;
    }

    .auth-stage {
        margin-top: 28px;
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .auth-form-card {
        grid-column: 1 / -1;
    }

    .auth-decor {
        position: static;
        width: 100%;
        max-width: 340px;
        height: 188px;
    }

    .auth-decor-left {
        justify-self: start;
    }

    .auth-decor-right {
        justify-self: end;
    }

    .auth-footer {
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 760px) {
    .site-shell,
    .admin-shell {
        width: calc(100% - 20px);
        padding-top: 14px;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .site-brand {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .logo-text {
        font-size: 38px;
    }

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

    .store-label {
        font-size: 24px;
        padding: 4px 10px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .account-btn {
        width: 100%;
        min-height: 48px;
        font-size: 24px;
    }

    .player-chip {
        font-size: 18px;
        min-height: 40px;
        padding: 7px 12px;
    }

    .hero-copy p,
    .store-hero p {
        font-size: 17px;
    }

    .hero-copy h1,
    .store-hero h1,
    .login-card h1 {
        font-size: 30px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .store-hero {
        flex-direction: column;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-legal {
        align-items: flex-start;
    }

    .footer-payments {
        flex-wrap: wrap;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

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

    .landing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .landing-brand {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .landing-logo-text {
        font-size: 38px;
    }

    .landing-logo-mark {
        width: 22px;
        height: 22px;
    }

    .landing-store-label {
        font-size: 24px;
        padding: 4px 10px;
    }

    .landing-auth-btn {
        width: 100%;
        min-height: 48px;
        font-size: 24px;
    }

    .landing-main-left h1 {
        font-size: 40px;
    }

    .landing-main-left p {
        font-size: 16px;
    }

    .landing-download-btn {
        max-width: none;
        min-height: 56px;
        font-size: 26px;
    }

    .landing-download-icon {
        font-size: 30px;
    }

    .landing-community-title h2 {
        font-size: 32px;
    }

    .landing-social-grid {
        max-width: none;
        grid-template-columns: 1fr;
    }

    .landing-social {
        min-height: 50px;
        font-size: 24px;
    }

    .landing-main-right {
        min-height: 250px;
    }

    .landing-vehicle-text {
        font-size: 14px;
    }

    .landing-footer-legal {
        align-items: flex-start;
    }

    .landing-footer-payments {
        flex-wrap: wrap;
    }

    .auth-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .auth-brand {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .auth-logo-text {
        font-size: 38px;
    }

    .auth-logo-mark {
        width: 22px;
        height: 22px;
    }

    .auth-store-label {
        font-size: 24px;
        padding: 4px 10px;
    }

    .auth-account-btn {
        width: 100%;
        min-height: 48px;
        font-size: 24px;
    }

    .auth-form-card h1 {
        font-size: 40px;
    }

    .auth-form-card p {
        font-size: 18px;
    }

    .auth-form input {
        min-height: 56px;
        font-size: 23px;
    }

    .auth-submit-btn {
        min-height: 56px;
        font-size: 36px;
    }

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

    .auth-decor {
        max-width: none;
        height: 156px;
    }

    .auth-decor span {
        font-size: 14px;
    }

    .auth-footer-legal {
        align-items: flex-start;
    }

    .auth-footer-payments {
        flex-wrap: wrap;
    }
}
