/* ==========================================================================
   NB VIDEO SUBMISSION — в стиле формы загрузки треков (nb-music-submission)
   Стекло, золотой акцент, те же поля и секции
   ========================================================================== */

#tab-content-videoshot > .nb-tab-page-header {
    display: none !important;
}

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');
/* Переменные — стиль ЛК (тёмно-золотой) */
#nb-vshot-form-wrapper {
    --cin-bg: #0d0a06;
    --cin-surface: rgba(28, 20, 10, 0.55);
    --cin-border: rgba(255, 215, 0, 0.12);
    --cin-accent: #FFD700;
    --cin-accent-hover: #FFB000;
    --cin-accent-dim: rgba(255, 215, 0, 0.15);
    --cin-accent-glow: rgba(255, 215, 0, 0.3);
    --cin-text-main: #ffffff;
    --cin-text-muted: #a0a0b0;
    --cin-error: #ff4444;
    --cin-font-head: 'Clash Display', sans-serif;
    --cin-font-body: 'Manrope', sans-serif;
    --cin-radius: 20px;
    --cin-border-gold: rgba(255, 215, 120, 0.22);
    --cin-card: linear-gradient(165deg, rgba(28, 20, 8, 0.92) 0%, rgba(10, 7, 3, 0.96) 100%);
    --cin-blur: blur(40px);
    --cin-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 40px rgba(255, 215, 0, 0.04), 0 1px 0 rgba(255,255,255,0.03) inset;
    box-sizing: border-box;
    width: 100%;
    max-width: min(100%, 1360px);
    margin: 0 auto;
    padding: 0 8px 48px;
    font-family: var(--cin-font-body);
    color: var(--cin-text-main);
    background: transparent !important;
}
#nb-vshot-form-wrapper * { box-sizing: border-box; }

.nb-vshot-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Когда форма в дашборде — без лишнего фона */
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-vshot-form-main {
    padding: 0;
    min-height: 0;
}

/* Вне дашборда — фон как в ЛК (тёмно-золотой) */
#nb-vshot-form-wrapper:not(.nb-vshot-form-in-dashboard) .nb-vshot-form-main {
    min-height: 100vh;
    padding: 40px 20px;
    background-color: var(--cin-bg) !important;
    background-image:
        radial-gradient(ellipse 120% 80% at 15% 20%, rgba(255, 200, 80, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 100% 70% at 88% 85%, rgba(180, 130, 40, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 55%);
    background-size: 100% 100%;
    background-attachment: fixed;
}

@keyframes nb-golden-border-shimmer {
    0%, 100% { border-color: rgba(255, 215, 0, 0.38); }
    50% { border-color: rgba(255, 215, 0, 0.6); }
}

/* --- Контейнеры формы (GLASS — как в форме треков) --- */
#nb-vshot-form-wrapper .nb-form-container,
#nb-vshot-form-wrapper .nb-payment-screen {
    font-family: var(--cin-font-body);
    color: var(--cin-text-main);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: var(--cin-card) !important;
    backdrop-filter: var(--cin-blur) !important;
    -webkit-backdrop-filter: var(--cin-blur) !important;
    border: 1px solid var(--cin-border-gold) !important;
    border-radius: var(--cin-radius) !important;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 170, 0.1) !important;
    isolation: isolate;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#nb-vshot-form-wrapper .nb-form-container:hover,
#nb-vshot-form-wrapper .nb-payment-screen:hover {
    border-color: rgba(255, 215, 0, 0.38) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 230, 170, 0.12) !important;
}

/* Заголовок (золотая полоска слева от h2 — как в форме треков) */
#nb-vshot-form-wrapper .nb-form-header {
    padding: 40px 50px;
    border-bottom: 1px solid var(--cin-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--cin-radius) var(--cin-radius) 0 0;
    position: relative;
    z-index: 20;
}
#nb-vshot-form-wrapper .nb-form-header h2 {
    margin: 0;
    font-family: var(--cin-font-head) !important;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff !important;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}
#nb-vshot-form-wrapper .nb-form-header h2:before {
    content: '';
    display: block;
    width: 4px;
    height: 28px;
    background: var(--cin-accent);
    margin-right: 15px;
    box-shadow: 0 0 12px var(--cin-accent-glow);
}

