:root {
    --bg: #080b12;
    --bg2: #111629;
    --text: #f7f8fb;
    --muted: #b4bbd0;
    --accent: #ff5d2d;
    --accent2: #33d6a6;
    --card: rgba(255, 255, 255, 0.08);
    --stroke: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    background:
        radial-gradient(90vw 80vh at 0% -10%, rgba(255, 93, 45, 0.25), transparent 60%),
        radial-gradient(70vw 70vh at 100% 100%, rgba(51, 214, 166, 0.2), transparent 60%),
        linear-gradient(160deg, var(--bg), var(--bg2));
    color: var(--text);
    overflow-x: hidden;
    overscroll-behavior: none;
}

.shorts-page,
.upload-page {
    --az-safe-top: env(safe-area-inset-top, 0px);
}

.shorts-page {
    --shorts-top-offset: 0px;
    --shorts-bottom-offset: 0px;
    --shorts-nav-bg: rgba(8, 12, 24, 0.98);
    --shorts-meta-bottom: 14px;
    --shorts-actions-bottom: 10px;
    /* Nao usar overflow:hidden no body — quebra position:fixed no iOS Safari */
    padding-bottom: 0 !important;
    background: #000 !important;
}

@supports not (-webkit-touch-callout: none) {
    .shorts-page {
        --shorts-meta-bottom: 8px;
        --shorts-actions-bottom: 6px;
    }
}

html.shorts-page,
body.shorts-page,
.shorts-page .shorts-shell,
.shorts-page .shorts-app,
.shorts-page .shorts-feed,
.shorts-page .short-item {
    background: #000 !important;
}



.shorts-page .hf-header {
    display: none;
}

.shorts-page .hf-header,
.upload-page .hf-header {
    padding-top: var(--az-safe-top);
}

.shorts-page .hf-inner,
.upload-page .hf-inner {
    min-height: calc(56px + var(--az-safe-top));
}

.shorts-page .footer,
.upload-page .footer {
    margin-top: 0;
}

.shorts-shell {
    padding: var(--shorts-top-offset) 0 0;
    overflow: hidden;
}

.btn-upload,
.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
}

.btn-upload {
    background: linear-gradient(120deg, var(--accent), #ff9967);
    border-color: transparent;
}

.shorts-kicker {
    margin: 0 0 6px;
    color: var(--accent2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.shorts-app {
    width: 100%;
    margin: 0;
}

.shorts-feed {
    height: calc(100dvh - var(--shorts-top-offset) - var(--shorts-bottom-offset));
    min-height: 0;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.short-item {
    position: relative;
    height: calc(100dvh - var(--shorts-top-offset) - var(--shorts-bottom-offset));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.short-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #000;
    border-radius: 0;
}

.short-overlay {
    position: absolute;
    inset: 0;
    transform: none;
    width: 100%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.74) 86%);
    border-radius: 0;
}

.short-meta {
    position: absolute;
    left: 12px;
    right: 88px;
    bottom: calc(var(--shorts-meta-bottom) + env(safe-area-inset-bottom, 0px));
    z-index: 3;
    pointer-events: auto;
}

.short-author {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}


    .short-author-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
        flex: 1;
    }

    .short-author-info strong {
        font-size: 15px;
        line-height: 1.2;
        color: #fff;
        display: block;
    }

    .short-author-footer {
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
    }

    .short-author-footer small {
        font-size: 13px;
        line-height: 1.2;
        color: #d6dcef;
        flex-shrink: 0;
    }
.short-author-link {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex: 1;
    transition: opacity 0.2s ease;
}

.short-author-link:hover {
    opacity: 0.8;
}

.short-author-link .short-follow-btn {
     pointer-events: auto;
}
.short-follow-btn {
    background: rgba(51, 167, 255, 0.9);
    color: #fff;
    border: none;
    border-radius: 999px;
        padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.short-follow-btn:hover:not(:disabled) {
    background: rgba(51, 167, 255, 1);
    transform: translateY(-1px);
}

.short-follow-btn:active:not(:disabled) {
    transform: translateY(0);
}

.short-follow-btn.is-following {
    background: rgba(255, 255, 255, 0.15);
    color: #ecf2ff;
}

.short-follow-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.short-author img,
.short-author .avatar-fallback {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.1);
}

.avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.short-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.short-desc {
    margin: 6px 0 0;
    color: #dde2f2;
    font-size: 14px;
    line-height: 1.35;
    max-height: 5.3em;
    overflow: hidden;
}

.short-actions {
    position: absolute;
    right: 10px;
    bottom: calc(var(--shorts-actions-bottom) + env(safe-area-inset-bottom, 0px));
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: auto;
}

.action-btn {
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border-radius: 999px;
    width: 62px;
    min-height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    cursor: pointer;
}

.action-btn.is-liked {
    background: rgba(255, 93, 45, 0.92);
}

.action-btn.is-saved {
    background: rgba(51, 214, 166, 0.9);
}

.action-btn.is-active {
    background: rgba(70, 120, 255, 0.9);
}

.action-btn i {
    font-size: 18px;
}

.shorts-loader {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 30;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
}

.shorts-add-btn {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 12px;
    z-index: 95;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--accent), #ff9967);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.shorts-add-btn i {
    font-size: 18px;
}

