/* Font stack relies on local system fonts primarily */

:root {
    --bg-color: #202020;
    /* Dark Mica-like base */
    --surface-color: #2c2c2c;
    /* Card background */
    --surface-hover: #353535;
    --border-color: #3b3b3b;
    /* Subtle border */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #60cdff;
    /* Windows 11 Blue */
    --font-family: 'Segoe UI Variable', 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Logo Watermark */
.background-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Stacked and left aligned like header */
    line-height: 0.85;
    opacity: 0.03;
    /* Extremely subtle */
    user-select: none;
}

.watermark-line {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.watermark-up {
    font-size: clamp(150px, 25vw, 400px);
    /* Massive responsive size */
    font-weight: 700;
}

.watermark-down {
    font-size: clamp(120px, 24vw, 320px);
    font-weight: 300;
}

/* Header - Acrylic Style */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(32, 32, 32, 0.7);
    backdrop-filter: blur(20px) saturate(125%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0;
}

.header-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area img {
    height: 40px;
    /* Slightly larger to match stacked text */
    width: auto;
}

.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 0.9;
    align-items: flex-start;
}

.brand-line {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.brand-up {
    font-size: 1.6rem;
    font-weight: 600;
    /* Bold/Semibold for name */
    color: var(--text-primary);
}

.brand-down {
    font-size: 1.5rem;
    font-weight: 300;
    /* Lighter for suffix */
    color: var(--text-secondary);
}

.search-container input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Bottom border mainly for Fluent inputs usually */
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    /* Fluent style hint */
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    width: 280px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.search-container input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    /* Lighter on focus */
    border-bottom-color: var(--accent-color);
}

/* Container */
.container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

/* Typography */
.display-1 {
    font-size: 3.5rem;
    font-weight: 600;
    /* Semibold display */
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobile default */
    gap: 16px;
}

@media (min-width: 600px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Strictly 4 as requested */
    }
}

/* Fluent Card */
.fluent-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
    display: flex;
    flex-direction: row;
    cursor: pointer;
    /* Change cursor to hand */
    /* Horizontal */
    overflow: hidden;
    position: relative;
    height: 80px;
    /* Reduced height for list/horizontal view */
    align-items: center;
}

.fluent-card:hover {
    background-color: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.fluent-card:active {
    transform: scale(0.99);
}

.card-icon-area {
    height: 100%;
    width: 6px;
    /* Color strip on the left */
    min-width: 6px;
    /* Gradient handled by JS or default here */
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    position: relative;
}

/* Add a gloss shine to icon area */
.card-icon-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-body {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: none;
    flex: 1;
    background: transparent;
    /* Remove solid background so hover effect works on whole card */
}

.fluent-card:hover .card-body {
    background: transparent;
}

.project-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .search-container input {
        width: 100%;
    }

    .display-1 {
        font-size: 2.5rem;
    }
}

/* Drag and Drop Styling */
.fluent-card.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.fluent-card.over {
    border: 2px dashed #0078d4;
    transition: all 0.2s;
}

/* Edit Button on Card */
.card-icon-area {
    position: relative;
    /* Context for absolute button */
    /* Width increased slightly to accommodate button if needed, but absolute positioning handles it */
    min-width: 25px;
    /* Increase width to make button clickable easily */
    width: 25px;
}

.edit-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    /* Darker for better visibility */
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 10px;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.fluent-card:hover .edit-btn {
    display: flex;
}

.edit-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: black;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #2c2c2c;
    /* Match Surface Color */
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #3b3b3b;
    color: #fff;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    /* Increased from 0.9rem */
    color: #ccc;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 12px 14px;
    /* Increased padding */
    background: #353535;
    border: 1px solid #444;
    border-radius: 6px;
    font-family: inherit;
    color: white;
    font-size: 1.1rem;
    /* Larger text */
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23CCCCCC%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 12px auto;
    appearance: none;
}

.gradient-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
    /* Space for focus rings */
}

.gradient-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    /* Removed border to fix square artifact */
    transition: transform 0.2s, box-shadow 0.2s;
}

.gradient-option.selected {
    transform: scale(1.1);
    /* Ring effect: 2px gap (bg color) + 2px white ring */
    box-shadow: 0 0 0 2px #2c2c2c, 0 0 0 4px white;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 2rem;
}

.modal-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

#modal-cancel {
    background: #3a3a3a;
    color: #fff;
}

#modal-cancel:hover {
    background: #444;
}

#modal-save {
    background: var(--accent-color);
    color: #000;
    font-weight: 600;
}

#modal-save:hover {
    filter: brightness(1.1);
}

.btn-danger {
    background: #e53935 !important;
    color: #fff !important;
    font-weight: 500;
}

.btn-danger:hover {
    background: #c62828 !important;
}

.shortcut-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-right: 6px;
    opacity: 0.85;
    vertical-align: middle;
}