/* Секции */
#nb-vshot-form-wrapper .nb-section {
    padding: 40px 50px;
    border-bottom: 1px solid var(--cin-border);
    position: relative;
    z-index: 30;
}
#nb-vshot-form-wrapper .nb-section:last-of-type { border-bottom: none; padding-bottom: 50px; }

#nb-vshot-form-wrapper .nb-section h3 {
    margin: 0 0 25px 0;
    font-family: var(--cin-font-head) !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--cin-accent) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Обложка и поля (сетка как в форме треков: 200px обложка + поля) */
#nb-vshot-form-wrapper .nb-cover-and-fields {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}
#nb-vshot-form-wrapper .nb-cover-block-side {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
#nb-vshot-form-wrapper .nb-cover-block-side .nb-file-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}
#nb-vshot-form-wrapper .nb-cover-block-side label.nb-btn {
    width: 100% !important;
    padding: 8px 0 !important;
    font-size: 10px !important;
    justify-content: center;
}

#nb-vshot-form-wrapper .nb-cover-img {
    width: 200px !important;
    height: 200px !important;
    background: rgba(0,0,0,0.4);
    border: 2px dashed var(--cin-border);
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #666;
}
#nb-vshot-form-wrapper .nb-cover-img:hover {
    border-color: var(--cin-accent);
    color: #fff;
    background-color: var(--cin-accent-dim);
    box-shadow: 0 0 30px var(--cin-accent-dim);
}
#nb-vshot-form-wrapper .nb-cover-hint,
#nb-vshot-form-wrapper .nb-cover-requirements {
    margin-top: 0;
    font-size: 10px;
    color: var(--cin-text-muted);
    text-align: center;
    font-weight: 500;
}
#nb-vshot-form-wrapper .nb-fields-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Поля ввода (как в форме треков) */
#nb-vshot-form-wrapper .nb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
#nb-vshot-form-wrapper .nb-field.full-width { grid-column: 1 / -1; }

#nb-vshot-form-wrapper .nb-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
    position: relative;
    z-index: 25;
}
#nb-vshot-form-wrapper .nb-field label {
    color: var(--cin-text-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#nb-vshot-form-wrapper .nb-field-hint {
    font-size: 10px;
    color: var(--cin-text-muted);
    margin-top: 4px;
    display: block;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
#nb-vshot-form-wrapper .nb-field input[type="text"],
#nb-vshot-form-wrapper .nb-field input[type="email"],
#nb-vshot-form-wrapper .nb-field input[type="url"],
#nb-vshot-form-wrapper .nb-field input[type="date"],
#nb-vshot-form-wrapper .nb-field select,
#nb-vshot-form-wrapper .nb-field textarea {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--cin-border) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-family: var(--cin-font-body) !important;
    outline: none !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}
#nb-vshot-form-wrapper .nb-field input:focus,
#nb-vshot-form-wrapper .nb-field select:focus,
#nb-vshot-form-wrapper .nb-field textarea:focus {
    border-color: var(--cin-accent) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
    background: rgba(0, 0, 0, 0.8) !important;
}
#nb-vshot-form-wrapper textarea { resize: vertical; min-height: 120px; }

/* Чекбоксы (как в форме треков) */
#nb-vshot-form-wrapper input[type="checkbox"],
#nb-vshot-form-wrapper input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--cin-border);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    margin-right: 10px;
}
#nb-vshot-form-wrapper input[type="radio"] { border-radius: 50%; }
#nb-vshot-form-wrapper input[type="checkbox"]:checked,
#nb-vshot-form-wrapper input[type="radio"]:checked {
    background-color: var(--cin-accent);
    border-color: var(--cin-accent);
}
#nb-vshot-form-wrapper input[type="checkbox"]:checked::after {
    content: '✔';
    font-size: 10px;
    color: #000;
    font-weight: 900;
}
#nb-vshot-form-wrapper input[type="radio"]:checked::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

