@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Nunito:ital,wght@0,700;0,800;0,900;1,700&display=swap');

/* ============================
   CSS 变量 & Reset
   ============================ */
:root {
  --blue: #3bb1ff;
  --red: #ff5252;
  --black: #000000;
  --white: #ffffff;
  --cream: #fffdf5;
  --grid-bg: #f5f8ff;
  --border: 3px solid #000;
  --shadow: 5px 5px 0 #000;
  --shadow-sm: 3px 3px 0 #000;
  --shadow-blue: 5px 5px 0 #3bb1ff;
  --shadow-red: 5px 5px 0 #ff5252;
  --radius: 18px;
  --radius-sm: 10px;
  --font-main: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Nunito', 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --nav-h: 56px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.7;
  background-color: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

ul, menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

hr {
  border: none;
  border-top: 3px solid var(--black);
  margin: 12px 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
}

/* ============================
   方块网格底纹
   ============================ */
.site-wrapper {
  min-height: 100vh;
  position: relative;
}

.site-wrapper::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,177,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,177,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.site-wrapper > * {
  position: relative;
  z-index: 1;
}

/* ============================
   Header & Navigation
   ============================ */
.site-header {
  background: var(--white);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-brand-row {
  background: var(--black);
  padding: 10px 24px;
  display: flex;
  align-items: center;
}

.brand-link,
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.brand-logo-img {
  border-radius: 8px;
  border: 2px solid var(--blue);
}

.header-nav-row {
  background: var(--blue);
  border-top: var(--border);
  padding: 0 24px;
}

.main-nav {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Desktop nav */
.nav-menu-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.nav-menu-desktop li a {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--black);
  background: transparent;
  border-right: 2px solid transparent;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-menu-desktop li a:hover {
  background: var(--black);
  color: var(--blue);
  text-decoration: none;
}

/* Mobile nav - details/summary */
.nav-details {
  display: none;
}

.nav-summary {
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--black);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-summary::after {
  content: '▾';
  font-size: 1.1rem;
}

.nav-details[open] .nav-summary::after {
  content: '▴';
}

.nav-details .nav-menu {
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 200;
  padding: 8px 0;
}

.nav-details .nav-menu li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--black);
  border-bottom: 2px solid #f0f0f0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-details .nav-menu li a:hover {
  background: var(--blue);
  text-decoration: none;
}

.nav-details .nav-menu li:last-child a {
  border-bottom: none;
}

/* ============================
   Hero (Home)
   ============================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,177,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,177,255,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(59,177,255,0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 80px;
  width: 100%;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta,
.neu-btn-hero {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px 36px;
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
  text-decoration: none;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
}

.hero-cta:hover,
.neu-btn-hero:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
  text-decoration: none;
}

/* ============================
   Layout: Content + Aside
   ============================ */
.content-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px;
}

.content-wrapper.with-aside {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* ============================
   Aside
   ============================ */
.site-aside {
  position: sticky;
  top: 120px;
}

.aside-inner {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
  padding: 20px;
}

.aside-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.aside-title-tags {
  margin-top: 20px;
}

.aside-links li {
  margin-bottom: 4px;
}

.aside-links li a {
  display: block;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.15s;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.aside-links li a:hover {
  background: var(--blue);
  border-color: var(--black);
  text-decoration: none;
}

.aside-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.aside-notice {
  margin-top: 16px;
  padding: 12px;
  background: #fff8f0;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.aside-notice p {
  margin-bottom: 8px;
}

/* ============================
   Main & Article
   ============================ */
.site-main {
  min-width: 0;
}

.page-article {
  width: 100%;
}

.page-section {
  margin-bottom: 48px;
}

.page-h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 8px;
}

.page-date,
.article-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-label {
  font-weight: 700;
}

.meta-sep {
  color: #999;
}

/* ============================
   Neubrutalism Cards
   ============================ */
.neu-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.neu-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.neu-card-flat {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: background 0.15s;
}

.neu-card-flat:hover {
  background: var(--blue);
  text-decoration: none;
}

.card-img-wrap {
  overflow: hidden;
  max-height: 200px;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 900;
}

.card-title a:hover {
  color: var(--red);
  text-decoration: none;
}

.card-desc {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ============================
   Neu Buttons
   ============================ */
.neu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
}

.neu-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
  text-decoration: none;
}

.neu-btn.btn-alt {
  background: var(--red);
  color: var(--white);
}

.neu-btn-sm {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0 var(--blue);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
  text-decoration: none;
  min-height: 40px;
}

.neu-btn-sm:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--blue);
  text-decoration: none;
}

.card-btn {
  margin-top: auto;
}

/* ============================
   Home Specific
   ============================ */
.home-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px;
}

.home-content-body {
  max-width: 800px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.article-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.article-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.article-item-meta {
  margin-bottom: 6px;
}

.item-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
}

.article-item-title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.article-item-title a:hover {
  color: var(--blue);
  text-decoration: none;
}

.article-item-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.see-more-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   Topic Specific
   ============================ */
.topic-child-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.topic-child-card .card-body {
  display: flex;
  flex-direction: column;
}

/* Table */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.topic-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.92rem;
}

.topic-table thead {
  background: var(--black);
  color: var(--white);
}

.topic-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  white-space: nowrap;
}

.topic-table tbody tr {
  border-bottom: 2px solid #e0e0e0;
  transition: background 0.15s;
}

