:root {
  --bg-dark: #111827;
  --bg-darker: #0e0f0f;
  --bg-light: #374151;
  --text: #e5e7eb;
  --muted: #dedfe1;
  --accent: #2d9ea4;
  --accent-3:#32c0ff;       /* primary accent */
  --accent-2:#7af6c6; 
  --accent-hover: #3b82f6;
  --highlight: #93c5fd;
  --warning: #facc15;
  --danger: #f87171;
}
main {
  max-width: 950px;   
  margin: 0 auto; 
  padding: 3rem .8rem; 
}
html, body {
  height: 100%;
  margin: 0;
}
a {
 color: #3fdbff;
}
.center {
 text-align: center;
}
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: var(--text);
    margin-top: 30px;
  }

  details {
    border: 1px solid var(--bg-light);
    border-radius: 8px;
    padding: 15px;    
    margin-bottom: 10px;
    background-color: var(--bg-darker);
    transition: background-color 0.3s ease;
  }

  details:hover {
    background-color: var(--bg-dark);
  }

  summary {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    list-style: none; /* remove default marker */
  }

  /* Plus/minus icon */
  summary::before {
    content: "+";
    position: absolute;
    left: 0;
    font-size: 18px;
    color: var(--accent-3);
    transition: transform 0.3s ease;
  }

  details[open] summary::before {
    content: "-";
  }

  /* FAQ answer */
  details p {
    margin-top: 10px;
    line-height: 1.5;
    color: var(--muted);
    transition: all 0.3s ease;
  }

  /* Optional: smooth expand/collapse */
  details[open] p {
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
.site-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.fancy-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: none;
}

.fancy-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 100%, var(--accent) 0%, transparent 80%);
  opacity: 0.6;
}

.fancy-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100%%' height='100%%' viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39,56.44C180.52,75.88,56.08,98.63,0,120V0H1200V120C1076.9,93.78,928.64,60.27,769.55,48.72,600.32,36.45,427.29,43.26,321.39,56.44Z' fill='%23ffde5a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

h2:not(.footer-title, .blog-title, .blog-subtitle, .portal-plan, .blog-heading, .checkout-title, .policy-heading) {
  display: block;
  max-width: 100%;
  margin: 0 auto 25px;
  padding: 18px 40px;

  font-size: 1.8em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;

  /* === 3D Rounded Gold Effect === */
  background: linear-gradient(
      180deg,
      #fff8d1 0%,      /* top highlight */
      #ffde5a 25%,     /* main gold */
      #c99812 50%,     /* shadowed gold */
      #ffea94 75%,     /* reflected light */
      #9b6b00 100%     /* bottom depth */
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Glossy highlight overlay */
  position: relative;
}
h2:not(.footer-title, .blog-title, .blog-subtitle, .portal-plan, .blog-heading, .checkout-title, .policy-heading)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.05) 25%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: shimmer 4s ease-in-out infinite;
}

/* === Container box === */
h2:not(.footer-title, .blog-title, .blog-subtitle, .portal-plan, .blog-heading, .checkout-title, .policy-heading) {
  border: 2px solid rgba(255, 222, 90, 0.4);
  border-radius: 14px;
  box-shadow:
    0 0 15px rgba(255, 222, 90, 0.3),
    inset 0 0 10px rgba(255, 222, 90, 0.15);

  background-color: rgba(14, 15, 15, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  animation: goldPulse 4s ease-in-out infinite;
}

/* === Animations === */
@keyframes goldPulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(255, 222, 90, 0.3),
      inset 0 0 10px rgba(255, 222, 90, 0.15);
  }
  50% {
    box-shadow:
      0 0 22px rgba(255, 222, 90, 0.7),
      inset 0 0 14px rgba(255, 222, 90, 0.3);
  }
}





@media (max-width: 768px) {
  h2:not(.footer-title, .blog-title, .blog-subtitle, .portal-plan, .blog-heading, .checkout-title, .policy-heading) {
    font-size: 1.25rem;
    padding: 12px 20px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  h2:not(.footer-title, .blog-title, .blog-subtitle, .portal-plan, .blog-heading, .checkout-title, .policy-heading) {
    font-size: 1rem;
    padding: 10px 16px;
  }
}

h4 {
  color: #5ec9f2;
}
main {
  flex: 1; /* this makes main take up remaining space */
}
.site-body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
}