/* Кнопки (как в форме треков) */
#nb-vshot-form-wrapper .nb-btn {
    position: relative;
    overflow: hidden;
    padding: 12px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
    color: #fff;
    font-family: var(--cin-font-head);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    position: relative;
    z-index: 100;
    pointer-events: auto !important;
    margin: 0 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.08);
}
#nb-vshot-form-wrapper .nb-btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -140%;
    width: 56%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.34), transparent);
    transform: skewX(-22deg);
    transition: left .45s ease;
    pointer-events: none;
}
#nb-vshot-form-wrapper .nb-btn:hover::after {
    left: 150%;
}
#nb-vshot-form-wrapper .nb-btn.outline {
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #ccc !important;
    background: rgba(255,255,255,0.01) !important;
}
#nb-vshot-form-wrapper .nb-btn.outline:hover {
    border-color: #fff !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.34), 0 0 16px rgba(255,255,255,0.1);
    transform: translateY(-2px) !important;
}
#nb-vshot-form-wrapper .nb-btn.primary {
    background: linear-gradient(135deg, #ffe37a 0%, var(--cin-accent) 44%, #ffb000 100%) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 226, 120, 0.42) !important;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3), 0 0 0 1px rgba(255,242,180,0.16) inset !important;
}
#nb-vshot-form-wrapper .nb-btn.primary:hover {
    background: var(--cin-accent-hover) !important;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.45), 0 0 24px rgba(255,215,0,0.35) !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
}
#nb-vshot-form-wrapper .nb-btn.primary:disabled {
    background: #444 !important;
    color: #888 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}
#nb-vshot-form-wrapper .nb-btn.full-width { width: 100%; }
#nb-vshot-form-wrapper .nb-btn.nb-btn-success {
    background: var(--cin-accent-dim) !important;
    border-color: var(--cin-accent) !important;
    color: var(--cin-accent) !important;
}

/* Файлы */
#nb-vshot-form-wrapper input[type="file"] { display: none; }
#nb-vshot-form-wrapper .nb-file-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
    position: relative;
    z-index: 30;
}
#nb-vshot-form-wrapper .nb-file-wrapper.full-width-file { width: 100%; justify-content: center; }
#nb-vshot-form-wrapper .nb-file-name {
    color: #888;
    font-size: 12px;
    font-family: monospace;
}
#nb-vshot-form-wrapper .nb-file-name.selected { color: var(--cin-accent); font-weight: 700; }
#nb-vshot-form-wrapper .nb-file-name.center { text-align: center; }

/* Секции видео (Standard / ProRes) */
#nb-vshot-form-wrapper .nb-video-slot {
    padding: 24px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--cin-border);
    border-radius: 12px;
}
#nb-vshot-form-wrapper .nb-video-slot:last-child { margin-bottom: 0; }
#nb-vshot-form-wrapper .nb-video-slot h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-family: var(--cin-font-head);
    color: #fff;
    font-weight: 600;
}
#nb-vshot-form-wrapper .nb-video-slot h4.accent { color: var(--cin-accent); }
#nb-vshot-form-wrapper .nb-requirements-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border-left: 4px solid var(--cin-border);
}
#nb-vshot-form-wrapper .nb-req-standard { border-left-color: rgba(176, 38, 255, 0.5); }
#nb-vshot-form-wrapper .nb-req-apple { border-left-color: var(--cin-accent); }
#nb-vshot-form-wrapper .nb-text-small {
    font-size: 12px;
    color: var(--cin-text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}
#nb-vshot-form-wrapper .nb-text-small:last-child { margin-bottom: 0; }

