:root {
    --bg: #090d14;
    --bg-2: #121925;
    --panel: #1b1f2a;
    --line: rgba(117, 145, 170, 0.16);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.42);
    --muted-2: rgba(255, 255, 255, 0.62);
    --accent-rgb: 24, 232, 255;
    --accent: #18e8ff;
    --accent-2: #0da4cf;
    --steam-bg: #0b3044;
    --steam-border: rgba(24, 232, 255, 0.18);
    --steam-text: #1fc3f5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Montserrat", sans-serif;
    background:
        radial-gradient(circle at 84% 16%, rgba(24, 232, 255, 0.11), transparent 34%),
        linear-gradient(180deg, #090d14 0%, #080b12 100%);
    color: var(--text);
}

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

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

button {
    font: inherit;
    border: 0;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 28px;
}

/* HEADER */
.site-header {
    position: relative;
    z-index: 30;
    background: rgba(24, 27, 38, 0.98);
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.logo-name {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 38px;
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-name__rush {
    color: var(--accent);
    font-style: normal;
    letter-spacing: 0.02em;
    text-shadow: 0 0 18px rgba(24, 232, 255, 0.3);
}

.logo-name__skins {
    color: #ffffff;
    letter-spacing: 0.02em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-right: auto;
    margin-left: 26px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a i {
    font-size: 12px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.44);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    transform: translateY(-1px);
}

.main-nav a:hover i,
.main-nav a.active i {
    color: var(--accent);
    opacity: 1;
}

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

.header-mobile-panel {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(24, 232, 255, 0.12);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.header-burger span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-mobile-open .header-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-mobile-open .header-burger span:nth-child(2) {
    opacity: 0;
}

.site-header.is-mobile-open .header-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(3, 6, 12, 0.72);
    backdrop-filter: blur(4px);
}

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

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(24, 232, 255, 0.22);
    transform: translateY(-1px);
}

.icon-btn i {
    font-size: 15px;
}

.flag {
    display: block;
    width: 22px;
    height: 15px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.flag-fr {
    background:
        linear-gradient(90deg,
            #1d3f93 0%,
            #1d3f93 33.333%,
            #ffffff 33.333%,
            #ffffff 66.666%,
            #d62d39 66.666%,
            #d62d39 100%);
}

.lang-switcher {
    position: relative;
}

.lang-toggle {
    padding: 0 14px;
    min-width: 74px;
    gap: 8px;
}

.lang-badge {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lang-toggle i {
    font-size: 14px;
    opacity: 0.72;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 176px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(19, 24, 34, 0.98);
    border: 1px solid rgba(24, 232, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 4px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 45;
}

.lang-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    width: 100%;
    border-radius: 9px;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: left;
}

.lang-option strong {
    font-size: 14px;
    font-weight: 700;
}

.lang-option span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.72;
}

.lang-option:hover,
.lang-option.is-active {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.steam-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(12, 45, 68, 0.98) 0%, rgba(8, 29, 45, 0.98) 100%);
    border: 1px solid var(--steam-border);
    color: var(--steam-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Oxanium", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

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

.steam-btn i {
    font-size: 13px;
}

/* HERO */
.hero {
    --hero-image: url("../img/hero-bg.png");
    position: relative;
    min-height: 248px;
    background: linear-gradient(180deg, rgba(17, 22, 31, 0.98) 0%, rgba(15, 20, 29, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 -2px -2px -2px;
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 10, 18, 0.08) 0%, rgba(8, 10, 18, 0.1) 82%, rgba(8, 10, 18, 0.92) 100%);
    z-index: -1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 248px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    padding: 28px 0 34px 78px;
}

.hero h1 {
    margin: 0 0 18px;
    font-family: "Oxanium", sans-serif;
    font-size: 40px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    margin: 0;
    max-width: 580px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    color: var(--muted-2);
}

.hero--landing {
    background: linear-gradient(180deg, rgba(22, 26, 37, 0.98) 0%, rgba(18, 23, 34, 0.98) 100%);
}

.hero--landing .hero-overlay {
    background:
        linear-gradient(90deg, rgba(24, 29, 40, 0.94) 0%, rgba(24, 29, 40, 0.86) 22%, rgba(24, 29, 40, 0.12) 47%, rgba(24, 29, 40, 0.82) 66%, rgba(24, 29, 40, 0.96) 100%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.04) 0%, rgba(8, 10, 18, 0.12) 82%, rgba(8, 10, 18, 0.92) 100%);
}

.hero--landing .hero-inner {
    justify-content: flex-start;
}

.hero--landing .hero-content {
    width: 100%;
    max-width: none;
    padding: 34px 0 38px 43.5%;
}

.hero--landing h1 {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.05em;
}

.hero--landing p {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.34);
}

.feedback-hero {
    --hero-image: url("../img/feedback-hero.png");
    min-height: 268px;
    background: linear-gradient(180deg, rgba(22, 27, 38, 0.98) 0%, rgba(18, 23, 33, 0.98) 100%);
}

.feedback-hero::before {
    background-size: cover;
    background-position: center;
}

.feedback-hero .hero-overlay {
    background:
        linear-gradient(90deg, rgba(24, 29, 40, 0.94) 0%, rgba(24, 29, 40, 0.76) 14%, rgba(24, 29, 40, 0.1) 34%, rgba(24, 29, 40, 0.64) 48%, rgba(24, 29, 40, 0.92) 100%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.04) 0%, rgba(8, 10, 18, 0.12) 82%, rgba(8, 10, 18, 0.92) 100%);
}

.feedback-hero .hero-inner {
    min-height: 268px;
    justify-content: flex-start;
}

.feedback-hero .hero-content {
    width: 100%;
    max-width: none;
    padding: 30px 0 34px 41.5%;
}

.feedback-hero h1 {
    max-width: 560px;
    margin-bottom: 10px;
    font-size: 29px;
    line-height: 1;
    letter-spacing: 0.05em;
}

.feedback-hero p {
    max-width: 720px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.34);
}

.contacts-hero {
    --hero-image: url("../img/contacts-hero.png");
    min-height: 252px;
    background: linear-gradient(180deg, rgba(21, 26, 37, 0.98) 0%, rgba(18, 24, 34, 0.98) 100%);
}

.contacts-hero::before {
    background-size: cover;
    background-position: center;
}

.contacts-hero .hero-overlay {
    background:
        linear-gradient(90deg, rgba(24, 29, 40, 0.94) 0%, rgba(24, 29, 40, 0.74) 18%, rgba(24, 29, 40, 0.1) 36%, rgba(24, 29, 40, 0.62) 50%, rgba(24, 29, 40, 0.92) 100%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.04) 0%, rgba(8, 10, 18, 0.12) 82%, rgba(8, 10, 18, 0.92) 100%);
}

.contacts-hero .hero-inner {
    min-height: 252px;
    justify-content: flex-start;
}

.contacts-hero .hero-content {
    width: 100%;
    max-width: none;
    padding: 28px 0 34px 43.5%;
}

.contacts-hero h1 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1;
}

