:root {
    --zmem-bg: #090514;
    --zmem-bg-2: #120a26;
    --zmem-panel: rgba(30, 19, 58, .78);
    --zmem-panel-2: rgba(43, 27, 82, .78);
    --zmem-card: #170f2e;
    --zmem-card-2: #20143d;
    --zmem-line: rgba(216, 198, 255, .14);
    --zmem-text: #f7f2ff;
    --zmem-soft: rgba(247, 242, 255, .72);
    --zmem-muted: rgba(224, 212, 255, .54);
    --zmem-violet: #8f5cff;
    --zmem-purple: #6336e8;
    --zmem-pink: #ff62c7;
    --zmem-cyan: #48e4ff;
    --zmem-green: #38e6a5;
    --zmem-yellow: #ffd166;
    --zmem-radius: 20px;
    --zmem-shadow: 0 26px 70px rgba(4, 2, 18, .42);
}

html {
    scroll-behavior: smooth;
}

.zmem-site-shell,
.zmem-site-shell * {
    box-sizing: border-box;
}

body.puock-pro {
    background: var(--zmem-bg);
    color: var(--zmem-text);
    overflow-x: hidden;
}

body.puock-pro a {
    text-decoration: none;
}

.zmem-site-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 14% -4%, rgba(143, 92, 255, .42), transparent 34rem),
        radial-gradient(circle at 88% 8%, rgba(255, 98, 199, .22), transparent 30rem),
        radial-gradient(circle at 50% 42rem, rgba(72, 228, 255, .12), transparent 44rem),
        linear-gradient(180deg, #080411 0%, #110824 38%, #090514 100%);
}

#header-box {
    height: 0;
}

#header.zmem-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 8px clamp(14px, 2vw, 34px);
    background: rgba(12, 7, 28, .78) !important;
    border-bottom: 1px solid rgba(216, 198, 255, .12);
    box-shadow: 0 16px 38px rgba(3, 1, 14, .28);
    backdrop-filter: blur(18px);
}

.zmem-nav-wrap {
    width: min(100%, 1880px);
    height: 52px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(360px, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 2vw, 36px);
}

.zmem-brand {
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.zmem-brand:hover {
    color: #fff;
}

.zmem-brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--zmem-pink), var(--zmem-violet) 55%, var(--zmem-cyan));
    box-shadow: 0 0 26px rgba(143, 92, 255, .45);
}

.zmem-brand strong,
.zmem-brand em {
    display: block;
    line-height: 1.05;
    font-style: normal;
}

.zmem-brand strong {
    font-size: 17px;
    letter-spacing: .06em;
}

.zmem-brand em {
    margin-top: 3px;
    color: rgba(247, 242, 255, .58);
    font-size: 11px;
}

.zmem-nav-links {
    justify-content: center;
    gap: clamp(14px, 1.4vw, 28px);
}

.zmem-nav-links a {
    color: rgba(247, 242, 255, .72);
    font-size: 14px;
    white-space: nowrap;
    transition: color .2s ease, text-shadow .2s ease;
}

.zmem-nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 18px rgba(143, 92, 255, .9);
}

.zmem-nav-actions,
.zmem-mobile-actions {
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.zmem-header-search {
    width: clamp(220px, 18vw, 360px);
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(216, 198, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(247, 242, 255, .58);
}

.zmem-header-search:focus-within,
.zmem-hero-search:focus-within {
    border-color: rgba(72, 228, 255, .72);
    box-shadow: 0 0 0 4px rgba(72, 228, 255, .12);
}

.zmem-header-search input,
.zmem-hero-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
}

.zmem-nav-btn,
.zmem-icon-btn {
    border: 1px solid rgba(216, 198, 255, .15);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}

.zmem-nav-btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    white-space: nowrap;
}

.zmem-nav-btn-main {
    border: 0;
    background: linear-gradient(135deg, var(--zmem-violet), var(--zmem-pink));
    box-shadow: 0 14px 34px rgba(143, 92, 255, .34);
}