/* ISRC / UPC карточки (в том же стиле) */
#nb-vshot-form-wrapper .nb-isrc-upc-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
#nb-vshot-form-wrapper .nb-identifier-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--cin-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}
#nb-vshot-form-wrapper .nb-identifier-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px var(--cin-accent-dim);
}
#nb-vshot-form-wrapper .nb-identifier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
#nb-vshot-form-wrapper .nb-identifier-icon {
    font-family: var(--cin-font-head);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--cin-accent);
    text-transform: uppercase;
}
#nb-vshot-form-wrapper .nb-toggle-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
#nb-vshot-form-wrapper .nb-toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
#nb-vshot-form-wrapper .nb-toggle-slider {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--cin-border);
    border-radius: 12px;
    transition: 0.3s;
}
#nb-vshot-form-wrapper .nb-toggle-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background: var(--cin-accent);
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}
#nb-vshot-form-wrapper .nb-toggle-switch input:checked + .nb-toggle-slider {
    background: var(--cin-accent-dim);
    border-color: var(--cin-accent);
}
#nb-vshot-form-wrapper .nb-toggle-switch input:checked + .nb-toggle-slider::after {
    transform: translateX(20px);
}
#nb-vshot-form-wrapper .nb-toggle-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--cin-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#nb-vshot-form-wrapper .nb-identifier-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--cin-border) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #fff !important;
    font-size: 13px !important;
    transition: 0.2s;
}
#nb-vshot-form-wrapper .nb-identifier-input:focus {
    border-color: var(--cin-accent) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}
#nb-vshot-form-wrapper .nb-identifier-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Сетка авторов */
#nb-vshot-form-wrapper .nb-credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Подвал (как в форме треков) */
#nb-vshot-form-wrapper .nb-footer {
    padding: 22px 50px 28px;
    background: transparent !important;
    border-top: 1px solid var(--cin-border);
    border-radius: 0 0 var(--cin-radius) var(--cin-radius);
    position: relative;
    z-index: 40;
    margin-top: 0;
    box-shadow: none;
    clear: both;
}
#nb-vshot-form-wrapper .nb-footer-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 41;
    pointer-events: auto !important;
}
#nb-vshot-form-wrapper #nb_vshot_submit_btn {
    background: var(--cin-accent) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    border: none !important;
    border-radius: 10px !important;
    min-height: 44px;
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.28);
}
#nb-vshot-form-wrapper #nb_vshot_submit_btn:hover:not(:disabled) {
    background: var(--cin-accent-hover) !important;
    box-shadow: 0 14px 34px rgba(255, 215, 0, 0.4);
}
#nb-vshot-form-wrapper #nb_vshot_submit_btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Кнопка отправки (как "Отправить на модерацию") */
#nb-vshot-form-wrapper #btnSubmitVideo {
    background: var(--cin-accent) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 10px 25px !important;
    font-size: 11px !important;
    height: 40px !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}
#nb-vshot-form-wrapper #btnSubmitVideo:hover {
    background: var(--cin-accent-hover) !important;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.45) !important;
    color: #000 !important;
}

/* Сообщения */
#nb-vshot-form-wrapper .nb-msg.success {
    background: var(--cin-accent-dim);
    border: 1px solid var(--cin-accent);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}
.nb-error-text {
    margin-top: 15px;
    color: var(--cin-error);
    font-size: 13px;
}

/* Экран оплаты */
#nb-vshot-form-wrapper .nb-payment-screen {
    padding: 60px;
    text-align: center;
    max-width: 500px;
    margin: 50px auto;
}
#nb-vshot-form-wrapper .nb-payment-screen h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
#nb-vshot-form-wrapper .nb-payment-screen h2:before {
    content: '';
    display: block;
    width: 4px;
    height: 28px;
    background: var(--cin-accent);
    margin-right: 15px;
    box-shadow: 0 0 12px var(--cin-accent-glow);
}
#nb-vshot-form-wrapper .nb-pay-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--cin-border);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
}
#nb-vshot-form-wrapper .nb-pay-desc {
    color: var(--cin-text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}
#nb-vshot-form-wrapper .nb-pay-selector {
    margin-bottom: 30px;
    text-align: left;
}

/* Тостер успеха */
.nb-vshot-success-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 176, 0, 0.95));
    color: #000;
    padding: 18px 32px;
    border-radius: 16px;
    font-family: var(--cin-font-head), sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 99999;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nb-vshot-success-toast.nb-vshot-success-visible {
    transform: translateX(-50%) translateY(0);
}

