@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #090b10;
    --panel: #10151d;
    --panel-2: #141b25;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f7f9ff;
    --muted: #9aa6bd;
    --blue: #44b4ff;
    --blue-2: #1f6bd8;
    --gold: #ffca3a;
    --gold-2: #f1a400;
    --green: #45e39b;
    --shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

/* Bug feed uses the same cards and scrolling behavior as recent purchases. */
.bugs-feed-list.last-purchases-list {
    display: flex;
    gap: 12px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 24px 0 10px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.bugs-feed-list.last-purchases-list::-webkit-scrollbar { display: none; width: 0; height: 0; }
.bugs-feed-list.last-purchases-list::after { content: ""; flex: 0 0 16px; }
.bugs-feed-list.last-purchases-list.is-empty { width: 100%; margin-left: 0; padding: 14px 0 8px; overflow: hidden; }
.bugs-feed-list.last-purchases-list.is-empty::after { display: none; }
.bugs-feed-list .bug-feed-card,
.bugs-feed-list .bug-feed-card.is-placeholder {
    position: relative;
    display: grid;
    width: auto;
    min-width: 184px;
    min-height: 0;
    flex: 0 0 184px;
    grid-template-columns: none;
    grid-template-rows: auto auto;
    justify-items: start;
    gap: 16px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.bugs-feed-list .bug-feed-surface {
    display: grid;
    width: 184px;
    min-width: 184px;
    height: 132px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    background: linear-gradient(180deg,rgba(39,42,49,.92),rgba(48,51,58,.92));
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.bugs-feed-list .bug-feed-surface img { width: 58px; height: 58px; object-fit: cover; border-radius: 10px; }
.bugs-feed-list .bug-feed-copy { display: grid; gap: 4px; min-width: 0; justify-items: start; padding: 0 2px; }
.bugs-feed-list .bug-hover-card { top: 8px; right: auto; left: 8px; width: 168px; border-radius: 16px; }

@media (max-width: 760px) {
    .bugs-feed-list .bug-feed-card,
    .bugs-feed-list .bug-feed-card.is-placeholder { min-width: 136px; flex-basis: 136px; }
    .bugs-feed-list .bug-feed-surface { width: 136px; min-width: 136px; height: 102px; border-radius: 16px; }
    .bugs-feed-list .bug-feed-surface img { width: 44px; height: 44px; }
    .bugs-feed-list .bug-hover-card { right: 4px; left: 4px; width: auto; }
}

.admin-body {
    background:
        radial-gradient(circle at top left, rgba(255, 176, 66, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(80, 148, 255, 0.08), transparent 24%),
        #231d21;
}

.admin-shell {
    width: min(100% - 28px, 1400px);
}

.admin-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
}

.admin-sidebar {
    background: rgba(59, 53, 58, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.26);
}

.admin-side-nav {
    gap: 10px;
}

.admin-nav-link {
    min-height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    transform: none;
    background: rgba(255, 189, 94, 0.12);
    border-color: rgba(255, 189, 94, 0.22);
    color: #fff4d9;
}

.admin-header {
    padding: 10px 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-header-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.05;
}

.admin-header-side {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-header-chip {
    min-width: 130px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-header-chip span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.admin-header-chip strong {
    display: block;
    color: #fff4d9;
}

.admin-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 18px;
    align-items: stretch;
}

.admin-dashboard-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.admin-dashboard-copy p {
    margin: 0;
    max-width: 760px;
    color: #b6aeb4;
    line-height: 1.7;
}

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

.admin-dashboard-metric {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-dashboard-metric span {
    display: block;
    color: #a59da4;
    margin-bottom: 10px;
    font-size: 0.82rem;
}

.admin-dashboard-metric strong {
    display: block;
    font-size: 1.4rem;
    color: #fff1d2;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.admin-dashboard-tile {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 170px;
    padding: 22px;
    border-radius: 22px;
    text-align: left;
    color: #f8f1f4;
    background: rgba(70, 63, 68, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    cursor: pointer;
}

.admin-dashboard-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 189, 94, 0.24);
    background: rgba(82, 74, 79, 0.84);
}

.admin-dashboard-tile strong {
    font-size: 1.1rem;
}

.admin-dashboard-tile small {
    color: #afa6ad;
    line-height: 1.55;
}

.admin-dashboard-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.admin-dashboard-icon.is-blue { background: rgba(74, 115, 255, 0.18); color: #9db7ff; }
.admin-dashboard-icon.is-amber { background: rgba(255, 171, 62, 0.16); color: #ffc76f; }
.admin-dashboard-icon.is-green { background: rgba(39, 201, 129, 0.16); color: #7be5b2; }
.admin-dashboard-icon.is-violet { background: rgba(171, 83, 255, 0.16); color: #d1a8ff; }
.admin-dashboard-icon.is-red { background: rgba(255, 88, 88, 0.16); color: #ffb0b0; }
.admin-dashboard-icon.is-cyan { background: rgba(53, 198, 214, 0.16); color: #97edf6; }
.admin-dashboard-icon.is-slate { background: rgba(119, 138, 160, 0.16); color: #bfd0e0; }
.admin-dashboard-icon.is-gold { background: rgba(255, 213, 110, 0.16); color: #ffe3a1; }

.admin-commission-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.admin-commission-table input,
.admin-commission-table select {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
}

.admin-payment-method-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.admin-payment-method-cell strong {
    display: block;
}

.admin-payment-method-cell small {
    color: var(--muted);
}

.admin-payment-method-icon,
.admin-payment-method-fallback {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex: 0 0 40px;
}

.admin-payment-method-icon {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.admin-payment-method-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 189, 94, 0.14);
    color: #ffd48d;
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-inline-checkbox {
    justify-content: flex-start;
    min-width: 110px;
}

.admin-inline-checkbox span {
    color: #ece3e8;
}

.admin-content-standalone {
    width: min(100%, 1240px);
    margin: 0 auto;
}

.admin-header {
    align-items: flex-start;
}

.admin-header-copy p {
    margin: 6px 0 0;
    color: #9e8d7d;
}

.admin-header-user {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    align-items: center;
    min-width: 220px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-header-user span {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.78rem;
}

.admin-header-user strong {
    color: #f2ecf0;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f6b756;
    color: #2d2121;
    font-weight: 900;
}

.admin-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-section-head h2 {
    margin: 0 0 4px;
    font-size: 2rem;
}

.admin-section-head p {
    margin: 0;
    color: #9f9398;
}

.admin-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #f1e8ec;
    background: transparent;
    border: 0;
    font-size: 1.8rem;
    cursor: pointer;
}

.admin-back-link.is-hidden {
    visibility: hidden;
}

.admin-list-head,
.admin-form-shell-head,
.admin-editor-block-head,
.admin-commission-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-editor-stack {
    display: grid;
    gap: 18px;
}

.admin-editor-block {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-editor-block h3 {
    margin: 0;
    color: #f3d9a7;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 4px;
}

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

.admin-settings-tabs {
    display: flex;
    gap: 28px;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-settings-tab {
    padding: 0 0 10px;
    border: 0;
    background: transparent;
    color: #9f9097;
    cursor: pointer;
}

.admin-settings-tab.active {
    color: #f0e6d0;
    box-shadow: inset 0 -2px 0 #f6b756;
}

.admin-product-image-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.admin-product-image-preview {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-product-image-actions {
    flex: 1 1 auto;
}

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

.admin-coupon-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 270px;
}

.admin-coupon-card.is-expired {
    border-color: rgba(255, 89, 128, 0.25);
}

.admin-coupon-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.admin-coupon-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(67, 127, 114, 0.35);
    color: #8df0d6;
    font-weight: 800;
}

.admin-coupon-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-coupon-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.admin-coupon-status-dot.is-active {
    background: #44d2a8;
    box-shadow: 0 0 0 6px rgba(68, 210, 168, 0.12);
}

.admin-icon-button {
    min-width: 34px;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-coupon-code {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    letter-spacing: 0.22em;
    color: #f3eef1;
    font-size: 1.05rem;
}

.admin-coupon-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-coupon-meta span {
    display: block;
    color: #8f8389;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.admin-coupon-meta strong {
    display: block;
    font-size: 1.05rem;
}

.admin-coupon-footer {
    margin-top: auto;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
}

.admin-chip-success {
    background: rgba(68, 210, 168, 0.14);
    color: #91f7d8;
}

.admin-chip-danger {
    background: rgba(255, 77, 121, 0.14);
    color: #ff7ea4;
}

.admin-chip-muted {
    background: rgba(255, 255, 255, 0.08);
    color: #d4cad0;
}

.admin-product-pick-all {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #e9d8b2;
}

.admin-product-pick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-height: 420px;
    overflow: auto;
    padding-right: 6px;
}

.admin-product-pick-card {
    position: relative;
    display: grid !important;
    gap: 10px;
    align-content: start;
    min-height: 148px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.admin-product-pick-card input {
    position: absolute;
    inset: 10px 10px auto auto;
    width: 18px;
    min-height: 18px;
}

.admin-product-pick-card img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
}

.admin-product-pick-card strong {
    font-size: 0.95rem;
}

.admin-product-pick-card small {
    color: #aea0a7;
}

.admin-product-pick-card:has(input:checked) {
    border-color: rgba(246, 183, 86, 0.36);
    background: rgba(246, 183, 86, 0.08);
}

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

.admin-product-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.admin-product-card-top small {
    color: #9b8f95;
}

.admin-product-title {
    font-size: 1.1rem;
}

.admin-product-art {
    display: grid;
    place-items: center;
    min-height: 180px;
}

.admin-product-art img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
}

.admin-product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-product-price-row span {
    color: #9f9499;
}

.admin-group-grid {
    display: grid;
    gap: 18px;
}

.admin-group-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-group-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.admin-group-head h3 {
    margin: 0 0 4px;
}

.admin-group-head small {
    color: #9f9399;
}

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

.admin-group-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-group-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
}

.admin-group-item small {
    color: #a79aa0;
}

.admin-empty-state {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cfc1c9;
}

.admin-commission-list {
    display: grid;
    gap: 18px;
}

.admin-commission-card {
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-commission-card.is-disabled {
    opacity: 0.72;
}

.admin-commission-range-wrap {
    display: grid;
    gap: 10px;
}

.admin-commission-range-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #a79ba0;
    font-size: 0.82rem;
}

.admin-commission-range-head strong {
    color: #e9dfc6;
    font-weight: 700;
}

.admin-commission-slider {
    width: 100%;
    min-height: 24px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    accent-color: #f4b650;
}

.admin-commission-note {
    margin: 0;
    color: #998d93;
}

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

.admin-commission-footer {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #b4a8ad;
}

.admin-discount-list {
    display: grid;
    gap: 18px;
}

.admin-discount-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-discount-card.is-expired {
    opacity: 0.78;
}

.admin-discount-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-discount-percent {
    font-size: 3rem;
    font-weight: 900;
    color: #5ec8b0;
    min-width: 128px;
}

.admin-discount-main h3 {
    margin: 0 0 10px;
    font-size: 1.8rem;
}

.admin-discount-main p {
    margin: 4px 0;
    color: #9e9298;
}

@media (max-width: 1240px) {
    .admin-dashboard-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 1100px) {
    .admin-dashboard-hero,
    .admin-dashboard-grid,
    .admin-dashboard-metrics,
    .admin-commission-summary,
    .admin-coupon-grid,
    .admin-commission-controls,
    .admin-product-pick-grid,
    .admin-product-grid,
    .admin-form-two,
    .admin-group-items {
        grid-template-columns: 1fr;
    }

    .admin-discount-card,
    .admin-discount-main,
    .admin-product-image-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .admin-header {
        gap: 14px;
        align-items: flex-start;
    }

    .admin-header-side {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-dashboard-tile {
        min-height: 150px;
        padding: 18px;
    }
}


* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    font-family: "Montserrat", sans-serif;
    background: #090b10;
    color: var(--text);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.modal-open {
    overflow: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
input,
select,
textarea {
    touch-action: manipulation;
}

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

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

.admin-shell {
    width: min(1440px, calc(100% - 40px));
}

.store-body {
    background:
        radial-gradient(circle at top center, rgba(65, 118, 214, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(6, 10, 16, 0.98), rgba(6, 10, 16, 1));
    animation: pageFadeIn 0.7s ease-out;
}

.store-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
}

.store-hero::before,
.store-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-repeat: no-repeat;
}

.store-hero::before {
    background-image:
        radial-gradient(circle, rgba(142, 215, 255, 0.95) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(93, 255, 209, 0.8) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px);
    background-size: 12% 18%, 18% 24%, 14% 20%;
    background-position: 8% 18%, 74% 20%, 88% 36%;
    opacity: 0.72;
    animation: particlesFloat 16s linear infinite;
}

.store-hero::after {
    background-image:
        radial-gradient(circle, rgba(93, 255, 209, 0.75) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(142, 215, 255, 0.75) 0 2px, transparent 3px);
    background-size: 20% 30%, 14% 20%;
    background-position: 16% 82%, 68% 76%;
    opacity: 0.58;
    animation: particlesFloat 20s linear infinite reverse;
}

.store-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 11, 18, 0.18), rgba(8, 12, 18, 0.82)),
        radial-gradient(circle at 70% 24%, rgba(112, 179, 255, 0.18), transparent 24%),
        url("/img/background/background-header.png") center top / cover no-repeat;
    opacity: 1;
}

.hero-effects-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}

.store-hero .page-shell {
    position: relative;
    z-index: 1;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 22px;
    margin-top: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(40, 57, 84, 0.88), rgba(29, 40, 59, 0.92)),
        url("/img/background/background-content.png") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
    animation: slideDownFade 0.75s ease-out both;
}

.store-left-header,
.store-right-header,
.store-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.solid_absolute {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1px;
    margin: 0 18px;
    flex-shrink: 0;
}

.store-right-header {
    position: relative;
    padding-left: 22px;
}

.store-right-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 42px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.burger-button {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

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

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

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

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

.store-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #baf3ff;
    text-shadow:
        0 0 18px rgba(68, 180, 255, 0.24),
        0 0 36px rgba(68, 180, 255, 0.12);
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.store-wordmark img {
    max-height: 56px;
    width: auto;
}

.store-wordmark:hover {
    transform: translateY(-1px) scale(1.01);
    text-shadow:
        0 0 24px rgba(68, 180, 255, 0.32),
        0 0 48px rgba(68, 180, 255, 0.16);
}

.store-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #d4def4;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.store-nav-mobile {
    display: none;
}

.mobile-menu-head,
.mobile-menu-close {
    display: none;
}

.store-nav img,
.social-link img,
.server-ip-button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.header-social {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.header-social img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-social:hover,
.header-social:focus-visible {
    transform: translateY(-2px) scale(1.06);
    filter: brightness(1.12);
    box-shadow: 0 8px 22px rgba(43, 157, 255, 0.24);
}

.server-ip-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, rgba(68, 180, 255, 0.14), rgba(68, 180, 255, 0.06));
    border: 1px solid rgba(68, 180, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(68, 180, 255, 0.08);
    transition: transform 0.18s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.server-ip-icon-wrap {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    flex: 0 0 28px;
    position: relative;
    z-index: 1;
}

.server-ip-icon {
    width: 22px;
    height: 22px;
    transform-origin: center;
}

.server-ip-text {
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.server-ip-button::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(116, 222, 255, 0.16), rgba(68, 180, 255, 0.02));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.server-ip-button.is-copying {
    border-color: rgba(123, 229, 255, 0.72);
    background: linear-gradient(180deg, rgba(67, 125, 168, 0.92), rgba(39, 79, 116, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(108, 215, 255, 0.26),
        0 0 30px rgba(92, 211, 255, 0.28),
        0 14px 32px rgba(11, 30, 57, 0.38);
}

.server-ip-button.is-copying::after {
    opacity: 1;
}

.server-ip-button.is-copying .server-ip-icon-wrap {
    box-shadow:
        0 0 0 1px rgba(118, 221, 255, 0.26),
        0 0 18px rgba(92, 211, 255, 0.45),
        0 0 28px rgba(92, 211, 255, 0.2);
}

.server-ip-button.is-copying .server-ip-icon {
    animation: serverIconSpinForward 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.server-ip-button.is-resetting .server-ip-icon {
    animation: serverIconSpinBackward 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.server-ip-button.is-resetting .server-ip-icon-wrap {
    box-shadow:
        0 0 0 1px rgba(95, 177, 255, 0.16),
        0 0 10px rgba(68, 180, 255, 0.16);
}

.shop-top-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr;
    gap: 24px;
    align-items: center;
    padding: 72px 0 110px;
}

.hero-scene {
    position: relative;
    min-height: 620px;
    overflow: visible;
}

.hero-island {
    position: absolute;
    right: -1%;
    top: 36px;
    width: 700px;
    height: 560px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 1;
    animation: islandFloat 8s ease-in-out infinite;
}

.hero-island-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.98;
}

.hero-top-donater {
    position: absolute;
    right: 4%;
    bottom: 122px;
    width: 296px;
    min-height: 88px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(42, 64, 96, 0.94), rgba(32, 51, 79, 0.94));
    backdrop-filter: blur(10px);
    border-radius: 18px;
    z-index: 2;
    animation: donorCardFloat 6.5s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-top-donater:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.top-donater-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-donater-user p {
    margin: 4px 0 0;
    color: rgba(232, 240, 255, 0.82);
    font-weight: 700;
    font-size: 0.82rem;
}

.top-donater-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.top-donater-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-top-copy h1 {
    margin: 0 0 16px;
    max-width: 720px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    animation: riseIn 0.8s ease-out both;
}

.shop-top-copy {
    position: relative;
}

.hero-floating-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    object-fit: contain;
    opacity: 0.82;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.hero-icon-left {
    left: -34px;
    top: 26px;
    animation: islandFloat 7s ease-in-out infinite;
}

.hero-icon-right {
    right: 54px;
    top: -6px;
    animation: donorCardFloat 6s ease-in-out infinite;
}

.shop-top-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    animation: riseIn 0.95s ease-out both;
}

.hero-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    animation: riseIn 1s ease-out both;
}

.minego-intro-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 74px 0 150px;
}

.minego-intro-copy {
    width: 100%;
    z-index: 1;
}

.minego-intro-copy h1 {
    max-width: 1120px;
    margin: 24px 0 22px;
    color: #f7f9ff;
    font-size: clamp(3.45rem, 6.35vw, 6.7rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.shop-top-copy .minego-intro-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: none;
    color: #f6f8fc;
    font-size: clamp(0.74rem, 0.92vw, 0.88rem);
    font-weight: 500;
    line-height: 1.25;
}

.minego-intro-kicker strong {
    color: #ffc331;
    font-size: 0.88em;
    font-weight: 500;
    letter-spacing: 0.015em;
}

.minego-kicker-mark {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(244, 174, 25, 0.2));
}

.mobile-subtitle-line {
    display: inline;
}

.shop-top-copy .minego-hero-title {
    max-width: none;
    font-size: clamp(2.65rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.minego-hero-title span {
    display: block;
    white-space: nowrap;
}

.shop-top-copy .minego-intro-subtitle {
    max-width: 760px;
    color: #aeb8ca;
    font-size: clamp(0.82rem, 1.05vw, 0.98rem);
    font-weight: 500;
    line-height: 1.55;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: grid;
    justify-items: center;
    gap: 20px;
    color: #c7cfdd;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.035em;
    opacity: 0.72;
    pointer-events: none;
    user-select: none;
}

.hero-scroll-diamond {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(200, 211, 229, 0.34);
    transform: rotate(45deg);
    animation: scrollDiamondFloat 2.1s ease-in-out infinite;
}

.hero-scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transform: rotate(-45deg);
}

.hero-scroll-arrows i {
    display: block;
    width: 7px;
    height: 7px;
    margin-top: -2px;
    border-right: 1.5px solid rgba(200, 211, 229, 0.46);
    border-bottom: 1.5px solid rgba(200, 211, 229, 0.46);
    transform: rotate(45deg);
    animation: scrollChevronPulse 1.8s ease-in-out infinite;
}

.hero-scroll-arrows i:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-scroll-arrows i:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes scrollDiamondFloat {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(5px) rotate(45deg); }
}

@keyframes scrollChevronPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}


.hero-online-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 8px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(34, 47, 69, 0.92), rgba(24, 35, 53, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-online-pill strong {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 800;
    color: #f7fbff;
}

.hero-online-pill span:last-child {
    color: #c9d4e8;
    font-weight: 500;
    font-size: 0.88rem;
    white-space: nowrap;
}

.hero-online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7dff42;
    box-shadow: 0 0 0 8px rgba(125, 255, 66, 0.12), 0 0 16px rgba(125, 255, 66, 0.55);
    flex: 0 0 auto;
    animation: onlinePulse 1.8s ease-out infinite;
}

.shop-top-actions {
    margin-top: 0;
}

.shop-top-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    animation: riseIn 1.05s ease-out both;
}

.hero-button,
.custom-button-1,
.purchase-form button,
.admin-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 16px;
    padding: 15px 22px;
    font-weight: 800;
    cursor: pointer;
    color: #fff;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.hero-button:hover,
.custom-button-1:hover,
.purchase-form button:hover,
.admin-form button:hover,
.store-nav a:hover,
.server-ip-button:hover,
.button-payment-a:hover,
.info-donate:hover {
    transform: translateY(-1px);
}

.store-nav a:hover,
.store-nav a:focus-visible {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.server-ip-button:hover,
.server-ip-button:focus-visible {
    border-color: rgba(102, 198, 255, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 30px rgba(68, 180, 255, 0.14);
}

.store-nav a:hover img,
.store-nav a:focus-visible img {
    filter: drop-shadow(0 0 8px rgba(110, 172, 255, 0.22));
}

.hero-button.primary,
.custom-button-1,
.purchase-form button {
    color: #11151d;
    background: radial-gradient(ellipse at center, #F5DE68 0%, #E8A51E 100%);
    box-shadow: none;
}

.admin-form button {
    color: #11151d;
    background: linear-gradient(180deg, #ffd85a 0%, #ffb91d 100%);
    box-shadow: 0 15px 40px rgba(255, 185, 29, 0.28);
}

.hero-button.primary:hover,
.custom-button-1:hover {
    transform: none;
    box-shadow: 0 0 0 5px rgba(232, 165, 30, 0.25);
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-donater-card {
    min-height: 88px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(17, 23, 33, 0.95), rgba(13, 18, 26, 0.94)),
        url("/img/background/background-content.png") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.top-donater-card h2,
.top-donater-sum,
.section-heading h2,
.shop-h2 {
    margin: 0;
}

.mini-label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: #7cbfff;
}

.top-donater-sum {
    font-size: 0.95rem;
    font-weight: 900;
    white-space: nowrap;
}

.hero-top-donater h2 {
    font-size: 0.92rem;
    line-height: 1.1;
}

.store-main {
    position: relative;
    padding-bottom: 90px;
    background: #131313;
    font-family: "Inter", Arial, sans-serif;
}

.store-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.7px),
        radial-gradient(circle, rgba(203, 212, 255, 0.48) 0 1.2px, transparent 1.9px),
        radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 0.8px, transparent 1.5px);
    background-size: 137px 149px, 211px 193px, 89px 107px;
    background-position: 12px 18px, 74px 43px, 31px 66px;
    opacity: 0.58;
    z-index: 5;
    animation: storeParticlesDrift 3.5s linear infinite;
    pointer-events: none;
}

@keyframes storeParticlesDrift {
    from {
        background-position: 12px 18px, 74px 43px, 31px 66px;
    }
    to {
        background-position: 149px -131px, -137px 236px, 120px -41px;
    }
}

.store-main > section {
    position: relative;
    z-index: auto;
}

.landing-section {
    position: relative;
    padding: 34px 0 8px;
}

.landing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 11, 16, 0.18), rgba(9, 11, 16, 0.08)),
        url("/img/background/background-content.png") center top / cover no-repeat;
    opacity: 0.78;
    pointer-events: none;
}

.landing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.landing-main-card,
.landing-info-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.98), rgba(12, 17, 25, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.landing-main-card {
    position: relative;
    isolation: isolate;
    padding: 30px;
    min-height: 100%;
    overflow: hidden;
}

.landing-main-card h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.02;
}

.landing-main-card p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

.landing-deco-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    object-fit: contain;
    opacity: 0.14;
    pointer-events: none;
}

.landing-deco-left {
    left: 22px;
    bottom: 22px;
}

.landing-deco-right {
    right: 24px;
    top: 20px;
}

.landing-actions {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    position: relative;
    z-index: 2;
}

.landing-side-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.landing-info-card {
    padding: 22px;
}

.landing-info-card img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 16px;
}