.zmem-user-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(216, 198, 255, .2);
}

.zmem-user-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zmem-icon-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.zmem-nav-btn:hover,
.zmem-icon-btn:hover {
    color: #fff;
    filter: brightness(1.1);
    transform: translateY(-1px);
    border-color: rgba(72, 228, 255, .48);
}

.zmem-mobile-panel .p-block {
    background: rgba(12, 7, 28, .98);
    color: #fff;
}

.zmem-mobile-nav {
    display: grid;
    gap: 10px;
}

.zmem-mobile-nav a {
    display: block;
    padding: 12px 8px;
    color: rgba(247, 242, 255, .84);
    border-bottom: 1px solid rgba(216, 198, 255, .1);
}

.zmem-home {
    width: 100%;
    overflow-x: hidden;
    color: var(--zmem-text);
}

.zmem-home section[id] {
    scroll-margin-top: 86px;
}

.zmem-workbench {
    position: relative;
    width: 100%;
    padding: clamp(28px, 4vw, 66px) clamp(16px, 3vw, 58px) clamp(36px, 5vw, 82px);
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: clamp(22px, 3vw, 54px);
    align-items: stretch;
}

.zmem-workbench::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.zmem-workbench-main,
.zmem-workbench-side {
    position: relative;
    z-index: 1;
}

.zmem-workbench-main {
    min-height: 540px;
    padding: clamp(24px, 3.4vw, 54px);
    border: 1px solid var(--zmem-line);
    border-radius: clamp(22px, 2vw, 34px);
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 98, 199, .18), transparent 22rem),
        linear-gradient(135deg, rgba(35, 20, 70, .92), rgba(15, 9, 35, .86));
    box-shadow: var(--zmem-shadow);
    overflow: hidden;
}

.zmem-workbench-main::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 92, 255, .36), transparent 68%);
}

.zmem-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--zmem-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.zmem-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.zmem-workbench h1 {
    max-width: 860px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 86px);
    line-height: 1.02;
    font-weight: 950;
}

.zmem-workbench-main > p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--zmem-soft);
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 1.75;
}

.zmem-hero-search {
    position: relative;
    z-index: 1;
    width: min(100%, 860px);
    min-height: 62px;
    margin-top: clamp(24px, 3vw, 38px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 20px;
    border: 1px solid rgba(216, 198, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: var(--zmem-cyan);
}

.zmem-hero-search input {
    font-size: 16px;
}

.zmem-hero-search button {
    height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--zmem-violet), var(--zmem-pink));
    box-shadow: 0 14px 34px rgba(143, 92, 255, .32);
}

.zmem-hot-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.zmem-hot-tags a,
.zmem-pill,
.zmem-tags a {
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    color: #d9ccff;
    background: rgba(143, 92, 255, .14);
    border: 1px solid rgba(143, 92, 255, .22);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.zmem-hot-tags a:hover {
    color: #fff;
    border-color: rgba(72, 228, 255, .54);
}

.zmem-quick-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(24px, 3vw, 40px);
}

