:root {
  /* Core palette */
  --bg: #050b16;
  --panel: #0b1428;
  --panel2: #0e1b36;
  --text: rgba(230, 240, 255, 0.96);
  --muted: rgba(155, 179, 214, 0.9);
  --accent: #2f7dff;
  --accent2: #6ae4ff;
  --danger: #ff4757;
  --warning: #ffc107;

  /* Surfaces */
  --border: rgba(155, 179, 214, 0.16);
  --border-strong: rgba(155, 179, 214, 0.26);
  --surface: rgba(11, 20, 40, 0.7);
  --surface2: rgba(14, 27, 54, 0.7);

  /* Shadows */
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.28);

  /* Radius + motion */
  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 160ms;

  /* Spacing scale */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 18px;
  --s-5: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(47, 125, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 70% 20%, rgba(106, 228, 255, 0.16), transparent 60%),
    radial-gradient(900px 420px at 35% 95%, rgba(47, 125, 255, 0.12), transparent 58%),
    var(--bg);
  color: var(--text);
}

/* Prevent long strings from blowing up layout */
* {
  overflow-wrap: anywhere;
}

/* Subtle entrance animation for content */
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content > * {
  animation: popIn 220ms var(--ease) both;
}

.content > *:nth-child(2) { animation-delay: 25ms; }
.content > *:nth-child(3) { animation-delay: 45ms; }
.content > *:nth-child(4) { animation-delay: 65ms; }

a {
  color: inherit;
  text-decoration: none;
}

.muted a {
  text-decoration: underline;
  text-decoration-color: rgba(155, 179, 214, 0.35);
  text-underline-offset: 3px;
}

.muted a:hover {
  text-decoration-color: rgba(47, 125, 255, 0.5);
}

.btn,
.input,
.textarea {
  max-width: 100%;
}

.btn {
  user-select: none;
}

button.btn {
  appearance: none;
}

.btn:focus-visible,
.input:focus-visible,
.textarea:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 125, 255, 0.42);
  outline-offset: 2px;
}

.app {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border-right: 1px solid rgba(155, 179, 214, 0.14);
  padding: 18px 14px;
  min-width: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  box-shadow: inset -1px 0 0 rgba(47, 125, 255, 0.08);
}

.sidebar::-webkit-scrollbar {
  width: 10px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(155, 179, 214, 0.14);
  border: 2px solid transparent;
  background-clip: content-box;
  border-radius: 999px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(155, 179, 214, 0.22);
  border: 2px solid transparent;
  background-clip: content-box;
}

.brand {
  padding: 12px 12px 16px;
  border-bottom: 1px solid rgba(155, 179, 214, 0.14);
  margin-bottom: 14px;
}

