* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f0f17;
    --bg-card: #1a1a24;
    --bg-hover: #252534;
    --accent: #ff4655;
    --accent-hover: #ff6675;
    --text: #ffffff;
    --text-muted: #888899;
    --border: #2a2a3a;
    --success: #00ff88;
    --warning: #ffaa00;
    --timeline-bg: #14141f;
    --timeline-track: #1f1f2e;
    --timeline-cursor: #00d9ff;
    --panel-bg: #16161f;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow: hidden;
    line-height: 1.5;
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* Layout Grid Professional */
.editor-layout {
    display: grid !important;
    height: 100vh;
    width: 100vw;
    grid-template-rows: 60px calc(100vh - 60px - var(--timeline-height, 200px) - 50px) var(--timeline-height, 200px) 50px;
    grid-template-columns: 280px 1fr 320px;
    grid-template-areas:
        "header header header"
        "sidebar viewport panel"
        "timeline timeline timeline"
        "footer footer footer";
    gap: 0;
    overflow: hidden;
    position: relative;
}

/* Header */
.header {
    grid-area: header;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    position: sticky;
    top: 0;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    width: 100%;
    overflow: visible;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4655 0%, #ff8866 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-name {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-header {
    padding: 8px 16px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-header:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.btn-header.primary {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-header.primary:hover {
    background: var(--accent-hover);
}

/* Sidebar - Animation Library */
.sidebar {
    grid-area: sidebar;
    background: var(--panel-bg);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.animation-list {
    flex: 1;
    padding: 12px;
}

.anim-item {
    padding: 12px;
    margin-bottom: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.anim-item:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    transform: translateX(4px);
}

.anim-item.active {
    background: var(--accent);
    border-color: var(--accent);
}

.anim-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.anim-info {
    flex: 1;
}

.anim-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.anim-duration {
    font-size: 11px;
    color: var(--text-muted);
}

.anim-add {
    opacity: 0;
    transition: opacity 0.2s;
    background: none;
    border: none;
    color: var(--success);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
}

.anim-item:hover .anim-add {
    opacity: 1;
}

/* Viewport 3D */
.viewport-container {
    grid-area: viewport;
    position: relative;
    background: linear-gradient(135deg, #0a0a12 0%, #14141f 100%);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.viewport {
    width: 100%;
    height: 100%;
    flex: 1;
}

.viewport-toolbar {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    background: rgba(26, 26, 36, 0.95);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.viewport-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.viewport-btn:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.viewport-btn.active {
    background: var(--accent);
    border-color: var(--accent);
}

.viewport-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    margin: 0 4px;
}

/* Formatos de Viewport */
.viewport-container.format-16x9 .viewport,
.viewport-container.format-9x16 .viewport,
.viewport-container.format-1x1 .viewport {
    box-shadow: 0 0 0 2px var(--accent), 0 8px 32px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    margin: auto;
}

/* Label para mostrar formato ativo */
.viewport-container.format-16x9::after {
    content: '16:9 - YouTube/Horizontal';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 70, 85, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: formatLabelFade 3s ease forwards;
}

.viewport-container.format-9x16::after {
    content: '9:16 - Stories/Vertical';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 70, 85, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: formatLabelFade 3s ease forwards;
}

.viewport-container.format-1x1::after {
    content: '1:1 - Instagram/Quadrado';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 70, 85, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: formatLabelFade 3s ease forwards;
}

@keyframes formatLabelFade {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    70% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

.viewport-stats {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 26, 36, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-muted);
}

.stat-value {
    color: var(--success);
    font-weight: 600;
}

/* Fullscreen Controls */
.fullscreen-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    left: auto;
    transform: none;
    display: none;
    align-items: center;
    gap: 16px;
    background: rgba(26, 26, 36, 0.95);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.viewport-container:fullscreen .fullscreen-controls {
    display: flex;
}

.fs-btn {
    width: 48px;
    height: 48px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05);
}

.fs-btn:active {
    transform: scale(0.95);
}

.fs-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    margin: 0 8px;
}

.fs-speed {
    font-size: 18px;
    font-weight: 600;
    color: var(--success);
    min-width: 60px;
    text-align: center;
    font-family: 'Monaco', 'Courier New', monospace;
}

/* Control Panel */
.control-panel {
    grid-area: panel;
    background: var(--panel-bg);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.panel-section {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.panel-section h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.control-group {
    margin-bottom: 16px;
}

.control-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.control-value {
    color: var(--accent);
    font-weight: 600;
}

.slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--timeline-track);
    border-radius: 2px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-card);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.checkbox-group:hover {
    background: var(--bg-hover);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-group label {
    cursor: pointer;
    font-size: 13px;
    user-select: none;
}

/* Timeline */
.timeline-container {
    grid-area: timeline;
    background: var(--timeline-bg);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 150px;
    max-height: 500px;
}

.timeline-resize-handle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    cursor: ns-resize;
    background: transparent;
    z-index: 100;
    transition: background 0.2s;
}

.timeline-resize-handle:hover,
.timeline-resize-handle.resizing {
    background: var(--accent);
}

.timeline-resize-handle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.timeline-shortcuts {
    position: relative;
    display: flex;
    gap: 12px;
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.2s;
    margin: 0 auto;
}

.timeline-shortcuts:hover {
    opacity: 1;
}

.shortcut-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.shortcut-key {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-controls {
    display: flex;
    gap: 8px;
}

.timeline-btn {
    width: 32px;
    height: 32px;
    background: var(--timeline-track);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.timeline-btn:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.timeline-btn.play {
    background: var(--accent);
    border-color: var(--accent);
    width: 48px;
}

.timeline-info {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--text-muted);
}

.timeline-tracks {
    flex: 1;
    padding: 16px;
    overflow-x: auto;
    overflow-y: auto;
}

.track {
    margin-bottom: 16px;
    min-height: 80px;
    background: var(--timeline-track);
    border-radius: 8px;
    border: 2px solid var(--border);
    position: relative;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.track:hover {
    border-color: var(--accent);
    background: rgba(31, 31, 46, 0.8);
}

/* Cores diferentes por track */
.track#track1 {
    border-left: 4px solid #ff4655;
}

.track#track2 {
    border-left: 4px solid #00d9ff;
}

.track#track3 {
    border-left: 4px solid #00ff88;
}

/* Estado de drag over */
.track.drag-over {
    background: rgba(255, 70, 85, 0.1);
    border-color: var(--accent);
    border-style: dashed;
    transform: scale(1.02);
    cursor: copy;
}

.track-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 80px;
    text-align: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Labels coloridos */
#track1 .track-label {
    color: #ff4655;
    border-color: rgba(255, 70, 85, 0.3);
}