.landing-info-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.landing-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.faq-card {
    padding: clamp(34px, 5vw, 54px) 0;
}

.faq-card h2 {
    margin: 0 0 8px;
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    text-transform: uppercase;
}

.faq-subtitle {
    margin: 0 0 46px;
    color: #8fa5c5;
    text-align: center;
    font-size: 1rem;
}

.faq-list {
    display: grid;
    gap: 16px;
    width: min(920px, 100%);
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: #1d1d1d;
    overflow: hidden;
}

.faq-item[hidden] {
    display: none;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 92px;
    padding: 24px 30px;
    color: #f5f7fb;
    font-size: 1.12rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease;
}

.faq-direct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 92px;
    padding: 24px 30px;
    color: #f5f7fb;
    font: inherit;
    font-size: 1.12rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-direct:hover {
    background: rgba(255, 255, 255, 0.07);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.045);
}

.faq-arrow {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-right: 2px solid #f6b81d;
    border-bottom: 2px solid #f6b81d;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
    transform: rotate(225deg);
}

.faq-item.is-closing .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 26px;
    color: var(--muted);
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

.faq-answer strong {
    color: #f5f7fb;
}

.faq-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.faq-page-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: #1d1d1d;
    color: #aeb7c6;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.faq-page-button:hover {
    color: #fff;
    border-color: rgba(246, 184, 29, 0.45);
    transform: translateY(-2px);
}

.faq-page-button.is-active {
    color: #111;
    border-color: #f6b81d;
    background: #f6b81d;
}


.purchases-strip {
    padding: 38px 0 12px;
}

.purchases-strip .section-heading h2 {
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1.05;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.section-meta {
    color: var(--muted);
}

.last-purchases-list {
    display: flex;
    gap: 12px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: auto;
    padding: 24px 0 10px 16px;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.last-purchases-list::-webkit-scrollbar {
    display: none;
}

.last-purchases-list::after {
    content: "";
    flex: 0 0 16px;
}

.last-purchases-list.is-dragging {
    cursor: grabbing;
}

.last-purchases-list.is-empty {
    width: 100%;
    margin-left: 0;
    padding: 14px 0 8px;
    overflow: hidden;
    cursor: default;
}

.last-purchases-list.is-empty::after {
    display: none;
}

.last-purchases-list .purchase-pill.is-placeholder {
    display: flex;
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 112px;
    padding: 24px;
    border: 1px dashed rgba(143, 165, 199, 0.24);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    color: #8492a8;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.last-purchases-list .purchase-pill.is-placeholder:hover {
    transform: none;
    border-color: rgba(143, 165, 199, 0.24);
    background: rgba(255, 255, 255, 0.025);
}

.purchase-pill {
    min-width: max-content;
    color: #dce8ff;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.purchase-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.13);
}

.shop-section {
    padding-top: 24px;
}

.store-footer {
    position: relative;
    padding: 48px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1F1F1F;
    font-family: "Inter", Arial, sans-serif;
}

.store-footer-inner {
    display: grid;
    grid-template-columns: minmax(210px, 1.2fr) minmax(130px, 0.7fr) minmax(230px, 1fr) minmax(180px, 0.8fr);
    gap: clamp(22px, 3vw, 46px);
    align-items: start;
    padding-bottom: 44px;
}

.store-footer-brand-column,
.store-footer-column {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 13px;
}

.store-footer-brand-column > img {
    width: auto;
    max-width: 195px;
    max-height: 70px;
    object-fit: contain;
}

.store-footer-column strong {
    margin-bottom: 4px;
    color: #f5f7fb;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-footer-column a,
.store-footer-social {
    color: #8592a8;
    font-size: 0.86rem;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.store-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.store-footer-brand-column {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.store-footer-brand-column .store-footer-socials {
    margin-top: 0;
}

.store-footer-column a:hover,
.store-footer-social:hover {
    color: #f4bd45;
    transform: translateX(3px);
}

.store-footer-social {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 0;
}

.store-footer-social img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.22s ease;
}

.store-footer-social:hover img {
    opacity: 1;
}

.store-footer-payments {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    min-height: 32px;
    padding-top: 2px;
}

.store-footer-payments img {
    width: auto;
    height: 22px;
    max-width: 68px;
    filter: grayscale(1) brightness(1.55);
    opacity: 0.28;
    transform: translateY(0) scale(1);
    transition: filter 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}

.store-footer-payments img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: translateY(-2px) scale(1.06);
}

.store-footer-bottom {
    display: grid;
    justify-items: center;
    gap: 5px;
    margin: 0 calc(50% - 50vw);
    padding: 17px max(24px, calc((100vw - 1200px) / 2));
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(0, 0, 0, 0.22);
    text-align: center;
}

.store-footer-bottom p {
    margin: 0;
    color: #4f596b;
    font-size: 0.72rem;
    line-height: 1.5;
}

.group-shop-content-a + .group-shop-content-a {
    margin-top: 34px;
}

.shop-h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.catalog-mode-empty {
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), #202124;
    color: var(--muted);
    text-align: center;
}

.catalog-mode-empty[hidden] { display: none !important; }

.catalog-filter-button {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #edf4ff;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.catalog-filter-button:hover {
    transform: translateY(-1px);
}

.catalog-filter-button.active {
    color: #11151d;
    background: radial-gradient(ellipse at center, #F5DE68 0%, #E8A51E 100%);
    border-color: rgba(255, 210, 84, 0.65);
}

.catalog-group + .catalog-group {
    margin-top: 34px;
}

.catalog-group-title {
    margin: 0 0 18px;
    font-size: 1.6rem;
}

.catalog-loading,
.catalog-error {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

.catalog-loading[hidden],
.catalog-error[hidden] {
    display: none;
}

.catalog-group.is-filter-entering .object-shop {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    animation: catalogCardIn 0.42s ease forwards;
}

.catalog-group.is-filter-entering .object-shop:nth-child(1) { animation-delay: 0.04s; }
.catalog-group.is-filter-entering .object-shop:nth-child(2) { animation-delay: 0.09s; }
.catalog-group.is-filter-entering .object-shop:nth-child(3) { animation-delay: 0.14s; }
.catalog-group.is-filter-entering .object-shop:nth-child(4) { animation-delay: 0.19s; }
.catalog-group.is-filter-entering .object-shop:nth-child(5) { animation-delay: 0.24s; }
.catalog-group.is-filter-entering .object-shop:nth-child(6) { animation-delay: 0.29s; }

.list-shop-content-a {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    justify-items: center;
}

.object-shop {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 403px);
    height: 517px;
    min-height: 517px;
    padding: 33px;
    border-radius: 15px;
    background: #1F1F1F;
    border: 1px solid #4C4C4C;
    box-shadow: inset 0 40px 50px 2px rgba(203, 212, 255, 0.1), var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.object-shop::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    border-radius: inherit;
    box-shadow: inset 0 40px 50px 2px rgba(203, 212, 255, 0.1);
    pointer-events: none;
}

.object-shop.hit {
    box-shadow: inset 0 40px 50px 2px rgba(203, 212, 255, 0.1), var(--shadow);
}

.object-shop:hover {
    transform: none;
    border-color: #4C4C4C;
    box-shadow: inset 0 40px 50px 2px rgba(203, 212, 255, 0.1), var(--shadow);
}

.info-donate {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 3;
}

.info-donate img {
    position: absolute;
    pointer-events: none;
    transition: filter 0.24s ease, opacity 0.24s ease;
}

.info-donate:hover {
    transform: none;
}

.info-donate:hover img,
.info-donate:focus-visible img {
    filter: brightness(3) saturate(0) drop-shadow(0 0 5px rgba(255, 255, 255, 0.72));
}

.info-donate-icon {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-donate-ring {
    width: 17px;
    height: 17px;
}

.info-donate-line {
    width: 2px;
    height: 4px;
    top: 5px;
    left: 11px;
}

.info-donate-dot {
    width: 3px;
    height: 3px;
    left: 10.5px;
    bottom: 5px;
}

.top-object-shop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
}

.donate-image-a {
    position: relative;
    width: 116px;
    min-height: 116px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
    border-radius: 0;
    background: transparent;
}

.shop-donate-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    object-position: left top;
    image-rendering: pixelated;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
    transition: transform 0.22s ease, filter 0.22s ease;
}

.object-shop:hover .shop-donate-image {
    transform: none;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}

.hit-info {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #46b4fa, #2d72ff);
    font-size: 0.72rem;
    font-weight: 800;
}

.discount-sticker {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #ff5b5b;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(255, 91, 91, 0.24);
    z-index: 2;
}

.shop-price-stack {
    display: grid;
    gap: 6px;
}

.shop-cost-donate {
    margin: 0;
    color: #EFC446;
    font-size: 19.1px;
    font-weight: 700;
}

.object-shop.has-sale .shop-cost-donate {
    color: #EFC446;
}

.shop-cost-old {
    margin: 0;
    color: rgba(216, 226, 241, 0.44);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: line-through;
}

.title-donate {
    margin: 28px 0 0;
    font-size: 34px;
    font-weight: 700;
}

.bottom-object-shop {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    flex: 1;
    padding-top: 34px;
}

.small-description-shop {
    margin: 0;
    color: var(--muted);
    font-size: 14.9px;
    font-weight: 700;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.object-shop .shop-button {
    width: min(100%, 335px);
    height: 60px;
    min-height: 60px;
    align-self: center;
    padding: 0 18px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 22.5px;
    font-weight: 700;
}

.custom-button-1.small {
    width: 100%;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 5, 8, 0.82);
    backdrop-filter: blur(8px);
    animation: overlayFade 0.2s ease-out;
    overflow: auto;
    overscroll-behavior: contain;
}

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

.modal-panel-buy,
.modal-panel {
    position: relative;
    width: min(960px, 100%);
    border-radius: 30px;
    overflow: visible;
    background: linear-gradient(180deg, #111720, #0d131b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
    animation: modalLift 0.22s ease-out;
}

.js-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.modal-panel-buy {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 720px;
    max-height: calc(100vh - 40px);
}

.left-modal-panel-buy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 22px 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 221, 104, 0.04), rgba(255, 189, 42, 0.08)),
        url("/img/background/left-buy-image.png") center / cover no-repeat;
}