ul li::marker {
  color: #60a5fa; /* Tailwind blue-400 */
}
ul, ol {
  padding-left: 2rem; /* keeps desktop indentation */
}

/* Mobile adjustments */
@media (max-width: 640px) {
  ul, ol {
    padding-left: 1rem;   /* less indentation for small screens */
    margin-bottom: 1rem;  /* add spacing between lists if needed */
  }
  .list.light li {
    line-height: 1.5;     /* slightly tighter for mobile */
  }
}
.breadcrumb {
  list-style: none;
  display: flex;
  gap: 5px;
  margin-top: -10px;
  z-index: 10;
  padding: 5px 10px;
  border-radius: 5px;
}
.breadcrumb li::after {
  content: ">";
  margin-left: 5px;
}
.breadcrumb li:last-child::after {
  content: "";
}
#scrollUpBtn {
  position: fixed;
  right: 40px; /* distance from right edge */
  bottom: 120px; /* position above live chat icon */
  width: 40px;
  height: 40px;
  background-color: rgba(255, 197, 58, 0.21); /* semi-transparent */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999; /* above most elements */
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* Hero */
:root {
  /* Define custom properties for dark theme colors */
  --dark-bg-start: #1b294d;        /* Deep Charcoal Start (Top of Hero) */
  --dark-bg-end: #111827;          /* PAGE BACKGROUND COLOR - THIS IS THE KEY FIX */
  --text-color: #f3f4f6;
  --highlight-color: #5d8fff;
  --muted-color: #9ca3af;
}

/* 1. Base Hero Container with Gradient */
.hero {
  /* Vertical linear gradient for subtle depth and color */
  background: linear-gradient(
    to bottom,
    var(--dark-bg-start) 0%,
    var(--dark-bg-end) 100% /* The gradient now ends with the main page color */
  );
  color: var(--text-color);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
}

/* 2. Content and Typography (Unchanged from previous dark theme) */
.hero-content {
  max-width: 950px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.hero .highlight {
  color: var(--highlight-color);
}

/* 3. Call-to-Action Button (Keeping the same vibrant style) */
.btn-primary {
  display: inline-block;
  background: linear-gradient(145deg, #3b82f6, #2563eb); 
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  transform: translateY(-4px); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 4. Muted Text/Note */
.hero .note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted-color);
}
/* Responsive */

/* Section base styles */
.section {
  margin-bottom: 3rem; /* mb-12 */
}
.section-box {
  background-color: rgb(30, 40, 53);
  border-radius: 1rem;     /* 16px rounded corners */
  padding: 1.5rem;           /* space inside the box */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  margin-bottom: 3rem;     /* space between sections */
  box-shadow: 0 0 20px rgba(10, 21, 183, 0.22);
}
.section-title {
  font-size: 1.5rem;    /* text-2xl */
  font-weight: 600;     /* font-semibold */
  margin-bottom: 1rem;  /* mb-4 */
  color: #eea480;       /* Tailwind's blue-400 */
}
.section-title-alert {
  font-size: 1.5rem;    /* text-2xl */
  font-weight: 600;     /* font-semibold */
  margin-bottom: 1rem;  /* mb-4 */
  color: rgb(247, 112, 112);       /* Tailwind's blue-400 */
}
.section-text {
  margin-bottom: 1rem;  /* mb-4 */
  line-height: 1.6;
  color: #e5e7eb;       /* light gray text */
}
.section-text a{
  color: #3fdbff;       /* light gray text */
}

/* Subtitles */
.section-subtitle {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e5e7eb; /* lighter gray */
}
.section-divider {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e5e7eb; /* lighter gray */
}
/* Highlight headings */
.plan-title {
  font-weight: 600;
  color: rgb(250, 197, 96); /* yellow-400 */
  margin-bottom: 0.5rem;
}
/* Highlight headings */
.highlight-title {
  font-weight: 600;
  color: #facc15; /* yellow-400 */
  margin-bottom: 0.5rem;
}

/* Light list style */
.list.light {
  color: #d1d5db; /* softer gray text */
}
.not-for-list {
  background-color: var(--bg-dark);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.not-for-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; /* slightly smaller gap for mobile readability */
}

.not-for-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem; /* keeps vertically aligned with first line of text */
  stroke: #f87171;
  fill: none;
}