.zmem-quick-grid a {
    min-height: 118px;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 8px;
    border: 1px solid rgba(216, 198, 255, .14);
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.zmem-quick-grid a:hover {
    color: #fff;
    transform: translateY(-4px);
    border-color: rgba(72, 228, 255, .5);
    background: rgba(143, 92, 255, .18);
}

.zmem-quick-grid i {
    color: var(--zmem-cyan);
    font-size: 20px;
}

.zmem-quick-grid strong {
    font-size: 17px;
}

.zmem-quick-grid span {
    color: var(--zmem-muted);
    font-size: 13px;
    line-height: 1.55;
}

.zmem-workbench-side {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
}

.zmem-playing-card,
.zmem-work-list,
.zmem-feature-card,
.zmem-fun-card,
.zmem-review-card,
.zmem-project-card,
.zmem-robot-card,
.zmem-feed-card {
    border: 1px solid var(--zmem-line);
    border-radius: var(--zmem-radius);
    background: linear-gradient(180deg, rgba(38, 24, 73, .86), rgba(22, 14, 45, .92));
    box-shadow: var(--zmem-shadow);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.zmem-playing-card:hover,
.zmem-work-list:hover,
.zmem-feature-card:hover,
.zmem-fun-card:hover,
.zmem-review-card:hover,
.zmem-project-card:hover,
.zmem-robot-card:hover,
.zmem-feed-card:hover {
    transform: translateY(-5px);
    border-color: rgba(143, 92, 255, .5);
    box-shadow: 0 30px 86px rgba(4, 2, 18, .6);
}

.zmem-feature-card {
    padding: 18px;
}

.zmem-feature-card .zmem-thumb {
    margin: 14px 0 16px;
}

.zmem-feature-card h2 {
    margin: 0;
    font-size: clamp(20px, 1.6vw, 28px);
    line-height: 1.35;
}

.zmem-feature-card h2 a,
.zmem-card-body h3 a {
    color: #fff;
}

.zmem-feature-card p {
    margin: 12px 0 0;
    color: var(--zmem-soft);
    line-height: 1.7;
}

.zmem-playing-card {
    padding: 20px;
}

.zmem-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.zmem-play-item {
    padding: 14px 0;
    border-top: 1px solid rgba(216, 198, 255, .11);
}

.zmem-play-item strong,
.zmem-play-item p,
.zmem-play-item em {
    display: block;
}

.zmem-play-item p {
    margin: 7px 0 10px;
    color: var(--zmem-muted);
}

.zmem-play-item em {
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.is-blue { color: #b9f1ff; background: rgba(72, 228, 255, .14); }
.is-green { color: #bbf9de; background: rgba(56, 230, 165, .14); }
.is-yellow { color: #ffe9a7; background: rgba(255, 209, 102, .16); }

.zmem-section {
    width: 100%;
    padding: clamp(46px, 5vw, 88px) clamp(16px, 3vw, 58px);
}

.zmem-section-head {
    width: min(100%, 1880px);
    margin: 0 auto clamp(22px, 3vw, 38px);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.zmem-section-head h2,
.zmem-challenge h2,
.zmem-submit h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3vw, 58px);
    line-height: 1.08;
    font-weight: 950;
}

.zmem-section-head p,
.zmem-challenge p,
.zmem-submit p {
    max-width: 700px;
    margin: 12px 0 0;
    color: var(--zmem-soft);
    font-size: 16px;
    line-height: 1.7;
}

.zmem-section-head > a {
    color: var(--zmem-cyan);
    font-weight: 900;
    white-space: nowrap;
}

.zmem-card-grid {
    width: min(100%, 1880px);
    margin: 0 auto;
    display: grid;
    gap: clamp(16px, 1.6vw, 26px);
}

.zmem-grid-six {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.zmem-grid-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.zmem-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.zmem-thumb,
.zmem-project-card > img,
.zmem-robot-card > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
}

.zmem-thumb img,
.zmem-project-card > img,
.zmem-robot-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .32s ease;
}

.zmem-fun-card:hover .zmem-thumb img,
.zmem-review-card:hover .zmem-thumb img,
.zmem-feature-card:hover .zmem-thumb img,
.zmem-feed-card:hover .zmem-thumb img,
.zmem-project-card:hover > img,
.zmem-robot-card:hover > img {
    transform: scale(1.04);
}

.zmem-card-body {
    padding: 18px;
}

.zmem-card-body h3 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(18px, 1.05vw, 22px);
    line-height: 1.42;
    font-weight: 900;
}

.zmem-card-body p {
    margin: 12px 0 0;
    color: var(--zmem-soft);
    line-height: 1.72;
}

.zmem-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: var(--zmem-muted);
    font-size: 13px;
}

.zmem-review-card dl {
    margin: 16px 0;
}

.zmem-review-card dl div,
.zmem-robot-facts span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(216, 198, 255, .1);
}

.zmem-review-card dt,
.zmem-robot-facts span {
    color: var(--zmem-muted);
}

.zmem-review-card dd {
    margin: 0;
    color: #fff;
    font-weight: 800;
}

.zmem-verdict {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(143, 92, 255, .13);
}

.zmem-read-link,
.zmem-robot-card em {
    display: inline-flex;
    margin-top: 12px;
    color: var(--zmem-cyan);
    font-weight: 900;
    font-style: normal;
}

.zmem-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--zmem-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
}

