/* ============================================================
   animelog — style.css
   ============================================================ */
:root {
  --bg: #0b0d12;
  --bg-2: #11141c;
  --bg-3: #171b25;
  --bg-4: #1d2230;
  --fg: #f5f5f7;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --accent: #ff4d8f;
  --accent-2: #7c5cff;
  --green: #10b981;
  --blue: #3b82f6;
  --yellow: #fbbf24;
  --red: #ef4444;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 77, 143, 0.4);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  --gradient: linear-gradient(90deg, var(--accent), var(--accent-2));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 500px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(124, 92, 255, .2), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 77, 143, .15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 13, 18, .7);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  flex-shrink: 0;
  text-decoration: none;
}
.search-bar {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s;
}
.search-bar input:focus { outline: none; border-color: var(--accent); }
.search-bar input::-webkit-search-cancel-button { -webkit-appearance: none; }
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}
nav { display: flex; gap: 16px; align-items: center; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--fg); }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 40px; text-align: center; }
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.badge .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ---------- Sections ---------- */
section.list-section { margin: 40px 0 60px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.section-header .count { color: var(--muted); font-size: 14px; }

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-2);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow-x: auto;
  margin-bottom: 20px;
}
.tab {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: transparent;
  font-family: inherit;
  transition: color .15s, background .15s;
}
.tab:hover { color: var(--fg); }
.tab.active { background: var(--bg-4); color: var(--fg); }
.tab .badge-count {
  display: inline-block;
  padding: 1px 6px;
  margin-left: 6px;
  font-size: 11px;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: var(--muted);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.stat-card .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.stat-card .value { font-size: 22px; font-weight: 700; }
.stat-card .sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}
.card-image {
  aspect-ratio: 2 / 3;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-image .score {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
}
.card-image .status-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.card-image .rating-overlay {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0, 0, 0, .75);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.status-watching { background: var(--blue); }
.status-completed { background: var(--green); }
.status-planned { background: var(--accent); }
.card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta { font-size: 12px; color: var(--muted); }
.card-progress {
  margin-top: 4px;
  height: 3px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}
.card-progress .bar { height: 100%; background: var(--blue); }

/* ---------- Loading / empty / error ---------- */
.loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.skeleton {
  aspect-ratio: 2 / 3;
  background: linear-gradient(90deg, var(--bg-2), var(--bg-3), var(--bg-2));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.empty h3 { color: var(--fg); font-size: 18px; margin-bottom: 8px; }
.empty p { margin-bottom: 16px; }
.error {
  padding: 20px;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--fg);
  transition: border-color .15s, transform .15s, box-shadow .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { border-color: var(--border-hover); }
.btn.primary { background: var(--gradient); border: none; color: #fff; }
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 92, 255, .35);
}
.btn.danger { color: #fca5a5; }
.btn.danger:hover {
  border-color: rgba(239, 68, 68, .4);
  background: rgba(239, 68, 68, .1);
}
.btn.small { padding: 6px 10px; font-size: 12px; }

/* ---------- Detail modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-banner {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  position: relative;
}
.modal-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--bg-2));
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: rgba(0, 0, 0, .9); }
.modal-body {
  padding: 24px 32px 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
.modal-cover {
  aspect-ratio: 2 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.modal-info h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.modal-info .sub-title { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  padding: 4px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}
.chip.score { color: var(--yellow); border-color: rgba(251, 191, 36, .3); }
.modal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.stat { background: var(--bg-3); padding: 10px 12px; border-radius: var(--radius-sm); }
.stat .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat .value { font-size: 15px; font-weight: 600; margin-top: 2px; }
.modal-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-height: 180px;
  overflow-y: auto;
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

/* ---------- Log panel ---------- */
.log-panel {
  background: linear-gradient(180deg, rgba(124, 92, 255, .08), rgba(255, 77, 143, .04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 16px;
}
.log-panel h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-buttons { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.status-btn {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--fg);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.status-btn:hover { border-color: var(--border-hover); }
.status-btn.active.watching { background: var(--blue); border-color: var(--blue); color: #fff; }
.status-btn.active.completed { background: var(--green); border-color: var(--green); color: #fff; }
.status-btn.active.planned { background: var(--accent); border-color: var(--accent); color: #fff; }

.log-field { margin-bottom: 14px; }
.log-field label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rating { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.star {
  font-size: 22px;
  cursor: pointer;
  color: var(--bg-4);
  transition: color .1s;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.star.on { color: var(--yellow); }
.star:hover { color: var(--yellow); opacity: .8; }
.rating-value {
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.progress-input { display: flex; gap: 8px; align-items: center; }
.progress-input input {
  width: 70px;
  padding: 6px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-size: 14px;
  text-align: center;
  font-family: inherit;
}
.progress-input input:focus { outline: none; border-color: var(--accent); }
.progress-input .slash { color: var(--muted); }

.notes-textarea {
  width: 100%;
  min-height: 70px;
  padding: 10px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}
.notes-textarea:focus { outline: none; border-color: var(--accent); }

.save-indicator { font-size: 12px; color: var(--muted); margin-left: auto; font-weight: 400; }
.save-indicator.saved { color: var(--green); }

/* ---------- User area / profile ---------- */
.user-area { display: flex; align-items: center; gap: 12px; }
.auth-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  transition: border-color .15s, transform .15s, box-shadow .15s;
  font-family: inherit;
}
.auth-btn:hover { border-color: var(--border-hover); }
.auth-btn.accent { background: var(--gradient); border: none; color: #fff; }
.auth-btn.accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124, 92, 255, .3);
}
.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  transition: border-color .15s;
  font-family: inherit;
}
.user-chip:hover { border-color: var(--border-hover); }
.avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 60;
}
.user-menu.open { display: block; }
.user-menu a, .user-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  font-family: inherit;
}
.user-menu a:hover, .user-menu button:hover { background: var(--bg-3); }
.user-menu .sep { height: 1px; background: var(--border); margin: 4px 0; }
.user-menu .logout-btn { color: #fca5a5; }

/* ---------- Profile modal ---------- */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-overlay.open { display: flex; }
.auth-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  animation: slideUp .3s ease;
  position: relative;
}
.auth-card h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.profile-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.profile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s;
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.profile-item:hover { border-color: var(--border-hover); }
.profile-item .since { margin-left: auto; font-size: 11px; color: var(--muted-2); font-weight: 400; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  font-size: 12px;
  margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-field { margin-bottom: 16px; }
.auth-field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.auth-field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s;
}
.auth-field input:focus { outline: none; border-color: var(--accent); }
.auth-submit {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  color: #fff;
  background: var(--gradient);
  margin-top: 4px;
  transition: transform .15s, box-shadow .15s;
  font-family: inherit;
}
.auth-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(124, 92, 255, .35); }
.auth-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.auth-error {
  padding: 10px 14px;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.auth-error.show { display: block; }
.auth-note {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-top: 16px;
  padding: 10px 12px;
  background: var(--bg-3);
  border-radius: 8px;
}
.auth-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-close:hover { background: var(--bg-4); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 60px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .grid, .loading { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
  .card-title { font-size: 13px; }
  .hero { padding: 40px 0 20px; }
  .modal-body {
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding: 16px 20px 24px;
  }
  .modal-cover { max-width: 160px; margin: 0 auto; }
  nav { display: none; }
  .user-area .auth-btn { padding: 6px 12px; font-size: 12px; }
  .user-chip { font-size: 12px; padding: 4px 10px; }
  .user-chip .avatar { width: 20px; height: 20px; font-size: 10px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card .value { font-size: 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