.not-for-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.5; /* slightly tighter for mobile */
}

@media (max-width: 640px) {
  .section-box {
    padding: 1rem;      /* slightly smaller padding on mobile */
    margin-bottom: 2rem; /* reduce vertical spacing */
  }
  .section-title, .section-title-alert {
    font-size: 1.25rem; /* smaller headings for mobile */
  }
  .section-text, .section-subtitle, .section-divider {
    font-size: 0.95rem; /* slightly smaller body text */
  }
}

.list.light, .not-for-list {
  word-break: break-word;  /* prevents overflow */
  font-size: 0.95rem;      /* slightly smaller for mobile */
}
@media (max-width: 480px) {
  .not-for-item {
    flex-direction: row;  /* keep row layout for most phones */
    flex-wrap: nowrap;    /* prevent stacking unless extremely narrow */
    gap: 0.5rem;          /* smaller gap on mobile */
  }
  .not-for-icon {
    margin-top: 0.25rem;  /* keep icon aligned with first line */
    min-width: 1rem;       /* ensures icon stays visible */
  }
  .not-for-item p {
    font-size: 0.92rem;    /* slightly smaller text for mobile */
  }
}
@media (max-width: 640px) {
  .section-box {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Style for the Sign In button in desktop nav */



/* Example calculation box */
.example-box {
  background-color: var(--bg-dark);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  max-width: 850px;    /* limit line length for readability */
  margin-left: auto;    /* center box */
  margin-right: auto;   /* center box */
}

.example-box ul {
  padding-left: 1.25rem; /* smaller indent on mobile */
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.example-box li {
  margin-bottom: 0.4rem; /* space between items */
}

.example-note, .example-note-bottom {
  font-size: 0.95rem;    /* slightly smaller for mobile readability */
  line-height: 1.5;
}

/* Optional: responsive adjustments for very small screens */
@media (max-width: 480px) {
  .example-box {
    padding: 0.75rem;
    max-width: 100%;      /* full width on very small devices */
  }
  .example-box li {
    margin-bottom: 0.3rem;
  }
  .example-note, .example-note-bottom {
    font-size: 0.9rem;
  }
}



/* Lists */
.checklist {
  list-style: disc inside;
  color: var(--text);
  margin: 1rem 0;
}
.checklist li {
  margin-bottom: 0.5rem;
}
.steps {
  list-style: decimal inside;
  color: var(--text);
}
.steps li {
  margin-bottom: 0.75rem;
}
.disclosure-list {
  list-style: disc inside;
  color: #fef9c3;
}
.disclosure-list li {
  margin-bottom: 0.75rem;
}

/* Form */
.form-container {
  max-width: 800px;
  margin: 0 auto;
}
.signup-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
.signup-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--text);
}
.signup-form input,
.signup-form select,
.signup-form textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #4b5563;
  background: var(--bg-dark);
  color: var(--text);
}
.signup-form textarea {
  resize: vertical;
}
.checkbox-group legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.checkbox-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
}
    .player-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  margin-top: 20px;
  aspect-ratio: 16 / 9;   /* keep consistent ratio */
  width: 100%;
}