.buy-panel-logo {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 190px;
    max-height: 68px;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

.themed-buy-panel {
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    background:
        linear-gradient(180deg, rgba(255, 213, 84, 0.03), rgba(255, 184, 28, 0.08)),
        url("/img/background/left-buy-image.png") center / cover no-repeat;
}

.buy-panel-side-text {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 34px;
    display: grid;
    gap: 18px;
    z-index: 2;
}

.buy-description-button {
    width: 100%;
}

.logotype-modal-img {
    width: 150px;
}

.left-buy-preview {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 30px auto;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
}

.text-left-panel-buy {
    margin: 0;
    max-width: 270px;
    font-size: 2.45rem;
    font-weight: 800;
    line-height: 1.05;
    color: #fff6df;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.right-modal-panel-buy,
.content-modal {
    padding: 24px 26px;
}

.right-modal-panel-buy {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: calc(100vh - 40px);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 30px 30px 0;
    background: #131313;
}

.left-modal-panel-buy {
    border-radius: 30px 0 0 30px;
}

.main-top-panel-buy {
    display: grid;
    gap: 18px;
}

.top-info-block-a,
.top-modal {
    display: flex;
    gap: 18px;
    align-items: center;
}

.donate-image-panel-buy,
.donate-image-top {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
}

.donate-image-panel-buy {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.title-text-a,
.title-p-modal {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-subtitle,
.bottom-p-text {
    margin: 8px 0 0;
    color: var(--muted);
}

.group-inputs,
.group-object-a {
    display: grid;
    gap: 12px;
}

.purchase-flow-panel {
    gap: 14px;
}

.purchase-duration-panel {
    display: grid;
    gap: 14px;
}

.purchase-duration-panel[hidden] {
    display: none !important;
}

.purchase-duration-panel > .title-text-a {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 700;
}

.purchase-duration-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 4px;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)), #202124;
    border: 1px solid rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 8px 20px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.purchase-duration-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #e6e9ef;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}

.purchase-duration-option[hidden],
.purchase-duration-option em[hidden] {
    display: none !important;
}

.purchase-duration-option:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.purchase-duration-option.active {
    color: #17130a;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 58%),
        radial-gradient(ellipse at center, #F5DE68 0%, #E8A51E 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 4px 12px rgba(238, 163, 6, 0.16);
}

.purchase-duration-option em {
    padding: 4px 7px;
    border-radius: 5px;
    background: #f54855;
    color: #fff;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.purchase-duration-option[data-duration="forever"] em {
    background: #f2ba28;
    color: #161616;
}

.purchase-duration-option.active em {
    background: #ff5050;
    color: #fff;
}

.purchase-duration-option.active[data-duration="forever"] em {
    background: #f2ba28;
    color: #161616;
}

.purchase-duration-option:active {
    transform: scale(0.98);
}

@media (max-width: 520px) {
    .purchase-duration-options {
        grid-template-columns: 1fr;
    }
}

.purchase-flow-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 205, 86, 0.12), rgba(255, 173, 26, 0.06)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 208, 95, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.05);
}

.purchase-flow-text {
    margin: 0;
    color: #f1f5fd;
    line-height: 1.65;
}

.purchase-flow-link {
    color: #ffd67a;
    font-weight: 700;
    text-decoration: none;
}

.purchase-flow-link:hover {
    text-decoration: underline;
}

.purchase-flow-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.purchase-flow-point {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10, 16, 24, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffe5a3;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.object-input-a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    min-height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.object-input-a::after {
    content: "";
    position: absolute;
    left: 96px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(239, 196, 70, 0.12);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.object-input-a:focus-within {
    background: rgba(239, 196, 70, 0.1);
    border-color: rgba(239, 196, 70, 0.2);
    box-shadow: inset 0 0 22px rgba(239, 196, 70, 0.035);
}

.object-input-a:focus-within::after {
    opacity: 1;
    transform: translateY(0);
}

.object-input-a:focus-within .input-icon {
    color: #E8A51E;
}

.input-icon {
    flex: 0 0 auto;
    color: rgba(214, 224, 241, 0.72);
    transition: color 0.25s ease, transform 0.25s ease;
}

.custom-input-a {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    outline: none;
}

.custom-input-a.input-error {
    color: #fff2f2;
}

.object-input-a:has(.custom-input-a.input-error) {
    border-color: rgba(255, 122, 122, 0.55);
    box-shadow: 0 0 0 1px rgba(255, 122, 122, 0.16);
}

.purchase-notice {
    padding: 9px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 196, 64, 0.18), rgba(255, 145, 0, 0.12));
    border: 1px solid rgba(255, 196, 64, 0.34);
    color: #ffe5a3;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    animation: noticeSlideIn 0.22s ease-out;
}

.purchase-notice[hidden] {
    display: none !important;
}

.purchase-success-notice {
    background: rgba(53, 196, 132, 0.12);
    border-color: rgba(53, 196, 132, 0.28);
    color: #85ffc4;
}

.purchase-error-notice {
    background: rgba(255, 100, 100, 0.12);
    border-color: rgba(255, 100, 100, 0.24);
    color: #ffb2b2;
}

.group-payment-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.button-payment-a {
    min-height: 56px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #edf4ff;
    cursor: pointer;
    transition:
        background 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s ease;
}

.button-payment-a.active {
    background: linear-gradient(180deg, rgba(255, 202, 58, 0.24), rgba(241, 164, 0, 0.14));
    border-color: rgba(255, 202, 58, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 247, 201, 0.08),
        0 12px 28px rgba(255, 191, 59, 0.12);
}

.payment-card {
    min-height: 82px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 194, 61, 0.2), rgba(255, 194, 61, 0.02));
    opacity: 0;
    transform: scaleX(0.86);
    transform-origin: left center;
    transition:
        opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.payment-card::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffc53d;
    box-shadow: 0 0 0 4px rgba(255, 197, 61, 0.14), 0 0 12px rgba(255, 197, 61, 0.48);
    opacity: 0;
    transform: scale(0.4);
    transition:
        opacity 0.24s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
}

.payment-card.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.payment-card.active::after {
    opacity: 1;
    transform: scale(1);
}

.payment-card-disabled,
.payment-card:disabled {
    opacity: 0.46;
    filter: grayscale(0.18);
    cursor: not-allowed;
    box-shadow: none;
}

.payment-card-disabled::before,
.payment-card-disabled::after,
.payment-card:disabled::before,
.payment-card:disabled::after {
    opacity: 0 !important;
    transform: none !important;
}

.payment-methods-grid {
    margin-top: 2px;
}

.payment-badges {
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 58px;
}

.payment-logo-wrap {
    min-width: 56px;
    height: 42px;
    padding: 4px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.payment-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
}

.visa-badge {
    background: #2452ff;
}

