:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #2F52E0;
    --alert: #FF4D00;
    --muted: #666666;
    --line: #000000;
    --border: 3px solid #000;
    --shadow: 5px 5px 0 #000;
    --tabbar-h: 84px;
    --radius: 0;
}

button { appearance: none; -webkit-appearance: none; font: inherit; }
[hidden] { display: none !important; }

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    min-height: 100dvh;
}

body { padding-top: env(safe-area-inset-top); }

h2, h3, .brand, .btn, .chip, .live-pill, .stat-num, .tool-title {
    font-family: "Unbounded", sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
}

h2 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.4px;
}

h3 { font-size: 0.92rem; font-weight: 700; }

p, .lead { line-height: 1.45; }

.app {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100dvh;
    background: #fff;
    position: relative;
    border-left: var(--border);
    border-right: var(--border);
    overflow-x: hidden;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: var(--border);
}

.brand {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 900;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-pill {
    background: var(--alert);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 6px 8px;
    transform: rotate(2deg);
    will-change: transform;
    animation: live-pill-float 2.8s ease-in-out infinite;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

.live-pill.is-local { background: #000; }

@keyframes live-pill-float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

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

.icon-btn,
.icon-add {
    width: 40px;
    height: 40px;
    border: var(--border);
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.18s ease, background 0.18s ease;
}

.icon-add {
    background: var(--accent);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: "Unbounded", sans-serif;
}

.icon-btn:active,
.icon-add:active { transform: translate(2px, 2px); }

.views { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
.view { display: none; }
.view.is-active { display: block; animation: rise 0.28s ease; }

@keyframes rise {
    from { transform: translateY(8px); }
    to { transform: none; }
}

.pad { padding: 20px 16px 28px; min-width: 0; max-width: 100%; box-sizing: border-box; }

.lead {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 8px 0 18px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 28px 0 14px;
}

.text-link {
    background: none;
    border: none;
    color: var(--accent);
    font-family: "Unbounded", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.profile-card,
.community-card,
.info-card,
.tool-card,
.empty-card,
.alert-card,
.stat-box {
    border: var(--border);
    background: #fff;
    box-shadow: var(--shadow);
}

.profile-card {
    padding: 18px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.avatar,
.comm-avatar {
    width: 72px;
    height: 72px;
    border: var(--border);
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
}

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

.comm-avatar {
    width: 52px;
    height: 52px;
    font-size: 1rem;
    flex-shrink: 0;
}

.profile-name {
    font-family: "Unbounded", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.profile-meta {
    font-size: 0.88rem;
    color: #333;
    font-weight: 600;
}

.profile-id {
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.profile-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.stat-box { padding: 10px 12px; box-shadow: none; }
.stat-box span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}
.stat-box small {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn--full { width: 100%; }

.btn:hover,
.btn:active {
    background: var(--accent);
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow);
}

.stack { display: flex; flex-direction: column; gap: 12px; min-width: 0; max-width: 100%; }

.community-card,
.alert-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.community-card:active,
.alert-card:active {
    transform: translate(-3px, -3px);
    border-color: var(--accent);
}

.community-card.is-disconnected {
    background: #ececec;
    box-shadow: none;
    color: #6b6b6b;
    opacity: 0.92;
}

.community-card.is-disconnected .comm-avatar {
    background: #9a9a9a !important;
    border-color: #bdbdbd;
}

.community-card.is-disconnected .tag {
    background: #d8d8d8;
    color: #555;
}

.community-card.is-disconnected .status,
.community-card.is-disconnected h3 {
    color: #6b6b6b;
}

.community-card.is-disconnected:active {
    border-color: #9a9a9a;
    transform: none;
}

.section-head--nested {
    margin-top: 8px;
    margin-bottom: 0;
}

.note--tight {
    margin: 0 0 4px;
}

.community-body { min-width: 0; flex: 1; overflow: hidden; }

.tag {
    font-family: "Unbounded", sans-serif;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tag.is-chat { color: var(--alert); }

.community-body h3 {
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.alert-card .community-body h3 {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.status {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

.alert-card .status {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.chevron {
    font-family: "Unbounded", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.empty-card {
    padding: 28px 18px;
    text-align: center;
}

.empty-card p {
    color: var(--muted);
    font-weight: 500;
}

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

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.field {
    border: var(--border);
    padding: 14px 12px;
    font: 600 1rem "Manrope", sans-serif;
    text-transform: none;
}

.field:focus {
    outline: none;
    box-shadow: 4px 4px 0 var(--accent);
}

.type-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.chip {
    border: var(--border);
    background: #fff;
    padding: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.chip.is-on { background: #000; color: #fff; }

.switch-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: var(--border);
    padding: 14px 12px;
    text-transform: none;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.switch-row input {
    width: 22px;
    height: 22px;
    accent-color: var(--accent);
}

.switch-row--locked {
    opacity: 0.72;
    cursor: pointer;
    user-select: none;
}

.switch-row--locked input {
    pointer-events: none;
    opacity: 0.9;
}

.switch-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.switch-label .tool-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
}

.field-label {
    font-family: "Unbounded", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.field-area {
    min-height: 120px;
    resize: vertical;
    line-height: 1.4;
}

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

.wm-preview-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wm-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    max-height: 420px;
    object-fit: contain;
    display: block;
    border: var(--border);
    background: #1f2a44;
    touch-action: none;
    cursor: grab;
}

.wm-image-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wm-upload .field[type="file"] {
    padding: 10px 8px;
}

.protect-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.protect-block .switch-row {
    margin: 0;
}

.protect-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border: var(--border);
    border-top: none;
    background: color-mix(in srgb, var(--accent) 6%, #fff);
    animation: protect-extra-in 0.2s ease;
}

.protect-extra[hidden] {
    display: none;
}

.protect-block.is-open .switch-row:last-of-type {
    border-bottom: none;
}

@keyframes protect-extra-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.check-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-transform: none;
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.check-row:last-of-type {
    border-bottom: none;
}

.check-row input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.check-row strong {
    display: block;
    font-size: 0.9rem;
}

.check-row small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.78rem;
    line-height: 1.35;
}

.replace-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
}

.replace-row .field {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.source-row {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.source-row:last-of-type {
    border-bottom: 0;
}

.mod-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mod-actions .chip {
    flex: 0 0 auto;
    min-height: 44px;
    line-height: 1.2;
    white-space: nowrap;
    color: #000;
    -webkit-text-fill-color: currentColor;
}

.mod-actions .chip.is-on {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mod-card .mod-actions .chip {
    font-size: 12px;
}

@media (min-width: 420px) {
    .replace-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.similar-nested {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin: 0 0 8px 28px;
    padding: 10px;
    border: var(--border);
    background: #fff;
}

.similar-nested[hidden] {
    display: none;
}

.similar-nested .field {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.similar-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.schedule-extra {
    margin-top: 4px;
}

.day-switch {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.day-chip {
    padding: 10px 0;
    font-size: 0.68rem;
}

.time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.time-row .field {
    margin-top: 6px;
}

.community-hero {
    padding: 22px 16px 8px;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 18px 18px;
    border-bottom: var(--border);
}

.community-hero-inner {
    display: flex;
    gap: 14px;
    align-items: center;
}

.community-hero h1 {
    font-family: "Unbounded", sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 16px 28px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.tool-card {
    min-height: 118px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
    transition: background 0.18s ease, color 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .tool-card:hover {
        background: var(--accent);
        color: #fff;
        transform: translate(-3px, -3px);
        transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    }

    .tool-card:hover .tool-hint {
        color: rgba(255, 255, 255, 0.85);
    }
}

.tool-card:active {
    background: var(--accent);
    color: #fff;
}

.tool-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.tool-title {
    font-size: 0.86rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.tool-hint {
    display: block;
    margin-top: 0;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.tool-card:active .tool-hint {
    color: rgba(255, 255, 255, 0.85);
}

.tool-card.is-soon {
    opacity: 0.55;
}

.widget-ranking {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-ranking li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    font-size: 0.92rem;
}

.widget-ranking strong {
    font-variant-numeric: tabular-nums;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: none;
}

.grabber-modules {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.grabber-modules[hidden] {
    display: none;
}

.info-card { padding: 16px; box-shadow: none; }
.info-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.settings-list { margin-top: 16px; }

.alert-card { cursor: default; }
.alert-card:active { transform: none; }

.toast {
    position: fixed;
    left: 50%;
    bottom: calc(var(--tabbar-h) + 12px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: min(420px, calc(100% - 32px));
    background: #000;
    color: #fff;
    padding: 14px 16px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    z-index: 50;
    animation: rise 0.2s ease;
}

.tabbar {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-top: var(--border);
    border-left: var(--border);
    border-right: var(--border);
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 30;
}

.tab {
    position: relative;
    background: #fff;
    border: none;
    border-right: 3px solid #000;
    padding: 10px 4px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #000;
}

.tab:last-child { border-right: none; }
.tab svg { width: 20px; height: 20px; }
.tab span {
    font-family: "Manrope", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: none;
}

.tab.is-on {
    background: var(--accent);
    color: #fff;
}

.dot {
    position: absolute;
    top: 8px;
    right: 18px;
    width: 8px;
    height: 8px;
    background: var(--alert);
    border: 2px solid #000;
}

.note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 8px;
}

.feature-guide {
    margin-top: 18px;
    padding: 14px 16px;
    border: 2px solid #000;
    background: var(--card, #fff);
}

.feature-guide summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.feature-guide summary::-webkit-details-marker {
    display: none;
}

.feature-guide summary::after {
    content: "▾";
    float: right;
    font-weight: 400;
    color: var(--muted);
}

.feature-guide[open] summary::after {
    content: "▴";
}

.feature-guide-body {
    margin-top: 12px;
}

.feature-guide-body p {
    margin: 0 0 10px;
}

.feature-guide-body p:last-child {
    margin-bottom: 0;
}

.overview-stats {
    grid-template-columns: 1fr 1fr;
    margin: 0 0 16px;
}

.overview-stats .stat-box span {
    font-size: 1.05rem;
    line-height: 1.2;
    word-break: break-word;
}

.overview-panel .info-card {
    margin-bottom: 12px;
    padding: 14px;
}

.overview-panel .info-card h3 {
    margin: 0 0 8px;
}

.overview-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overview-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    border: var(--border);
    background: #fafafa;
}

.overview-list li strong {
    font-size: 0.9rem;
}

.overview-list li span {
    font-size: 0.78rem;
    color: var(--muted);
}

.overview-list li.is-ok strong { color: var(--accent); }
.overview-list li.is-warn strong,
.overview-list li.is-bad { color: var(--alert, #c62828); }

.overview-rights li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.overview-card-warn {
    border-color: #c62828;
}

.overview-quick {
    margin: 4px 0 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.team-list li .team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.team-badge {
    display: inline-block;
    padding: 2px 8px;
    border: var(--border);
    background: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.team-rights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.team-right {
    display: inline-block;
    padding: 3px 8px;
    border: var(--border);
    font-size: 0.72rem;
    font-weight: 600;
}

.team-right.is-on {
    background: var(--accent);
    color: #fff;
    border-color: #000;
}

.team-right.is-off {
    background: #eee;
    color: var(--muted);
}

.team-list li.is-bot {
    opacity: 0.72;
}

.btn--alert {
    background: var(--alert);
    color: #fff;
}

body.is-app-locked .app,
body.is-app-locked .tabbar {
    display: none !important;
}

.app-lock-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(47, 82, 224, 0.18), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(255, 77, 0, 0.12), transparent 40%),
        #fff;
}

.app-lock-gate[hidden] {
    display: none !important;
}

.app-lock-card {
    width: min(100%, 420px);
    border: var(--border);
    box-shadow: var(--shadow);
    background: #fff;
    padding: 28px 22px;
    text-align: left;
}

.app-lock-card h2 {
    margin: 12px 0 10px;
}

.app-lock-card p {
    color: var(--muted);
    line-height: 1.45;
}

@media (max-width: 520px) {
    .app, .tabbar {
        max-width: none;
        border-left: none;
        border-right: none;
    }
    .tabbar { left: 0; transform: none; }
}

@media (min-width: 900px) {
    body {
        background-image: radial-gradient(#ccc 1px, transparent 1px);
        background-size: 20px 20px;
    }
}

/* Suggest news (public form) */
body.is-suggest-public .tabbar {
    display: none !important;
}

body.is-suggest-public .topbar {
    border-bottom: none;
}

.suggest-cover {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(120% 80% at 45% 40%, rgba(47, 82, 224, 0.28), transparent 58%),
        linear-gradient(135deg, #101828 0%, #2F52E0 55%, #1a2f8f 100%);
    border-bottom: var(--border);
}

.suggest-cover__img {
    display: block;
    width: 100%;
    height: clamp(168px, 46vw, 240px);
    object-fit: cover;
    object-position: center center;
}

.suggest-cover--with-text .suggest-cover__img {
    height: clamp(196px, 52vw, 280px);
}

.suggest-cover__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 12, 28, 0.18) 0%, rgba(8, 12, 28, 0.08) 36%, rgba(8, 12, 28, 0.72) 100%),
        linear-gradient(90deg, rgba(8, 12, 28, 0.28) 0%, transparent 42%);
}

.suggest-cover__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    box-sizing: border-box;
}

.suggest-cover__eyebrow {
    display: inline-flex;
    align-self: flex-start;
    margin: 0;
    padding: 5px 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    backdrop-filter: blur(6px);
}

.suggest-cover__title {
    margin: 0;
    max-width: 18ch;
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(1.28rem, 5.4vw, 1.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-transform: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    overflow-wrap: anywhere;
}

.suggest-cover__desc {
    margin: 0;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.suggest-cover-preview {
    margin-top: 10px;
    border: var(--border);
    overflow: hidden;
    background: #f4f4f4;
}

.suggest-cover-preview img {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center center;
}

.suggest-public-body {
    padding-top: 18px;
}

.suggest-hero h1 {
    margin: 10px 0 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

.suggest-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.suggest-preview {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.suggest-preview-item {
    display: grid;
    gap: 6px;
}

.suggest-preview-media {
    display: block;
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border: 2px solid var(--line, #1a1a1a);
    background: #f4f4f4;
}

.suggest-form .check-row {
    margin-top: 4px;
    flex-direction: row;
    align-items: center;
}

.suggest-form .check-row > span {
    text-transform: none;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}