.player-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

    .toolbar { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
    .toolbar a { color: var(--muted); text-decoration: none; }
    .toolbar a:hover { color: var(--text); }
    
/* Form container */
/* --- Form Layout --- */
.form {
  max-width: 950px;       /* keeps form contained */
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #e5e7eb; /* light gray for dark bg */
}

.input-note {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

/* --- Inputs & Selects --- */
.form input,
.form select,
.form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  background-color: #111827; /* dark gray */
  color: #f9fafb;
  font-size: 1rem;
  box-sizing: border-box; /* prevents overflow */
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #3b82f6; /* blue highlight */
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

/* --- Checkboxes --- */
.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.checkbox-list {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 0.5rem;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  color: #f3f4f6;
  cursor: pointer;
}

.checkbox-list input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #3b82f6; /* blue */
  cursor: pointer;
}

/* --- Buttons --- */
.button-primary {
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
}

.button-primary:hover {
  background-color: #2563eb;
}

.button-alt {
  background-color: #a87447;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}

.button-alt:hover {
  background-color: #8c5f37;
}
.agreement-link {
  color: #53f6ff;   /* match your site’s accent color */
  text-decoration: underline;
  cursor: pointer;
  margin-left: 3px;
}

.agreement-link:hover {
  color: #fff888; /* fallback if no hover var */
}

.contract-button {
  background-color: rgb(168, 116, 71);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.contract-button:hover {
  background-color: rgb(140, 95, 55); /* slightly darker on hover */
}

/* Base modal (hidden by default) */
.hidden { display: none; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 50;
}

.modal-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  overflow-y: auto;
  padding: 1rem; /* small padding around panel */
}

.modal-panel {
  background: #111827; /* dark gray-900 */
  color: #f9fafb;       /* gray-200 */
  border-radius: 1rem;  /* rounded-2xl */
  max-width: 768px;     /* max-w-3xl */
  width: 100%;
  max-height: 90vh;     /* max-h-[90vh] */
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.75); /* shadow-2xl */
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); /* ring/outline */
}

.modal-header, .modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem; /* px-6 py-4 */
  border-bottom: 1px solid rgba(255,255,255,0.1); /* header border */
}

.modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem; /* text-xl */
  font-weight: 600;   /* font-semibold */
  color: #60a5fa;     /* text-blue-400 */
}

.modal-body {
  padding: 1.25rem 1.5rem; /* px-6 py-5 */
  overflow-y: auto;
  line-height: 1.75rem;     /* leading-7 */
  font-size: 1rem;          /* base */
  flex: 1 1 auto;  
}
.modal-body {
  scroll-behavior: smooth;
}
/* Lock background scroll when modal is open */
body.overflow-hidden {
  overflow: hidden;
}

.modal-body h1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem; /* text-2xl */
  color: #fff;
  margin-bottom: 1.5rem; /* mb-6 */
}

.modal-body h3 {
  margin-top: 1.5rem;   /* mt-6 */
  margin-bottom: 0.5rem; /* mb-2 */
  font-weight: 600;
  color: #60a5fa;        /* blue-400 */
}

.modal-body p, .modal-body li {
  margin-bottom: 0.5rem; /* mb-2 */
  color: #e5e7eb;        /* gray-200 */
}

.modal-body ul {
  list-style: disc inside;
  margin-bottom: 1rem;   /* mb-4 */
  padding-left: 1.5rem;
}

.modal-footer button {
  padding: 0.5rem 1rem;     /* px-4 py-2 */
  font-size: 0.875rem;      /* text-sm */
  border-radius: 0.5rem;    /* rounded-lg */
  border: 1px solid rgba(255,255,255,0.2);
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.modal-footer button:hover {
  background: #1d4ed8;
}

.modal-footer button:focus {
  outline: 2px solid #60a5fa; /* focus:ring-2 ring-blue-400 */
  outline-offset: 2px;
}

/* Optional: smooth fade-in animation */
.modal-wrapper.show {
  animation: fadeIn 0.2s ease-out forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.g-recaptcha {
  margin: 10px auto;
  display: flex;
  justify-content: center;
}

.agreement-row {
  display: flex !important;       /* force flex layout */
  align-items: center !important; /* vertically center items */
  gap: 10px !important;           /* space between checkbox, label, button */
  flex-wrap: nowrap !important;   /* keep everything on one line */
}

.agreement-row input[type="checkbox"],
.agreement-row label,
.agreement-row button {
  display: inline-flex !important;  /* override block-level rules */
  width: auto !important;           /* prevent full-width buttons/labels */
  margin: 0 !important;             /* remove any external spacing */
}

.agreement-row label {
  line-height: 1.2 !important;      /* vertically align with checkbox */
}
/* --- Marketplace Logos --- */
.marketplace-logos {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.marketplace-logos img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amazon {
  margin-top: 20px;
}

.marketplace-logos img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- Responsive behavior --- */
@media (max-width: 768px) {
  .marketplace-logos {
    gap: 1.25rem;
  }
  .marketplace-logos img {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .marketplace-logos {
    gap: 1rem;
  }
  .marketplace-logos img {
    height: 28px;
  }
}