.zmem-tabs button {
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: var(--zmem-soft);
    background: transparent;
    font-weight: 900;
}

.zmem-tabs button.active {
    color: #fff;
    background: linear-gradient(135deg, var(--zmem-violet), var(--zmem-purple));
    box-shadow: 0 12px 30px rgba(143, 92, 255, .28);
}

.zmem-project-card {
    position: relative;
}

.zmem-project-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.zmem-project-card li {
    display: grid;
    gap: 3px;
    min-height: 58px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
}

.zmem-project-card li span {
    color: var(--zmem-muted);
    font-size: 12px;
}

.zmem-project-card li strong {
    color: #fff;
    font-size: 13px;
}

.zmem-score {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--zmem-pink), var(--zmem-yellow));
    box-shadow: 0 14px 28px rgba(255, 98, 199, .3);
}

.zmem-challenge {
    width: min(calc(100% - 32px), 1880px);
    margin: clamp(46px, 5vw, 88px) auto;
    padding: clamp(28px, 4vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: clamp(20px, 4vw, 70px);
    align-items: center;
    border: 1px solid rgba(216, 198, 255, .16);
    border-radius: clamp(24px, 2vw, 34px);
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 98, 199, .24), transparent 26rem),
        linear-gradient(135deg, #2b13a3, #7b35ed 48%, #150b45);
    box-shadow: 0 34px 100px rgba(50, 18, 140, .35);
}

.zmem-challenge h3 {
    margin: 14px 0 0;
    font-size: clamp(24px, 2.1vw, 38px);
    line-height: 1.25;
}

.zmem-levels {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
}

.zmem-levels span,
.zmem-work-list article {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
}

.zmem-hero-actions,
.zmem-submit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.zmem-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.zmem-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--zmem-cyan), var(--zmem-violet) 52%, var(--zmem-pink));
    box-shadow: 0 18px 38px rgba(143, 92, 255, .34);
}

.zmem-btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
}

.zmem-btn:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.zmem-work-list {
    padding: 20px;
    background: rgba(255, 255, 255, .12);
}

.zmem-work-list article + article {
    margin-top: 10px;
}

.zmem-work-list strong,
.zmem-work-list span,
.zmem-work-list em {
    display: block;
}

.zmem-work-list span {
    margin-top: 8px;
    color: var(--zmem-soft);
}

.zmem-work-list em {
    margin-top: 8px;
    color: #ffd0ee;
    font-style: normal;
    font-weight: 900;
}

.zmem-feed {
    background: rgba(255, 255, 255, .035);
}

.zmem-feed-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.zmem-feed-user span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--zmem-violet), var(--zmem-cyan));
}

.zmem-feed-user strong {
    color: #fff;
}

.zmem-feed-card > p {
    min-height: 70px;
    margin: 0 0 14px;
    padding: 0 18px;
    color: #fff;
    font-weight: 800;
    line-height: 1.55;
}

.zmem-feed-card .zmem-feed-user {
    padding: 18px 18px 0;
}

.zmem-feed-card .zmem-meta {
    padding: 0 18px 18px;
}