.brand::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  margin-bottom: 10px;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(106, 228, 255, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(47, 125, 255, 1), rgba(32, 94, 210, 1));
  box-shadow: 0 14px 28px rgba(47, 125, 255, 0.18);
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-section {
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-group {
  padding: 6px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nav-disclosure {
  padding: 6px;
}

.nav-disclosure > summary {
  list-style: none;
}

.nav-disclosure > summary::-webkit-details-marker {
  display: none;
}

.nav-parent {
  position: relative;
}

.nav-parent::after {
  content: "▸";
  margin-left: auto;
  opacity: 0.7;
  transform: rotate(0deg);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-disclosure[open] .nav-parent::after {
  transform: rotate(90deg);
  opacity: 0.95;
}

.nav-label {
  flex: 1;
  min-width: 0;
}

.nav-group:hover {
  background: rgba(14, 27, 54, 0.35);
  border-color: rgba(155, 179, 214, 0.12);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(230, 240, 255, 0.92);
  border: 1px solid transparent;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.nav-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(155, 179, 214, 0.28);
  box-shadow: 0 0 0 6px rgba(47, 125, 255, 0.0);
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.nav-item:hover {
  background: rgba(47, 125, 255, 0.1);
  border-color: rgba(47, 125, 255, 0.18);
  transform: translateY(-1px);
}

.nav-item:hover::before {
  background: rgba(47, 125, 255, 0.8);
  box-shadow: 0 0 0 6px rgba(47, 125, 255, 0.08);
}

.nav-item.is-active {
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(106, 228, 255, 0.22), transparent 55%),
    rgba(47, 125, 255, 0.12);
  border-color: rgba(47, 125, 255, 0.35);
  box-shadow: 0 10px 22px rgba(47, 125, 255, 0.12);
}

.nav-item.is-active::before {
  background: rgba(106, 228, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(106, 228, 255, 0.09);
}

.nav-child {
  padding-left: 24px;
  font-size: 14px;
  opacity: 0.95;
}

.nav-child::before {
  width: 8px;
  height: 8px;
  background: rgba(155, 179, 214, 0.22);
}

.nav-children {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0 0 18px;
}

.main {
  padding: 18px 22px;
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(14, 27, 54, 0.74), rgba(11, 20, 40, 0.52));
  border: 1px solid rgba(155, 179, 214, 0.18);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-left {
  font-weight: 700;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.user-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 179, 214, 0.18);
  background: rgba(14, 27, 54, 0.65);
}

.user-name {
  font-size: 13px;
  color: rgba(230, 240, 255, 0.92);
}

.content {
  padding: 18px 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.page-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.page-title i {
  color: rgba(106, 228, 255, 0.9);
}

.page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.divider {
  height: 1px;
  background: rgba(155, 179, 214, 0.14);
  margin: 12px 0 0;
}

.kpi-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.kpi {
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(155, 179, 214, 0.14);
  background: rgba(14, 27, 54, 0.5);
}

.kpi-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.kpi-value {
  font-size: 22px;
  font-weight: 900;
  margin-top: 6px;
}

.kpi-sub {
  margin-top: 6px;
  color: rgba(155, 179, 214, 0.85);
  font-size: 13px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 179, 214, 0.16);
  background: rgba(14, 27, 54, 0.45);
  color: rgba(230, 240, 255, 0.92);
}

.chip i {
  color: rgba(47, 125, 255, 0.9);
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: rgba(5, 11, 22, 0.95);
  background: rgba(106, 228, 255, 0.95);
  border: 1px solid rgba(47, 125, 255, 0.35);
  box-shadow: 0 10px 18px rgba(106, 228, 255, 0.14);
}

.card {
  background:
    linear-gradient(180deg, rgba(14, 27, 54, 0.62), rgba(11, 20, 40, 0.68));
  border: 1px solid rgba(155, 179, 214, 0.16);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  backdrop-filter: blur(10px);
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.card:hover {
  border-color: rgba(47, 125, 255, 0.22);
  box-shadow: var(--shadow);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title i {
  color: rgba(47, 125, 255, 0.9);
}

.card-title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}

.card-subtitle {
  color: var(--muted);
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 650;
  line-height: 1;
  transition:
    transform var(--dur) var(--ease),
    filter var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.btn-primary {
  background:
    radial-gradient(120% 180% at 20% 0%, rgba(106, 228, 255, 0.42), transparent 60%),
    linear-gradient(180deg, rgba(47, 125, 255, 1), rgba(32, 94, 210, 1));
  color: white;
  border-color: rgba(47, 125, 255, 0.4);
  box-shadow: 0 10px 22px rgba(47, 125, 255, 0.18);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(14, 27, 54, 0.55);
  color: rgba(230, 240, 255, 0.92);
  border-color: rgba(155, 179, 214, 0.16);
}

.btn-ghost:hover {
  background: rgba(14, 27, 54, 0.9);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(155, 179, 214, 0.16);
}

.alert-error {
  background: rgba(255, 71, 87, 0.12);
  border-color: rgba(255, 71, 87, 0.24);
}

.alert-info {
  background: rgba(47, 125, 255, 0.12);
  border-color: rgba(47, 125, 255, 0.2);
}

/* Toasts (flash messages) */
.toast-container {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(420px, calc(100vw - 36px));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: start;
  padding: 12px 12px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(155, 179, 214, 0.16);
  background:
    radial-gradient(120% 160% at 20% 0%, rgba(106, 228, 255, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(14, 27, 54, 0.76), rgba(11, 20, 40, 0.76));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transform: translateY(-6px);
  opacity: 0;
  animation: toastIn 220ms var(--ease) forwards;
}

@keyframes toastIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast.is-hiding {
  animation: toastOut 180ms var(--ease) forwards;
}

@keyframes toastOut {
  to {
    transform: translateY(-6px);
    opacity: 0;
  }
}

.toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155, 179, 214, 0.16);
  background: rgba(14, 27, 54, 0.55);
}

.toast-icon i {
  font-size: 14px;
}

.toast-title {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.toast-text {
  margin-top: 4px;
  color: rgba(230, 240, 255, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.toast-close {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(155, 179, 214, 0.14);
  background: rgba(14, 27, 54, 0.35);
  color: rgba(230, 240, 255, 0.85);
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
  padding: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.toast-close:hover {
  background: rgba(14, 27, 54, 0.7);
  transform: translateY(-1px);
}

.toast:hover {
  box-shadow: var(--shadow);
}

.toast-error {
  border-color: rgba(255, 71, 87, 0.22);
}

.toast-error .toast-icon {
  border-color: rgba(255, 71, 87, 0.22);
  background: rgba(255, 71, 87, 0.08);
}

.toast-error .toast-icon i {
  color: rgba(255, 71, 87, 0.95);
}

.toast-info {
  border-color: rgba(47, 125, 255, 0.22);
}

.toast-info .toast-icon {
  border-color: rgba(47, 125, 255, 0.22);
  background: rgba(47, 125, 255, 0.08);
}

.toast-info .toast-icon i {
  color: rgba(106, 228, 255, 0.95);
}

.toast-body {
  min-width: 0;
}

.center {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.label {
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
  color: rgba(230, 240, 255, 0.92);
  font-weight: 650;
  font-size: 13px;
}

.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(155, 179, 214, 0.18);
  background: rgba(14, 27, 54, 0.62);
  color: var(--text);
  outline: none;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.input[type="file"] {
  padding: 9px 12px;
}

.input:focus {
  border-color: rgba(47, 125, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 125, 255, 0.16);
  background: rgba(14, 27, 54, 0.72);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(230, 240, 255, 0.92);
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(155, 179, 214, 0.18);
  background: rgba(14, 27, 54, 0.62);
  color: var(--text);
  outline: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.35;
  resize: vertical;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.textarea:focus {
  border-color: rgba(47, 125, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 125, 255, 0.16);
  background: rgba(14, 27, 54, 0.72);
}

.doc {
  line-height: 1.6;
}

.doc img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.doc p {
  margin: 10px 0;
}

.doc ul,
.doc ol {
  padding-left: 22px;
}

.doc h1,
.doc h2,
.doc h3 {
  margin: 18px 0 10px;
}

.doc pre {
  overflow: auto;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(5, 11, 22, 0.6);
}

.doc code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.threads {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thread-row {
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(155, 179, 214, 0.16);
  background: rgba(14, 27, 54, 0.52);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.thread-row:hover {
  border-color: rgba(47, 125, 255, 0.22);
  transform: translateY(-1px);
}

.thread-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.thread-meta {
  font-size: 12px;
}

.pill {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(47, 125, 255, 0.25);
  background: rgba(47, 125, 255, 0.12);
  color: rgba(230, 240, 255, 0.92);
}

.pill-warn {
  border-color: rgba(255, 193, 7, 0.28);
  background: rgba(255, 193, 7, 0.14);
}

.posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.post {
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(155, 179, 214, 0.16);
  background: rgba(14, 27, 54, 0.52);
}

.post-reply {
  margin-left: 18px;
  border-left: 3px solid rgba(47, 125, 255, 0.35);
}

.post-meta {
  margin-bottom: 10px;
}

.post-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

details > summary.btn {
  list-style: none;
}

.post-actions details summary.btn {
  cursor: pointer;
}

.post-actions details summary::-webkit-details-marker {
  display: none;
}

.table {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
}

.tr {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr 0.9fr 1.2fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(155, 179, 214, 0.14);
  background: rgba(14, 27, 54, 0.5);
  min-width: 760px;
}

.th {
  background: rgba(14, 27, 54, 0.75);
  font-weight: 800;
}

/* Spreadsheet-style tables (opt-in via .sheet on .table) */
.table.sheet {
  gap: 0;
  border-radius: var(--r-md);
  border: 1px solid rgba(155, 179, 214, 0.18);
  background: rgba(11, 20, 40, 0.55);
  overflow: auto;
}

.table.sheet .tr {
  gap: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  min-width: var(--sheet-min-width, 860px);
}

.table.sheet .tr.th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(11, 20, 40, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(155, 179, 214, 0.18);
}

.table.sheet .tr > div {
  padding: 10px 12px;
  border-right: 1px solid rgba(155, 179, 214, 0.16);
  border-bottom: 1px solid rgba(155, 179, 214, 0.14);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table.sheet .tr > div:last-child {
  border-right: none;
}

.table.sheet .sheet-body .sheet-row:nth-child(even) {
  background: rgba(14, 27, 54, 0.34);
}

.table.sheet .sheet-body .sheet-row:hover {
  background: rgba(47, 125, 255, 0.08);
}

.table.sheet .sheet-cell--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0;
}

.table.sheet .sheet-cell--actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

/* Roster-specific column sizing (more spreadsheet-like) */
.table.sheet-roster .tr {
  grid-template-columns: 2.2fr 1.2fr 0.9fr 1.1fr 1fr 1.2fr;
}

@media (max-width: 900px) {
  .app {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .main {
    padding: 14px 14px;
  }
  .content {
    padding: 14px 0;
  }
  .tr {
    min-width: 720px;
  }
  .table.sheet .tr {
    min-width: var(--sheet-min-width, 860px);
  }
}