/* Адаптив */
@media (max-width: 768px) {
    #nb-vshot-form-wrapper .nb-form-header,
    #nb-vshot-form-wrapper .nb-section,
    #nb-vshot-form-wrapper .nb-footer {
        padding: 25px 20px !important;
    }
    #nb-vshot-form-wrapper .nb-cover-and-fields {
        grid-template-columns: 1fr;
        flex-direction: column-reverse;
        display: flex;
    }
    #nb-vshot-form-wrapper .nb-cover-block-side {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    #nb-vshot-form-wrapper .nb-cover-img {
        width: 100% !important;
        max-width: 200px;
        height: 200px !important;
        margin: 0 auto;
    }
    #nb-vshot-form-wrapper .nb-grid {
        grid-template-columns: 1fr;
    }
    #nb-vshot-form-wrapper .nb-credits-grid {
        grid-template-columns: 1fr;
    }
    #nb-vshot-form-wrapper .nb-isrc-upc-cards {
        grid-template-columns: 1fr;
    }
    #nb-vshot-form-wrapper .nb-footer-actions {
        flex-direction: column;
    }
    #nb-vshot-form-wrapper .nb-footer-actions .nb-btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    #nb-vshot-form-wrapper .nb-form-header h2 {
        font-size: 22px;
    }
    #nb-vshot-form-wrapper .nb-payment-screen {
        padding: 24px 16px;
        margin: 24px 16px;
    }
}

/* Hero — единый стиль с лентой / дашбордом */
@keyframes nb-vshot-hero-enter {
    0% { opacity: 0; transform: translateY(14px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes nb-vshot-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#nb-vshot-form-wrapper .nb-vshot-hero--social {
    position: relative;
    margin: 0;
    padding: 26px 24px 24px;
    border-radius: var(--cin-radius);
    border: 1px solid var(--cin-border-gold);
    background: var(--cin-card);
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 170, 0.1);
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

#nb-vshot-form-wrapper .nb-vshot-hero--social::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), transparent 42%, rgba(255, 180, 50, 0.18));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

#nb-vshot-form-wrapper .nb-vshot-hero--social.is-active,
#nb-vshot-form-wrapper .nb-vshot-hero--social.is-entering {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#nb-vshot-form-wrapper .nb-vshot-hero--social.is-entering {
    animation: nb-vshot-hero-enter 0.55s ease forwards;
}

#nb-vshot-form-wrapper .nb-vshot-hero__mesh {
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(ellipse 55% 45% at 15% 30%, rgba(255, 215, 0, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 90% 70%, rgba(200, 140, 30, 0.1) 0%, transparent 50%);
    animation: nb-vshot-gradient-shift 14s ease infinite;
    background-size: 200% 200%;
    pointer-events: none;
}

#nb-vshot-form-wrapper .nb-vshot-hero__inner {
    position: relative;
    z-index: 1;
}

#nb-vshot-form-wrapper .nb-vshot-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 224, 138, 0.92);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

#nb-vshot-form-wrapper .nb-vshot-hero__eyebrow .material-symbols-outlined {
    font-size: 16px;
}

#nb-vshot-form-wrapper .nb-vshot-hero__title {
    margin: 0 0 8px;
    font-family: var(--cin-font-head);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
}

#nb-vshot-form-wrapper .nb-vshot-hero__title span {
    background: linear-gradient(135deg, #fff4c2, #ffd54f 40%, #ffb300 75%, #ffe082);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nb-vshot-gradient-shift 6s linear infinite;
}

#nb-vshot-form-wrapper .nb-vshot-hero__desc {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 235, 190, 0.78);
}

#nb-vshot-form-wrapper .nb-vshot-hero__desc strong {
    color: rgba(255, 240, 200, 0.95);
    font-weight: 600;
}

#nb-vshot-form-wrapper .nb-vshot-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

#nb-vshot-form-wrapper .nb-vshot-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 235, 190, 0.85);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 215, 0, 0.16);
}

#nb-vshot-form-wrapper .nb-vshot-hero__chip.is-current {
    color: #1a1408;
    background: linear-gradient(135deg, #ffe37a, #ffd700 55%, #ffb000);
    border-color: rgba(255, 226, 120, 0.42);
}

#nb-vshot-form-wrapper .nb-vshot-hero__chip .material-symbols-outlined {
    font-size: 16px;
    color: var(--cin-accent);
}

