:root {
  --primary-color: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --primary-bg: #f4fbf5;
  --accent-yellow: #fbc02d;
  --accent-green: #43a047;
  --accent-purple: #8e24aa;
  --accent-amber: #f59f00;
  --danger-color: #ef4444;
  --bg-gradient: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 50%, #f1f8e9 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  --border-color: #d1e7dd;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Malgun Gothic", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font-family);
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */
.app-header {
  background: #ffffff;
  border-bottom: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  font-size: 1.8rem;
  background: #e8f5e9;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #c8e6c9;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Curriculum Switcher */
.curriculum-switch-wrapper {
  display: flex;
  align-items: center;
  background: #eef7ee;
  padding: 3px;
  border-radius: 30px;
  border: 1px solid #c8e6c9;
}

.curriculum-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: #4b5563;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.curriculum-btn.active {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.35);
}

.curriculum-btn:hover:not(.active) {
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary-dark);
}

/* Difficulty Switcher */
.difficulty-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  padding: 3px 6px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.difficulty-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  margin-left: 4px;
}

.diff-btn {
  border: none;
  background: transparent;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.diff-btn.active {
  background: #ffffff;
  color: #1e293b;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  border: 1px solid #cbd5e1;
}

.diff-btn#diffHardBtn.active {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pill:hover {
  background: #f0fdf4;
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.btn-pill.primary {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.btn-pill.primary:hover {
  background: var(--primary-dark);
}

/* Main Container Layout */
.main-wrapper {
  max-width: 1440px;
  margin: 14px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 320px 1fr 340px;
  gap: 16px;
  flex: 1;
}

@media (max-width: 1220px) {
  .main-wrapper {
    grid-template-columns: 290px 1fr 310px;
  }
}

@media (max-width: 980px) {
  .main-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.panel-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e8f5e9;
}

/* Left Sidebar - Curriculum & Trait Selector */
.curriculum-banner {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border-left: 4px solid var(--primary-color);
}

.curriculum-tag {
  display: inline-block;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-bottom: 3px;
}

.standard-code {
  font-weight: 800;
  font-size: 0.88rem;
  color: #1b5e20;
}

.standard-desc {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #2e382e;
  margin-top: 3px;
}

/* 7 Contrasting Traits Grid */
.traits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.trait-chip-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.trait-chip-btn:hover {
  background: #f1f8e9;
  border-color: #a5d6a7;
  transform: translateY(-1px);
}

.trait-chip-btn.active {
  background: #e8f5e9;
  border-color: var(--primary-color);
  color: var(--primary-dark);
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.18);
  border-width: 2px;
}

.trait-chip-btn.span-2 {
  grid-column: span 2;
  justify-content: center;
}

.trait-chip-icon {
  font-size: 1.05rem;
}

/* Mode Selection Tabs */
.mode-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mode-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #e0e0e0;
  background: #fafafa;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.mode-tab-btn:hover {
  background: #f1f8e9;
  border-color: #a5d6a7;
  transform: translateX(3px);
}

.mode-tab-btn.active {
  background: #e8f5e9;
  border-color: var(--primary-color);
  border-width: 2px;
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.15);
}

.mode-tab-icon {
  font-size: 1.35rem;
}

.mode-tab-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.mode-tab-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Quest / Mission Card */
.mission-box {
  background: #fff9db;
  border: 1px solid #ffe066;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.mission-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e67700;
}

.mission-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  margin-top: 3px;
  line-height: 1.35;
}

.mission-progress-bar {
  width: 100%;
  height: 7px;
  background: #f1f3f5;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.mission-progress-fill {
  height: 100%;
  background: #f59f00;
  width: 0%;
  transition: width 0.3s ease;
}

/* Center Stage: The Genetics Beaker */
.stage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #ffffff;
  padding: 12px;
}

.stage-top-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 10px 6px;
  border-bottom: 1px dashed #e0e0e0;
}

.next-gamete-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4b5563;
}

.gamete-preview-bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px dashed #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: #f1f8e9;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.score-display-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.score-sub {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
}

.score-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.score-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.score-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-dark);
}