.mc-badge {
    background: linear-gradient(90deg, #ffb22e 0 50%, #ef5350 50% 100%);
    margin-left: -6px;
}

.single-badge {
    min-width: 44px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.crypto-badge {
    background: linear-gradient(180deg, #ffbf40, #ff8a00);
    color: #10151d;
}

.sbp-color {
    background: linear-gradient(180deg, #50c8ff, #ffb24c);
    color: #10151d;
}

.sber-color {
    background: linear-gradient(180deg, #2dd97d, #159453);
    color: #fff;
}

.tpay-color {
    background: linear-gradient(180deg, #ffe36a, #e2bc1a);
    color: #10151d;
}

.shares-color {
    background: linear-gradient(180deg, #363840, #15161b);
    color: #fff;
}

.yoo-color {
    background: linear-gradient(180deg, #8c4fff, #5d21d0);
    color: #fff;
}

.flag-color {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.72rem;
}

.visa-text-color {
    min-width: auto;
    padding: 0 10px;
    background: rgba(36, 82, 255, 0.16);
    color: #5ea2ff;
    font-size: 0.72rem;
}

.maestro-left,
.maestro-right {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.maestro-left {
    background: #11b4ff;
    margin-right: -6px;
}

.maestro-right {
    background: #ff3768;
}

.crypto-red-color {
    background: linear-gradient(180deg, #ff5b5b, #b50f0f);
    color: #fff;
}

.bot-color {
    background: linear-gradient(180deg, #7fcbff, #2b78d7);
    color: #fff;
}

.payment-card-copy {
    display: grid;
    gap: 2px;
    justify-items: start;
    text-align: left;
    padding-right: 52px;
    position: relative;
    z-index: 1;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-card-copy strong,
.payment-card-copy small {
    display: block;
}

.payment-card-copy small {
    color: var(--muted);
    font-size: 0.82rem;
    transition: color 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-percent {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #b9c6dd;
    font-size: 0.74rem;
    font-weight: 800;
    z-index: 1;
    transition:
        background 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-card.active .payment-card-copy {
    transform: translateX(2px);
}

.payment-card.active .payment-card-copy small {
    color: #ffdb83;
}

.payment-card.active .payment-percent {
    background: rgba(79, 55, 0, 0.34);
    color: #ffdc84;
    transform: translateY(1px);
}

.admin-inline-actions {
    margin: 14px 0 18px;
}

.product-payment-missing {
    outline: 1px solid rgba(255, 120, 120, 0.18);
}

.product-payment-missing .shop-button {
    background: rgba(255, 95, 95, 0.16);
    color: #ffd8d8;
    box-shadow: none;
}

.main-bottom-panel-buy {
    margin-top: auto;
    padding-top: 20px;
    display: grid;
    gap: 12px;
}

#payment_button {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

#payment_button .payment-old-price { margin-left:0; color:rgba(45,45,45,.48); font-size:.88em; font-weight:600; text-decoration:line-through; text-decoration-thickness:1.5px; }
#payment_button .payment-current-price { color:inherit; font-weight:800; }

.payment-provider-panel { margin-top:18px; }
.payment-provider-panel[hidden] { display:none !important; }
.payment-provider-options { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-top:10px; }
.payment-provider-option { position:relative; min-width:0; min-height:58px; padding:9px 34px 9px 10px; border:1px solid rgba(255,255,255,.055); border-radius:15px; background:linear-gradient(180deg,rgba(38,39,43,.98),rgba(29,30,34,.98)); box-shadow:inset 0 1px 0 rgba(255,255,255,.035),0 5px 14px rgba(0,0,0,.18); color:#f1f2f5; display:flex; flex-direction:row; align-items:center; justify-content:flex-start; gap:11px; cursor:pointer; overflow:hidden; transition:border-color .18s ease,background .18s ease,box-shadow .18s ease,transform .18s ease; }
.payment-provider-option::after { content:""; position:absolute; top:10px; right:10px; width:6px; height:6px; border-radius:50%; background:transparent; box-shadow:none; transition:.18s ease; }
.payment-provider-option:hover { border-color:rgba(246,184,29,.28); background:linear-gradient(180deg,rgba(45,43,35,.98),rgba(32,31,28,.98)); transform:translateY(-1px); }
.payment-provider-option.active { border-color:rgba(246,184,29,.38); background:linear-gradient(135deg,rgba(67,55,26,.98),rgba(43,38,27,.98)); box-shadow:inset 0 1px 0 rgba(255,215,105,.08),0 7px 18px rgba(0,0,0,.22); color:#f8c437; }
.payment-provider-option.active::after { background:#f6c432; box-shadow:0 0 9px rgba(246,196,50,.85); }
.payment-provider-option img { display:block; width:36px; height:36px; flex:0 0 36px; border-radius:9px; object-fit:contain; }
.payment-provider-option span { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font:750 .82rem/1.1 "Inter",Arial,sans-serif; }
.payment-provider-option[hidden] { display:none; }

@media (max-width:520px) {
    .payment-provider-options { gap:8px; }
    .payment-provider-option { min-height:54px; padding:8px 25px 8px 8px; gap:8px; }
    .payment-provider-option img { width:32px; height:32px; flex-basis:32px; }
    .payment-provider-option span { font-size:.72rem; }
}

.close-panel {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.mobile-description-button {
    display: none;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 58;
    background:
        linear-gradient(90deg, rgba(4, 7, 12, 0.82) 0%, rgba(4, 7, 12, 0.64) 38%, rgba(4, 7, 12, 0.22) 100%);
    backdrop-filter: blur(10px);
}

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

.info-modal-panel {
    max-width: 760px;
}

.compact-info-modal {
    max-width: 620px;
    background: #131313;
    border-color: #303030;
    border-radius: 22px;
    overflow: hidden;
}

.info-copy-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 24px 0;
    padding: 0 48px 20px 0;
    text-align: left;
    border-bottom: 1px solid #303030;
}

.info-product-image {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    object-fit: contain;
}

.info-static-title {
    margin: 0;
    color: #f4f4f4;
    font-size: 1.65rem;
    font-weight: 600;
}

.info-product-subtitle {
    margin: 5px 0 0;
    color: #aeb4bd;
    font-size: 0.82rem;
    font-weight: 500;
}

.description-modal {
    color: #c4c8cf;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.65;
}

.description-modal h2,
.description-modal h3,
.description-modal h4 {
    margin: 18px 0 12px;
    padding-left: 12px;
    border-left: 4px solid #EFC446;
    color: #f2f2f2;
    font-size: 1rem;
    font-weight: 600;
}

.description-modal ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.description-modal ul + ul {
    margin-top: 10px;
}

.description-modal li {
    position: relative;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 12px;
    background: #1b1b1b;
    transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.description-modal li:hover {
    transform: translateX(6px);
    background: rgba(239, 196, 70, 0.1);
    box-shadow: inset 3px 0 0 rgba(239, 196, 70, 0.78);
}

.description-modal li::before {
    content: "◆";
    margin-right: 10px;
    color: #EFC446;
    font-size: 0.58rem;
}

.description-modal code,
.description-modal strong {
    padding: 3px 7px;
    border-radius: 6px;
    background: #E8A51E;
    color: #15120a;
    font-weight: 600;
}

.description-modal .desc-color-gold,
.description-modal .desc-command {
    color: #EFC446;
    font-weight: 700;
}

.description-modal .desc-color-green {
    color: #43d17d;
    font-weight: 700;
}

.description-modal .desc-color-blue {
    color: #67a9ff;
    font-weight: 700;
}

.description-modal .desc-color-pink {
    color: #ff83bd;
    font-weight: 700;
}

.description-modal .desc-custom-color {
    color: var(--description-color);
    font-weight: 700;
}

.info-modal-buy {
    width: 100%;
    margin-top: 28px;
    font-weight: 500;
}

.compact-info-modal .content-modal {
    padding-top: 18px;
}

.button-modal {
    margin-top: 22px;
}

.instruction-modal-panel {
    width: min(1760px, calc(100vw - 48px));
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.instruction-stage {
    overflow: hidden;
    padding: 40px 0 24px;
}

.instruction-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
}

.instruction-card {
    display: grid;
    gap: 0;
    flex: 0 0 auto;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #111720, #0d131b);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
    transition: transform 0.62s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.62s ease, filter 0.62s ease;
}

.instruction-card.is-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.instruction-card.is-left,
.instruction-card.is-right {
    opacity: 0.42;
    filter: blur(4px);
    transform: scale(0.88);
}

.instruction-card.is-far {
    opacity: 0.18;
    filter: blur(7px);
    transform: scale(0.82);
}

.instruction-card:not(.is-active) .instruction-action-button {
    pointer-events: none;
}

.instruction-image {
    width: 100%;
    height: 292px;
    object-fit: cover;
    display: block;
    background: #10151d;
}

.instruction-content {
    display: grid;
    gap: 18px;
    padding: 24px 26px 26px;
}

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

.instruction-step-label {
    margin: 0;
    color: #6d7a94;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.instruction-progress {
    display: flex;
    align-items: center;
    gap: 6px;
}

.instruction-progress-dot {
    width: 14px;
    height: 3px;
    border-radius: 999px;
    background: rgba(133, 153, 189, 0.26);
}

.instruction-progress-dot.active {
    width: 20px;
    background: #3ea7ff;
    box-shadow: 0 0 14px rgba(62, 167, 255, 0.28);
}

.instruction-title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 900;
}

.instruction-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 1rem;
}

.instruction-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.instruction-action-button {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.instruction-action-button:hover {
    transform: translateY(-1px);
}

.instruction-action-button.primary {
    color: #f6fff8;
    background: linear-gradient(180deg, #2be49c 0%, #10bb76 100%);
    box-shadow: 0 16px 30px rgba(22, 201, 126, 0.22);
}

.instruction-action-button.secondary {
    color: #80d0ff;
    background: rgba(26, 55, 82, 0.94);
    border-color: rgba(74, 150, 214, 0.2);
    min-width: 156px;
    box-shadow: 0 12px 28px rgba(35, 122, 190, 0.18);
}

.instruction-action-button.ghost {
    color: #5f6b83;
    background: transparent;
    border-color: transparent;
    padding: 0;
    min-height: auto;
    box-shadow: none;
}

.instruction-action-button.ghost:hover {
    transform: none;
    color: #7f8ba4;
}

.admin-body {
    padding: 28px 0 60px;
    background: #090b10;
    color: var(--text);
}

.admin-layout {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    transition: grid-template-columns 0.22s ease;
}

.admin-layout:has(.admin-sidebar.is-open) {
    grid-template-columns: 296px minmax(0, 1fr);
}

.admin-layout.sidebar-open {
    grid-template-columns: 296px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 20px;
    min-height: calc(100vh - 40px);
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 20, 31, 0.98), rgba(10, 14, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-sidebar:not(.is-open) {
    padding: 18px 14px;
    min-height: 88px;
}

.admin-sidebar-top h1 {
    margin: 0 0 10px;
    font-size: 1.9rem;
}

.admin-sidebar-top p,
.admin-sidebar-bottom p,
.admin-helper-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.admin-menu-icon {
    display: inline-grid;
    gap: 6px;
}

.admin-menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.admin-menu-icon span {
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd85a 0%, #ffb91d 100%);
    box-shadow: 0 10px 24px rgba(255, 185, 29, 0.18);
}

.admin-side-nav {
    display: grid;
    gap: 10px;
    margin: 22px 0 24px;
}

.admin-nav-link {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    color: #e9eef8;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
    cursor: pointer;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.admin-sidebar-bottom {
    display: grid;
    gap: 12px;
}

.admin-content {
    min-width: 0;
    display: grid;
    gap: 18px;
    align-content: start;
}

.admin-panel-section {
    min-width: 0;
}

.admin-panel-section[hidden] {
    display: none !important;
}

.admin-sidebar:not(.is-open) .admin-panel-badge,
.admin-sidebar:not(.is-open) .admin-sidebar-top h1,
.admin-sidebar:not(.is-open) .admin-sidebar-top p,
.admin-sidebar:not(.is-open) .admin-sidebar-bottom p,
.admin-sidebar:not(.is-open) .admin-exit-link,
.admin-sidebar:not(.is-open) .admin-nav-link {
    display: none;
}

.auth-card,
.admin-card {
    background: linear-gradient(180deg, rgba(15, 20, 31, 0.98), rgba(10, 14, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.auth-card {
    width: min(460px, calc(100% - 32px));
    margin: 10vh auto 0;
    padding: 28px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 4px 0 18px;
}

.admin-panel-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9fb0cf;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: start;
}

.admin-card {
    padding: 28px;
    overflow: hidden;
}

.admin-security-form {
    max-width: 620px;
}

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

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
    align-items: stretch;
}

.admin-stat-card,
.admin-analytics-card {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-stat-card span,
.admin-stat-card small {
    display: block;
    color: var(--muted);
}

.admin-stat-card {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
}

.admin-stat-card.visits { border-left: 4px solid #50d96c; }
.admin-stat-card.unique { border-left: 4px solid #44a7ff; }
.admin-stat-card.today { border-left: 4px solid #ffbf40; }
.admin-stat-card.revenue { border-left: 4px solid #c45dff; }
.admin-stat-card.sum { border-left: 4px solid #ff8b52; }
.admin-stat-card.country { border-left: 4px solid #70e1cb; }

.admin-analytics-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.admin-analytics-card h3 {
    margin: 0 0 14px;
}

.admin-analytics-card {
    min-height: 100%;
}

.admin-current-badge,
.admin-table-note {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #c7d2e8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-card h2 {
    margin: 0 0 10px;
}

.admin-card-note {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

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

.admin-settings-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.admin-settings-block {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-content: start;
    min-height: 100%;
}

.admin-settings-block:nth-child(4) {
    grid-column: 1 / -1;
}

.admin-settings-block h3 {
    margin: 0;
    font-size: 1rem;
}

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

.admin-form span,
.admin-header p {
    color: var(--muted);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    min-height: 56px;
    background:
        linear-gradient(180deg, rgba(27, 35, 48, 0.98), rgba(20, 27, 39, 0.98));
    border: 1px solid rgba(104, 143, 204, 0.18);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.16);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-form input:hover,
.admin-form textarea:hover,
.admin-form select:hover,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: rgba(106, 182, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(79, 169, 255, 0.16),
        0 16px 34px rgba(8, 24, 46, 0.24);
}

.admin-form textarea {
    min-height: 140px;
    line-height: 1.7;
    resize: vertical;
}

.admin-command-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.admin-command-row:last-child {
    margin-bottom: 0;
}

.admin-command-row .hero-button,
.admin-command-row .admin-form button,
.admin-command-row button {
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 18px;
    flex: 0 0 auto;
    color: #ffffff;
}

.admin-command-row .js-add-command,
.admin-command-row .js-remove-command {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
}

.admin-description-input {
    white-space: pre-wrap;
}

.admin-description-large {
    min-height: 260px;
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

.admin-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #dbe7ff 50%),
        linear-gradient(135deg, #dbe7ff 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.admin-form select[multiple] {
    min-height: 220px;
    padding-right: 16px;
    background-image: none;
}

.admin-form select[multiple] option {
    padding: 10px 12px;
    border-radius: 10px;
}

.admin-form select option {
    color: #eef4ff;
    background: #141b27;
}

.ghost-link {
    color: #79caff;
}

.admin-exit-link {
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

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

.actions-cell {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#settings-card,
#categories-table,
#products-table,
#product-form,
#category-form {
    scroll-margin-top: 24px;
}

.danger-button {
    background: linear-gradient(180deg, #ff7f98 0%, #d54f69 100%);
}

.checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.checkbox-row input,
.admin-product-pick-all input,
.admin-product-pick-card input {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    min-width: 22px;
    height: 22px;
    min-height: 22px;
    margin: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 205, 122, 0.28);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.checkbox-row input::after,
.admin-product-pick-all input::after,
.admin-product-pick-card input::after {
    content: "";
    width: 6px;
    height: 11px;
    border-right: 2px solid #1f1710;
    border-bottom: 2px solid #1f1710;
    transform: rotate(45deg) scale(0.4);
    opacity: 0;
    transition: transform 0.16s ease, opacity 0.16s ease;
}

.checkbox-row input:hover,
.admin-product-pick-all input:hover,
.admin-product-pick-card input:hover {
    border-color: rgba(255, 196, 93, 0.48);
    background: rgba(255, 196, 93, 0.08);
}

.checkbox-row input:checked,
.admin-product-pick-all input:checked,
.admin-product-pick-card input:checked {
    border-color: rgba(255, 193, 87, 0.72);
    background: linear-gradient(180deg, #ffc35a 0%, #f0aa2f 100%);
    box-shadow: 0 10px 24px rgba(240, 170, 47, 0.24);
}

.checkbox-row input:checked::after,
.admin-product-pick-all input:checked::after,
.admin-product-pick-card input:checked::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.checkbox-row input:focus-visible,
.admin-product-pick-all input:focus-visible,
.admin-product-pick-card input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 193, 87, 0.15);
}

.flash-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 120;
    display: grid;
    gap: 12px;
    width: min(440px, calc(100vw - 32px));
    pointer-events: none;
}

.flash {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    animation: adminToastIn 0.24s ease-out;
    pointer-events: auto;
}

.flash.is-hiding {
    animation: adminToastOut 0.24s ease-in forwards;
}

.flash-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.flash-indicator {
    display: inline-flex;
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 999px;
    flex: 0 0 12px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.flash-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.flash-copy strong {
    color: #fff7ea;
    font-size: 0.98rem;
    font-weight: 800;
}

.flash-copy span {
    color: rgba(255, 245, 232, 0.92);
    line-height: 1.45;
    word-break: break-word;
}

.flash-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 245, 232, 0.88);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
    flex: 0 0 34px;
}

.flash-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.flash-success {
    border-color: rgba(26, 199, 135, 0.24);
    background: linear-gradient(180deg, rgba(8, 56, 46, 0.96), rgba(5, 37, 31, 0.94));
}

.flash-success .flash-indicator {
    background: #2fd59b;
}

.flash-error {
    border-color: rgba(255, 111, 133, 0.24);
    background: linear-gradient(180deg, rgba(70, 22, 34, 0.96), rgba(44, 12, 21, 0.94));
}

.flash-error .flash-indicator {
    background: #ff7890;
}

@keyframes adminToastIn {
    from {
        opacity: 0;
        transform: translate3d(20px, -12px, 0) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes adminToastOut {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        opacity: 0;
        transform: translate3d(18px, -8px, 0) scale(0.98);
    }
}

.admin-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(4, 6, 10, 0.72);
    backdrop-filter: blur(8px);
}

.admin-confirm-overlay[hidden] {
    display: none !important;
}

.admin-confirm-card {
    width: min(420px, 100%);
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 20, 31, 0.98), rgba(10, 14, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.admin-confirm-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.admin-confirm-message {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.admin-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .admin-layout,
    .shop-top-banner,
    .landing-grid,
    .modal-panel-buy,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .admin-layout,
    .admin-layout:has(.admin-sidebar.is-open) {
        grid-template-columns: 1fr;
    }

    .admin-layout.sidebar-open {
        grid-template-columns: 1fr;
    }

    .admin-settings-sections {
        grid-template-columns: 1fr;
    }

    .admin-security-grid {
        grid-template-columns: 1fr;
    }

    .admin-stats-grid,
    .admin-analytics-grid {
        grid-template-columns: 1fr;
    }

    .list-shop-content-a {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-shell,
    .admin-shell {
        width: min(100% - 20px, 1240px);
    }

    .store-nav-desktop {
        display: none;
    }

    .header-socials {
        display: none;
    }

    .admin-body {
        padding: 16px 0 32px;
    }

    .admin-layout,
    .admin-layout:has(.admin-sidebar.is-open),
    .admin-layout.sidebar-open {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .admin-sidebar {
        position: relative;
        top: 0;
        padding: 16px;
        border-radius: 20px;
    }

    .admin-sidebar:not(.is-open) {
        padding: 14px 16px;
    }

    .admin-sidebar-top h1 {
        font-size: 1.35rem;
    }

    .admin-menu-toggle {
        margin-bottom: 10px;
    }

    .admin-side-nav {
        gap: 8px;
        margin: 16px 0 18px;
    }

    .admin-nav-link {
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .admin-header {
        padding: 0 0 8px;
    }

    .admin-header-copy h2 {
        font-size: 1.45rem;
        line-height: 1.05;
    }

    .admin-card,
    .auth-card {
        padding: 18px;
        border-radius: 18px;
    }

    .admin-card h2 {
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .admin-form {
        gap: 12px;
    }

    .admin-form label span {
        font-size: 0.9rem;
    }

    .admin-form input,
    .admin-form select,
    .admin-form textarea,
    .admin-form button {
        min-height: 48px;
    }

    .admin-form textarea {
        min-height: 120px;
    }

    .admin-inline-actions {
        margin: 12px 0 14px;
    }

    .admin-stats-grid,
    .admin-analytics-grid,
    .admin-security-grid,
    .admin-settings-sections {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .admin-stat-card,
    .admin-analytics-card {
        padding: 16px;
        border-radius: 16px;
    }

    .admin-stat-card strong {
        font-size: 1.55rem;
    }

    .table-wrap {
        margin-inline: -4px;
        padding-inline: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 760px;
    }

    .actions-cell {
        min-width: 180px;
    }

    .admin-confirm-card {
        width: min(100% - 24px, 420px);
        padding: 18px;
        border-radius: 18px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .store-body,
    .rules-body,
    .bugs-body {
        overflow-x: hidden;
    }

    .store-header,
    .shop-top-actions,
    .section-heading,
    .top-modal,
    .top-info-block-a {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-header {
        gap: 10px;
        padding: 10px 12px 12px;
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(33, 52, 82, 0.9), rgba(24, 36, 56, 0.94)),
            url("/img/background/background-content.png") center / cover no-repeat;
    }

    .store-left-header {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 1px auto;
        align-items: center;
        column-gap: 12px;
    }

    .burger-button {
        display: inline-flex;
        justify-self: end;
        align-self: center;
    }

    .solid_absolute {
        width: 1px;
        height: 30px;
        margin: 0;
        justify-self: center;
        align-self: center;
    }

    .store-nav {
        display: flex;
        position: fixed;
        left: 0;
        right: auto;
        top: 0;
        bottom: 0;
        z-index: 60;
        width: min(76vw, 304px);
        margin-top: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: calc(env(safe-area-inset-top, 0px) + 14px) 14px 24px;
        border-radius: 0 24px 24px 0;
        background:
            linear-gradient(180deg, rgba(7, 12, 22, 0.92), rgba(6, 10, 18, 0.97)),
            url("/img/background/background-content.png") center / cover no-repeat;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 34px 70px rgba(0, 0, 0, 0.52);
        transform: translateX(-105%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .store-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
        animation: none;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-menu-title {
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #92a5c9;
    }

    .mobile-menu-close {
        width: 56px;
        height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        cursor: pointer;
    }

    .mobile-menu-close span {
        position: absolute;
        width: 26px;
        height: 2px;
        border-radius: 999px;
        background: #f0f6ff;
    }

    .mobile-menu-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .store-nav,
    .shop-top-actions,
    .landing-actions,
    .hero-status-row,
    .store-footer-inner {
        width: 100%;
    }

    .store-footer-brand-column,
    .store-footer-column {
        justify-items: center;
        text-align: center;
    }

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

    .store-footer-payments {
        grid-column: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .store-nav a,
    .hero-button,
    .landing-actions .hero-button {
        width: 100%;
        justify-content: center;
    }

    .store-right-header {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }

    .store-right-header::before {
        display: none;
    }

    .server-ip-button {
        width: auto;
        min-width: min(240px, 100%);
        justify-content: center;
        margin: 0 auto;
        padding: 12px 16px;
        border-radius: 16px;
    }

    .store-nav a {
        justify-content: flex-start;
        min-height: 56px;
        padding: 15px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        font-size: 1rem;
        font-weight: 700;
    }

    .hero-scene {
        min-height: 0;
        display: none;
    }

    .hero-island {
        display: none;
    }

    .server-ip-text {
        text-align: center;
        font-size: 0.96rem;
    }

    .store-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .shop-top-banner {
        padding: 16px 0 24px;
        gap: 8px;
    }

    .hero-top-donater {
        position: static;
        width: min(100%, 320px);
        min-height: 76px;
        margin: 12px auto 0;
        padding: 12px 14px;
        animation: none;
        transform: none;
    }

    .shop-top-copy {
        margin: 0 auto;
        text-align: center;
    }

    .shop-top-copy h1 {
        font-size: clamp(1.58rem, 8.8vw, 2.18rem);
        line-height: 0.95;
        max-width: 7.5ch;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }

    .shop-top-copy .minego-hero-title {
        max-width: none;
        font-size: clamp(2rem, 7.4vw, 3.45rem);
        font-weight: 700;
        line-height: 1.06;
    }

    .shop-top-banner.minego-intro-banner {
        min-height: 600px;
        padding: 56px 0 132px;
        text-align: left;
    }

    .shop-top-copy.minego-intro-copy {
        margin: 0;
        text-align: left;
    }

    .shop-top-copy.minego-intro-copy h1 {
        max-width: none;
        margin: 22px 0 18px;
        font-size: clamp(2.45rem, 12vw, 4.1rem);
        line-height: 0.98;
    }

    .shop-top-copy .minego-intro-kicker,
    .shop-top-copy .minego-intro-subtitle {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .shop-top-copy .minego-intro-kicker {
        flex-wrap: wrap;
        font-size: 0.82rem;
    }

    .hero-scroll-cue {
        bottom: 24px;
    }

    .shop-top-copy p,
    .landing-main-card p,
    .small-description-shop,
    .description-modal {
        font-size: 14.9px;
        line-height: 1.48;
        max-width: 31ch;
    }

    .shop-top-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-floating-icon {
        width: 22px;
        height: 22px;
        opacity: 0.58;
    }

    .hero-icon-left {
        left: -2px;
        top: 8px;
    }

    .hero-icon-right {
        right: 10px;
        top: 10px;
    }

    .shop-top-copy {
        max-width: 100%;
        padding-right: 0;
    }

    .list-shop-content-a,
    .landing-side-cards,
    .group-payment-list {
        grid-template-columns: 1fr;
    }

    .catalog-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        margin-inline: -2px;
        padding-inline: 2px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .catalog-filter-button {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .object-shop {
        min-height: auto;
        padding: 16px;
        border-radius: 15px;
        transform: none;
    }

    .object-shop:hover {
        transform: none;
    }

    .top-donater-card,
    .admin-card,
    .auth-card,
    .right-modal-panel-buy,
    .content-modal {
        padding: 20px;
    }

    .left-modal-panel-buy {
        display: none;
    }

    .modal-overlay {
        padding: 0;
        align-items: stretch;
    }

    .modal-panel-buy,
    .modal-panel {
        border-radius: 0;
        width: 100%;
        max-width: none;
        min-height: 100dvh;
        min-height: 100svh;
    }

    .modal-panel-buy {
        display: block;
        max-height: none;
        overflow: hidden;
    }

    .right-modal-panel-buy {
        max-height: 100dvh;
        min-height: 100dvh;
        max-height: 100svh;
        min-height: 100svh;
        overflow-y: auto;
        border-radius: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 18px) 16px calc(env(safe-area-inset-bottom, 0px) + 24px);
        background: #131313;
    }

    .main-top-panel-buy {
        gap: 20px;
        padding-top: 10px;
    }

    .top-info-block-a {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding-right: 44px;
    }

    .donate-image-panel-buy {
        width: 56px;
        height: 56px;
        border-radius: 0;
    }

    .title-text-a {
        font-size: 1.15rem;
    }

    .modal-subtitle {
        font-size: 0.92rem;
    }

    .group-object-a > .title-text-a {
        font-size: 1.25rem;
        font-weight: 900;
    }

    .main-bottom-panel-buy {
        position: sticky;
        bottom: 0;
        padding: 18px 0 calc(env(safe-area-inset-bottom, 0px) + 6px);
        margin-top: 18px;
        background: linear-gradient(180deg, rgba(19, 19, 19, 0), rgba(19, 19, 19, 0.94) 26%, #131313);
    }

    .object-input-a {
        min-height: 44px;
        border-radius: 14px;
    }

    .payment-card {
        min-height: 78px;
        border-radius: 18px;
    }

    .landing-section {
        padding-top: 10px;
    }

    .landing-grid {
        gap: 14px;
    }

    .landing-main-card,
    .landing-info-card {
        padding: 18px;
        border-radius: 22px;
    }

    .landing-main-card h2 {
        font-size: 1.24rem;
        line-height: 1.08;
    }

    .store-wordmark img {
        max-height: 40px;
    }

    #siteWordmark {
        font-size: 1.55rem;
    }

    .burger-button {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .hero-status-row {
        gap: 10px;
        align-items: center;
        max-width: 286px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-button.primary {
        width: 100%;
        min-height: 40px;
        font-size: 0.82rem;
        padding: 10px 14px;
        border-radius: 16px;
    }

    .hero-online-pill {
        width: 100%;
        min-height: 38px;
        padding: 7px 10px;
        border-radius: 16px;
        gap: 8px;
    }

    .hero-online-pill strong {
        font-size: 1.08rem;
    }

    .hero-online-pill span:last-child {
        font-size: 0.74rem;
    }

    .purchase-feed-card,
    .bug-feed-card {
        scroll-snap-align: start;
    }

    .last-purchases-list,
    .bugs-feed-list {
        scroll-snap-type: x proximity;
    }

    .purchase-hover-card {
        left: 6px;
        right: 6px;
        width: auto;
    }

    .section-heading {
        gap: 10px;
    }

    .section-heading h2,
    .shop-h2 {
        font-size: 1.7rem;
        line-height: 1.05;
    }

    .section-meta {
        font-size: 0.9rem;
    }

    .landing-main-card,
    .landing-info-card {
        border-radius: 20px;
    }

    .landing-main-card {
        padding: 22px 18px;
    }

    .landing-main-card h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .landing-info-card {
        padding: 18px;
    }

    .hero-status-row {
        gap: 10px;
    }

    .hero-online-pill {
        width: 100%;
        justify-content: center;
    }

    .buy-description-button {
        width: 100%;
    }

    .close-panel {
        top: calc(env(safe-area-inset-top, 0px) + 14px);
        right: 12px;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
    }

    .compact-info-modal {
        max-width: 100%;
    }

    #infoModal {
        padding: 16px;
        align-items: center;
    }

    #infoModal .modal-panel {
        width: min(100%, 420px);
        min-height: auto;
        border-radius: 20px;
    }

    #infoModal .content-modal {
        padding: 14px 16px 18px;
    }

    .info-copy-head {
        padding: 18px 18px 0;
    }

    .info-static-title {
        font-size: 1.12rem;
    }

    .description-modal {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .instruction-modal-panel {
        width: min(100vw - 24px, 392px);
        max-width: none;
        min-height: auto;
        border-radius: 20px;
    }

    .instruction-stage {
        padding: 22px 0 12px;
    }

    .instruction-card {
        border-radius: 20px;
    }

    .instruction-card.is-left,
    .instruction-card.is-right {
        opacity: 0.2;
        filter: blur(6px);
    }

    .instruction-image {
        aspect-ratio: auto;
        height: auto;
        max-height: 220px;
        object-fit: contain;
        background: #131924;
    }

    .instruction-content {
        min-height: auto;
        gap: 14px;
        padding: 14px 14px calc(env(safe-area-inset-bottom, 0px) + 16px);
    }

    .instruction-title {
        font-size: 0.96rem;
        line-height: 1.14;
    }

    .instruction-text {
        font-size: 0.8rem;
        line-height: 1.38;
    }

    .instruction-actions {
        margin-top: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .instruction-action-button {
        width: 100%;
        min-height: 42px;
        padding: 10px 12px;
        font-size: 0.84rem;
    }
}

@media (max-width: 420px) {
    .store-header {
        margin-top: 14px;
    }

    .solid_absolute {
        height: 24px;
    }

    .store-nav {
        width: min(82vw, 294px);
    }

    .shop-top-copy h1 {
        font-size: clamp(1.48rem, 8.4vw, 1.96rem);
        max-width: 6.6ch;
    }

    .shop-top-copy p {
        font-size: 0.8rem;
        max-width: 27ch;
    }

    .server-ip-button {
        min-width: min(220px, 100%);
        padding: 11px 14px;
    }

    .server-ip-text {
        font-size: 0.9rem;
    }

    .landing-main-card h2 {
        font-size: 1.12rem;
    }
}

@media (max-width: 480px) {
    .store-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .store-header {
        padding: 14px 14px 12px;
        gap: 12px;
        border-radius: 18px;
    }

    .store-wordmark {
        font-size: 1.45rem;
        gap: 10px;
    }

    .store-wordmark img {
        max-height: 38px;
        width: auto;
    }

    .burger-button {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .store-wordmark img {
        max-height: 42px;
    }

    .shop-top-banner {
        padding: 18px 0 32px;
    }

    .hero-island {
        display: none;
    }

    .top-donater-avatar {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .hero-floating-icon {
        width: 40px;
        height: 40px;
    }

    .hero-icon-left {
        left: -10px;
        top: -10px;
    }

    .hero-icon-right {
        right: 10px;
        top: -8px;
    }

    .shop-top-copy h1 {
        max-width: 8.2ch;
        font-size: clamp(1.72rem, 9.6vw, 2.25rem);
    }

    .shop-top-copy p {
        max-width: 28ch;
        font-size: 0.86rem;
    }

    .server-ip-button {
        min-width: min(220px, 100%);
        padding: 11px 14px;
    }

    .server-ip-text {
        font-size: 0.88rem;
    }

    .top-donater-sum {
        font-size: 0.9rem;
    }

    .object-shop {
        padding: 14px;
    }

    .title-donate {
        font-size: 34px;
    }

    .donate-image-a {
        min-height: 132px;
        margin-bottom: 10px;
        border-radius: 16px;
    }

    .shop-donate-image {
        width: 84px;
        height: 84px;
    }

    .small-description-shop {
        -webkit-line-clamp: 3;
        font-size: 14.9px;
        line-height: 1.55;
    }

    .right-modal-panel-buy,
    .content-modal,
    .info-copy-head {
        padding: 16px;
    }

    .left-modal-panel-buy {
        min-height: 260px;
    }

    .payment-card {
        min-height: 72px;
        padding: 12px 14px;
    }

    .payment-logo-wrap {
        min-width: 46px;
        width: 46px;
        height: 36px;
    }

    .payment-card-copy {
        padding-right: 44px;
    }

    .payment-card-copy strong {
        font-size: 0.9rem;
    }

    .payment-card-copy small {
        font-size: 0.76rem;
    }

    .payment-percent {
        right: 10px;
        top: 10px;
        font-size: 0.68rem;
        padding: 4px 7px;
    }

    .purchase-feed-card {
        min-width: 128px;
        flex-basis: 128px;
        gap: 10px;
    }

    .purchase-feed-surface {
        width: 128px;
        height: 96px;
        border-radius: 16px;
    }

    .purchase-feed-surface img {
        width: 40px;
        height: 40px;
    }

    .purchase-feed-copy strong {
        font-size: 0.9rem;
    }

    .purchase-feed-copy span {
        max-width: 124px;
        font-size: 0.8rem;
    }

    .purchase-hover-card {
        top: 4px;
        left: 4px;
        right: 4px;
        padding: 7px 8px;
        border-radius: 12px;
    }

    .purchase-hover-header strong {
        font-size: 0.74rem;
    }

    .purchase-hover-header span {
        font-size: 0.68rem;
    }

    .instruction-title {
        font-size: 1.3rem;
    }

    .instruction-step-label {
        font-size: 0.82rem;
    }

    .hero-button,
    .custom-button-1,
    .purchase-form button,
    .admin-form button,
    .server-ip-button {
        min-height: 50px;
        padding-inline: 16px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .top-info-block-a {
        flex-direction: row;
        align-items: center;
    }

    .shop-section > .page-shell {
        width: min(calc(100% - 12px), 1240px);
    }

    .list-shop-content-a {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .object-shop {
        width: min(100%, 322px);
        height: 413px;
        min-height: 413px;
        padding: 28px;
        border: 1px solid #4C4C4C;
        border-radius: 15px;
    }

    .shop-cost-donate {
        font-size: 15.4px;
    }

    .title-donate {
        margin-top: 14px;
        font-size: 27.4px;
    }

    .small-description-shop {
        font-size: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }

    .object-shop .shop-button {
        width: 100%;
        height: 52px;
        min-height: 52px;
        font-size: 22.5px;
    }

    .purchase-pill:hover,
    .server-ip-button:hover,
    .store-nav a:hover,
    .purchase-feed-surface:hover {
        transform: none;
        box-shadow: inherit;
    }

    .object-shop:hover,
    .object-shop:active,
    .object-shop:focus-within {
        transform: none;
        border-color: #4C4C4C;
        box-shadow: inset 0 40px 50px 2px rgba(203, 212, 255, 0.1), var(--shadow);
    }

    .hero-top-donater:hover {
        transform: none;
    }
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes islandFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes donorCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes particlesFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-14px);
        opacity: 0.95;
    }
}

@keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalLift {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes catalogCardIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes onlinePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(125, 255, 66, 0.32), 0 0 16px rgba(125, 255, 66, 0.55);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(125, 255, 66, 0), 0 0 22px rgba(125, 255, 66, 0.42);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(125, 255, 66, 0), 0 0 16px rgba(125, 255, 66, 0.55);
    }
}

@keyframes serverIconSpinForward {
    0% {
        transform: rotate(0deg) scale(1);
    }
    60% {
        transform: rotate(220deg) scale(1.16);
    }
    100% {
        transform: rotate(360deg) scale(1.08);
    }
}

@keyframes serverIconSpinBackward {
    0% {
        transform: rotate(360deg) scale(1.08);
    }
    60% {
        transform: rotate(140deg) scale(1.02);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes instructionStepInNext {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes instructionStepInPrev {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rules-hero-shell {
    min-height: 320px;
    overflow: hidden;
}

.rules-hero-bg {
    background:
        linear-gradient(180deg, rgba(34, 55, 89, 0.9), rgba(13, 18, 28, 0.22)),
        linear-gradient(90deg, rgba(7, 10, 16, 0.78) 0%, rgba(7, 10, 16, 0.38) 42%, rgba(7, 10, 16, 0.12) 100%),
        url("/img/background/background-content.png") center top / cover no-repeat,
        url("/img/background/header-top-background.png") center center / cover no-repeat;
}

.rules-hero {
    min-height: 192px;
    display: flex;
    align-items: flex-end;
    padding: 34px 0 28px;
}

.rules-hero-copy {
    width: min(780px, 100%);
    display: grid;
    gap: 10px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.rules-hero-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 800;
    max-width: 680px;
}

.rules-hero-copy p:not(.mini-label) {
    margin: 0;
    color: #f0f4fb;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
    max-width: 760px;
}

.rules-main {
    margin-top: 0;
    padding-bottom: 80px;
    background: #0b0c10;
}

.rules-intro-card {
    padding: 26px 0 8px;
    color: #d8dce3;
    line-height: 1.65;
}

.rules-intro-card p {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 700;
}

.rules-intro-card p + p {
    margin-top: 22px;
}

.rule-item {
    background: linear-gradient(180deg, rgba(16, 21, 29, 0.96), rgba(11, 15, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.rules-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.rule-item {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(49, 49, 52, 0.94), rgba(38, 38, 41, 0.94));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.rule-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 0;
    color: #f2f4f8;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.rule-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rule-badge {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    flex: 0 0 30px;
}

.rule-badge img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.rule-title {
    font-size: 0.98rem;
    font-weight: 800;
}

.rule-arrow {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #d4d7dd;
    border-bottom: 1.5px solid #d4d7dd;
    transform: rotate(45deg);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s ease;
    flex: 0 0 auto;
    margin-right: 8px;
}

.rule-item.is-open .rule-arrow {
    transform: rotate(-135deg);
    border-color: #ffd85a;
}

.rule-body {
    padding: 0 18px;
    color: #d8dce3;
    line-height: 1.55;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.58s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease, padding-bottom 0.34s ease;
}

.rule-item.is-open .rule-body {
    opacity: 1;
    padding-bottom: 18px;
}

.rule-body p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
}

.rule-body p + p {
    margin-top: 10px;
}

.rule-body .rule-note {
    margin-top: 20px;
    padding: 14px 16px;
    border-left: 3px solid #f6b81d;
    border-radius: 0 10px 10px 0;
    background: rgba(246, 184, 29, 0.08);
}

.rule-body .rule-note strong {
    color: #f6b81d;
}

@media (max-width: 760px) {
    .rules-body .page-shell,
    .bugs-body .page-shell {
        width: min(1240px, calc(100% - 20px));
    }

    .rules-body .store-header,
    .bugs-body .store-header {
        gap: 12px;
        padding: 12px;
        margin-top: 12px;
        align-items: stretch;
    }

    .rules-body .store-left-header,
    .bugs-body .store-left-header {
        grid-template-columns: minmax(0, 1fr) 1px auto;
        column-gap: 10px;
    }

    .rules-body .store-wordmark,
    .bugs-body .store-wordmark {
        min-width: 0;
    }

    .rules-body .store-wordmark img,
    .bugs-body .store-wordmark img {
        max-height: 44px;
    }

    .rules-body .store-right-header,
    .bugs-body .store-right-header {
        width: 100%;
        justify-content: stretch;
    }

    .rules-body .server-ip-button,
    .bugs-body .server-ip-button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .rules-main {
        padding-bottom: 56px;
    }

    .rules-hero {
        min-height: 180px;
        padding: 18px 0 20px;
    }

    .rules-hero-bg {
        background:
            linear-gradient(180deg, rgba(34, 55, 89, 0.94), rgba(13, 18, 28, 0.34)),
            linear-gradient(90deg, rgba(7, 10, 16, 0.82) 0%, rgba(7, 10, 16, 0.48) 52%, rgba(7, 10, 16, 0.18) 100%),
            url("/img/background/background-content.png") center top / cover no-repeat,
            url("/img/background/header-top-background.png") center center / cover no-repeat;
    }

    .rule-toggle {
        padding: 16px 18px;
        align-items: flex-start;
    }

    .rules-hero-copy h1 {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .rules-hero-copy p:not(.mini-label) {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .rule-head {
        align-items: flex-start;
    }

    .rule-badge {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .rule-title {
        font-size: 1rem;
        line-height: 1.35;
    }

    .rule-body {
        padding: 0 18px;
        font-size: 0.96rem;
    }

    .rule-item.is-open .rule-body {
        padding-bottom: 16px;
    }
}

.purchase-feed-card {
    position: relative;
    display: grid;
    justify-items: start;
    gap: 16px;
    min-width: 184px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    flex: 0 0 184px;
    overflow: visible;
}

.purchase-feed-surface {
    position: relative;
    width: 184px;
    height: 132px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(39, 42, 49, 0.92), rgba(48, 51, 58, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.purchase-feed-surface:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.13);
}

.purchase-feed-surface img {
    width: 58px;
    height: 58px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    image-rendering: auto;
}

.purchase-feed-copy,
.bug-feed-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
    justify-items: start;
    text-align: left;
    padding: 0 2px;
}

.purchase-feed-copy strong,
.bug-feed-copy strong {
    font-size: 1.06rem;
    color: #f3f8ff;
    line-height: 1.3;
}

.purchase-feed-copy span,
.bug-feed-copy span {
    color: var(--muted);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 178px;
}

.purchase-hover-card {
    position: absolute;
    left: 8px;
    top: 10px;
    transform: translateY(0);
    width: 146px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(10, 11, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.purchase-feed-card.is-preview-open .purchase-hover-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.purchase-hover-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.purchase-hover-header img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex: 0 0 22px;
    border-radius: 0;
}

.purchase-hover-header strong {
    display: block;
    color: #eef3ff;
    font-size: 0.8rem;
    line-height: 1.25;
}

.purchase-hover-header span {
    display: block;
    margin-top: 2px;
    color: #d9dbe4;
    font-size: 0.74rem;
    line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
    .purchase-feed-card:hover .purchase-hover-card {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .purchase-feed-card:hover .purchase-feed-surface {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.13);
    }
}

.bugs-hero-shell {
    min-height: 320px;
    overflow: hidden;
}

.bugs-hero-bg {
    background:
        linear-gradient(180deg, rgba(34, 55, 89, 0.9), rgba(13, 18, 28, 0.2)),
        linear-gradient(90deg, rgba(7, 10, 16, 0.8) 0%, rgba(7, 10, 16, 0.42) 42%, rgba(7, 10, 16, 0.14) 100%),
        url("/img/background/background-content.png") center top / cover no-repeat,
        url("/img/background/bug_background.jpg") center center / cover no-repeat;
}

.bugs-hero {
    min-height: 192px;
    display: flex;
    align-items: flex-end;
    padding: 34px 0 28px;
}

.bugs-hero-copy {
    max-width: 720px;
}

.bugs-main {
    padding-bottom: 72px;
}

.bugs-intro-card {
    margin-bottom: 30px;
}

.bugs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 22px;
    margin-bottom: 34px;
}

.bugs-form-card,
.bugs-side-card {
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(16, 21, 31, 0.96), rgba(12, 17, 26, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.bugs-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.bugs-card-head h2 {
    margin: 0;
    font-size: 1.7rem;
}

.bugs-card-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 198, 68, 0.12);
    border: 1px solid rgba(255, 198, 68, 0.2);
    color: #ffd463;
    font-weight: 800;
    font-size: 0.82rem;
}

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

.bugs-field {
    display: grid;
    gap: 9px;
}

.bugs-field > span {
    color: #edf4ff;
    font-weight: 800;
    font-size: 0.94rem;
}

.bug-input,
.bug-textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(104, 143, 204, 0.2);
    background:
        linear-gradient(180deg, rgba(28, 37, 52, 0.98), rgba(20, 27, 39, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.18);
    color: #eef5ff;
    border-radius: 18px;
    padding: 16px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bug-input:hover,
.bug-textarea:hover,
.bug-input:focus,
.bug-textarea:focus {
    border-color: rgba(106, 182, 255, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(79, 169, 255, 0.18),
        0 16px 34px rgba(8, 24, 46, 0.28);
}

.bug-textarea {
    min-height: 170px;
    resize: vertical;
    font: inherit;
    color: #eef5ff;
    border-radius: 18px;
}

.bug-textarea::placeholder {
    color: rgba(222, 232, 248, 0.46);
}

.bugs-form-message {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #eaf3ff;
}

.bugs-form-message.is-success {
    background: rgba(53, 196, 132, 0.12);
    border-color: rgba(53, 196, 132, 0.28);
    color: #85ffc4;
}

.bugs-form-message.is-error {
    background: rgba(255, 100, 100, 0.12);
    border-color: rgba(255, 100, 100, 0.24);
    color: #ffb2b2;
}

.bugs-submit-button[disabled] {
    opacity: 0.75;
    pointer-events: none;
}

/* Rules and bug report pages use the same neutral MineGO surface palette. */
.rules-body,
.bugs-body {
    background: #131313;
}

.rules-hero-bg,
.bugs-hero-bg {
    background:
        linear-gradient(180deg, rgba(19, 19, 19, 0.34), rgba(19, 19, 19, 0.9)),
        url("/img/background/background-content.png") center top / cover no-repeat;
}

.rules-main,
.bugs-main {
    position: relative;
    background: #131313;
}

.rules-main::before,
.bugs-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.64) 0 1px, transparent 1.7px),
        radial-gradient(circle, rgba(203, 212, 255, 0.4) 0 1.2px, transparent 1.9px),
        radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 0.8px, transparent 1.5px);
    background-size: 137px 149px, 211px 193px, 89px 107px;
    opacity: 0.48;
    z-index: 0;
}

.rules-main > .page-shell,
.bugs-main > .page-shell {
    position: relative;
    z-index: 1;
}

.rules-intro-card,
.bugs-intro-card {
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid #303034;
    border-radius: 15px;
    background: #19191b;
}

.rule-item {
    border-color: #343438;
    border-radius: 15px;
    background: #1f1f22;
}

.bugs-form-card,
.bugs-side-card {
    border: 1px solid #343438;
    border-radius: 15px;
    background: #1b1b1e;
    box-shadow: none;
}

.bugs-form {
    padding: 18px;
    border: 1px solid #35353a;
    border-radius: 15px;
    background: #232326;
}

.bug-input,
.bug-textarea {
    border-color: #414146;
    border-radius: 15px;
    background: #2b2b2f;
    box-shadow: none;
}

.bug-input:hover,
.bug-textarea:hover,
.bug-input:focus,
.bug-textarea:focus {
    border-color: #89888F;
    background: #303034;
    box-shadow: none;
}

.bugs-checklist {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.bugs-feed-section {
    padding-bottom: 8px;
}

.bugs-feed-list {
    display: flex;
    gap: 14px;
    overflow: auto;
    padding: 18px 0 6px;
}

.bug-feed-card {
    min-width: 160px;
    flex: 0 0 160px;
}

.bug-feed-card.is-placeholder {
    min-width: 160px;
}

.bug-feed-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.bug-feed-status-new {
    background: rgba(255, 198, 68, 0.14);
    border: 1px solid rgba(255, 198, 68, 0.2);
    color: #ffd463;
}

.bug-feed-status-approved {
    background: rgba(58, 202, 132, 0.14);
    border: 1px solid rgba(58, 202, 132, 0.24);
    color: #8cffc4;
}

.bug-feed-status-rejected {
    background: rgba(255, 99, 99, 0.14);
    border: 1px solid rgba(255, 99, 99, 0.24);
    color: #ffb1b1;
}

.bug-feed-surface img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 10px;
}

.bug-hover-card {
    left: 6px;
    right: 6px;
    top: 8px;
    width: auto;
    padding: 8px 9px;
}

.bug-hover-header {
    display: grid;
    gap: 7px;
}

.bug-hover-header .bug-feed-status {
    justify-self: start;
    max-width: 100%;
}

.bug-hover-header strong {
    display: block;
    color: #eef3ff;
    font-size: 0.76rem;
    line-height: 1.22;
    word-break: break-word;
}

.bug-hover-header span:last-child {
    display: block;
    margin-top: 2px;
    color: #d9dbe4;
    font-size: 0.7rem;
    line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
    .bug-feed-card:hover .purchase-hover-card {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .bug-feed-card:hover .purchase-feed-surface {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.13);
    }
}

.admin-bug-description {
    min-width: 280px;
    max-width: 440px;
    white-space: normal;
    line-height: 1.55;
}

.admin-bug-status-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-bug-status-form select {
    min-width: 150px;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.admin-status-new {
    color: #ffd463;
    background: rgba(255, 198, 68, 0.14);
    border: 1px solid rgba(255, 198, 68, 0.2);
}

.admin-status-approved {
    color: #8cffc4;
    background: rgba(58, 202, 132, 0.14);
    border: 1px solid rgba(58, 202, 132, 0.24);
}

.admin-status-rejected {
    color: #ffb1b1;
    background: rgba(255, 99, 99, 0.14);
    border: 1px solid rgba(255, 99, 99, 0.24);
}

.bug-feed-meta time {
    color: rgba(229, 238, 249, 0.64);
    font-size: 0.78rem;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .bugs-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .purchase-feed-card,
    .bug-feed-card {
        min-width: 136px;
    }

    .purchase-feed-copy span,
    .bug-feed-copy span {
        max-width: 128px;
    }

    .purchase-feed-surface {
        width: 136px;
        height: 102px;
    }

    .purchase-feed-surface img {
        width: 44px;
        height: 44px;
    }

    .purchase-hover-card {
        width: 124px;
        left: 4px;
        top: 6px;
    }

    .bugs-hero-bg {
        background:
            linear-gradient(180deg, rgba(34, 55, 89, 0.94), rgba(13, 18, 28, 0.34)),
            linear-gradient(90deg, rgba(7, 10, 16, 0.84) 0%, rgba(7, 10, 16, 0.5) 52%, rgba(7, 10, 16, 0.18) 100%),
            url("/img/background/background-content.png") center top / cover no-repeat,
            url("/img/background/bug_background.jpg") center center / cover no-repeat;
    }

    .bugs-form-card,
    .bugs-side-card {
        padding: 18px;
        border-radius: 22px;
    }

    .bugs-card-head h2 {
        font-size: 1.36rem;
    }

    .bug-textarea {
        min-height: 144px;
    }
}

/* Responsive hardening: phones, tablets, laptops and ultra-wide screens. */
@media (min-width: 1600px) {
    .page-shell {
        width: min(calc(100% - 64px), 1320px);
    }

    .minego-intro-banner {
        min-height: 700px;
    }

    .minego-hero-title {
        max-width: 1180px;
    }

    .list-shop-content-a {
        gap: 24px;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .page-shell {
        width: min(calc(100% - 36px), 1100px);
    }

    .store-header {
        gap: 14px;
        padding-inline: 18px;
    }

    .header-socials {
        display: none;
    }

    .store-left-header {
        gap: 14px;
        min-width: 0;
    }

    .store-wordmark img {
        max-width: 150px;
        max-height: 48px;
    }

    .store-nav-desktop {
        gap: 2px;
        min-width: 0;
    }

    .store-nav-desktop a {
        padding: 10px 9px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .store-nav-desktop a img {
        width: 21px;
        height: 21px;
    }

    .store-right-header {
        flex: 0 0 auto;
        padding-left: 12px;
    }

    .server-ip-button {
        min-width: 156px;
        padding-inline: 14px;
    }

    .server-ip-text {
        font-size: 0.78rem;
    }

    .store-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .shop-top-banner {
        display: block;
        min-height: 540px;
        padding: 72px 0 110px;
    }

    .hero-scene,
    .hero-top-donater,
    .hero-scroll-cue {
        display: none !important;
    }

    .shop-top-copy {
        width: min(100%, 820px);
        max-width: 820px;
    }

    .shop-top-copy .minego-hero-title {
        font-size: clamp(3.1rem, 7.2vw, 5rem);
    }

    .minego-hero-title span {
        white-space: normal;
    }

    .list-shop-content-a {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-footer-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 26px;
    }

    .store-footer-payments {
        grid-column: span 2;
        justify-content: flex-start;
    }

    .modal-panel-buy {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    }

    .left-modal-panel-buy,
    .right-modal-panel-buy {
        min-width: 0;
    }

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

@media (min-width: 761px) and (max-width: 900px) {
    .store-nav-desktop a {
        padding-inline: 7px;
    }

    .store-nav-desktop a img {
        display: none;
    }

    .server-ip-button {
        min-width: 138px;
    }

    .list-shop-content-a {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rules-hero-copy,
    .bugs-hero-copy {
        max-width: 70%;
    }
}

@media (max-width: 760px) {
    :root {
        --shadow: 0 14px 46px rgba(0, 0, 0, 0.34);
    }

    button,
    a,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
    }

    .store-nav.store-nav-mobile {
        background: rgba(4, 7, 12, 0.42);
        border-right-color: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .store-nav.store-nav-mobile .mobile-menu-head {
        justify-content: flex-end;
        margin-bottom: 18px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .store-nav.store-nav-mobile .mobile-menu-title {
        display: none;
    }

    .store-nav.store-nav-mobile > a {
        width: min(100%, 210px);
        min-height: 62px;
        margin-inline: auto;
        padding: 14px 18px;
        justify-content: center;
        border-color: transparent;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .store-nav.store-nav-mobile > a:hover,
    .store-nav.store-nav-mobile > a:focus-visible {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.055);
    }

    .mobile-menu-backdrop {
        background: rgba(3, 6, 11, 0.28);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .page-shell,
    .admin-shell {
        width: min(calc(100% - 24px), 1240px);
    }

    .shop-section > .page-shell {
        width: min(calc(100% - 12px), 1240px);
    }

    .store-header {
        position: relative;
        overflow: visible;
        margin-bottom: 58px;
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .store-body .store-right-header {
        position: absolute;
        left: 50%;
        top: calc(100% + 6px);
        bottom: auto;
        z-index: 4;
        width: auto;
        padding: 0;
        justify-content: center;
        transform: translateX(-50%);
    }

    .store-body .server-ip-button {
        width: 164px;
        min-width: 164px;
        max-width: 164px;
        min-height: 40px;
        margin: 0;
        padding: 8px 13px;
        border-color: rgba(255, 255, 255, 0.06);
        border-radius: 13px;
        background: linear-gradient(180deg, rgba(73, 82, 96, 0.98), rgba(55, 63, 76, 0.98));
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .server-ip-button::after {
        display: none;
    }

    .server-ip-icon-wrap {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .server-ip-icon {
        width: 18px;
        height: 18px;
    }

    .server-ip-text {
        font-size: 0.72rem;
    }

    .hero-top-donater,
    .hero-scroll-cue {
        display: none !important;
    }

    .store-wordmark img {
        max-width: min(170px, 48vw);
        height: auto;
    }

    body.store-body:not(.rules-body):not(.bugs-body) > .store-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    body.store-body:not(.rules-body):not(.bugs-body) .shop-top-banner {
        display: flex;
        align-items: center;
        min-height: calc(100vh - 146px);
        min-height: calc(100svh - 146px);
        padding: 34px 0 64px;
    }

    .shop-top-banner.minego-intro-banner {
        min-height: min(680px, calc(100svh - 12px));
        padding-top: clamp(42px, 9vh, 72px);
        padding-bottom: 124px;
    }

    .shop-top-copy.minego-intro-copy h1 {
        font-size: clamp(2.25rem, 11.2vw, 3.75rem);
        overflow-wrap: anywhere;
    }

    .minego-hero-title span {
        white-space: normal;
    }

    .minego-intro-kicker {
        row-gap: 6px;
    }

    .minego-intro-subtitle {
        max-width: 34ch !important;
    }

    .hero-status-row {
        width: min(100%, 250px);
        max-width: 250px;
        gap: 8px;
    }

    .hero-status-row .hero-button.primary,
    .hero-status-row .hero-online-pill {
        width: 100%;
        min-height: 38px;
    }

    .hero-status-row .hero-button.primary {
        padding: 9px 13px;
        font-size: 0.78rem;
    }

    .hero-status-row .hero-online-pill {
        padding: 7px 11px;
    }

    .hero-status-row .hero-online-pill strong {
        font-size: 1rem;
    }

    .hero-status-row .hero-online-pill span:last-child {
        font-size: 0.68rem;
    }

    .hero-scroll-cue {
        display: grid !important;
        bottom: max(22px, env(safe-area-inset-bottom));
        gap: 12px;
        font-size: 0.65rem;
    }

    .hero-scroll-diamond {
        width: 36px;
        height: 36px;
    }

    .purchases-strip {
        padding-top: 28px;
    }

    .purchases-strip .section-heading {
        width: 100%;
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }

    .purchases-strip .section-heading h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .purchases-strip .section-meta {
        flex: 0 0 auto;
        font-size: 0.78rem;
    }

    .last-purchases-list {
        gap: 10px;
        padding: 18px 0 8px 12px;
        scroll-padding-inline: 12px;
    }

    .last-purchases-list.is-empty {
        padding: 12px 0 4px;
    }

    .last-purchases-list .purchase-pill.is-placeholder {
        min-height: 92px;
        border-radius: 16px;
        font-size: 0.86rem;
    }

    .last-purchases-list::after {
        flex-basis: 12px;
    }

    .purchase-feed-card {
        flex: 0 0 136px;
        min-width: 136px;
    }

    .shop-section {
        padding-top: 18px;
    }

    .list-shop-content-a {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .object-shop {
        min-width: 0;
        width: min(100%, 322px);
        height: 413px;
        min-height: 413px;
        padding: 28px;
        border-radius: 15px;
        border: 1px solid #4C4C4C;
    }

    .info-donate {
        width: 18px;
        height: 18px;
    }

    .top-object-shop {
        min-width: 0;
        padding-top: 4px;
    }

    .donate-image-a {
        min-height: 104px;
        margin-bottom: 12px;
        border-radius: 0;
    }

    .shop-donate-image {
        width: 96px;
        height: 96px;
    }

    .discount-sticker {
        top: 7px;
        right: 7px;
        padding: 5px 6px;
        font-size: 0.66rem;
    }

    .shop-cost-donate {
        font-size: 15.4px;
    }

    .shop-cost-old {
        font-size: 0.72rem;
    }

    .title-donate {
        margin-top: 14px;
        font-size: 27.4px;
        font-weight: 700;
        overflow-wrap: anywhere;
    }

    .bottom-object-shop {
        gap: 12px;
        padding-top: 12px;
    }

    .small-description-shop {
        font-size: 12px;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }

    .object-shop .shop-button {
        width: 100%;
        height: 52px;
        min-height: 52px;
        padding: 0 12px;
        font-size: 22.5px;
        font-weight: 700;
    }

    .object-shop,
    .landing-main-card,
    .landing-info-card,
    .faq-item,
    .rule-item,
    .bugs-form-card,
    .bugs-side-card {
        max-width: 100%;
    }

    .faq-card {
        padding: 24px 0 34px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item summary,
    .faq-direct {
        min-height: 70px;
        padding: 18px 16px;
        gap: 14px;
        font-size: 0.94rem;
        line-height: 1.35;
    }

    .faq-answer {
        padding: 0 16px 18px;
        font-size: 0.88rem;
    }

    .faq-pagination {
        margin-top: 20px;
    }

    .faq-page-button {
        width: 42px;
        height: 42px;
    }

    .right-modal-panel-buy {
        display: flex;
        flex-direction: column;
    }

    .main-top-panel-buy {
        flex: 0 0 auto;
    }

    .main-bottom-panel-buy {
        position: sticky;
        bottom: 0;
        margin-top: auto;
        padding-top: 18px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    .top-info-block-a .title-text-a {
        font-weight: 600;
    }

    .modal-subtitle,
    .custom-input-a,
    .custom-input-a::placeholder {
        font-weight: 400;
    }

    .purchase-duration-panel > .title-text-a {
        font-size: 1.18rem;
        font-weight: 600;
    }

    .purchase-duration-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 3px;
        padding: 3px;
        border-radius: 15px;
    }

    .purchase-duration-option {
        min-width: 0;
        min-height: 40px;
        gap: 4px;
        padding: 6px 3px;
        font-size: 0.64rem;
        font-weight: 600;
        white-space: nowrap;
        border-radius: 8px;
    }

    .purchase-duration-option em {
        padding: 3px 4px;
        font-size: 0.58rem;
        font-weight: 700;
    }

    .mobile-description-button,
    #payment_button {
        min-height: 48px;
        font-weight: 700;
    }

    .rules-main,
    .bugs-main,
    .faq-main {
        padding-bottom: 44px;
    }

    .rules-intro-card,
    .agreement-card {
        padding: 18px;
        border-radius: 18px;
    }

    .rule-body p,
    .agreement-card p,
    .agreement-card li {
        overflow-wrap: anywhere;
    }

    .store-footer {
        padding-top: 34px;
    }

    .store-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 14px;
        align-items: start;
        justify-items: center;
        padding-bottom: 32px;
        text-align: center;
    }

    .store-footer-brand-column {
        grid-column: 1 / -1;
        flex-direction: column;
        justify-content: center;
        justify-self: stretch;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .store-footer-brand-column > img {
        width: auto;
        max-width: 158px;
        max-height: 56px;
    }

    .store-footer-brand-column .store-footer-socials {
        gap: 9px;
        margin: 0;
    }

    .store-footer-social img {
        width: 32px;
        height: 32px;
        opacity: 0.8;
    }

    .store-footer-column {
        width: 100%;
        justify-items: center;
        gap: 10px;
        text-align: center;
    }

    .store-footer-column strong {
        font-size: 0.74rem;
    }

    .store-footer-column a {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .store-footer-payments {
        grid-column: 1 / -1;
        justify-self: center;
        gap: 15px;
        padding-top: 0;
    }

    .store-footer-payments img {
        height: 20px;
    }

    .store-footer-bottom {
        padding: 16px 14px max(22px, env(safe-area-inset-bottom));
        border-top-color: rgba(255, 255, 255, 0.16);
        text-align: center;
    }

    .store-footer-bottom p {
        max-width: 340px;
        font-size: 0.66rem;
        line-height: 1.45;
    }

    .admin-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-header-side {
        justify-content: stretch;
    }

    .admin-header-chip {
        flex: 1 1 140px;
        min-width: 0;
    }

    .admin-command-row {
        grid-template-columns: minmax(0, 1fr) 48px 48px;
        gap: 8px;
    }

    .admin-command-row .hero-button,
    .admin-command-row .admin-form button,
    .admin-command-row button {
        width: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .flash-stack {
        top: max(12px, env(safe-area-inset-top));
        right: 12px;
        width: calc(100vw - 24px);
    }
}

@media (max-width: 390px) {
    .page-shell,
    .admin-shell {
        width: min(calc(100% - 16px), 1240px);
    }

    .store-header {
        padding-inline: 10px;
    }

    .store-wordmark img {
        max-width: 138px;
    }

    .burger-button {
        width: 44px;
        height: 44px;
    }

    .shop-top-copy.minego-intro-copy h1 {
        font-size: clamp(2rem, 10.8vw, 2.65rem);
    }

    .minego-kicker-mark {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .hero-status-row {
        width: min(100%, 220px);
        max-width: 220px;
    }

    .purchases-strip .section-heading {
        align-items: flex-start;
    }

    .purchases-strip .section-meta {
        max-width: 92px;
        text-align: right;
        line-height: 1.35;
    }

    .purchase-feed-card,
    .bug-feed-card {
        min-width: 124px;
        flex-basis: 124px;
    }

    .purchase-feed-surface {
        width: 124px;
        height: 96px;
    }

    .purchase-feed-copy strong,
    .bug-feed-copy strong {
        font-size: 0.9rem;
    }

    .purchase-feed-copy span,
    .bug-feed-copy span {
        max-width: 118px;
        font-size: 0.76rem;
    }

    .object-shop,
    .admin-card,
    .auth-card {
        padding: 14px;
    }

    .list-shop-content-a {
        gap: 8px;
    }

    .object-shop {
        padding: 24px;
    }

    .donate-image-a {
        min-height: 100px;
    }

    .shop-donate-image {
        width: 88px;
        height: 88px;
    }

    .purchase-duration-option {
        gap: 2px;
        padding-inline: 2px;
        font-size: 0.58rem;
    }

    .purchase-duration-option em {
        padding-inline: 3px;
        font-size: 0.52rem;
    }
}

@media (max-height: 560px) and (orientation: landscape) {
    .shop-top-banner.minego-intro-banner {
        min-height: 540px;
        padding-top: 34px;
        padding-bottom: 110px;
    }

    .hero-scroll-cue {
        display: none !important;
    }

    .modal-overlay {
        align-items: flex-start;
        overflow-y: auto;
    }

    .instruction-stage {
        padding-top: 10px;
    }

    .instruction-image {
        max-height: 150px;
    }
}

@media (max-width: 1180px) {
    .shop-top-copy {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .shop-top-copy .minego-intro-kicker {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .shop-top-copy .minego-hero-title,
    .shop-top-copy .minego-intro-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-status-row {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.not-found-body {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    background: #131313;
}

.not-found-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
    padding: 112px 20px 56px;
    background: #131313;
}

.not-found-logo {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.not-found-logo img {
    width: min(164px, 44vw);
    height: auto;
    display: block;
}

.not-found-card {
    width: min(600px, 100%);
    box-sizing: border-box;
    padding: clamp(28px, 6vw, 48px);
    border: 1px solid #343438;
    border-radius: 24px;
    background: #1b1b1e;
    text-align: center;
}

.not-found-illustration { display: flex; justify-content: center; margin: -16px auto 4px; }
.not-found-illustration > svg { display: block; width: min(360px, 100%); height: auto; overflow: visible; }
.not-found-clouds { fill: #29292c; }
.not-found-lines,
.not-found-parachute { fill: none; stroke: #f5f3f5; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.not-found-parachute path:first-child { fill: #232326; }
.not-found-crate { fill: #ff9e2a; stroke: #131313; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.not-found-sparks { fill: none; stroke: #89888f; stroke-width: 4; stroke-linecap: round; }

.not-found-copy { margin-top: 8px; }
.not-found-label { margin: 0 0 8px; color: #ff9e2a; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.not-found-copy h1 { margin: 0; color: #f5f3f5; font-size: clamp(1.75rem, 5vw, 2.5rem); line-height: 1.15; }
.not-found-copy > p:last-child {
    margin: 14px auto 0;
    max-width: 46ch;
    color: #89888f;
    font-size: 1rem;
    line-height: 1.55;
}

.not-found-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.not-found-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; color: #f5f3f5; font-size: .95rem; font-weight: 700; text-decoration: none; transition: transform .18s ease, background-color .18s ease, border-color .18s ease; }
.not-found-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.not-found-button-primary { background: #ff9e2a; color: #131313; }
.not-found-button-secondary { border-color: #343438; background: #232326; }
.not-found-button:hover { transform: translateY(-2px); }
.not-found-button-primary:hover { background: #f5f3f5; }
.not-found-button-secondary:hover { border-color: #89888f; background: #29292c; }
.not-found-footer { margin: 22px 0 0; color: #89888f; font-size: .82rem; letter-spacing: .08em; }

@media (max-width: 520px) {
    .not-found-page {
        padding: 92px 14px 30px;
    }

    .not-found-card {
        padding: 30px 18px 20px;
        border-radius: 18px;
    }

    .not-found-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .not-found-button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Final rules/bugs overrides: keep page artwork and isolate bug cards. */
.rules-hero-bg {
    background:
        linear-gradient(180deg, rgba(10, 10, 11, .28), rgba(10, 10, 11, .72)),
        linear-gradient(90deg, rgba(10, 10, 11, .76) 0%, rgba(10, 10, 11, .2) 58%, rgba(10, 10, 11, .08) 100%),
        url("/img/background/header-top-background.png") center / cover no-repeat;
}

.bugs-hero-bg {
    background:
        linear-gradient(180deg, rgba(10, 10, 11, .24), rgba(10, 10, 11, .74)),
        linear-gradient(90deg, rgba(10, 10, 11, .78) 0%, rgba(10, 10, 11, .2) 58%, rgba(10, 10, 11, .08) 100%),
        url("/img/background/bug_background.jpg") center / cover no-repeat;
}

.bugs-feed-list {
    gap: 12px;
    padding: 16px 0 8px;
}

.bugs-feed-list .bug-feed-card,
.bugs-feed-list .bug-feed-card.is-placeholder {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: 280px;
    min-width: 280px;
    min-height: 96px;
    flex: 0 0 280px;
    padding: 15px;
    overflow: visible;
    border: 1px solid #343438;
    border-radius: 15px;
    background: #1b1b1e;
}

.bugs-feed-list .bug-feed-surface {
    display: grid;
    width: 64px;
    height: 64px;
    min-width: 64px;
    padding: 0;
    place-items: center;
    border: 1px solid #3b3b40;
    border-radius: 12px;
    background: #29292d;
    box-shadow: none;
    transform: none;
}

.bugs-feed-list .bug-feed-surface:hover {
    border-color: #4c4c52;
    background: #303034;
    transform: none;
}

.bugs-feed-list .bug-feed-surface img {
    width: 42px;
    height: 42px;
    border-radius: 9px;
}

.bugs-feed-list .bug-feed-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 0;
}

.bugs-feed-list .bug-feed-copy strong,
.bugs-feed-list .bug-feed-copy span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bugs-feed-list .bug-feed-copy strong {
    color: #F5F3F5;
    font-size: 1rem;
    line-height: 1.25;
}

.bugs-feed-list .bug-feed-copy span {
    color: #89888F;
    font-size: .82rem;
    line-height: 1.35;
}

.bugs-feed-list .bug-hover-card {
    top: calc(100% + 8px);
    right: auto;
    left: 0;
    width: 100%;
    border-radius: 15px;
}

@media (max-width: 520px) {
    .bugs-feed-list .bug-feed-card,
    .bugs-feed-list .bug-feed-card.is-placeholder {
        grid-template-columns: 54px minmax(0, 1fr);
        width: min(260px, calc(100vw - 44px));
        min-width: min(260px, calc(100vw - 44px));
        min-height: 86px;
        flex-basis: min(260px, calc(100vw - 44px));
        padding: 12px;
    }

    .bugs-feed-list .bug-feed-surface {
        width: 54px;
        min-width: 54px;
        height: 54px;
    }

    .bugs-feed-list .bug-feed-surface img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 760px) {
    #infoModal {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding:
            max(12px, env(safe-area-inset-top, 0px))
            12px
            max(20px, env(safe-area-inset-bottom, 0px));
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #infoModal .compact-info-modal {
        width: min(100%, 420px);
        min-height: 0;
        max-height: none;
        margin: auto 0;
        overflow: hidden;
        border-radius: 15px;
    }

    #infoModal .info-copy-head {
        padding-top: 18px;
        padding-right: 56px;
    }

    #infoModal .content-modal {
        padding-bottom: max(22px, env(safe-area-inset-bottom, 0px));
    }

    #infoModal .info-modal-buy {
        position: relative;
        width: 100%;
        margin-top: 28px;
        margin-bottom: 0;
    }

    .shop-top-copy .minego-intro-kicker {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 5px;
        width: 100%;
        max-width: none;
        font-size: clamp(.58rem, 2.8vw, .72rem);
        white-space: nowrap;
    }

    .shop-top-copy .minego-intro-kicker strong {
        flex: 0 1 auto;
        font-size: .86em;
        white-space: nowrap;
    }

    .shop-top-copy .minego-kicker-mark {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .rules-hero-bg,
    .bugs-hero-bg {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (max-width: 360px) {
    .shop-top-copy .minego-intro-kicker {
        gap: 4px;
        font-size: .56rem;
    }

    .shop-top-copy .minego-kicker-mark {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }
}

.faq-server-address {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.faq-server-address > span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 13px 15px;
    border: 1px solid #343438;
    border-radius: 12px;
    background: #232326;
}

.faq-server-address small {
    color: #89888f;
    font-size: .7rem;
}

.faq-server-address strong {
    color: #f5f3f5;
    font-size: .95rem;
}

.faq-connect-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 14px;
    padding: 0 18px;
    border-radius: 11px;
    background: #ff9e2a;
    color: #131313;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 520px) {
    .faq-server-address {
        grid-template-columns: 1fr;
    }

    .faq-connect-button {
        width: 100%;
    }
}

/* Android hero composition. */
@media (max-width: 760px) {
    .shop-top-copy.minego-intro-copy,
    .shop-top-copy {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        text-align: center;
    }

    .shop-top-copy .minego-intro-kicker {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
        margin: 0 auto 16px;
        color: #f5f3f5;
        font-size: clamp(.72rem, 3.35vw, .88rem);
        line-height: 1;
        white-space: nowrap;
    }

    .shop-top-copy .minego-intro-kicker strong {
        color: #ffbd22;
        font-size: .88em;
        white-space: nowrap;
    }

    .shop-top-copy .minego-kicker-mark {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
    }

    .shop-top-copy.minego-intro-copy .minego-hero-title,
    .shop-top-copy .minego-hero-title {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 16px;
        color: #f5f3f5;
        font-size: clamp(1.62rem, 7.5vw, 2rem);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -.025em;
        text-align: center;
        overflow-wrap: normal;
    }

    .shop-top-copy .minego-hero-title span {
        display: block;
        white-space: nowrap;
    }

    .shop-top-copy .minego-intro-subtitle {
        width: min(100%, 340px);
        max-width: 340px !important;
        margin: 0 auto;
        color: #aeb0b5;
        font-size: clamp(.68rem, 3vw, .78rem);
        font-weight: 600;
        line-height: 1.55;
        text-align: center;
    }

    .shop-top-copy .mobile-subtitle-line {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .shop-top-copy.minego-intro-copy .minego-hero-title,
    .shop-top-copy .minego-hero-title {
        font-size: clamp(1.48rem, 7.25vw, 1.7rem);
    }

    .shop-top-copy .minego-intro-kicker {
        gap: 4px;
        font-size: .68rem;
    }

    .shop-top-copy .minego-kicker-mark {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
    }
}

#infoModal .compact-info-modal {
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #4a4a4e #1b1b1d;
}

#infoModal .compact-info-modal::-webkit-scrollbar {
    width: 8px;
}

#infoModal .compact-info-modal::-webkit-scrollbar-track {
    background: #1b1b1d;
}

#infoModal .compact-info-modal::-webkit-scrollbar-thumb {
    border: 2px solid #1b1b1d;
    border-radius: 999px;
    background: #4a4a4e;
}

@media (max-width: 760px) {
    #infoModal .info-copy-head {
        display: flex;
        width: auto;
        margin: 18px 16px 0;
        padding: 0 42px 18px 0;
        align-items: center;
        justify-content: center;
        gap: 16px;
        text-align: left;
    }

    #infoModal .info-copy-head > div {
        width: min(230px, calc(100% - 88px));
        min-width: 0;
    }

    #infoModal .info-product-image {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
        object-fit: contain;
        object-position: center;
    }

    #infoModal .info-static-title {
        width: 100%;
        font-size: 1.18rem;
        line-height: 1.2;
    }

    #infoModal .info-product-subtitle {
        width: 100%;
        max-width: none;
        margin-top: 5px;
        font-size: .84rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    #infoModal .description-modal {
        width: 100%;
        max-width: none;
    }

    #infoModal .description-modal h2,
    #infoModal .description-modal h3,
    #infoModal .description-modal h4,
    #infoModal .description-modal ul,
    #infoModal .description-modal li {
        width: 100%;
        max-width: none;
    }

    #infoModal .description-modal li:hover {
        transform: none;
    }
}

/* Final 404 layout: intentionally mirrors a clean standalone error page. */
.not-found-body {
    min-height: 100vh;
    margin: 0;
    background: #fff;
    color: #111;
    font-family: "Inter", Arial, sans-serif;
}

.not-found-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 32px 20px;
    background: #fff;
}

.not-found-card {
    width: min(540px, 100%);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.not-found-picture {
    display: block;
    width: min(320px, 78vw);
    height: auto;
    margin: 0 auto 32px;
}

.not-found-card h1 {
    margin: 0;
    color: #111;
    font-size: clamp(1.65rem, 5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.not-found-card > p {
    margin: 14px auto 0;
    color: #333;
    font-size: clamp(.95rem, 3vw, 1.05rem);
    line-height: 1.55;
}

@media (max-width: 760px) {
    #infoModal {
        display: grid;
        place-items: center;
        padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
    }

    #infoModal .compact-info-modal {
        width: min(100%, 420px);
        max-height: calc(100dvh - 24px);
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* Final bug-feed override: identical geometry to recent purchases. */
.bugs-feed-list.last-purchases-list { display:flex; gap:12px; width:100vw; margin-left:calc(50% - 50vw); padding:24px 0 10px 16px; overflow-x:auto; overflow-y:hidden; scroll-padding-inline:16px; scrollbar-width:none; -ms-overflow-style:none; }
.bugs-feed-list.last-purchases-list::-webkit-scrollbar { display:none; width:0; height:0; }
.bugs-feed-list.last-purchases-list::after { content:""; flex:0 0 16px; }
.bugs-feed-list.last-purchases-list.is-empty { width:100%; margin-left:0; padding:14px 0 8px; overflow:hidden; }
.bugs-feed-list.last-purchases-list.is-empty::after { display:none; }
.bugs-feed-list .bug-feed-card,
.bugs-feed-list .bug-feed-card.is-placeholder { position:relative; display:grid; width:auto; min-width:184px; min-height:0; flex:0 0 184px; grid-template-columns:none; grid-template-rows:auto auto; justify-items:start; align-items:initial; gap:16px; padding:0; overflow:visible; border:0; border-radius:0; background:transparent; }
.bugs-feed-list .bug-feed-surface { display:grid; width:184px; min-width:184px; height:132px; padding:0; place-items:center; border:1px solid rgba(255,255,255,.07); border-radius:20px; background:linear-gradient(180deg,rgba(39,42,49,.92),rgba(48,51,58,.92)); transition:transform .18s ease,background .18s ease,border-color .18s ease; }
.bugs-feed-list .bug-feed-surface img { width:58px; height:58px; object-fit:cover; border-radius:10px; }
.bugs-feed-list .bug-feed-copy { display:grid; gap:4px; min-width:0; justify-items:start; padding:0 2px; }
.bugs-feed-list .bug-hover-card { top:8px; right:auto; left:8px; width:168px; border-radius:16px; }

@media (max-width:760px) {
    .bugs-feed-list .bug-feed-card,
    .bugs-feed-list .bug-feed-card.is-placeholder { min-width:136px; flex-basis:136px; }
    .bugs-feed-list .bug-feed-surface { width:136px; min-width:136px; height:102px; border-radius:16px; }
    .bugs-feed-list .bug-feed-surface img { width:44px; height:44px; }
    .bugs-feed-list .bug-hover-card { right:4px; left:4px; width:auto; }
}

/* Единый мягкий снег поверх всей главной страницы. */
.store-snow-canvas {
    position: fixed;
    inset: 0;
    z-index: 40;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: .84;
}

.store-hero::before,
.store-hero::after {
    display: none !important;
}

.store-main::before {
    display: none !important;
}

.store-hero,
.store-main,
.store-footer {
    z-index: auto;
}

.store-hero .page-shell,
.store-main > section,
.store-footer-inner,
.store-footer-bottom {
    position: relative;
    z-index: 2;
}

/* Карточка покупки остаётся без отдельной квадратной обводки. */
.purchase-feed-surface {
    border: 0 !important;
    outline: 0;
    border-radius: 22px;
    background: #202020;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: transform .28s cubic-bezier(.22,.7,.2,1), background .28s ease, box-shadow .28s ease;
}

.purchase-feed-surface:hover,
.purchase-feed-surface:focus-visible {
    border: 0 !important;
    background: #252525;
    box-shadow: 0 14px 28px rgba(0,0,0,.24);
}

.purchase-hover-card {
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px) scale(.97);
    transform-origin: top left;
    transition: opacity .28s ease, transform .28s cubic-bezier(.22,.7,.2,1), visibility 0s linear .28s;
}

.purchase-feed-card.is-preview-open .purchase-hover-card,
.purchase-feed-card:hover .purchase-hover-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.purchase-feed-card.is-preview-open .purchase-feed-surface,
.purchase-feed-card:hover .purchase-feed-surface {
    transform: translateY(2px) scale(.985);
}

@media (max-width: 760px) {
    .purchase-feed-card {
        flex-basis: 176px;
        min-width: 176px;
    }

    .purchase-feed-surface {
        width: 176px;
        height: 126px;
        border-radius: 22px;
    }

    .purchase-feed-surface img {
        width: 54px;
        height: 54px;
        border-radius: 8px;
    }

    .purchase-feed-copy span {
        max-width: 176px;
        font-size: .78rem;
    }

    .purchase-hover-card {
        left: 6px;
        top: 6px;
        width: calc(100% - 12px);
    }
}
/* Server modes and multi-RCON administration */
.object-shop[hidden] { display:none !important; }

/* Hero mode picker */
.hero-mode-picker {
    position: relative;
    display: inline-flex;
    width: 220px;
    min-width: 0;
}

.catalog-filters[hidden] { display: none !important; }

.hero-mode-toggle {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 12px;
    justify-content: space-between;
}

.hero-mode-toggle:disabled {
    opacity: .58;
    cursor: default;
}

.hero-mode-arrow {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(225deg) translate(-1px, -1px);
    transition: transform .24s ease;
}

.hero-mode-toggle[aria-expanded="true"] .hero-mode-arrow {
    transform: rotate(45deg) translate(-1px, -1px);
}

.hero-mode-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    padding: 5px;
    border: 1px solid #3f4651;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), #202124;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
}

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

.hero-mode-menu:not([hidden]) {
    animation: heroModeMenuIn .2s ease both;
}

@keyframes heroModeMenuIn {
    from { opacity: 0; transform: translateY(-5px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-mode-option {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #50545b;
    border-radius: 8px;
    color: #f7f9ff;
    background: linear-gradient(180deg, rgba(255,255,255,.13) 0%, rgba(255,255,255,.04) 42%, rgba(0,0,0,.18) 100%), #292a2d;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 2px 7px rgba(0,0,0,.22);
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hero-mode-option > span {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.hero-mode-option strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .88rem;
}

.hero-mode-option small {
    color: #9eacc2;
    font-size: .72rem;
}

.hero-mode-option.active {
    color: #11151d;
    background: radial-gradient(ellipse at center, #f5de68 0%, #e8a51e 100%);
    border-color: #e8a51e;
    box-shadow: 0 0 0 3px rgba(232, 165, 30, .2), 0 12px 26px rgba(232, 165, 30, .2);
    outline: none;
}

.hero-mode-option.active small {
    color: rgba(17, 21, 29, .68);
}

.hero-mode-option:hover:not(.active),
.hero-mode-option:focus-visible:not(.active) {
    border-color: rgba(232, 165, 30, .72);
    background: linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.05) 42%, rgba(0,0,0,.2) 100%), #303136;
    outline: none;
}

.hero-mode-option:active {
    transform: scale(.98);
}

.hero-mode-empty {
    padding: 13px 11px;
    color: #9eacc2;
    font-size: .8rem;
    text-align: center;
}

@media (max-width: 760px) {
    .hero-mode-picker {
        width: 100%;
        min-width: 0;
    }

    .hero-mode-menu {
        width: 100%;
    }
}

/* Референсный стиль блока топ-донатера и ленты покупок. */
.hero-top-donater {
    right: -61px;
    width: 365px;
    min-height: 88px;
    padding: 19px 23px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 15px;
    background: rgba(0, 0, 0, .12);
    box-shadow: 0 40px 50px 1px rgba(0, 0, 0, .10) inset;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.hero-top-donater .top-donater-user {
    gap: 10px;
}

.hero-top-donater .top-donater-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: transparent;
}

.hero-top-donater .top-donater-user h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-top-donater .top-donater-user p {
    margin-top: 2px;
    color: #b4b6b9;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
}

.hero-top-donater .top-donater-sum {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.purchases-strip .last-purchases-list {
    gap: 20px;
    padding: 20px 0 14px;
}

.purchases-strip .purchase-feed-card {
    min-width: 176px;
    flex-basis: 176px;
    gap: 13px;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.purchases-strip .purchase-feed-card:hover,
.purchases-strip .purchase-feed-card:focus-within,
.purchases-strip .purchase-feed-card.is-preview-open {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.purchases-strip .purchase-feed-surface {
    width: 176px;
    height: 126px;
    border: 1px solid rgba(255, 255, 255, .055) !important;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    box-shadow: none;
}

.purchases-strip .purchase-feed-surface:hover,
.purchases-strip .purchase-feed-surface:focus-visible {
    border-color: rgba(255, 255, 255, .09) !important;
    background: rgba(255, 255, 255, .07);
    box-shadow: none;
    transform: none;
}

.purchases-strip .purchase-feed-surface img {
    width: 50px;
    height: 50px;
    border-radius: 7px;
}

.purchases-strip .purchase-feed-copy {
    gap: 3px;
    padding: 0;
}

.purchases-strip .purchase-feed-copy strong {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.purchases-strip .purchase-feed-copy span {
    max-width: 176px;
    color: #b4b6b9;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.purchases-strip .purchase-hover-card {
    top: 0;
    left: 0;
    width: 176px;
    min-width: 176px;
    padding: 14px 9px;
    border: 0;
    border-radius: 15px;
    background: rgba(1, 1, 1, .42);
    box-shadow: none;
    backdrop-filter: blur(5.6px);
    -webkit-backdrop-filter: blur(5.6px);
    transform: translateY(15px);
}

.purchases-strip .purchase-hover-header {
    gap: 9px;
}

.purchases-strip .purchase-hover-header img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 0;
}

.purchases-strip .purchase-hover-header strong {
    font-size: 12px;
    line-height: 16px;
}

.purchases-strip .purchase-hover-header span {
    margin-top: 0;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
}

.purchases-strip .purchase-feed-card:hover .purchase-feed-surface,
.purchases-strip .purchase-feed-card.is-preview-open .purchase-feed-surface {
    transform: none;
}

@media (max-width: 1175px) {
    .hero-top-donater {
        right: 4%;
        width: min(365px, calc(100% - 32px));
    }
}

@media (max-width: 760px) {
    .purchases-strip .last-purchases-list {
        gap: 16px;
        padding-top: 18px;
    }

    .purchases-strip .purchase-feed-card {
        min-width: 176px;
        flex-basis: 176px;
    }

    .purchases-strip .purchase-feed-surface {
        width: 176px;
        height: 126px;
        border-radius: 24px;
    }

    .purchases-strip .purchase-feed-copy strong {
        font-size: 16px;
    }

    .purchases-strip .purchase-feed-copy span {
        font-size: 14px;
    }
}
