/* ==========================================================================
   CARPRIME BANNER PRO - EXACT REPLICA STYLESHEET WITH DRAG & TRANSFORM CONTROLS
   ========================================================================== */

:root {
    --bg-sidebar: #0f172a;
    --card-bg: #1e293b;
    --border-color: #334155;
    --accent-cyan: #38bdf8;
    --btn-primary: #0284c7;
    --btn-primary-hover: #0369a1;
    --highlight-yellow: #facc15;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #090d16;
    color: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

.app-layout {
    display: flex;
    min-height: 100vh;
}

/* --------------------------------------------------------------------------
   SIDEBAR EDITOR CONTROLS
   -------------------------------------------------------------------------- */
.sidebar {
    width: 440px;
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    max-height: 100vh;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.sidebar-header .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.brand-badge {
    background: linear-gradient(135deg, #0284c7, #2563eb);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.sidebar-header h1 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.sidebar-header h1 span {
    color: var(--accent-cyan);
}

.sidebar-header p {
    font-size: 12px;
    color: #94a3b8;
}

/* Live Monitor Box (Escuta de Localização Exata) */
.live-monitor-box {
    background: #061329;
    border: 1px solid #0284c7;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 0 15px rgba(2, 132, 199, 0.2);
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.monitor-icon {
    width: 16px;
    height: 16px;
}

.monitor-coords {
    font-family: monospace;
    font-size: 12px;
    color: #e2e8f0;
    line-height: 1.5;
}

.monitor-coords strong {
    color: #facc15;
}

.monitor-coords span {
    color: #38bdf8;
    font-weight: 700;
}

/* ==========================================================================
   WIZARD STEP-BY-STEP STYLES
   ========================================================================== */
.wizard-progress {
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wizard-step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-badge {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

.wizard-step-info h2 {
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
}

.progress-bar-track {
    width: 100%;
    height: 6px;
    background-color: #1e293b;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.step-card-panel {
    display: none !important;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
}

.step-card-panel.active {
    display: flex !important;
    animation: fadeIn 0.2s ease-out;
}

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

.btn-icon-sm {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-header-back {
    display: none;
}

.btn-wizard-next, .btn-wizard-prev {
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-new-post {
    width: 100%;
    min-height: 48px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-new-post:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

.final-step-box {
    text-align: center;
    padding: 20px 10px;
    background: #0f1e36;
    border: 1px solid #0284c7;
    border-radius: 10px;
}

.success-icon-badge {
    font-size: 36px;
    margin-bottom: 8px;
}

.final-step-box h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
}

.final-step-box p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.btn-lg-download {
    min-height: 52px;
    font-size: 15px;
}

/* Form Styling */
.editor-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-row {
    display: flex;
    gap: 10px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

label {
    font-size: 11px;
    font-weight: 600;
    color: #cbd5e1;
}

input[type="text"], input[type="number"] {
    width: 100%;
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 10px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

input[type="range"] {
    width: 100%;
    accent-color: #0284c7;
    cursor: pointer;
}

input:focus {
    border-color: #0284c7;
}

.upload-box {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    background: #0f172a;
    cursor: pointer;
}

.upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.upload-icon {
    width: 22px;
    height: 22px;
    stroke: var(--accent-cyan);
}

.upload-content span {
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
}

.upload-content small {
    font-size: 10px;
    color: #64748b;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #cbd5e1;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #334155;
    color: #fff;
}

.btn-secondary.btn-active {
    background: #0284c7;
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.5);
}

.car-transform-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #0284c7, #2563eb);
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
    background: #0369a1;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* --------------------------------------------------------------------------
   PREVIEW STAGE & CANVAS
   -------------------------------------------------------------------------- */
.preview-stage {
    flex: 1;
    background: #060911;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    overflow-y: auto;
}

.stage-header {
    width: 100%;
    max-width: 720px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stage-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
}

.badge-ratio {
    background: #1e293b;
    border: 1px solid #334155;
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.banner-wrapper {
    position: relative;
    width: calc(681px * var(--banner-scale, 1));
    height: calc(1024px * var(--banner-scale, 1));
    margin: 0 auto;
}

/* CANVAS REPLICA BASE */
.banner-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 681px;
    height: 1024px;
    transform: scale(var(--banner-scale, 1));
    transform-origin: top left;
    background: url('assets/bg_ia.png') center/cover no-repeat;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    user-select: none;
}

/* --------------------------------------------------------------------------
   DRAGGABLE & TRANSFORMABLE LAYER ELEMENTS
   -------------------------------------------------------------------------- */
.drag-element {
    position: absolute;
    cursor: move;
    user-select: none;
    touch-action: none;
    border: 1px transparent dashed;
    padding: 2px 4px;
    border-radius: 4px;
    transform-origin: center center;
    transition: outline 0.1s;
}

.drag-element:hover {
    outline: 1px dashed rgba(56, 189, 248, 0.6);
}

.drag-element.active {
    outline: 2px solid #38bdf8 !important;
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
    z-index: 50 !important;
}

/* Specific Layer Typography */

/* 1. Specs Subtitle */
.layer-specs {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-zen {
    background: #091733;
    color: #38bdf8;
    border: 1px solid #1d4ed8;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 15px;
}

/* 2. Car Title */
.layer-title h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 82px;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 0.85;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.layer-title { z-index: 11; }

/* 3. Year */
.layer-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 12;
}

/* 4. FIPE Price */
.layer-fipe {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    z-index: 13;
    display: inline-block;
}

.layer-fipe .strike-line {
    position: absolute;
    top: 52%;
    left: -14px;
    width: calc(100% + 28px);
    height: 6px;
    background: #040c1e;
    transform: rotate(-8deg);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

/* 5. Discount Price */
.layer-discount {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    z-index: 14;
}

.currency-cyan {
    color: #0099ff;
    font-weight: 900;
}

/* 6. Preço CARPRIME */
.layer-carprime {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 115px;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 0.85;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    z-index: 15;
}

/* 7. Car Photo Layer */
.layer-car-photo {
    z-index: 20;
}

.car-img-target {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.car-shadow-base {
    position: absolute;
    bottom: 5px;
    left: 5%;
    width: 90%;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(6px);
}

/* ==========================================================================
   AI BACKGROUND REMOVER STYLES
   ========================================================================== */
.ai-bg-remover-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.btn-ai-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.btn-ai-bg:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #c026d3 100%);
}

.btn-ai-bg:active {
    transform: translateY(0);
}

.btn-ai-bg:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon-sparkle {
    width: 18px;
    height: 18px;
    color: #fef08a;
    animation: pulseSparkle 2s infinite ease-in-out;
}

@keyframes pulseSparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

/* ==========================================================================
   BG REMOVAL ASSISTANT MODAL STYLES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.25s ease-out;
}

.modal-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.modal-card {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #1e293b;
    background-color: #0b1120;
}

.modal-badge {
    background: #0284c7;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: inline-block;
}

.modal-title h3 {
    font-size: 17px;
    font-weight: 800;
    color: #f8fafc;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    color: #ffffff;
    background-color: #1e293b;
}

.modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-card {
    display: flex;
    gap: 16px;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.step-content h4 {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.4;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-erase {
    background-color: #0369a1;
    color: #ffffff;
}

.btn-erase:hover {
    background-color: #0284c7;
    transform: translateY(-1px);
}

.btn-photoroom {
    background-color: #7c3aed;
    color: #ffffff;
}

.btn-photoroom:hover {
    background-color: #8b5cf6;
    transform: translateY(-1px);
}

.btn-removebg {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    padding: 12px 16px;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.btn-removebg:hover {
    background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.5);
}

.modal-dropzone {
    position: relative;
    border: 2px dashed #6366f1;
    background-color: rgba(99, 102, 241, 0.08);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.modal-dropzone:hover {
    background-color: rgba(99, 102, 241, 0.16);
    border-color: #8b5cf6;
}

.modal-dropzone input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.modal-dropzone svg {
    width: 28px;
    height: 28px;
    color: #a78bfa;
}

.modal-dropzone span {
    font-size: 12px;
    font-weight: 600;
    color: #c4b5fd;
}

.preview-stage.hidden-step-stage {
    display: none !important;
}

/* ==========================================================================
   RESPONSIVE MOBILE STYLES (MOBILE-FIRST FULLSCREEN WIZARD)
   ========================================================================== */
@media (max-width: 900px) {
    .app-layout {
        flex-direction: column;
        min-height: 100vh;
        width: 100vw;
        overflow-x: hidden;
    }

    /* Etapas 1, 2 e 3: Formulário ocupa 100% da largura e altura do celular */
    .sidebar {
        width: 100vw;
        min-height: 100vh;
        max-height: none;
        border: none;
        padding: 16px;
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

    .editor-form {
        display: flex;
        flex-direction: column;
        flex: 1;
        width: 100%;
    }

    .step-card-panel {
        display: none !important;
        width: 100%;
        border-radius: 14px;
        padding: 20px 14px;
        flex: 1;
        justify-content: space-between;
    }

    .step-card-panel.active {
        display: flex !important;
    }

    .step-photo-centered.active {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }

    .step-photo-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 18px;
        flex: 1;
        margin: auto 0;
    }

    .editor-form input {
        min-height: 48px;
        font-size: 15px;
    }

    .desktop-only {
        display: none !important;
    }

    /* Ocultar sliders de ajuste manual no mobile */
    .car-transform-controls .form-row:first-child,
    #resetCarBtn {
        display: none;
    }

    .wizard-actions {
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
    }

    /* Etapa 3: Encarte em Tela Cheia no Smartphone */
    body[data-step="3"] {
        overflow: hidden;
    }

    body[data-step="3"] .sidebar-header,
    body[data-step="3"] .wizard-progress {
        display: none !important;
    }

    body[data-step="3"] .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: auto;
        min-height: 0;
        padding: 8px 10px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(16px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
        z-index: 999;
        margin: 0;
    }

    body[data-step="3"] .editor-form {
        gap: 0;
    }

    body[data-step="3"] .step-card-panel[data-step="3"] {
        padding: 0;
        background: transparent;
        border: none;
    }

    body[data-step="3"] .mobile-dock-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        width: 100%;
    }

    .btn-dock-icon {
        flex: 1;
        min-height: 44px;
        padding: 4px 6px;
        background-color: #1e293b;
        color: #f8fafc;
        border: 1px solid #334155;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
    }

    .btn-dock-primary {
        flex: 2.2;
        min-height: 44px;
        font-size: 12px;
        font-weight: 800;
        border-radius: 8px;
        padding: 4px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
    }

    .btn-dock-secondary {
        flex: 1.5;
        min-height: 44px;
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
    }

    /* Botão de Voltar Discreto no Topo na Etapa 3 no Mobile */
    body[data-step="3"] .btn-header-back {
        position: fixed;
        top: 12px;
        left: 12px;
        z-index: 1001;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        background: rgba(15, 23, 42, 0.88);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;
        color: #f8fafc;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
        transition: all 0.2s ease;
    }

    body[data-step="3"] .btn-header-back:active {
        transform: scale(0.95);
    }

    /* Tela de Pré-visualização na Etapa 3 no Mobile */
    body[data-step="3"] .preview-stage {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: calc(100vh - 62px);
        z-index: 100;
        background-color: #060911;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    body[data-step="3"] .preview-stage .stage-header {
        display: none !important;
    }

    body[data-step="3"] .banner-wrapper {
        width: calc(681px * var(--banner-scale, 0.45));
        height: calc(1024px * var(--banner-scale, 0.45));
        position: relative;
        flex-shrink: 0;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
        margin: 0 auto;
    }
}
