@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@700&family=Montserrat:wght@300;400;500;700&display=swap');

:root {
  /* Màu sắc trong suốt */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --text-light: #fff389;
  --text-white: #ffffff;
  --accent-glow: rgba(251, 251, 214, 0.3);

  /* Thêm màu pastel mới */
  --pastel-blue: #a8d8ea;
  --pastel-green: #c1e1c1;
  --pastel-yellow: #fce484;
  --pastel-text: #535353;

  /* Font */
  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "Montserrat", sans-serif;

  /* Kích thước */
  --border-radius: 24px;
  --container-padding: 20px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: url("../assets/background.webp") no-repeat center top fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-family: var(--font-heading);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

/* Hiệu ứng nền trong suốt tổng thể */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(124, 119, 223, 0.05) 0%,
    rgba(130, 163, 250, 0.03) 50%,
    rgba(158, 182, 255, 0.02) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

/* Nút quay lại - Trong suốt hoàn toàn */
.back-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-btn i {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Department Header */
.department-header {
  width: 100%;
  padding: 60px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.department-title img {
  width: 600px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

/* Tabs Section - Trong suốt tinh tế */
.tabs-section {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}

.tabs-container {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tab-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent
  );
  transition: left 0.6s;
}

.tab-btn:hover::before {
  left: 100%;
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 4px 15px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Content Section */
.content-section {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* About Me Content - Glass morphism */
.content-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
}

/* About Me Content - Glass morphism */
.content-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
}

.content-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7; /* Đã giảm */
  color: var(--pastel-text); /* Đã đổi màu */
  text-align: justify;
  position: relative;
  z-index: 1;
}

.content-text h1 {
  font-size: 2rem;
  color: var(--pastel-blue);
  margin: 0 0 25px 0;
  text-align: center;
  background: none;
  -webkit-text-fill-color: initial;
  /* Stroke dày - nhiều layer */
  text-shadow: 
    /* Layer 1 - viền chính */
    2px 2px 0 rgba(255, 255, 255, 0.9),
    -2px -2px 0 rgba(255, 255, 255, 0.9),
    2px -2px 0 rgba(255, 255, 255, 0.9),
    -2px 2px 0 rgba(255, 255, 255, 0.9),
    /* Layer 2 - làm dày thêm */
    1px 1px 0 rgba(255, 255, 255, 0.8),
    -1px -1px 0 rgba(255, 255, 255, 0.8),
    1px -1px 0 rgba(255, 255, 255, 0.8),
    -1px 1px 0 rgba(255, 255, 255, 0.8),
    /* Layer 3 - làm dày thêm */
    0px 2px 0 rgba(255, 255, 255, 0.7),
    0px -2px 0 rgba(255, 255, 255, 0.7),
    2px 0px 0 rgba(255, 255, 255, 0.7),
    -2px 0px 0 rgba(255, 255, 255, 0.7),
    /* Hiệu ứng glow */
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
}

.content-text h2 {
  font-size: 1.6rem;
  color: var(--pastel-green);
  margin: 30px 0 18px 0;
  /* Stroke vừa */
  text-shadow: 
    /* Layer 1 - viền chính */
    1.5px 1.5px 0 rgba(255, 255, 255, 0.8),
    -1.5px -1.5px 0 rgba(255, 255, 255, 0.8),
    1.5px -1.5px 0 rgba(255, 255, 255, 0.8),
    -1.5px 1.5px 0 rgba(255, 255, 255, 0.8),
    /* Layer 2 - làm dày thêm */
    0px 1.5px 0 rgba(255, 255, 255, 0.7),
    0px -1.5px 0 rgba(255, 255, 255, 0.7),
    1.5px 0px 0 rgba(255, 255, 255, 0.7),
    -1.5px 0px 0 rgba(255, 255, 255, 0.7),
    /* Hiệu ứng glow */
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.15);
}

.content-text h3 {
  font-size: 1.3rem;
  color: var(--pastel-yellow);
  margin: 25px 0 15px 0;
  /* Stroke nhẹ */
  text-shadow: 
    /* Layer 1 - viền chính */
    1px 1px 0 rgba(255, 255, 255, 0.7),
    -1px -1px 0 rgba(255, 255, 255, 0.7),
    1px -1px 0 rgba(255, 255, 255, 0.7),
    -1px 1px 0 rgba(255, 255, 255, 0.7),
    /* Layer 2 - làm dày thêm */
    0px 1px 0 rgba(255, 255, 255, 0.6),
    0px -1px 0 rgba(255, 255, 255, 0.6),
    1px 0px 0 rgba(255, 255, 255, 0.6),
    -1px 0px 0 rgba(255, 255, 255, 0.6),
    /* Hiệu ứng glow */
    0 0 8px rgba(255, 255, 255, 0.2),
    0 0 15px rgba(255, 255, 255, 0.1);
}

.content-text p {
  margin-bottom: 18px;
  opacity: 0.95;
  line-height: 1.7; /* Đã giảm */
  color: var(--pastel-text); /* Màu pastel nhạt */
}

.content-text ul, 
.content-text ol {
  margin: 15px 0 15px 30px;
}

.content-text li {
  margin-bottom: 8px;
  opacity: 0.9;
  line-height: 1.7; /* Đã giảm */
  color: var(--pastel-text); /* Đồng bộ màu */
}

/* Members Content */
.members-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.member-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.05), 
    transparent
  );
  transition: left 0.6s;
}