.comments-sheet {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
}

.comments-sheet.is-open {
    display: block;
}

.comments-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.comments-sheet__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 70vh;
    background: #101523;
    border-radius: 16px 16px 0 0;
    border-top: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.comments-sheet__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--stroke);
}

.icon-btn {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.comments-sheet__list {
    overflow: auto;
    padding: 10px 14px;
    display: grid;
    gap: 10px;
}

.comment-item {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 8px 10px;
}

.comment-item__author {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.comment-item__text {
    margin: 0;
    font-size: 13px;
    color: #e4e8f5;
}

.comments-sheet__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--stroke);
}

.comments-sheet__form input {
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 12px;
    height: 40px;
}

.comments-sheet__form button,
.upload-form button {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), #ff9967);
    color: #fff;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
}

.upload-page {
    min-height: 100vh;
}

.upload-screen {
    padding: 22px 14px 28px;
}

.upload-page--composer .hf-header {
    display: none;
}

.upload-page--composer .upload-screen {
    padding: calc(12px + env(safe-area-inset-top, 0px)) 16px calc(20px + env(safe-area-inset-bottom, 0px));
    background: #000;
}

.upload-page--composer .upload-wrap {
    width: min(860px, 100%);
    margin: 0 auto;
    background: #000;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 calc(92px + env(safe-area-inset-bottom, 0px));
}

.composer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.composer-back-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

.composer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 168px;
    gap: 16px;
    align-items: start;
    margin: 10px 0 18px;
}

.composer-caption-block textarea {
    width: 100%;
    min-height: 98px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    padding: 8px 0;
    resize: none;
    font-size: 34px;
    line-height: 1.2;
}

.composer-caption-block textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.composer-caption-block textarea:focus {
    outline: none;
}

.composer-chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.composer-chip {
    border: 0;
    border-radius: 12px;
    background: #1f2025;
    color: #fff;
    padding: 10px 16px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.composer-preview-card.upload-picker {
    min-height: 248px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: #111;
}

.composer-preview-card .upload-picker__content {
    min-height: 248px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 14px;
    gap: 4px;
}

.composer-preview-card .upload-picker__content strong {
    font-size: 14px;
}

.composer-preview-card .upload-picker__content span {
    font-size: 12px;
}

.composer-preview-video.upload-preview {
    min-height: 248px;
    max-height: 248px;
    object-fit: cover;
}

.composer-preview-edit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}

.composer-settings-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 14px;
}

.composer-setting-item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: transparent;
    color: #fff;
    padding: 18px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    cursor: pointer;
}

.composer-setting-item span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.composer-setting-item i.fa-chevron-right {
    color: rgba(255, 255, 255, 0.45);
}

.composer-confirm-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 17px;
}

.composer-confirm-row input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.composer-meta-row {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
}

.composer-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
    background: transparent;
    padding: 0;
}

.composer-actions .composer-draft-btn {
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: #1d1e22;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.composer-actions #uploadSubmitBtn {
    height: 54px;
    border-radius: 999px;
    border: 0;
    background: #ff2b63;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.composer-upload-help {
    margin: 12px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

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

.upload-page--minimal {
    min-height: 100vh;
    background: #000;
}

.upload-screen--minimal {
    padding: calc(12px + env(safe-area-inset-top, 0px)) 14px calc(22px + env(safe-area-inset-bottom, 0px));
    background: #000;
}

.upload-wrap--minimal {
    width: min(860px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(16, 18, 24, 0.92), rgba(10, 12, 16, 0.94));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38);
    padding: 10px 12px calc(104px + env(safe-area-inset-bottom, 0px));
}

.upload-header--minimal {
    margin-bottom: 8px;
}

.upload-form--minimal {
    gap: 12px;
}

.upload-form--minimal .composer-top {
    margin: 4px 0 12px;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 34vw);
    gap: 12px;
}

.upload-form--minimal .composer-caption-block {
    min-width: 0;
}

.upload-form--minimal .composer-caption-block textarea {
    min-height: 110px;
    font-size: clamp(22px, 4.7vw, 30px);
    border: 0;
    background: transparent;
    padding: 4px 0;
}

.upload-form--minimal .composer-caption-block textarea:focus {
    outline: none;
}