.contacts-hero p {
    max-width: 430px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.34);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .header-inner {
        min-height: 70px;
    }

    .main-nav {
        gap: 24px;
        margin-left: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .logo-name {
        font-size: 32px;
    }

    .hero-content {
        padding: 24px 0 28px 46px;
        max-width: 620px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero--landing .hero-content {
        padding-left: 43%;
    }

    .hero--landing h1 {
        font-size: 28px;
    }

    .feedback-hero .hero-content {
        padding-left: 41%;
    }

    .feedback-hero h1 {
        font-size: 28px;
    }

    .feedback-hero p {
        max-width: 620px;
    }
}

@media (max-width: 980px) {
    .header-inner {
        position: relative;
        flex-wrap: nowrap;
        padding-top: 14px;
        padding-bottom: 14px;
        gap: 18px;
    }

    body.has-mobile-nav {
        overflow: hidden;
    }

    .header-burger {
        display: inline-flex;
        margin-left: auto;
    }

    .header-mobile-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 18px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(19, 24, 34, 0.98);
        border: 1px solid rgba(24, 232, 255, 0.14);
        box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .site-header.is-mobile-open .header-mobile-panel {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav {
        width: 100%;
        margin: 0;
        gap: 16px;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 16px;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 320px;
    }

    .hero::before {
        background-size: cover;
        background-position: center;
    }

    .hero-inner {
        min-height: 320px;
        align-items: center;
    }

    .hero-content {
        padding: 34px 0 34px;
        max-width: 520px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero--landing .hero-inner {
        justify-content: flex-start;
    }

    .hero--landing .hero-content {
        padding-left: 42%;
    }

    .feedback-hero .hero-content {
        padding-left: 39%;
    }

    .feedback-hero::before {
        background-size: cover;
        background-position: center;
    }

    .feedback-hero p {
        max-width: 520px;
    }

    .contacts-hero .hero-content {
        padding-left: 40%;
    }

    .contacts-hero p {
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .header-burger {
        width: 46px;
        height: 46px;
    }

    .header-mobile-panel {
        top: calc(100% + 8px);
        padding: 16px;
        border-radius: 16px;
    }

    .logo {
        gap: 10px;
    }

    .logo-name {
        gap: 0;
        font-size: 24px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
    }

    .lang-toggle {
        min-width: 64px;
        padding: 0 10px;
    }

    .lang-menu {
        right: auto;
        left: 0;
        min-width: 156px;
    }

    .steam-btn {
        height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .main-nav a {
        font-size: 16px;
        gap: 8px;
    }

    .hero {
        min-height: 286px;
    }

    .hero::before {
        background-size: cover;
        background-position: 36% center;
    }

    .hero-inner {
        min-height: 286px;
    }

    .hero-content {
        padding: 26px 0 26px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero--landing .hero-overlay {
        background:
            linear-gradient(180deg, rgba(24, 29, 40, 0.72) 0%, rgba(24, 29, 40, 0.52) 42%, rgba(24, 29, 40, 0.92) 100%);
    }

    .hero--landing .hero-content {
        padding-left: 0;
        max-width: 100%;
    }

    .feedback-hero .hero-overlay {
        background:
            linear-gradient(180deg, rgba(24, 29, 40, 0.7) 0%, rgba(24, 29, 40, 0.48) 42%, rgba(24, 29, 40, 0.92) 100%);
    }

    .feedback-hero::before {
        background-size: cover;
        background-position: center;
    }

    .feedback-hero .hero-content {
        padding-left: 0;
        max-width: 100%;
    }

    .feedback-hero h1 {
        max-width: 100%;
        font-size: 28px;
    }

    .feedback-hero p {
        max-width: 100%;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.54);
    }
}

/* FEATURES */
.features {
    position: relative;
    margin-top: -1px;
    padding: 28px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 80% 0%, rgba(24, 232, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(7, 11, 19, 0) 0%, rgba(7, 11, 19, 0.32) 100%);
}

.features-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 18px;
}

.features-intro {
    position: relative;
    padding: 26px 24px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 84% 16%, rgba(24, 232, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(11, 17, 27, 0.98) 0%, rgba(7, 12, 21, 0.98) 100%);
    border: 1px solid rgba(77, 108, 141, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
}

.features-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02) 38%,
            rgba(24, 232, 255, 0.16) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.features-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(24, 232, 255, 0.08);
    border: 1px solid rgba(24, 232, 255, 0.14);
    color: rgba(167, 246, 255, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.features-intro h2 {
    margin: 0 0 16px;
    font-family: "Oxanium", sans-serif;
    font-size: 34px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
}

.features-intro p {
    margin: 0;
    max-width: 280px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
}

.features-grid {
    display: grid;
    gap: 14px;
    align-content: start;
}

.feature-card {
    --feature-shift: 0px;
    position: relative;
    min-height: 0;
    padding: 18px 20px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(11, 17, 27, 0.98) 0%, rgba(8, 13, 22, 0.98) 100%);
    border: 1px solid rgba(77, 108, 141, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.22);
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 92px;
    align-items: center;
    gap: 18px;
    transform: translateX(var(--feature-shift));
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 86% 14%, rgba(24, 232, 255, 0.12), transparent 24%);
    pointer-events: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    pointer-events: none;
}

.feature-card:nth-child(2) {
    --feature-shift: 22px;
}

.feature-card:nth-child(3) {
    --feature-shift: 44px;
}

.feature-card:hover {
    background:
        linear-gradient(180deg, rgba(12, 19, 31, 0.98) 0%, rgba(8, 14, 24, 0.98) 100%);
    border-color: rgba(24, 232, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 34px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(24, 232, 255, 0.08);
    transform: translateX(var(--feature-shift)) translateY(-2px);
}

.feature-card__index,
.feature-copy,
.feature-icon {
    position: relative;
    z-index: 1;
}

.feature-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: "Oxanium", sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(152, 230, 255, 0.92);
}

.feature-icon {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 46%),
        linear-gradient(180deg, rgba(24, 29, 40, 0.98) 0%, rgba(15, 20, 29, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 18px rgba(0, 0, 0, 0.18);
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.feature-copy h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 700;
    font-family: "Oxanium", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.feature-copy p {
    margin: 0;
    max-width: 580px;
    font-size: 15px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background:
        radial-gradient(circle at 50% 16%, rgba(24, 232, 255, 0.1), transparent 44%),
        linear-gradient(180deg, rgba(24, 29, 40, 0.98) 0%, rgba(15, 20, 29, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 24px rgba(0, 0, 0, 0.24),
        0 0 18px rgba(24, 232, 255, 0.08);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 14px rgba(24, 232, 255, 0.10));
}

.feature-card:hover .feature-copy h3 {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(24, 232, 255, 0.10);
}

.feature-card:hover .feature-copy p {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1180px) {
    .features-shell {
        grid-template-columns: 1fr;
    }

    .feature-card {
        --feature-shift: 0px !important;
    }

    .features-intro p {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .features {
        padding: 22px 0 30px;
    }

    .features-shell {
        gap: 14px;
    }

    .features-intro {
        padding: 22px 18px 24px;
        border-radius: 22px;
    }

    .features-intro h2 {
        font-size: 28px;
    }

    .feature-card {
        padding: 18px 16px;
        border-radius: 18px;
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 14px;
    }

    .feature-card .feature-icon {
        grid-column: 2;
        order: -1;
        width: 72px;
        height: 72px;
        margin-bottom: 4px;
    }

    .feature-card .feature-copy {
        grid-column: 2;
    }

    .feature-card__index {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 16px;
        align-self: start;
    }

    .feature-icon {
        border-radius: 15px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature-copy {
        gap: 8px;
    }

    .feature-copy h3 {
        font-size: 18px;
    }

    .feature-copy p {
        font-size: 14px;
    }
}

/* LIVE STRIP */
.live-strip {
    position: relative;
    padding: 28px 0 40px;
    overflow: hidden;
}

.live-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 84% 0%, rgba(24, 232, 255, 0.08), transparent 30%);
}

.live-strip__wrap {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.live-strip__label {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 18px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(19, 14, 20, 0.98) 0%, rgba(14, 10, 15, 0.98) 100%);
    border: 1px solid rgba(255, 72, 72, 0.14);
    color: #ff6767;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow:
        0 0 18px rgba(255, 59, 59, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff3d3d;
    box-shadow:
        0 0 10px rgba(255, 61, 61, 0.8),
        0 0 20px rgba(255, 61, 61, 0.35);
    animation: livePulse 1.8s infinite ease-in-out;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.75;
    }
}

.live-strip__viewport {
    position: relative;
    min-height: 222px;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(10, 15, 23, 0.98) 0%, rgba(7, 13, 21, 0.98) 100%);
    border: 1px solid rgba(67, 100, 128, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 16px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.live-strip__viewport::before,
.live-strip__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 82px;
    z-index: 3;
    pointer-events: none;
}

.live-strip__viewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(9, 14, 22, 1) 0%, rgba(9, 14, 22, 0) 100%);
}

.live-strip__viewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(9, 14, 22, 1) 0%, rgba(9, 14, 22, 0) 100%);
}

.live-strip__track {
    --live-loop-width: 0px;
    --live-duration: 36s;
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: liveMarquee var(--live-duration) linear infinite;
    will-change: transform;
}

.live-strip__group {
    display: flex;
    align-items: stretch;
    gap: 14px;
    padding-right: 14px;
}

.live-strip__track:hover {
    animation-play-state: paused;
}

.live-strip__viewport.is-loading .live-strip__track {
    animation: none;
}

@keyframes liveMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--live-loop-width) * -1));
    }
}

.live-card {
    position: relative;
    width: 176px;
    min-width: 176px;
    min-height: 186px;
    padding: 14px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(17, 22, 33, 0.98) 0%, rgba(11, 16, 24, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.22);
    display: grid;
    grid-template-rows: auto 78px auto auto;
    gap: 12px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.live-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 0%, rgba(24, 232, 255, 0.08), transparent 24%);
    pointer-events: none;
}

.live-card--violet {
    background:
        radial-gradient(circle at 80% 0%, rgba(54, 194, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(17, 22, 33, 0.98) 0%, rgba(11, 16, 24, 0.98) 100%);
}

.live-card--red {
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 77, 77, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(25, 16, 19, 0.98) 0%, rgba(11, 10, 14, 0.98) 100%);
}

.live-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 232, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 32px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(24, 232, 255, 0.06);
}

.live-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.live-card__pulse {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(24, 232, 255, 0.55);
}