.zmem-submit {
    width: min(calc(100% - 32px), 1880px);
    margin: 0 auto clamp(48px, 5vw, 90px);
    padding: clamp(28px, 4vw, 62px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(216, 198, 255, .16);
    border-radius: clamp(24px, 2vw, 34px);
    background:
        radial-gradient(circle at 90% 8%, rgba(72, 228, 255, .2), transparent 22rem),
        linear-gradient(135deg, rgba(16, 10, 38, .96), rgba(44, 28, 86, .94));
    box-shadow: var(--zmem-shadow);
}

.zmem-submit-actions {
    margin-top: 0;
}

.zmem-footer {
    padding: clamp(34px, 4vw, 64px) clamp(16px, 3vw, 58px) 24px;
    color: #fff;
    background: #07030f;
    border-top: 1px solid rgba(216, 198, 255, .12);
}

.zmem-footer-inner {
    width: min(100%, 1880px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(22px, 3vw, 62px);
}

.zmem-footer-logo {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--zmem-pink), var(--zmem-violet), var(--zmem-cyan));
    font-weight: 900;
}

.zmem-footer-brand p {
    margin: 16px 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.zmem-footer-brand span,
.zmem-footer-col a,
.zmem-footer-bottom {
    color: var(--zmem-muted);
}

.zmem-footer-col {
    display: grid;
    align-content: start;
    gap: 10px;
}

.zmem-footer-col h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.zmem-footer-col a:hover {
    color: #fff;
}

.zmem-footer-bottom {
    width: min(100%, 1880px);
    margin: 36px auto 0;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(216, 198, 255, .08);
}

#rb-float-actions .p-block {
    background: rgba(30, 19, 58, .9);
    color: #fff;
    border: 1px solid var(--zmem-line);
}

@media (min-width: 1920px) {
    .zmem-workbench,
    .zmem-section {
        padding-left: clamp(58px, 4vw, 120px);
        padding-right: clamp(58px, 4vw, 120px);
    }

    .zmem-grid-six {
        grid-template-columns: repeat(6, minmax(210px, 1fr));
    }
}

@media (max-width: 1439px) {
    .zmem-nav-wrap {
        grid-template-columns: auto 1fr auto;
    }

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

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

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

@media (max-width: 1023px) {
    .zmem-nav-wrap {
        grid-template-columns: auto auto;
    }

    .zmem-workbench,
    .zmem-challenge {
        grid-template-columns: 1fr;
    }

    .zmem-workbench-main {
        min-height: auto;
    }

    .zmem-grid-three,
    .zmem-grid-six,
    .zmem-grid-five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zmem-submit,
    .zmem-section-head,
    .zmem-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 767px) {
    #header.zmem-header {
        padding: 8px 14px;
    }

    .zmem-brand {
        min-width: 0;
    }

    .zmem-brand-mark {
        width: 34px;
        height: 34px;
    }

    .zmem-brand strong {
        font-size: 16px;
    }

    .zmem-workbench {
        padding-top: 22px;
    }

    .zmem-workbench h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .zmem-hero-search {
        grid-template-columns: auto 1fr;
        border-radius: 22px;
        padding: 14px;
    }

    .zmem-hero-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .zmem-quick-grid,
    .zmem-grid-three,
    .zmem-grid-four,
    .zmem-grid-five,
    .zmem-grid-six {
        grid-template-columns: 1fr;
    }

    .zmem-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .zmem-section-head {
        display: block;
    }

    .zmem-section-head > a,
    .zmem-tabs {
        margin-top: 16px;
    }

    .zmem-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .zmem-tabs button {
        white-space: nowrap;
    }

    .zmem-project-card ul {
        grid-template-columns: 1fr;
    }

    .zmem-challenge,
    .zmem-submit {
        width: calc(100% - 28px);
        margin-top: 42px;
        margin-bottom: 42px;
        padding: 24px;
    }

    .zmem-submit-actions,
    .zmem-hero-actions {
        width: 100%;
    }

    .zmem-submit-actions .zmem-btn,
    .zmem-hero-actions .zmem-btn {
        width: 100%;
    }

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

@media (max-width: 479px) {
    .zmem-workbench,
    .zmem-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .zmem-workbench-main,
    .zmem-feature-card,
    .zmem-playing-card,
    .zmem-card-body {
        padding: 16px;
    }

    .zmem-section-head h2,
    .zmem-challenge h2,
    .zmem-submit h2 {
        font-size: 32px;
    }
}