.upload-form--minimal .composer-preview-card {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: #11141b;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.upload-form--minimal .composer-preview-card .upload-picker__content {
    min-height: 220px;
    padding: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.upload-form--minimal .composer-preview-video {
    width: 100%;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    object-fit: cover;
}

.upload-form--minimal .composer-meta-row {
    margin-top: 4px;
}

.upload-form--minimal .composer-actions {
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: min(560px, calc(100% - 24px));
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(9, 10, 14, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.upload-form--minimal .composer-actions .composer-draft-btn,
.upload-form--minimal .composer-actions #uploadSubmitBtn {
    min-width: 0;
    height: 52px;
}

.upload-form--minimal .composer-upload-help {
    margin-top: 6px;
}

.upload-wrap {
    width: min(920px, 100%);
    margin: 0 auto;
    background: rgba(16, 21, 35, 0.88);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

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

.upload-wrap h1 {
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
}

.upload-wrap a,
.upload-back-link {
    color: var(--accent2);
}

.upload-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 560px;
}

.upload-optional {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.upload-form {
    display: grid;
    gap: 16px;
    margin-top: 14px;
}

.upload-form input,
.upload-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 12px;
}

.upload-form--enhanced input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-picker {
    position: relative;
    display: block;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.upload-picker__content {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #fff;
    padding: 24px;
}

.upload-picker__content span {
    color: var(--muted);
}

.upload-picker__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 93, 45, 0.18);
    font-size: 28px;
}

.upload-preview {
    width: 100%;
    min-height: 420px;
    max-height: 72vh;
    display: block;
    object-fit: contain;
    background: #000;
}

.upload-meta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 16px;
}

.upload-meta-card label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.upload-meta-card textarea {
    min-height: 120px;
    resize: vertical;
}

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

.upload-actions {
    display: flex;
    justify-content: flex-end;
}

.upload-actions button {
    min-width: 180px;
    height: 46px;
}

.flash {
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
}

.flash-error {
    border: 1px solid rgba(255, 114, 114, 0.5);
    background: rgba(209, 36, 36, 0.2);
}

.flash-success {
    border: 1px solid rgba(77, 207, 126, 0.5);
    background: rgba(40, 153, 74, 0.2);
}

.short-single-page {
    margin: 0;
    padding: 16px;
}

.short-single-wrap {
    width: min(700px, 100%);
    margin: 0 auto;
}

.short-single-wrap video {
    width: 100%;
    max-height: 78vh;
    background: #000;
    border-radius: 14px;
}

@media (min-width: 768px) {
    .short-item {
        justify-content: center;
    }

    .short-video,
    .short-overlay {
        width: min(470px, 100%);
        border-radius: 18px;
    }

    .short-overlay {
        inset: 0 auto 0 50%;
        transform: translateX(-50%);
    }

    .short-meta {
        left: max(50% - 220px, 16px);
        right: max(50% - 188px, 92px);
    }

    .short-actions {
        right: max(50% - 256px, 14px);
    }
}

@media (max-width: 900px) {
    .upload-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .shorts-page {
        --shorts-meta-bottom: 12px;
        --shorts-actions-bottom: 8px;
    }

    .upload-screen {
        padding-left: 0;
        padding-right: 0;
    }

    .upload-page--composer .upload-screen {
        padding-left: 14px;
        padding-right: 14px;
    }

    .upload-wrap {
        border-radius: 0;
    }

    .upload-page--composer .upload-wrap {
        border-radius: 0;
        padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    }

    .composer-top {
        grid-template-columns: minmax(0, 1fr) 124px;
        gap: 12px;
    }

    .composer-caption-block textarea {
        font-size: 40px;
        min-height: 120px;
    }

    .composer-chip {
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .composer-preview-card.upload-picker,
    .composer-preview-card .upload-picker__content,
    .composer-preview-video.upload-preview {
        min-height: 196px;
        max-height: 196px;
        border-radius: 16px;
    }

    .composer-setting-item {
        font-size: 15px;
        padding: 15px 2px;
    }

    .composer-confirm-row {
        font-size: 14px;
    }

    .composer-actions {
        left: 14px;
        right: 14px;
        grid-template-columns: 1fr 1fr;
    }

    .composer-actions .composer-draft-btn,
    .composer-actions #uploadSubmitBtn {
        height: 52px;
        font-size: 17px;
    }

    .upload-form--minimal .composer-top {
        grid-template-columns: minmax(0, 1fr) 120px;
    }

    .upload-form--minimal .composer-preview-card,
    .upload-form--minimal .composer-preview-card .upload-picker__content,
    .upload-form--minimal .composer-preview-video {
        min-height: 196px;
        max-height: 196px;
    }

    .upload-form--minimal .composer-preview-video {
        height: 196px;
    }

    .upload-wrap--minimal {
        border-radius: 16px;
        padding: 8px 10px calc(102px + env(safe-area-inset-bottom, 0px));
    }

    .short-meta {
        left: 12px;
        right: 88px;
    }

    .short-actions {
        right: 10px;
    }

    @supports not (-webkit-touch-callout: none) {
        .shorts-page {
            --shorts-meta-bottom: 6px;
            --shorts-actions-bottom: 4px;
        }
    }

    .upload-wrap {
        padding: 18px 14px 110px;
    }

    .upload-actions {
        position: sticky;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        padding-top: 8px;
        background: linear-gradient(180deg, rgba(8,11,18,0), rgba(8,11,18,0.95) 35%);
    }

    .upload-actions button {
        width: 100%;
        min-width: 0;
        height: 48px;
    }

    .upload-picker,
    .upload-picker__content,
    .upload-preview {
        min-height: 320px;
    }

    .upload-meta-row {
        flex-direction: column;
        gap: 4px;
    }
}
