/* ============================================================
   HHPoker - 德扑圈 Landing Page
   Design: Dark Elegant / Slate Theme with Indigo Accents
   ============================================================ */

/* --- Base & Reset --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0f172a; /* slate-900 */
  color: #e2e8f0; /* slate-200 */
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Selection --- */
::selection {
  background-color: #4F46E5;
  color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1e293b;
}
::-webkit-scrollbar-thumb {
  background: #4F46E5;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}

/* ============================================================
   NAVBAR - Glassmorphism
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-glass {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(79, 70, 229, 0.15);
}

.navbar-scrolled {
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar-logo .logo-icon {
  color: #4F46E5;
  font-size: 1.8rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #fff;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4F46E5;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  background: #4F46E5;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.navbar-cta:hover {
  background: #6366f1;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.navbar-cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #0f172a 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  color: #a5b4fc;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
  color: #4F46E5;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #4F46E5, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4F46E5, #6366f1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
  animation: floatUpDown 4s ease-in-out infinite;
}

.hero-image-wrap img {
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(79, 70, 229, 0.3), 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.hero-glow {
  position: absolute;
  inset: -10px;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(99, 102, 241, 0.1));
  filter: blur(40px);
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  color: #818cf8;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background-color: #0f172a;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(79, 70, 229, 0.1), transparent);
  pointer-events: none;
}

.feature-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(79, 70, 229, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: #818cf8;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #4F46E5, #6366f1);
  color: #fff;
  box-shadow: 0 0 25px rgba(79, 70, 229, 0.5);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234F46E5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #4F46E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: 1.5rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 1.05rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(79, 70, 229, 0.3), transparent);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background-color: #0f172a;
}

.testimonial-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(79, 70, 229, 0.4);
}

.testimonial-author h4 {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-author span {
  color: #64748b;
  font-size: 0.8rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.25);
}

.faq-item.active {
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 0 30px rgba(79, 70, 229, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  gap: 1rem;
}

.faq-item.active .faq-question {
  color: #a5b4fc;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.15);
  border-radius: 50%;
  color: #818cf8;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.faq-item.active .faq-icon {
  background: #4F46E5;
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.25);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-glow-1,
.cta-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.2);
  top: -50px;
  left: -50px;
}

.cta-glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(99, 102, 241, 0.15);
  bottom: -50px;
  right: -50px;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-inner p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0f1a;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #818cf8;
}

.footer-contact p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: #4F46E5;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #475569;
  font-size: 0.85rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #0f172a 100%);
  text-align: center;
}

.about-content {
  padding: 4rem 0;
}

.about-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 1.25rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.about-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-card p {
  color: #94a3b8;
  line-height: 1.8;
}

.about-value {
  text-align: center;
  padding: 2rem;
}

.about-value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 1.25rem;
  margin: 0 auto 1.25rem;
  color: #818cf8;
  font-size: 1.75rem;
}

.about-value h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-value p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #0f172a 100%);
  text-align: center;
}

.contact-content {
  padding: 4rem 0;
}

.contact-info-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 0.75rem;
  color: #818cf8;
  font-size: 1.25rem;
}

.contact-info-card h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.contact-form-card h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-section {
    text-align: center;
    padding-top: 100px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrap {
    margin-top: 3rem;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-divider {
    display: none;
  }

  .footer-col {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    gap: 1.5rem;
    border-left: 1px solid rgba(79, 70, 229, 0.15);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-inner {
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
  }
}