#nb-vshot-form-wrapper .nb-vshot-hero__chip.is-current .material-symbols-outlined {
    color: #1a1408;
}
#nb-vshot-form-wrapper .nb-form-header--compact {
    padding: 24px 50px 18px;
}
#nb-vshot-form-wrapper .nb-form-header-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
#nb-vshot-form-wrapper .nb-vshot-tariff-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1408;
    background: linear-gradient(135deg, #FFD700, #FFB000);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.25);
}
#nb-vshot-form-wrapper .nb-vshot-tariff-badge--free {
    color: #fff;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(46, 125, 50, 0.95));
    box-shadow: 0 0 16px rgba(76, 175, 80, 0.25);
}
#nb-vshot-form-wrapper .nb-msg-compact { margin-top: 12px; }
#nb-vshot-form-wrapper .nb-vshot-submit-note {
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(255, 235, 190, 0.75);
    text-align: center;
}
/* Карточка баланса */
#nb-vshot-form-wrapper .nb-vshot-balance-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 50px 4px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid var(--cin-border-gold);
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

#nb-vshot-form-wrapper .nb-vshot-balance-card.is-active,
#nb-vshot-form-wrapper .nb-vshot-balance-card.is-entering {
    opacity: 1;
    transform: translateY(0);
}

#nb-vshot-form-wrapper .nb-vshot-balance-card__icon {
    flex-shrink: 0;
    font-size: 32px;
    color: var(--cin-accent);
    margin-top: 2px;
}

#nb-vshot-form-wrapper .nb-vshot-balance-card__label {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

#nb-vshot-form-wrapper .nb-vshot-balance-card__amount {
    margin: 0 0 6px;
    font-family: var(--cin-font-head);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #fff6b0;
}

#nb-vshot-form-wrapper .nb-vshot-balance-card__currency {
    font-size: 0.85em;
    color: rgba(255, 235, 190, 0.75);
}

#nb-vshot-form-wrapper .nb-vshot-balance-card__hint {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 768px) {
    #nb-vshot-form-wrapper .nb-vshot-hero--social {
        padding: 20px 16px 18px;
    }
    #nb-vshot-form-wrapper .nb-vshot-balance-card {
        margin: 0 20px 4px;
    }
    #nb-vshot-form-wrapper .nb-form-header--compact {
        padding: 20px 24px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #nb-vshot-form-wrapper .nb-vshot-hero--social.is-entering,
    #nb-vshot-form-wrapper .nb-vshot-hero__mesh,
    #nb-vshot-form-wrapper .nb-vshot-hero__title span {
        animation: none !important;
    }
    #nb-vshot-form-wrapper .nb-vshot-hero--social,
    #nb-vshot-form-wrapper .nb-vshot-balance-card {
        opacity: 1;
        transform: none;
    }
}

/* Videoshot-specific */
#nb-vshot-form-wrapper .nb-req-vshot { border-left-color: var(--cin-accent); }
#nb-vshot-form-wrapper .nb-vshot-or-note {
    margin: 0 0 12px;
    font-size: 12px;
    color: rgba(255, 235, 190, 0.65);
    text-align: center;
}
#nb-vshot-form-wrapper .nb-form-error {
    margin: 0 0 14px;
    font-weight: 700;
    text-align: left;
    font-size: 13px;
}
#nb-vshot-form-wrapper .nb-form-error[hidden],
#nb-vshot-form-wrapper .nb-form-error:empty {
    display: none !important;
    margin: 0;
    min-height: 0;
    padding: 0;
    border: none;
}
#nb-vshot-form-wrapper .nb-field input[type="date"].nb-vshot-date {
    color-scheme: dark;
}

#nb-vshot-form-wrapper .nb-vshot-panel-desc {
    margin: -8px 0 22px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--cin-text-muted);
}
#nb-vshot-form-wrapper .nb-section.nb-vshot-release-panel {
    padding-top: 36px;
}
#nb-vshot-form-wrapper .nb-optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--cin-text-muted);
    font-size: 11px;
}
#nb-vshot-form-wrapper .is-hidden {
    display: none !important;
}