/* Canvas Area */
.canvas-container {
  position: relative;
  width: 440px;
  height: 580px;
  margin: 8px auto;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 30%, #ffffff 0%, #f9fbf9 100%);
  border: 3px solid #bbf7d0;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.03), 0 8px 24px rgba(46, 125, 50, 0.08);
  overflow: hidden;
  cursor: crosshair;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.canvas-container.in-danger {
  border-color: #ef4444;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.45), inset 0 0 15px rgba(239, 68, 68, 0.2);
  animation: dangerPulseContainer 0.8s infinite alternate;
}

@keyframes dangerPulseContainer {
  0% { border-color: #f87171; }
  100% { border-color: #dc2626; }
}

#gameCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Danger Line and Warning Countdown Bar */
.danger-line-hint {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 2px dashed #f87171;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  padding-right: 12px;
  z-index: 20;
}

.danger-tag {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  margin-top: -12px;
}

.danger-warning-overlay {
  position: absolute;
  top: 92px;
  left: 12px;
  right: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 30;
  pointer-events: none;
  animation: fadeInWarning 0.25s ease;
}

.danger-warning-overlay.show {
  display: flex;
}

@keyframes fadeInWarning {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.danger-warning-pill {
  background: rgba(220, 38, 38, 0.94);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  letter-spacing: -0.3px;
  animation: pulsePill 0.6s infinite alternate;
}

@keyframes pulsePill {
  from { transform: scale(0.98); }
  to { transform: scale(1.03); }
}

.danger-progress-track {
  width: 220px;
  height: 6px;
  background: rgba(0,0,0,0.25);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.danger-progress-fill {
  height: 100%;
  background: #ef4444;
  width: 100%;
  transition: width 0.1s linear;
}

/* Evolution Ladder Strip (10 Stages) */
.evolution-ladder-card {
  width: 100%;
  max-width: 440px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  margin-top: 6px;
}

.evolution-ladder-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.evolution-hint {
  font-size: 0.68rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.evolution-ladder-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.evolution-tier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 5px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  cursor: default;
  transition: all 0.2s ease;
  min-width: 36px;
}

.evolution-tier-item.active {
  background: #e8f5e9;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(46, 125, 50, 0.35);
  transform: scale(1.08);
}

.evolution-tier-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.evolution-tier-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: #64748b;
}

.evolution-tier-item.active .evolution-tier-num {
  color: var(--primary-dark);
}

/* Drop Helper Overlay */
.drop-instruction {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* Right Panel: Analytics & Punnett Square */
.analytics-card {
  gap: 12px;
}

.punnett-container {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.punnett-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.punnett-grid {
  display: grid;
  gap: 4px;
  width: 100%;
  margin: 0 auto;
}

.punnett-grid.grid-2x2 {
  grid-template-columns: repeat(3, 1fr);
}

.punnett-grid.grid-4x4 {
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.punnett-cell {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 5px 2px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.punnett-cell.header {
  background: #e2e8f0;
  color: #475569;
}

.punnett-cell.corner {
  background: transparent;
  border: none;
}

.punnett-cell.highlight {
  background: #bbf7d0 !important;
  color: #166534 !important;
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* Ratio Bars & Counters */
.ratio-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ratio-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ratio-row-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
}

.ratio-bar-track {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}

.ratio-bar-segment {
  height: 100%;
  transition: width 0.3s ease;
}

.ratio-stats-summary {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.convergence-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 4px;
}

.convergence-badge.good {
  background: #dcfce7;
  color: #15803d;
}

.convergence-badge.pending {
  background: #fef9c3;
  color: #854d0e;
}

/* Mendel Note Mini Card */
.mendel-mini-note {
  background: #fdfbf7;
  border: 1px solid #fae8d2;
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #5c4224;
}

.mendel-mini-note strong {
  color: #873800;
}

/* Floating Banner Notification (for discoveries) */
.toast-notice {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(22, 101, 52, 0.94);
  color: #ffffff;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 50;
  white-space: nowrap;
}

.toast-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-header {
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #334155;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.concept-box {
  background: #f1f8e9;
  border: 1px solid #c5e1a5;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.concept-box h4 {
  color: #2e7d32;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.concept-box ul {
  padding-left: 20px;
  margin-top: 6px;
}

.concept-box li {
  margin-bottom: 4px;
}

/* Game Over Modal Styling */
.game-over-modal-content {
  max-width: 520px;
  text-align: center;
}

.game-over-header {
  padding: 24px 20px 14px 20px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-bottom: 1px solid #fecaca;
}

.game-over-icon {
  font-size: 2.8rem;
  margin-bottom: 6px;
  animation: shakeIcon 0.5s ease;
}

@keyframes shakeIcon {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.game-over-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #991b1b;
}

.game-over-header p {
  font-size: 0.82rem;
  color: #7f1d1d;
  margin-top: 4px;
}

.game-over-body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-over-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.game-over-stat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #1e293b;
}

.stat-value.highlight {
  color: var(--primary-color);
  font-size: 1rem;
}

.game-over-evaluation {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.evaluation-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #854d0e;
}

.evaluation-badge {
  display: inline-block;
  background: #ca8a04;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  margin: 6px 0;
  box-shadow: 0 2px 6px rgba(202, 138, 4, 0.3);
}

.evaluation-desc {
  font-size: 0.78rem;
  color: #713f12;
  line-height: 1.4;
}

.game-over-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-large {
  flex: 1;
  padding: 11px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-large.primary {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.35);
}

.btn-large.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-large.secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.btn-large.secondary:hover {
  background: #e2e8f0;
}

/* Footer */
.app-footer {
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  margin-top: auto;
}