.shortcut-url-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
    opacity: 0.75;
}

/* --- Salvavidas Custom CSS --- */
.btn-salvavidas {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-salvavidas:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.btn-salvavidas:active {
    transform: translateY(0);
}

.salvavidas-modal-content {
    max-width: 500px !important;
}

.modal-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.folders-checklist {
    background: #353535;
    border: 1px solid #444;
    border-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    margin-top: 5px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background 0.15s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checklist-item input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
}

.checklist-item label {
    cursor: pointer;
    user-select: none;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: normal;
}

#salvavidas-cancel {
    background: #3a3a3a;
    color: #fff;
}

#salvavidas-cancel:hover {
    background: #444;
}

#salvavidas-save {
    background: var(--accent-color);
    color: #000;
    font-weight: 600;
}

#salvavidas-save:hover {
    filter: brightness(1.1);
}

.btn-run-backup {
    background: #0078d4;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-run-backup:hover {
    background: #0086f0;
}

.btn-run-backup:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
}

.salvavidas-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    max-height: 150px;
    overflow-y: auto;
}

.salvavidas-status.running {
    background: rgba(0, 120, 212, 0.1);
    border: 1px solid rgba(0, 120, 212, 0.3);
    color: #9cd7ff;
}

.salvavidas-status.success {
    background: rgba(16, 124, 16, 0.1);
    border: 1px solid rgba(16, 124, 16, 0.3);
    color: #a2f2a2;
}

.salvavidas-status.error {
    background: rgba(168, 0, 0, 0.1);
    border: 1px solid rgba(168, 0, 0, 0.3);
    color: #ffb3b3;
}

.salvavidas-status .log-output {
    font-family: Consolas, monospace;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    margin-top: 8px;
    border-radius: 4px;
    white-space: pre-wrap;
    max-height: 100px;
    overflow-y: auto;
}

/* --- Tabs and Backups Manager --- */
.salvavidas-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.salvavidas-modal-header h3 {
    margin: 0 !important;
}

.modal-tabs {
    display: flex;
    gap: 8px;
}

.modal-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.modal-tab.active {
    color: var(--accent-color);
    background: rgba(96, 205, 255, 0.1);
    border-bottom: 2px solid var(--accent-color);
}

.backups-list-container {
    background: #353535;
    border: 1px solid #444;
    border-radius: 6px;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 10px;
}

.backups-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.backups-table th, 
.backups-table td {
    padding: 10px 12px;
    text-align: left;
}

.backups-table th {
    background: #2d2d2d;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.backups-table tbody tr {
    border-bottom: 1px solid #444;
    transition: background 0.15s ease;
}

.backups-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.backup-file-name {
    font-family: Consolas, monospace;
    font-size: 0.8rem;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-delete-backup {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-delete-backup:hover {
    background: rgba(255, 0, 0, 0.15);
}

.btn-secondary-action {
    background: #3a3a3a;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-secondary-action:hover {
    background: #444;
}

/* =========================================
   SCREENSAVER STYLE
   ========================================= */
.screensaver-btn {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.screensaver-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.screensaver-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.screensaver-btn:hover svg {
    opacity: 1;
}

.screensaver-btn:active {
    transform: scale(0.95);
}

.screensaver-btn.active {
    background-color: white;
    border-color: white;
    color: black;
    transform: scale(1.2);
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.5);
}

#screensaver {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: none;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#screensaver.active {
    display: block;
    opacity: 1;
}

.saver-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.saver-slide.visible {
    opacity: 1;
}

.saver-img-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background-color: #000;
}

.saver-slide.dual {
    gap: 4px;
    background-color: #000;
}

.saver-slide.dual .saver-img-wrapper {
    width: 50%;
}

.saver-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.saver-overlay {
    position: absolute;
    top: 40px;
    right: 60px;
    text-align: right;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 2010;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.saver-time {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 200;
}

.saver-date {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
}

.saver-weather {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ddd;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

#transition-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2005;
}

.saver-slide.slide-enter {
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.saver-slide.slide-exit {
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1.2s ease;
}

.saver-slide.blur-exit {
    transition: filter 1.5s ease-in, opacity 1.5s ease-in;
}

/* =========================================
   CUSTOM PWA SPLASH SCREEN STYLE
   ========================================= */
#pwa-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000 url('black-leather.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pwa-splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#pwa-splash-screen .splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#pwa-splash-screen.bg-loaded .splash-content {
    opacity: 1;
    animation: splashFadeIn 1s ease-out forwards;
}

#pwa-splash-screen .splash-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(186, 139, 2, 0.6));
    animation: logoPulse 2s infinite ease-in-out;
}

#pwa-splash-screen .splash-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.95;
}

#pwa-splash-screen .splash-brand-up {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#pwa-splash-screen .splash-brand-down {
    font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: var(--text-secondary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(186, 139, 2, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px rgba(186, 139, 2, 0.9));
    }
}