/* Селекты релиза/трека */
#nb-vshot-form-wrapper .nb-vshot-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--cin-border) !important;
    border-radius: 10px;
    color: #fff !important;
    padding: 12px 40px 12px 14px;
    font-size: 14px;
    font-family: var(--cin-font-body);
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--cin-accent) 50%),
        linear-gradient(135deg, var(--cin-accent) 50%, transparent 50%) !important;
    background-position: calc(100% - 18px) calc(50% + 3px), calc(100% - 12px) calc(50% + 3px) !important;
    background-size: 6px 6px, 6px 6px !important;
    background-repeat: no-repeat !important;
}
#nb-vshot-form-wrapper .nb-vshot-select:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
}
#nb-vshot-form-wrapper .nb-vshot-select option:disabled {
    color: #777;
}

/* Карточка автоподставленных данных */
#nb-vshot-form-wrapper .nb-vshot-meta-card {
    display: flex;
    gap: 16px;
    align-items: stretch;
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background: rgba(0, 0, 0, 0.35);
}
#nb-vshot-form-wrapper .nb-vshot-meta-card__cover {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.06) center/cover no-repeat;
}
#nb-vshot-form-wrapper .nb-vshot-meta-card__cover:not(.has-cover) {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(145deg, rgba(255, 215, 0, 0.08), transparent 60%);
}
#nb-vshot-form-wrapper .nb-vshot-meta-card__body {
    flex: 1 1 auto;
    min-width: 0;
}
#nb-vshot-form-wrapper .nb-vshot-meta-card__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#nb-vshot-form-wrapper .nb-vshot-meta-card__artist {
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(255, 236, 180, 0.85);
}
#nb-vshot-form-wrapper .nb-vshot-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}
#nb-vshot-form-wrapper .nb-vshot-meta-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cin-text-muted);
    margin-bottom: 2px;
}
#nb-vshot-form-wrapper .nb-vshot-meta-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
}

#nb-vshot-form-wrapper .nb-vshot-steps {
    margin: 8px 0 10px 18px;
    padding: 0;
    color: rgba(255, 240, 200, 0.88);
    font-size: 13px;
    line-height: 1.5;
}
#nb-vshot-form-wrapper .nb-vshot-steps li {
    margin: 0 0 6px;
}
#nb-vshot-form-wrapper .nb-vshot-steps-note {
    margin: 10px 0 0;
    color: rgba(255, 215, 0, 0.85) !important;
    font-weight: 600;
}

@media (max-width: 640px) {
    #nb-vshot-form-wrapper .nb-vshot-meta-card {
        flex-direction: column;
    }
    #nb-vshot-form-wrapper .nb-vshot-meta-card__cover {
        width: 100%;
        height: 160px;
        flex-basis: auto;
    }
}

/* --- Паритет с формой загрузки музыки (секции-карточки, не один стеклянный ящик) --- */
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard {
    max-width: none;
    padding: 0 0 48px;
}

#nb-vshot-form-wrapper .nb-vshot-page-title {
    margin: 0 0 8px;
    font-family: var(--cin-font-head, 'Syne', 'Clash Display', sans-serif);
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

#nb-vshot-form-wrapper .nb-vshot-page-desc {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.52);
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-form-container {
    max-width: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-form-container:hover {
    border: none !important;
    box-shadow: none !important;
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-section {
    margin: 0 0 18px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 215, 120, 0.14);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(28, 20, 8, 0.92) 0%, rgba(10, 7, 3, 0.96) 100%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-section:last-of-type {
    padding-bottom: 20px;
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-section h3 {
    margin: 0 0 10px;
    font-family: var(--cin-font-head, 'Syne', 'Clash Display', sans-serif) !important;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #fff !important;
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 232, 170, 0.92);
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field input[type="text"],
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field input[type="email"],
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field input[type="url"],
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field input[type="date"],
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field select,
#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field textarea {
    min-height: 46px;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.44) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-field select {
    appearance: none !important;
    -webkit-appearance: none !important;
    padding-right: 42px !important;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.44) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%23FFD700' d='M1 1l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 14px center !important;
    background-size: auto, 14px 8px !important;
}

#nb-vshot-form-wrapper.nb-vshot-form-in-dashboard .nb-footer {
    margin-top: 4px;
    padding: 0;
    background: transparent;
    border: none;
}