.member-card:hover::before {
  left: 100%;
}

.member-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.member-card:hover .member-image {
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.member-card:hover .member-image img {
  transform: scale(1.1);
}

.member-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 12px; /* Tăng margin dưới */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3; /* Thêm line-height */
}

.member-info p {
  font-family: var(--font-body);
  color: var(--text-white);
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.5; /* Thêm line-height */
}

/* CTA Section - Trong suốt tinh tế */
.cta-section {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.cta-container {
  text-align: center;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
}

.cta-container h2 {
  font-size: 2rem;
  color: var(--pastel-blue);
  margin: 0 0 25px 0;
  text-align: center;
  background: none;
  -webkit-text-fill-color: initial;
  /* Stroke dày - nhiều layer */
  text-shadow: 
    /* Layer 1 - viền chính */
    2px 2px 0 rgba(255, 255, 255, 0.9),
    -2px -2px 0 rgba(255, 255, 255, 0.9),
    2px -2px 0 rgba(255, 255, 255, 0.9),
    -2px 2px 0 rgba(255, 255, 255, 0.9),
    /* Layer 2 - làm dày thêm */
    1px 1px 0 rgba(255, 255, 255, 0.8),
    -1px -1px 0 rgba(255, 255, 255, 0.8),
    1px -1px 0 rgba(255, 255, 255, 0.8),
    -1px 1px 0 rgba(255, 255, 255, 0.8),
    /* Layer 3 - làm dày thêm */
    0px 2px 0 rgba(255, 255, 255, 0.7),
    0px -2px 0 rgba(255, 255, 255, 0.7),
    2px 0px 0 rgba(255, 255, 255, 0.7),
    -2px 0px 0 rgba(255, 255, 255, 0.7),
    /* Hiệu ứng glow */
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-container p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #535353;
  margin-bottom: 30px; /* Tăng margin dưới */
  opacity: 0.9;
}

.apply-btn-department {
  display: inline-block;
  padding: 16px 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px;
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px; /* Thêm letter-spacing */
}

.apply-btn-department::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  transition: left 0.6s;
}

.apply-btn-department:hover::before {
  left: 100%;
}

.apply-btn-department:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 15px 35px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Footer - Trong suốt */
.footer {
  position: relative;
  width: 100%;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 60px 20px 25px;
  margin-top: 60px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(124, 119, 223, 0.15) 0%,
    rgba(130, 163, 250, 0.1) 60%,
    rgba(158, 182, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 100px;
}

.footer-col:first-child {
  flex: 0 0 350px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #fbfbd6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3; /* Thêm line-height */
}

.footer p,
.footer a {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6; /* Tăng line-height */
  opacity: 0.9;
}

.footer .person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0;
}

.footer .person svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #c1e6ff;
  opacity: 0.8;
  margin-top: 2px;
}

.footer .person .text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.5; /* Tăng line-height */
}

.footer .person .label {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff9aa;
  line-height: 1.4; /* Tăng line-height */
  opacity: 0.9;
}

.footer .person .name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4; /* Tăng line-height */
}

.footer .person a {
  color: #f0f0f0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6; /* Tăng line-height */
  transition: opacity 0.3s;
}

.footer .person a:hover {
  opacity: 0.8;
}

.bct-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bct-row .person {
  display: flex;
  align-items: center;
  gap: 8px;
}

.person-with-phone {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-info-separate {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 44px;
  padding-left: 0;
}

.phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  opacity: 0.8;
}

.phone {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5; /* Thêm line-height */
}

.person-with-phone .person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.person-with-phone .text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.5; /* Tăng line-height */
  margin: 0;
}

.person-with-phone .person svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  font-size: 1.5rem;
  margin-right: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.social-links a:hover {
  color: #fbfbd6;
  transform: translateY(-3px);
  opacity: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  font-size: 0.9rem;
  color: #e6e6e6;
  opacity: 0.8;
  line-height: 1.6; /* Thêm line-height */
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .back-btn {
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .department-title img {
    max-width: 85%;
  }

  .tabs-container {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .content-box {
    padding: 30px 25px;
  }

  .content-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .content-text h1 {
    font-size: 1.9rem;
  }

  .content-text h2 {
    font-size: 1.6rem;
  }

  .content-text h3 {
    font-size: 1.3rem;
  }

  .members-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .cta-container {
    padding: 40px 30px;
  }

  .cta-container h2 {
    font-size: 2rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col:first-child {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .department-title img {
    max-width: 80%;
  }

  .content-box {
    padding: 25px 20px;
  }

  .content-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .content-text h1 {
    font-size: 1.7rem;
  }

  .content-text h2 {
    font-size: 1.4rem;
  }

  .content-text h3 {
    font-size: 1.2rem;
  }

  .members-container {
    grid-template-columns: 1fr;
  }

  .member-card {
    padding: 20px;
  }

  .cta-container {
    padding: 30px 20px;
  }

  .cta-container h2 {
    font-size: 1.8rem;
  }

  .apply-btn-department {
    padding: 14px 35px;
    font-size: 1.1rem;
  }
}

/* Hiệu ứng scroll mượt mà */
html {
  scroll-behavior: smooth;
}

/* Tối ưu hiệu suất */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}