.topic-table tbody tr:hover {
  background: #f0f8ff;
}

.topic-table td {
  padding: 12px 16px;
  vertical-align: top;
}

.tbl-title-cell a {
  font-weight: 700;
  color: var(--black);
}

.tbl-title-cell a:hover {
  color: var(--blue);
  text-decoration: none;
}

.tbl-desc-cell {
  color: #555;
  font-size: 0.88rem;
}

.tbl-date-cell {
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
}

/* ============================
   Article Specific
   ============================ */
.breadcrumb {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.bc-sep {
  color: #999;
  font-size: 1rem;
}

.article-hero-wrap {
  margin-top: 20px;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.article-body-content {
  max-width: 780px;
}

.article-body-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 8px;
}

.article-body-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 8px;
}

.article-body-content p {
  margin-bottom: 16px;
}

.article-body-content ul,
.article-body-content ol {
  margin: 0 0 16px 24px;
}

.article-body-content li {
  margin-bottom: 6px;
}

.article-body-content a {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 2px solid var(--blue);
}

.article-body-content a:hover {
  color: var(--red);
  border-color: var(--red);
  text-decoration: none;
}

.article-body-content blockquote {
  border-left: 5px solid var(--blue);
  background: #f0f8ff;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

.related-title {
  font-size: 0.95rem;
  font-weight: 900;
}

.related-title a:hover {
  color: var(--blue);
  text-decoration: none;
}

.related-desc {
  font-size: 0.85rem;
  color: #555;
}

/* ============================
   Tag Specific
   ============================ */
.tag-eyebrow,
.about-eyebrow,
.privacy-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 4px 12px;
  border: 2px solid var(--black);
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-intro-desc {
  font-size: 1rem;
  color: #555;
  margin-top: 8px;
  max-width: 600px;
}

.tag-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.tag-article-card .card-body {
  display: flex;
  flex-direction: column;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.1s, box-shadow 0.1s, background 0.1s;
  text-decoration: none;
  min-height: 36px;
}

.tag-chip:hover {
  background: var(--red);
  color: var(--white);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
}

/* ============================
   About Specific
   ============================ */
.about-content-body {
  max-width: 780px;
}

.about-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.about-explore-card {
  display: block;
  padding: 24px 20px;
  text-decoration: none;
}

.about-explore-card:hover {
  text-decoration: none;
}

.explore-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.explore-card-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.about-link-item {
  display: flex;
  align-items: center;
  min-height: 40px;
}

/* ============================
   Privacy Specific
   ============================ */
.privacy-content-body {
  max-width: 780px;
}

.privacy-content-body h2 {
  font-size: 1.4rem;
  margin: 28px 0 8px;
}

.privacy-content-body h3 {
  font-size: 1.1rem;
  margin: 20px 0 8px;
}

.privacy-content-body p {
  margin-bottom: 14px;
}

.privacy-content-body ul {
  margin: 0 0 14px 24px;
}

.privacy-content-body li {
  margin-bottom: 6px;
}

.privacy-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.privacy-link-card {
  flex: 1;
  min-width: 180px;
  font-weight: 700;
  text-align: center;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: var(--border);
  padding: 40px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 40px;
  max-width: 100%;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-link .brand-logo-text {
  color: var(--blue);
  font-size: 1.1rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 320px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.footer-nav a:hover {
  color: var(--blue);
  text-decoration: none;
}

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================
   Parallax / Scroll Animations
   ============================ */
@media (prefers-reduced-motion: no-preference) {
  .neu-card,
  .article-item,
  .related-card {
    animation: fadeSlideUp 0.4s ease both;
  }

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

  .home-hero {
    animation: heroPan 18s ease-in-out infinite alternate;
  }

  @keyframes heroPan {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
  }
}

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

/* ============================
   Responsive
   ============================ */
@media (max-width: 900px) {
  .content-wrapper.with-aside {
    grid-template-columns: 1fr;
  }

  .site-aside {
    position: static;
    order: 2;
  }

  .site-main {
    order: 1;
  }

  .footer-nav {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .nav-menu-desktop {
    display: none;
  }

  .nav-details {
    display: block;
    position: relative;
  }

  .hero-h1 {
    font-size: 1.9rem;
  }

  .hero-content {
    padding: 60px 16px 60px;
  }

  .topic-grid,
  .topic-child-grid,
  .tag-article-grid,
  .articles-list,
  .related-grid,
  .about-explore-grid {
    grid-template-columns: 1fr;
  }

  .content-wrapper {
    padding: 24px 16px;
  }

  .home-main {
    padding: 24px 16px;
  }

  .page-h1 {
    font-size: 1.55rem;
  }

  .section-heading {
    font-size: 1.2rem;
  }

  .see-more-wrap {
    flex-direction: column;
  }

  .see-more-wrap .neu-btn {
    width: 100%;
    justify-content: center;
  }

  .privacy-links-list {
    flex-direction: column;
  }

  .privacy-link-card {
    min-width: unset;
    width: 100%;
  }

  .table-scroll-wrap {
    margin: 0 -16px;
    padding: 0 16px;
  }
}

@media (max-width: 375px) {
  body {
    font-size: 16px;
  }

  .header-brand-row {
    padding: 8px 12px;
  }

  .header-nav-row {
    padding: 0 12px;
  }
}