#track2 .track-label {
    color: #00d9ff;
    border-color: rgba(0, 217, 255, 0.3);
}

#track3 .track-label {
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.track-content {
    position: relative;
    flex: 1;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    min-width: 200px;
}

.track-content:empty::after {
    content: 'Arraste animações aqui ou use botão direito no +';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-size: 11px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.6;
}

/* Indicador de drag over no track-content */
.track.drag-over .track-content {
    background: rgba(255, 70, 85, 0.2);
    border-color: var(--accent);
    border-style: solid;
    border-width: 2px;
}

.track.drag-over .track-content::after {
    content: '⬇ Solte aqui';
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    opacity: 1;
}

.clip {
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 6px;
    cursor: move;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.1s, box-shadow 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.clip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 70, 85, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.clip-name {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.clip-time {
    font-size: 10px;
    opacity: 0.8;
    margin-top: 2px;
}

.clip-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8px;
    background: rgba(255, 255, 255, 0.3);
    cursor: ew-resize;
}

.clip-handle.left {
    left: 0;
    border-radius: 4px 0 0 4px;
}

.clip-handle.right {
    right: 0;
    border-radius: 0 4px 4px 0;
}

/* Trim Handles (cortar início/fim da animação) */
.clip-trim-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 217, 255, 0.6);
    cursor: col-resize;
    z-index: 3;
    transition: background 0.2s;
}

.clip-trim-handle:hover {
    background: rgba(0, 217, 255, 1);
    width: 6px;
}

.clip-trim-handle.trim-start {
    left: 0;
    border-radius: 4px 0 0 4px;
}

.clip-trim-handle.trim-end {
    right: 0;
    border-radius: 0 4px 4px 0;
}

/* Overlays para áreas trimadas (visualmente cinza) */
.trim-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7) 4px,
        rgba(0, 0, 0, 0.5) 4px,
        rgba(0, 0, 0, 0.5) 8px
    );
    pointer-events: none;
    z-index: 1;
    border-left: 2px solid rgba(0, 217, 255, 0.3);
    border-right: 2px solid rgba(0, 217, 255, 0.3);
}

.trim-start-overlay {
    left: 0;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.trim-end-overlay {
    right: 0;
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.timeline-cursor {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--timeline-cursor);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 10px var(--timeline-cursor);
}

.timeline-cursor::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -6px;
    width: 14px;
    height: 14px;
    background: var(--timeline-cursor);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--timeline-cursor);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bg-hover);
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1000;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* Model Parts List */
.model-parts-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 5px;
}

.model-parts-list::-webkit-scrollbar {
    width: 8px;
}

.model-parts-list::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 4px;
}

.model-parts-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.model-parts-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Footer */
.footer {
    grid-area: footer;
    background: var(--bg-card);
    padding: 12px 0;
    border-top: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    height: 50px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.footer-container {
    text-align: center;
    padding: 0 24px;
}

.footer-made-by {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

.footer-made-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-made-link:hover {
    color: var(--accent-hover);
}

/* Trim Tooltip */
.trim-tooltip {
    position: fixed;
    background: rgba(20, 20, 31, 0.98);
    border: 2px solid #00d9ff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 12px;
    color: var(--text);
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 217, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: tooltipFadeIn 0.2s ease;
}

.trim-tooltip > div {
    margin: 2px 0;
    white-space: nowrap;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de copiar clip */
@keyframes clipCopy {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 217, 255, 0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    }
}

/* Melhorar handles de trim com hover */
.clip-trim-handle:hover {
    background: rgba(0, 217, 255, 1);
    width: 6px;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* Cursor personalizado durante trim */
.clip-trim-handle {
    cursor: col-resize;
}

/* Visual de feedback ao segurar handle */
.clip-trim-handle:active {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Indicador de trim ativo no clip */
.trim-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0, 217, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: trimPulse 2s ease-in-out infinite;
}

@keyframes trimPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