.live-card__time {
    font-size: 10px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.live-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.live-card img {
    width: 112px;
    height: 64px;
    object-fit: contain;
    margin: 0;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
}

.live-card h4 {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
}

.live-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

@media (prefers-reduced-motion: reduce) {
    .live-strip__track {
        animation: none;
    }
}

@media (max-width: 980px) {
    .live-strip__wrap {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .live-strip__label {
        flex-direction: row;
        align-items: center;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .live-card {
        width: 164px;
        min-width: 164px;
        min-height: 176px;
    }

    .live-card img {
        width: 102px;
        height: 58px;
    }
}

@media (max-width: 640px) {
    .live-strip {
        padding: 22px 0 28px;
    }

    .live-strip__viewport {
        min-height: 192px;
        padding: 14px;
    }

    .live-strip__viewport::before,
    .live-strip__viewport::after {
        width: 34px;
    }

    .live-card {
        width: 150px;
        min-width: 150px;
        min-height: 164px;
        padding: 12px;
        border-radius: 14px;
    }

    .live-card img {
        width: 94px;
        height: 50px;
    }

    .live-card__media {
        border-radius: 14px;
    }

    .live-card h4 {
        font-size: 11px;
    }

    .live-card p {
        font-size: 15px;
    }
}

/* FOOTER */
.site-footer {
    position: relative;
    padding: 64px 0 52px;
    background:
        radial-gradient(circle at 50% 0%, rgba(24, 232, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #06090f 0%, #05070c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015) 100%);
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.footer-logo .logo-name {
    font-size: 28px;
    line-height: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 18px;
}

.footer-nav a {
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.66);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.footer-company,
.footer-note,
.footer-copy {
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
}

.footer-note {
    color: rgba(255, 255, 255, 0.56);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.62);
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 8px 18px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(24, 232, 255, 0.2);
}

.footer-socials i {
    font-size: 15px;
}

.footer-mail {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer-mail:hover {
    color: var(--accent);
}

@media (max-width: 640px) {
    .site-footer {
        padding: 46px 0 38px;
    }

    .footer-nav {
        gap: 14px 18px;
        margin-bottom: 16px;
    }

    .footer-nav a {
        font-size: 11px;
    }

    .footer-company,
    .footer-note,
    .footer-copy {
        font-size: 10px;
    }

    .footer-mail {
        font-size: 13px;
        word-break: break-word;
    }
}

/* STORE */
.store-section {
    position: relative;
    padding: 20px 0 32px;
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 162, 255, 0.05), transparent 20%),
        radial-gradient(circle at 85% 8%, rgba(24, 232, 255, 0.06), transparent 22%),
        linear-gradient(180deg, #060a10 0%, #070b11 100%);
}

.store-shell {
    position: relative;
    padding: 0;
    border-radius: 26px;
    display: grid;
    gap: 18px;
}

.store-command {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 22px;
    padding: 30px 32px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(24, 232, 255, 0.18), transparent 24%),
        radial-gradient(circle at 18% 120%, rgba(0, 113, 255, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(10, 16, 26, 0.98) 0%, rgba(6, 11, 18, 0.99) 100%);
    border: 1px solid rgba(91, 224, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 56px rgba(0, 0, 0, 0.24);
}

.store-command::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.03)),
        repeating-linear-gradient(90deg, transparent 0, transparent 98px, rgba(110, 196, 255, 0.05) 98px, rgba(110, 196, 255, 0.05) 99px);
    opacity: 0.55;
    pointer-events: none;
}

.store-command__intro,
.store-command__stats {
    position: relative;
    z-index: 1;
}

.store-command__intro {
    display: grid;
    align-content: center;
    gap: 14px;
}

.store-command__eyebrow {
    margin: 0;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(167, 241, 255, 0.68);
}

.store-command__title {
    margin: 0;
    max-width: 640px;
    font-family: "Oxanium", sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #f7fdff;
}

.store-command__text {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.66);
}

.store-command__stats {
    display: grid;
    gap: 14px;
    align-content: stretch;
}

.store-command__stat {
    min-height: 118px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(17, 25, 38, 0.92) 0%, rgba(10, 15, 24, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    align-content: space-between;
    gap: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 28px rgba(0, 0, 0, 0.18);
}

.store-command__stat span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.store-command__stat strong {
    font-size: 16px;
    line-height: 1.48;
    font-weight: 600;
    color: #f7fdff;
}

.feedback-section {
    position: relative;
    padding: 12px 0 46px;
    background:
        radial-gradient(circle at 18% 8%, rgba(24, 232, 255, 0.08), transparent 20%),
        radial-gradient(circle at 82% 12%, rgba(0, 141, 255, 0.07), transparent 24%),
        linear-gradient(180deg, #080c13 0%, #090c14 100%);
}

.feedback-shell {
    display: grid;
    gap: 18px;
}

.feedback-summary,
.feedback-form-card,
.feedback-card {
    border-radius: 24px;
    background:
        radial-gradient(circle at 80% 18%, rgba(24, 232, 255, 0.09), transparent 26%),
        linear-gradient(180deg, rgba(12, 17, 27, 0.98) 0%, rgba(8, 12, 20, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 38px rgba(0, 0, 0, 0.2);
}

.feedback-summary {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
}

.feedback-summary__eyebrow,
.feedback-form-card__eyebrow,
.feedback-board__eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(167, 241, 255, 0.5);
}

.feedback-summary__score-block {
    display: grid;
    gap: 10px;
}

.feedback-summary__score {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feedback-summary__score strong {
    font-size: 54px;
    line-height: 0.92;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.feedback-summary__score-meta {
    display: grid;
    gap: 6px;
}

.feedback-summary__count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.46);
}

.feedback-summary__feature {
    min-width: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(16, 22, 32, 0.9) 0%, rgba(11, 15, 23, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 12px;
}

.feedback-summary__feature-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.feedback-summary__feature-rating {
    display: grid;
    justify-items: end;
    gap: 6px;
}

.feedback-summary__feature-label {
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.feedback-summary__feature-copy {
    display: grid;
    gap: 6px;
}

.feedback-summary__feature-copy strong {
    font-size: 15px;
    line-height: 1.25;
    color: #ffffff;
}

.feedback-summary__feature-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
}

.feedback-summary__cta {
    min-width: 128px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(25, 73, 39, 0.96) 0%, rgba(15, 49, 26, 0.98) 100%);
    border: 1px solid rgba(95, 228, 132, 0.14);
    color: #98efb0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxanium", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.feedback-summary__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    border-color: rgba(95, 228, 132, 0.24);
}

.feedback-summary__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.68;
}

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

.feedback-metric {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feedback-metric span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}

.feedback-metric strong {
    font-size: 16px;
    color: #ffffff;
}

.feedback-main {
    min-width: 0;
    display: grid;
    gap: 16px;
}

.feedback-form-card {
    padding: 22px;
    margin-bottom: 18px;
}

.feedback-form-card--composer {
    margin-bottom: 0;
}

.feedback-form-card__head,
.feedback-form__grid,
.feedback-form__foot,
.feedback-board__head,
.feedback-card__head,
.feedback-card__identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.feedback-form-card__head {
    margin-bottom: 18px;
    align-items: end;
}

.feedback-form-card__head h2,
.feedback-board__head h3 {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.feedback-form-card__hint,
.feedback-board__count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.46);
}

.feedback-board__controls {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.feedback-control {
    display: grid;
    gap: 6px;
}

.feedback-control span {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
}

.feedback-dropdown {
    min-width: 156px;
}

.feedback-control__select {
    min-width: 156px;
    justify-content: space-between;
    border-radius: 14px;
    background:
        radial-gradient(circle at 82% 22%, rgba(24, 232, 255, 0.1), transparent 38%),
        linear-gradient(180deg, rgba(17, 23, 34, 0.96) 0%, rgba(10, 15, 23, 0.99) 100%);
}

.feedback-control__select i:last-child {
    color: rgba(255, 255, 255, 0.46);
}

.feedback-dropdown__panel {
    width: 100%;
    min-width: 0;
}

.feedback-form {
    display: grid;
    gap: 16px;
}

.feedback-form__grid {
    align-items: stretch;
}

.feedback-field {
    display: grid;
    gap: 8px;
}

.feedback-field span,
.feedback-rating-picker span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.feedback-field input,
.feedback-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font: inherit;
    outline: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.feedback-field input {
    height: 50px;
    padding: 0 16px;
}

.feedback-field textarea {
    min-height: 118px;
    padding: 14px 16px;
    resize: vertical;
}

.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.feedback-field input:focus,
.feedback-field textarea:focus {
    border-color: rgba(24, 232, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.feedback-form__foot {
    align-items: end;
}

.feedback-rating-picker {
    display: grid;
    gap: 10px;
}

.feedback-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feedback-star {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.feedback-stars--display .feedback-star {
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
}

.feedback-stars--input .feedback-star:hover,
.feedback-star.is-active {
    color: #ffba39;
    border-color: rgba(24, 232, 255, 0.18);
    background: rgba(24, 232, 255, 0.08);
}

.feedback-submit {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(25, 110, 49, 0.98) 0%, rgba(15, 77, 33, 0.98) 100%);
    border: 1px solid rgba(89, 255, 140, 0.18);
    color: #a8f6bf;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.feedback-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.feedback-board__head {
    margin-bottom: 14px;
    align-items: end;
}

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

.feedback-grid.is-ready .feedback-card {
    opacity: 0;
    transform: translateY(12px);
    animation: feedbackCardReveal 0.55s cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
    animation-delay: calc(var(--feedback-index, 0) * 40ms);
}

.feedback-card {
    padding: 18px;
    background:
        radial-gradient(circle at 85% 10%, rgba(24, 232, 255, 0.05), transparent 22%),
        linear-gradient(180deg, rgba(13, 18, 28, 0.96) 0%, rgba(9, 13, 21, 0.98) 100%);
}

.feedback-card:nth-child(3n) {
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 193, 56, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(25, 20, 12, 0.4) 0%, rgba(15, 12, 9, 0.72) 100%);
}

.feedback-card:nth-child(3n + 2) {
    background:
        radial-gradient(circle at 82% 14%, rgba(255, 88, 88, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(31, 17, 21, 0.88) 0%, rgba(18, 12, 16, 0.96) 100%);
}

.feedback-card__head {
    margin-bottom: 14px;
    align-items: start;
}

.feedback-card__identity {
    justify-content: start;
}

.feedback-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 36%),
        linear-gradient(160deg, rgba(13, 170, 207, 0.34) 0%, rgba(69, 213, 255, 0.18) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 18px rgba(0, 0, 0, 0.18),
        0 0 20px rgba(24, 232, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.feedback-card__avatar--summary {
    width: 52px;
    height: 52px;
}

.feedback-card__avatar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(7, 10, 16, 0.26);
    color: #ffffff;
}

.feedback-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(70, 214, 255, 0.14) 0%, rgba(13, 170, 207, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(213, 249, 255, 0.92);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feedback-card__identity strong,
.feedback-card h4 {
    color: #ffffff;
}

.feedback-card__identity strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.feedback-card__identity span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.feedback-card h4 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.feedback-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

.feedback-composer {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 75;
    width: min(396px, calc(100vw - 24px));
    display: grid;
    justify-items: end;
    gap: 12px;
}

.feedback-composer:not(.is-open) .feedback-composer__toggle {
    display: none;
}

.feedback-composer__toggle,
.support-composer__toggle {
    min-width: 88px;
    min-height: 88px;
    padding: 12px 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(24, 232, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(20, 24, 33, 0.98), rgba(11, 16, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    text-align: left;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feedback-composer__toggle:hover,
.support-composer__toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 232, 255, 0.24);
    box-shadow: 0 34px 76px rgba(0, 0, 0, 0.42);
}

.feedback-composer__toggle-icon,
.support-composer__toggle-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(70, 214, 255, 0.18), rgba(13, 170, 207, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    font-size: 18px;
}

.feedback-composer__toggle-copy,
.support-composer__toggle-copy {
    display: none;
}

.feedback-composer__toggle-copy strong,
.feedback-composer__toggle-copy small,
.support-composer__toggle-copy strong,
.support-composer__toggle-copy small {
    display: block;
}

.feedback-composer__toggle-copy strong,
.support-composer__toggle-copy strong {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
}

.feedback-composer__toggle-copy small,
.support-composer__toggle-copy small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
}

.feedback-composer__panel {
    width: 100%;
}

.feedback-composer__panel .feedback-form-card {
    max-height: min(78vh, 560px);
    overflow: auto;
}

.feedback-composer__close,
.support-composer__close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feedback-composer.is-open .feedback-composer__toggle,
.support-composer.is-open .support-composer__toggle {
    min-width: 196px;
    justify-content: flex-start;
}

.feedback-composer.is-open .feedback-composer__toggle-copy,
.support-composer.is-open .support-composer__toggle-copy {
    display: block;
}

.contacts-section {
    position: relative;
    padding: 20px 0 44px;
}

.contacts-shell {
    display: grid;
    gap: 20px;
}

.contacts-block {
    position: relative;
    overflow: hidden;
    padding: 28px 30px 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(16, 197, 223, 0.15), transparent 34%),
        linear-gradient(180deg, rgba(12, 17, 27, 0.98), rgba(8, 12, 20, 0.98));
    border: 1px solid rgba(26, 224, 255, 0.11);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 20px;
    align-items: stretch;
}

.contacts-block--secondary {
    gap: 18px;
    display: grid;
    align-content: start;
}

.contacts-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(24, 232, 255, 0.09);
    border: 1px solid rgba(24, 232, 255, 0.16);
    color: #88f3ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contacts-block h2 {
    margin: 0 0 12px;
    font-family: "Oxanium", sans-serif;
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.contacts-block p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.66);
}

.contacts-channel-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.contacts-chip {
    width: 100%;
    min-height: 88px;
    padding: 16px 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contacts-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 232, 255, 0.18);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.contacts-chip__icon,
.contacts-chip__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contacts-chip__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(17, 212, 239, 0.16), rgba(12, 83, 109, 0.18));
    border: 1px solid rgba(24, 232, 255, 0.12);
    color: #7deeff;
    font-size: 20px;
}

.contacts-chip__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.contacts-chip__body strong {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.contacts-chip__body span {
    min-width: 0;
    font-size: 15px;
    color: #ffffff;
    word-break: break-word;
}

.contacts-chip__action {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.contacts-status {
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at right top, rgba(22, 232, 255, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(7, 23, 31, 0.92), rgba(10, 18, 27, 0.92));
    border: 1px solid rgba(24, 232, 255, 0.12);
}

.contacts-status__live {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a2f7ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contacts-status__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #18e8ff;
    box-shadow: 0 0 0 6px rgba(24, 232, 255, 0.08);
}

.contacts-status strong {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.contacts-points {
    display: grid;
    gap: 12px;
}

.contacts-point {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contacts-point span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contacts-point strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.5;
}

.contacts-community {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 30px;
    border-radius: 26px;
    background:
        linear-gradient(90deg, rgba(9, 14, 22, 0.96) 0%, rgba(10, 17, 25, 0.96) 56%, rgba(11, 45, 56, 0.92) 100%);
    border: 1px solid rgba(24, 232, 255, 0.1);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.contacts-community__copy {
    max-width: 560px;
}

.contacts-community h3 {
    margin: 0 0 10px;
    font-family: "Oxanium", sans-serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.contacts-community p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

.contacts-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contacts-link {
    width: 98px;
    min-height: 88px;
    padding: 12px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contacts-link i {
    font-size: 20px;
    color: #7deeff;
}

.contacts-link span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-form,
.support-lookup,
.support-reply {
    display: grid;
    gap: 16px;
}

.support-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.support-field {
    display: grid;
    gap: 8px;
}

.support-field span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.support-field input,
.support-field textarea,
.support-field select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.support-field textarea {
    min-height: 140px;
    padding: 16px;
    resize: vertical;
}

.support-field input::placeholder,
.support-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.support-field input:focus,
.support-field textarea:focus,
.support-field select:focus {
    border-color: rgba(106, 162, 255, 0.5);
    background: rgba(255, 255, 255, 0.045);
}

.support-form__actions {
    display: grid;
    gap: 12px;
}

.support-submit {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #44a1ff 0%, #246bff 100%);
    color: #f4fbff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.support-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.support-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.support-submit--ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
}

.support-status {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
}

.support-status--idle {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.58);
}

.support-status--loading {
    background: rgba(47, 123, 255, 0.08);
    border: 1px solid rgba(47, 123, 255, 0.16);
    color: #d6e5ff;
}

.support-status--success {
    background: rgba(32, 158, 88, 0.12);
    border: 1px solid rgba(97, 255, 166, 0.18);
    color: #bbffd7;
}

.support-status--error {
    background: rgba(183, 44, 44, 0.14);
    border: 1px solid rgba(255, 125, 125, 0.18);
    color: #ffcaca;
}

.support-divider {
    height: 1px;
    margin: 26px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.support-thread {
    margin-top: 18px;
    padding-top: 6px;
}

.support-thread__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.support-thread__meta {
    display: grid;
    justify-items: end;
    gap: 6px;
    text-align: right;
}

.support-thread__meta span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-thread__meta strong {
    color: #ffffff;
    font-size: 14px;
    text-transform: capitalize;
}

.support-thread__messages {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.support-composer {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 75;
    width: min(396px, calc(100vw - 24px));
    display: grid;
    justify-items: end;
    gap: 12px;
}

.support-composer__panel {
    width: 100%;
    max-height: calc(100vh - 124px);
    min-height: 0;
}

.support-chat {
    height: min(72vh, 620px);
    max-height: calc(100vh - 124px);
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(38, 111, 255, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(10, 15, 24, 0.98), rgba(7, 11, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.support-chat__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 0;
}

.support-chat__head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.support-chat__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 10px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(65, 137, 255, 0.12);
    border: 1px solid rgba(65, 137, 255, 0.18);
    color: #8fc0ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.support-chat__meta {
    padding: 12px 20px 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-chat__status {
    margin: 12px 20px 0;
    min-height: 48px;
    align-content: start;
    overflow: hidden;
}

.support-chat__messages {
    display: grid;
    align-content: start;
    gap: 12px;
    flex: 1 1 auto;
    min-height: 0;
    margin: 14px 20px 0;
    padding: 2px 8px 12px 0;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.support-chat__messages::-webkit-scrollbar {
    width: 8px;
}

.support-chat__messages::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.support-chat__compose {
    flex: 0 0 auto;
    min-height: 0;
    padding: 14px 20px 20px;
    display: grid;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 12, 19, 0.68);
    position: relative;
    z-index: 1;
}

.support-chat__label {
    display: inline-block;
}

.support-chat__actions {
    display: grid;
    gap: 12px;
}

.support-chat__compose .support-field textarea {
    min-height: 108px;
    max-height: 144px;
}

.support-field--subject {
    margin-bottom: 2px;
}

.support-composer__toggle-icon {
    background: linear-gradient(180deg, rgba(74, 180, 255, 0.18), rgba(13, 170, 207, 0.18));
}

.support-composer__close {
    flex: 0 0 38px;
}

.support-thread__empty {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}

.support-message {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.support-message--staff {
    background: rgba(64, 118, 255, 0.1);
    border-color: rgba(64, 118, 255, 0.16);
}

.support-message__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.support-message__meta strong,
.support-message__meta span {
    white-space: nowrap;
}

.support-message p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.contacts-link:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 232, 255, 0.18);
    background: rgba(24, 232, 255, 0.06);
    color: #ffffff;
}

/* toolbar */
.store-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 22px 24px;
    margin-bottom: 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 18%, rgba(24, 232, 255, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(11, 16, 25, 0.98) 0%, rgba(8, 12, 19, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 34px rgba(0, 0, 0, 0.2);
}

.store-toolbar__left,
.store-toolbar__right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-toolbar__left {
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.store-toolbar__caption {
    display: grid;
    gap: 8px;
}

.store-toolbar__caption span {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(167, 241, 255, 0.66);
}

.store-toolbar__caption strong {
    font-family: "Oxanium", sans-serif;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.store-toolbar__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-toolbar__right {
    align-items: center;
    justify-content: flex-end;
}

.store-dropdown {
    position: relative;
}

.store-select,
.store-search {
    min-height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(17, 24, 36, 0.96) 0%, rgba(10, 14, 22, 0.98) 100%);
    border: 1px solid rgba(102, 178, 216, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.16);
}

.store-select {
    color: rgba(255, 255, 255, 0.82);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.store-select i:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
    transition: transform 0.22s ease, color 0.22s ease;
}

.store-select.is-open i:last-child {
    transform: rotate(180deg);
    color: #9ef4ff;
}

.store-select:hover {
    border-color: rgba(24, 232, 255, 0.28);
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 16px 28px rgba(0, 0, 0, 0.2),
        0 0 24px rgba(24, 232, 255, 0.08);
}

.store-select--sort {
    min-width: 148px;
    justify-content: space-between;
}

.store-dropdown__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    max-height: min(420px, 60vh);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(13, 19, 31, 0.98) 0%, rgba(8, 12, 19, 0.98) 100%);
    border: 1px solid rgba(110, 196, 255, 0.14);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(24, 232, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 20;
    backdrop-filter: blur(12px);
    scrollbar-width: thin;
    scrollbar-color: rgba(24, 232, 255, 0.35) rgba(255, 255, 255, 0.04);
}

.store-dropdown__panel--wide {
    min-width: 280px;
}

.store-dropdown__panel--searchable {
    padding-top: 12px;
}

.store-dropdown__searchbox {
    height: 40px;
    margin-bottom: 10px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.store-dropdown__searchbox i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.34);
}

.store-dropdown__searchbox input {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font: inherit;
}

.store-dropdown__searchbox input::placeholder {
    color: rgba(255, 255, 255, 0.26);
}

.store-dropdown__searchbox input:focus {
    outline: none;
}

.store-dropdown__options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: min(360px, 52vh);
    padding-right: 2px;
    overflow-y: auto;
}

.store-dropdown__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-dropdown__group+.store-dropdown__group {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.store-dropdown__group-title {
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(152, 239, 255, 0.4);
}

.store-dropdown__group-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-dropdown__empty {
    min-height: 56px;
    padding: 16px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.store-dropdown__panel::-webkit-scrollbar {
    width: 8px;
}

.store-dropdown__panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.store-dropdown__panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(24, 232, 255, 0.58) 0%, rgba(70, 149, 255, 0.55) 100%);
    border-radius: 999px;
}

.store-dropdown__options::-webkit-scrollbar {
    width: 8px;
}

.store-dropdown__options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.store-dropdown__options::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(24, 232, 255, 0.52) 0%, rgba(70, 149, 255, 0.48) 100%);
    border-radius: 999px;
}

.store-dropdown__panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-dropdown__option {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.74);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-dropdown__option:hover,
.store-dropdown__option.is-selected {
    background: linear-gradient(180deg, rgba(13, 170, 207, 0.16) 0%, rgba(56, 145, 255, 0.1) 100%);
    color: #ffffff;
}

.store-dropdown__option small {
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
}

.store-search {
    min-width: 360px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-search i {
    color: rgba(160, 232, 255, 0.62);
    font-size: 15px;
}

.store-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}

.store-search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* layout */
.store-layout {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

/* sidebar */
.store-sidebar {
    position: sticky;
    top: 104px;
    padding: 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(24, 232, 255, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(9, 14, 22, 0.98) 0%, rgba(6, 10, 17, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(0, 0, 0, 0.22);
}

.filter-block {
    padding: 14px 14px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-block+.filter-block {
    margin-top: 12px;
}

.filter-title {
    width: 100%;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-title.static {
    cursor: default;
}

.filter-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-title i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.22s ease, color 0.22s ease;
}

.filter-title.is-open .fa-angle-down {
    transform: rotate(180deg);
}

.filter-content {
    margin-top: 12px;
    display: none;
}

.filter-content.is-open {
    display: block;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.check-row+.check-row {
    margin-top: 8px;
}

.check-row input {
    width: 13px;
    height: 13px;
    margin: 0;
    accent-color: #18e8ff;
}

.toggle-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    position: relative;
}

.toggle-row span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.toggle-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-ui {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: 0.2s ease;
}

.toggle-ui::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: 0.2s ease;
}

.toggle-row input:checked+.toggle-ui {
    background: rgba(24, 232, 255, 0.24);
    border-color: rgba(24, 232, 255, 0.35);
}

.toggle-row input:checked+.toggle-ui::before {
    left: 20px;
    background: #aaf7ff;
}

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

.price-grid input {
    width: 100%;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    outline: 0;
    padding: 0 12px;
    font: inherit;
}

.price-grid input::placeholder {
    color: rgba(255, 255, 255, 0.24);
}

/* catalog */
.store-catalog {
    min-width: 0;
    display: grid;
    gap: 16px;
}

.store-detail {
    max-height: 0;
    margin-bottom: 0;
    padding: 0 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 82% 18%, rgba(24, 232, 255, 0.12), transparent 24%),
        radial-gradient(circle at 14% 78%, rgba(70, 149, 255, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(12, 17, 27, 0.98) 0%, rgba(8, 12, 20, 0.99) 100%);
    border: 1px solid transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 26px 52px rgba(0, 0, 0, 0.22);
    opacity: 0;
    overflow: clip;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top center;
    will-change: transform, opacity, max-height;
    transition:
        max-height 0.46s cubic-bezier(0.2, 0.82, 0.22, 1),
        opacity 0.28s ease,
        transform 0.4s cubic-bezier(0.2, 0.82, 0.22, 1),
        margin-bottom 0.4s ease,
        padding 0.4s ease,
        border-color 0.3s ease;
}

.store-detail.is-open {
    max-height: 1200px;
    margin-bottom: 2px;
    padding: 24px;
    border-color: rgba(110, 196, 255, 0.16);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.store-detail__head,
.store-detail__similar-head,
.store-detail__line,
.store-detail__purchase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.store-detail__head {
    margin-bottom: 20px;
}

.store-detail__eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(157, 240, 255, 0.58);
}

.store-detail__title {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.store-detail__close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(18, 24, 36, 0.96) 0%, rgba(11, 16, 25, 0.98) 100%);
    color: rgba(255, 255, 255, 0.72);
    transition: 0.2s ease;
}

.store-detail__close:hover {
    color: #ffffff;
    border-color: rgba(24, 232, 255, 0.2);
    transform: translateY(-1px);
}

.store-detail__body {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.store-detail__media {
    position: relative;
    min-height: 272px;
    padding: 28px 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 100%, rgba(24, 232, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(17, 23, 34, 0.92) 0%, rgba(10, 15, 23, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-detail__media img {
    max-width: 100%;
    max-height: 188px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.36));
}

.store-detail__accent {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 68px;
    height: 5px;
    border-radius: 999px;
    background: #8e939d;
}

.store-detail__accent--red {
    background: #ff4c4c;
}

.store-detail__accent--violet {
    background: #d22cff;
}

.store-detail__accent--blue {
    background: #35a4ff;
}

.store-detail__accent--orange {
    background: #ff8e2b;
}

.store-detail__accent--gray {
    background: #8e939d;
}

.store-detail__flag {
    position: absolute;
    top: 16px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #ff9a36;
}

.store-detail__flag--gray {
    color: #c3cad3;
}

.store-detail__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.store-detail__meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.store-detail__line {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.store-detail__name {
    font-family: "Oxanium", sans-serif;
    font-size: 30px;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.store-detail__quality,
.store-detail__float {
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.store-detail__description {
    max-width: 640px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.store-detail__steam {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(171, 242, 255, 0.82);
    font-size: 13px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.store-detail__steam:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.store-detail__purchase {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.store-detail__prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-detail__prices strong {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.store-detail__prices span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}

.store-detail__button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 214, 241, 0.22) 0%, rgba(47, 133, 255, 0.18) 100%);
    border: 1px solid rgba(24, 232, 255, 0.24);
    color: #e8fdff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.store-detail__button:hover {
    filter: brightness(1.08);
    border-color: rgba(24, 232, 255, 0.4);
    transform: translateY(-1px);
}

.store-detail__similar {
    margin-top: 24px;
}

.store-detail__similar-head {
    margin-bottom: 14px;
}

.store-detail__similar-head h4 {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 22px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.store-detail__similar-head span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.44);
}

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

.store-detail__mini-card {
    position: relative;
    padding: 14px 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 50% 100%, rgba(24, 232, 255, 0.06), transparent 36%),
        linear-gradient(180deg, rgba(15, 21, 32, 0.96) 0%, rgba(9, 14, 22, 0.98) 100%);
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-detail__mini-card:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 232, 255, 0.2);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.store-detail__mini-card.is-active {
    border-color: rgba(24, 232, 255, 0.28);
    box-shadow: 0 0 0 1px rgba(24, 232, 255, 0.1) inset, 0 18px 30px rgba(0, 0, 0, 0.2);
}

.store-detail__mini-accent {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #8e939d;
}

.store-detail__mini-accent--red {
    background: #ff4c4c;
}

.store-detail__mini-accent--violet {
    background: #d22cff;
}

.store-detail__mini-accent--blue {
    background: #35a4ff;
}

.store-detail__mini-accent--orange {
    background: #ff8e2b;
}

.store-detail__mini-accent--gray {
    background: #8e939d;
}

.store-detail__mini-image {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.store-detail__mini-image img {
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.store-detail__mini-name {
    display: block;
    min-height: 36px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

.store-detail__mini-price {
    font-size: 14px;
    color: #ffffff;
}

.store-catalog__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 6px;
}

.store-catalog__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.store-catalog__eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(157, 240, 255, 0.58);
}

.store-catalog__title {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 30px;
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.store-catalog__stats {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.92) 0%, rgba(10, 15, 23, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

.store-catalog__stats--sync {
    max-width: 280px;
    line-height: 1.35;
}

.store-catalog__stats--pagination {
    max-width: none;
}

.store-refresh {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(17, 23, 34, 0.92) 0%, rgba(10, 15, 23, 0.96) 100%);
    border: 1px solid rgba(24, 232, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.store-refresh:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 232, 255, 0.26);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18), 0 0 20px rgba(24, 232, 255, 0.08);
}

.store-refresh.is-loading i {
    animation: storeRefreshSpin 0.8s linear infinite;
}

.store-refresh:disabled {
    opacity: 0.7;
    cursor: default;
}

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

.store-catalog__footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.store-refresh--more {
    min-width: 168px;
    justify-content: center;
}

.skin-card {
    position: relative;
    min-height: 270px;
    padding: 16px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 100%, rgba(24, 232, 255, 0.08), transparent 48%),
        linear-gradient(180deg, rgba(10, 14, 22, 0.98) 0%, rgba(8, 11, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 16px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.skin-card:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 232, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 34px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(24, 232, 255, 0.08);
}

.skin-card__badge {
    position: absolute;
    right: 16px;
    top: 0;
    width: 64px;
    height: 3px;
    border-radius: 999px;
}

.skin-card__badge--red {
    background: #ff4c4c;
}

.skin-card__badge--violet {
    background: #d22cff;
}

.skin-card__badge--blue {
    background: #35a4ff;
}

.skin-card__badge--gray {
    background: #8e939d;
}

.skin-card__badge--orange {
    background: #ff8e2b;
}

.skin-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.skin-card__signal {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.skin-card__badge-left {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex: 0 0 auto;
}

.skin-card__badge-left--orange {
    color: #ff9a36;
}

.skin-card__badge-left--gray {
    color: #b9bec7;
}

.skin-card__quality {
    min-height: 28px;
    max-width: 100%;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.66);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skin-card__availability {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(24, 232, 255, 0.08);
    border: 1px solid rgba(24, 232, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(174, 246, 255, 0.88);
    flex: 0 0 auto;
}

.skin-card__image {
    height: 116px;
    padding: 14px 10px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(18, 25, 38, 0.86) 0%, rgba(10, 15, 23, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.skin-card__image img {
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
    opacity: 0;
    transform: translateY(6px) scale(0.985);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.skin-card__image.is-loaded img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.skin-card__image.is-loading::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(255, 255, 255, 0.08) 38%,
            rgba(255, 255, 255, 0.03) 100%);
    background-size: 200% 100%;
    animation: storeSkeleton 1.4s ease-in-out infinite;
}

.skin-card__meta {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
}

.skin-card__kicker {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(157, 240, 255, 0.62);
}

.skin-card__name {
    min-height: 42px;
    font-size: 14px;
    line-height: 1.38;
    color: rgba(255, 255, 255, 0.76);
}

.skin-card__purchase {
    margin-top: auto;
    display: grid;
    gap: 12px;
}

.skin-card__pricing {
    display: grid;
    gap: 6px;
}

.skin-card__source-price {
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.42);
}

.skin-card__price {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
}

.skin-card__btn {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 214, 241, 0.22) 0%, rgba(47, 133, 255, 0.18) 100%);
    border: 1px solid rgba(24, 232, 255, 0.22);
    color: #ecfeff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.skin-card__btn:hover {
    filter: brightness(1.08);
    border-color: rgba(24, 232, 255, 0.38);
    transform: translateY(-1px);
}

.skin-card__btn i {
    font-size: 11px;
}

.skin-card--case .skin-card__image img {
    max-height: 98px;
}

.catalog-grid--revealed .skin-card:not(.skin-card--skeleton) {
    opacity: 0;
    transform: translateY(14px) scale(0.986);
    animation: storeCardReveal 0.62s cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
    animation-delay: calc(var(--stagger-index, 0) * 46ms);
}

@keyframes storeSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes storeCardReveal {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.986);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes feedbackCardReveal {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes storeRefreshSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.catalog-grid.is-loading,
.catalog-grid.is-empty {
    min-height: 280px;
}

.catalog-grid.is-loading {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.live-strip__viewport.is-loading {
    overflow: hidden;
}

.store-empty {
    padding: 28px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 17, 27, 0.92) 0%, rgba(9, 13, 21, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.64);
}

.live-card--skeleton,
.skin-card--skeleton {
    pointer-events: none;
}

.live-card--skeleton .live-card__pulse,
.live-card--skeleton .live-card__time,
.live-card--skeleton .live-card__media,
.live-card--skeleton h4,
.live-card--skeleton p,
.skin-card--skeleton .skin-card__skeleton-head,
.skin-card--skeleton .skin-card__line,
.skin-card--skeleton .skin-card__image::before {
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0.12) 38%,
            rgba(255, 255, 255, 0.04) 100%);
    background-size: 200% 100%;
    animation: storeSkeleton 1.3s ease-in-out infinite;
}

.live-card--skeleton .live-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-card--skeleton .live-card__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: none;
}

.live-card--skeleton .live-card__time {
    display: block;
    width: 64px;
    height: 10px;
    border-radius: 999px;
}

.live-card--skeleton .live-card__media {
    width: 100%;
    height: 78px;
    border-radius: 16px;
}

.live-card--skeleton h4 {
    width: 86%;
    height: 30px;
    margin: 0;
    border-radius: 10px;
}

.live-card--skeleton p {
    width: 58%;
    height: 18px;
    margin: 0;
    border-radius: 10px;
}

.skin-card--skeleton .skin-card__skeleton-head {
    width: 100%;
    height: 28px;
    border-radius: 999px;
}

.skin-card--skeleton .skin-card__line {
    height: 12px;
    border-radius: 10px;
}

.skin-card--skeleton .skin-card__line--kicker {
    width: 38%;
}

.skin-card--skeleton .skin-card__line--name {
    width: 84%;
    height: 34px;
}

.skin-card--skeleton .skin-card__line--price {
    width: 52%;
    height: 18px;
}

.skin-card--skeleton .skin-card__line--button {
    width: 100%;
    height: 42px;
    margin-top: auto;
}

/* responsive */
@media (max-width: 1350px) {
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .catalog-grid.is-loading {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .feedback-shell {
        grid-template-columns: 1fr;
    }

    .feedback-summary {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

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

    .store-command {
        grid-template-columns: 1fr;
    }

    .store-layout {
        grid-template-columns: 1fr;
    }

    .store-detail__body {
        grid-template-columns: 1fr;
    }

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

    .store-sidebar {
        order: 2;
        position: relative;
        top: auto;
    }

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

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

    .store-catalog__head {
        align-items: start;
        flex-direction: column;
    }

    .store-catalog__actions {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .feedback-composer {
        right: 18px;
        bottom: 18px;
        width: min(380px, calc(100vw - 18px));
    }

    .feedback-composer:not(.is-open) .feedback-composer__toggle {
        display: inline-flex;
    }

    .support-composer {
        right: 18px;
        bottom: 18px;
        width: min(380px, calc(100vw - 18px));
    }

    .feedback-form__grid,
    .feedback-form__foot,
    .feedback-form-card__head,
    .feedback-board__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .feedback-summary__feature-head {
        flex-direction: column;
    }

    .feedback-summary__feature-rating {
        justify-items: start;
    }

    .feedback-board__controls {
        width: 100%;
        align-items: stretch;
    }

    .feedback-control {
        width: 100%;
    }

    .feedback-control select {
        width: 100%;
    }

    .store-toolbar {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 18px;
    }

    .store-toolbar__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .store-toolbar__right {
        justify-content: flex-start;
    }

    .store-search {
        min-width: 0;
        width: 100%;
    }

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

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

    .store-detail {
        padding-left: 16px;
        padding-right: 16px;
    }

    .store-detail__purchase,
    .store-detail__line,
    .store-detail__similar-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .store-dropdown,
    .store-dropdown__panel {
        width: 100%;
    }

    .store-dropdown__panel {
        min-width: 0;
    }

    .store-dropdown__panel--wide {
        min-width: 0;
    }

    .store-command {
        padding: 22px 20px;
    }

    .store-command__title {
        font-size: 34px;
    }

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

    .contacts-community {
        align-items: flex-start;
        flex-direction: column;
    }

    .contacts-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .feedback-hero::before {
        background-size: cover;
        background-position: center;
    }

    .contacts-hero::before {
        background-size: cover;
        background-position: center;
    }

    .contacts-hero .hero-content {
        max-width: 320px;
        padding-left: 0;
    }

    .contacts-hero h1 {
        font-size: 28px;
    }

    .feedback-summary,
    .feedback-form-card,
    .feedback-card {
        border-radius: 18px;
    }

    .feedback-summary {
        padding: 16px;
        gap: 14px;
    }

    .feedback-composer {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .support-composer {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .feedback-composer__toggle {
        width: 100%;
        min-height: 72px;
        border-radius: 20px;
        justify-content: flex-start;
    }

    .feedback-composer__toggle-copy {
        display: block;
    }

    .feedback-composer.is-open .feedback-composer__toggle {
        min-width: 0;
    }

    .support-composer__toggle {
        width: 100%;
        min-height: 72px;
        border-radius: 20px;
        justify-content: flex-start;
    }

    .support-composer__toggle-copy {
        display: block;
    }

    .support-composer.is-open .support-composer__toggle {
        min-width: 0;
    }

    .support-chat {
        height: min(82vh, 720px);
    }

    .feedback-summary__score {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .feedback-summary__score strong {
        font-size: 46px;
    }

    .feedback-summary__metrics {
        grid-template-columns: 1fr;
    }

    .feedback-summary__cta {
        width: 100%;
        min-height: 48px;
    }

    .store-section {
        padding: 16px 0 26px;
    }

    .store-command,
    .store-toolbar,
    .store-sidebar,
    .store-detail,
    .skin-card,
    .store-empty {
        border-radius: 20px;
    }

    .store-command {
        padding: 18px 16px;
    }

    .store-command__title {
        font-size: 28px;
    }

    .store-command__text {
        font-size: 14px;
    }

    .store-toolbar {
        padding: 16px;
    }

    .store-toolbar__caption strong {
        font-size: 18px;
    }

    .store-select,
    .store-search {
        min-height: 48px;
        border-radius: 14px;
    }

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

    .store-detail.is-open {
        padding: 18px 16px;
    }

    .store-detail__media {
        min-height: 220px;
        border-radius: 18px;
    }

    .store-detail__name {
        font-size: 24px;
    }

    .store-detail__prices strong {
        font-size: 30px;
    }

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

    .catalog-grid {
        gap: 10px;
    }

    .skin-card {
        min-height: 248px;
        padding: 14px;
        gap: 12px;
    }

    .skin-card__availability {
        display: none;
    }

    .skin-card__image {
        height: 92px;
        border-radius: 16px;
    }

    .skin-card__image img {
        max-height: 72px;
    }

    .skin-card__name {
        min-height: 38px;
        font-size: 13px;
    }

    .skin-card__price {
        font-size: 20px;
    }

    .skin-card__btn {
        min-height: 38px;
        padding: 0 10px;
        font-size: 11px;
    }

    .contacts-block,
    .contacts-community {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .contacts-block h2,
    .contacts-community h3 {
        font-size: 26px;
    }

    .contacts-chip {
        min-height: 82px;
        padding: 14px;
        border-radius: 18px;
    }

    .contacts-chip__icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        font-size: 18px;
    }

    .contacts-status strong {
        font-size: 21px;
    }

    .contacts-links {
        width: 100%;
    }

    .contacts-link {
        width: calc(50% - 6px);
        min-height: 82px;
        border-radius: 18px;
    }

    .support-form__grid {
        grid-template-columns: 1fr;
    }

    .support-thread__head {
        flex-direction: column;
    }

    .support-thread__meta {
        justify-items: start;
        text-align: left;
    }

    .feedback-summary,
    .feedback-form-card {
        padding: 18px;
    }

    .feedback-summary__score strong {
        font-size: 44px;
    }

    .feedback-form-card__head h2,
    .feedback-board__head h3 {
        font-size: 22px;
    }

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

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

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

    .store-detail__title {
        font-size: 20px;
    }

    .store-detail__name {
        font-size: 22px;
    }

    .store-detail__prices strong {
        font-size: 28px;
    }

    .store-detail__similar-grid {
        grid-template-columns: 1fr;
    }

    .store-select,
    .store-search {
        height: 44px;
        border-radius: 10px;
    }

    .store-sidebar {
        padding: 12px;
    }
}

.steam-btn--profile {
    min-width: 230px;
    justify-content: space-between;
    padding: 0 16px 0 18px;
    gap: 16px;
}

.steam-profile__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.05;
}

.steam-profile__meta strong {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.steam-profile__meta small {
    font-size: 15px;
    font-weight: 700;
    color: #3bf07c;
}

.steam-profile__avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 170, 132, 0.45), transparent 38%),
        linear-gradient(135deg, rgba(193, 73, 255, 0.95), rgba(24, 31, 46, 0.94));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.steam-profile__avatar--image {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.site-cart-toggle {
    position: relative;
}

.site-cart-toggle__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4a5f, #cb2a63);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(201, 42, 99, 0.35);
}

.site-shell-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 90;
    transform: translate(-50%, 18px);
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(9, 13, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
}

.site-shell-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.site-cart-panel {
    position: fixed;
    top: 126px;
    right: max(28px, calc((100vw - 1660px) / 2 + 28px));
    width: 344px;
    z-index: 70;
    padding: 18px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 86% 12%, rgba(204, 61, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(18, 21, 29, 0.98), rgba(10, 13, 19, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-cart-panel[hidden] {
    display: none !important;
}

.site-cart-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

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

.site-cart-panel__head {
    margin-bottom: 16px;
}

.site-cart-panel__head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.site-cart-panel__head h3 span {
    color: #f3a91d;
}

.site-cart-panel__close {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.68);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-cart-panel__items {
    display: grid;
    gap: 10px;
}

.site-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 12px 12px 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.site-cart-item__accent {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #ff4f63;
    box-shadow: 0 0 24px rgba(255, 79, 99, 0.3);
}

.site-cart-item__accent--violet {
    background: #cf4cff;
    box-shadow: 0 0 24px rgba(207, 76, 255, 0.32);
}

.site-cart-item__accent--blue {
    background: #4ab4ff;
    box-shadow: 0 0 24px rgba(74, 180, 255, 0.32);
}

.site-cart-item img {
    width: 58px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-cart-item__meta {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.site-cart-item__meta strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.site-cart-item__meta small {
    color: rgba(255, 255, 255, 0.28);
    font-size: 11px;
}

.site-cart-item__side {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.site-cart-item__side span {
    font-size: 13px;
    font-weight: 600;
}

.site-cart-item__actions {
    display: inline-flex;
    gap: 8px;
}

.site-cart-item__checkout,
.site-cart-item__remove {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-cart-item__checkout {
    color: rgba(239, 192, 65, 0.9);
    background: rgba(239, 192, 65, 0.1);
}

.site-cart-panel__empty {
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.55;
}

.site-cart-panel__empty strong {
    display: block;
    color: #ffffff;
    margin-bottom: 6px;
}

.site-cart-panel__foot {
    margin-top: 14px;
    padding-top: 10px;
}

.site-cart-panel__foot strong {
    color: #efc041;
    font-size: 24px;
    font-weight: 700;
}

.site-cart-panel__offer {
    height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(155, 126, 21, 0.98), rgba(129, 101, 10, 0.98));
    color: #fff6cd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.steam-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.steam-auth-modal[hidden] {
    display: none !important;
}

.steam-auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 12, 0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.steam-auth-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(850px, calc(100vw - 32px));
    padding: 34px 28px 40px;
    border-radius: 0;
    background: #121418;
    border: 1px solid rgba(54, 154, 255, 0.55);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
    text-align: center;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.steam-auth-modal.is-open .steam-auth-modal__backdrop {
    opacity: 1;
}

.steam-auth-modal.is-open {
    pointer-events: auto;
}

.steam-auth-modal.is-open .steam-auth-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.steam-auth-modal__brandline {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.steam-auth-modal__brandlogo {
    width: 72px;
}

.steam-auth-modal__swap {
    color: rgba(255, 255, 255, 0.42);
    font-size: 36px;
}

.steam-auth-modal__steam {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: #0e86cc;
    color: #09111a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.steam-auth-modal__dialog p {
    margin: 0 0 26px;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.84);
}

.steam-auth-modal__confirm {
    min-width: 300px;
    height: 94px;
    padding: 0 34px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(7, 41, 63, 0.98), rgba(7, 39, 58, 0.98));
    color: #11a9ff;
    font-size: clamp(24px, 3vw, 33px);
    font-weight: 400;
    letter-spacing: 0.08em;
    box-shadow: inset 0 0 0 1px rgba(32, 163, 255, 0.12);
}

.store-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 96;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.store-checkout-modal[hidden] {
    display: none !important;
}

.store-checkout-modal.is-open {
    pointer-events: auto;
}

.store-checkout-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 12, 0.82);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.store-checkout-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, calc(100vw - 28px));
    padding: 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(243, 169, 29, 0.15), transparent 28%),
        linear-gradient(180deg, rgba(17, 21, 29, 0.98), rgba(10, 13, 19, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.store-checkout-modal.is-open .store-checkout-modal__backdrop {
    opacity: 1;
}

.store-checkout-modal.is-open .store-checkout-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.store-checkout-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.store-checkout-modal__eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.store-checkout-modal__head h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.store-checkout-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.76);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-checkout-modal__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 18px;
}

.store-checkout-modal__item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.store-checkout-modal__item span {
    color: #efc041;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.store-checkout-form {
    display: grid;
    gap: 14px;
}

.store-checkout-field {
    display: grid;
    gap: 8px;
}

.store-checkout-field span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.store-checkout-field input,
.store-checkout-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding: 14px 16px;
    font: inherit;
    resize: vertical;
}

.store-checkout-field input::placeholder,
.store-checkout-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.store-checkout-form__submit {
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f0b53b 0%, #b98314 100%);
    color: #1f1602;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.store-checkout-form__submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.store-checkout-form__simulate {
    min-height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.84);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.store-checkout-form__simulate:disabled {
    opacity: 0.7;
    cursor: wait;
}

.store-checkout-status {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    line-height: 1.55;
    font-size: 14px;
}

.store-checkout-status--info {
    background: rgba(31, 113, 255, 0.08);
    border: 1px solid rgba(31, 113, 255, 0.18);
    color: rgba(222, 235, 255, 0.92);
}

.store-checkout-status--success {
    background: rgba(22, 149, 63, 0.12);
    border: 1px solid rgba(89, 255, 140, 0.18);
    color: #b7f8ca;
}

.store-checkout-status--danger {
    background: rgba(178, 44, 44, 0.12);
    border: 1px solid rgba(255, 120, 120, 0.2);
    color: #ffc3c3;
}

.store-checkout-order {
    margin-top: 14px;
    display: grid;
    gap: 6px;
}

.store-checkout-order span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.store-checkout-order strong {
    color: #ffffff;
    font-size: 16px;
    word-break: break-all;
}

.profile-hero {
    --hero-image: url("../img/profile-hero.png"), url("../img/hero-bg.png");
}

.profile-hero::before {
    background-position: 85% center;
    background-size: auto 116%;
}

.profile-section {
    padding: 44px 0 92px;
}

.profile-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.profile-card {
    padding: 30px 32px 34px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 86% 0%, rgba(73, 176, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(9, 13, 21, 0.98), rgba(8, 11, 17, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
}

.profile-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.profile-identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 176, 125, 0.55), transparent 34%),
        linear-gradient(135deg, rgba(215, 108, 255, 0.92), rgba(31, 39, 58, 0.92));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.profile-identity__copy h2 {
    margin: 0 0 6px;
    font-size: 34px;
    font-weight: 600;
}

.profile-balance {
    font-size: 25px;
    font-weight: 700;
    color: #32e175;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.profile-action-btn {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.18s ease, background 0.18s ease;
}

.profile-action-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}

.profile-action-btn--ghost {
    color: rgba(255, 255, 255, 0.55);
}

.profile-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.profile-field {
    display: grid;
    gap: 10px;
}

.profile-field>span {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.profile-field>span small {
    color: rgba(255, 255, 255, 0.24);
    font-size: 12px;
    font-weight: 500;
}

.profile-field__control {
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.profile-field__control input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.profile-copy {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04);
}

.profile-history {
    margin-top: 34px;
}

.profile-history__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.profile-history__head h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.02em;
}

.profile-history__head span {
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    font-weight: 600;
}

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

.profile-history-card {
    padding: 16px 14px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 138px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.profile-history-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(24, 232, 255, 0.16);
}

.profile-history-card__image {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-history-card__image img {
    width: 78px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.26));
}

.profile-history-card__meta {
    display: grid;
    gap: 4px;
}

.profile-history-card__meta span {
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    font-weight: 500;
}

.profile-history-card__meta strong {
    font-size: 15px;
    font-weight: 600;
}

.footer-nav a.is-active {
    color: #ffffff;
}

.policy-hero::before {
    background-position: center;
    background-size: cover;
    opacity: 0.28;
}

.policy-main {
    padding: 44px 0 92px;
}

.policy-layout {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.policy-nav,
.policy-content {
    border-radius: 22px;
    background:
        radial-gradient(circle at 86% 0%, rgba(73, 176, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(9, 13, 21, 0.98), rgba(8, 11, 17, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
}

.policy-nav {
    position: sticky;
    top: 24px;
    padding: 24px;
}

.policy-nav__eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.policy-nav h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.policy-nav p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.policy-nav__links,
.policy-nav__meta {
    display: grid;
    gap: 10px;
}

.policy-nav__links {
    margin-top: 22px;
}

.policy-nav__links a,
.policy-outline a {
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.policy-nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 600;
}

.policy-nav__links a:hover,
.policy-nav__links a.is-active,
.policy-outline a:hover {
    transform: translateY(-1px);
    border-color: rgba(24, 232, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.policy-nav__links a.is-active {
    background:
        radial-gradient(circle at top right, rgba(24, 232, 255, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.06);
}

.policy-nav__meta {
    margin-top: 22px;
}

.policy-nav__meta div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.policy-nav__meta span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
}

.policy-nav__meta strong {
    color: #ffffff;
    font-size: 14px;
}

.policy-content {
    padding: 30px 32px 34px;
}

.policy-content__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.policy-content__head h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.policy-content__head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.7;
}

.policy-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.policy-outline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.policy-outline a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 600;
}

.policy-section + .policy-section {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-section h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.policy-section p,
.policy-section li {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.policy-section p {
    margin: 0 0 14px;
}

.policy-section ul {
    margin: 0;
    padding-left: 20px;
}

.policy-section li + li {
    margin-top: 10px;
}

.policy-callout {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(24, 232, 255, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-callout strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
}

.policy-callout p:last-child,
.policy-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1320px) {
    .profile-history__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .site-cart-panel {
        top: 98px;
        right: 20px;
        left: 20px;
        width: auto;
    }

    .profile-card__top,
    .profile-fields {
        grid-template-columns: 1fr;
        display: grid;
    }

    .profile-actions {
        justify-content: flex-start;
    }

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

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-nav {
        position: static;
    }
}

@media (max-width: 760px) {
    .steam-btn--profile {
        min-width: 0;
        padding: 0 12px;
    }

    .steam-profile__meta {
        display: none;
    }

    .steam-auth-modal__dialog {
        padding: 26px 18px 30px;
    }

    .steam-auth-modal__brandline {
        gap: 18px;
    }

    .steam-auth-modal__brandlogo,
    .steam-auth-modal__steam {
        width: 58px;
        height: 58px;
    }

    .steam-auth-modal__confirm {
        min-width: 0;
        width: 100%;
        height: 74px;
    }

    .store-checkout-modal__dialog {
        width: min(560px, calc(100vw - 20px));
        padding: 22px 16px;
        border-radius: 20px;
    }

    .store-checkout-modal__head h3 {
        font-size: 22px;
    }

    .store-checkout-modal__item {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-section {
        padding: 28px 0 70px;
    }

    .profile-card {
        padding: 22px 18px 24px;
    }

    .profile-identity {
        align-items: flex-start;
    }

    .profile-avatar {
        width: 68px;
        height: 68px;
        font-size: 19px;
    }

    .profile-identity__copy h2 {
        font-size: 26px;
    }

    .profile-balance {
        font-size: 22px;
    }

    .profile-actions {
        width: 100%;
    }

    .profile-action-btn {
        width: 100%;
        justify-content: center;
    }

    .profile-history__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-history__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .policy-main {
        padding: 28px 0 70px;
    }

    .policy-nav,
    .policy-content {
        padding: 22px 18px 24px;
    }

    .policy-content__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .policy-content__head h1 {
        font-size: 28px;
    }
}
