@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Pacifico&display=swap');

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

:root {
  --teal: #2A9D8F;
  --orange: #E76F51;
  --light-orange: #F4A261;
  --navy: #1D3557;
  --white: #FFFFFF;
  --light-gray: #F8F8F8;
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--white);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background: var(--teal);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 10px rgba(42,157,143,0.3);
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
}

.slogan {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  letter-spacing: 0.5px;
}

header nav {
  margin-left: auto;
}

header nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s;
}

header nav a:hover {
  background: rgba(255,255,255,0.18);
}

/* MAIN */
main {
  flex: 1;
  padding: 40px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.intro-text {
  text-align: center;
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* BUBBLE CARDS */
.bubbles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.bubble-card {
  background: #eaf6f4;
  border-radius: 24px;
  padding: 40px 32px;
  color: var(--navy);
  box-shadow: 0 4px 22px rgba(42,157,143,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-top: 4px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bubble-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(42,157,143,0.18);
}

.bubble-card.phone-bubble {
  background: #eaf6f4;
  border-top-color: var(--teal);
}

.bubble-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.3px;
}

.bubble-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #4a5568;
  flex: 1;
}

.bubble-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  margin-top: 4px;
}

.bubble-btn:hover {
  background: #23877b;
  transform: translateY(-1px);
}

.phone-number {
  font-size: 3.4rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 5px;
  line-height: 1;
  color: var(--teal);
  margin: 4px 0;
}

.phone-icon {
  font-size: 2.4rem;
  text-align: center;
}

.emergency-note {
  font-size: 0.84rem;
  color: #5a6a7a;
  border-top: 1px solid rgba(42,157,143,0.2);
  padding-top: 12px;
  margin-top: 4px;
}

/* GAMES SECTION */
.games-section {
  margin-bottom: 40px;
}

.games-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
  text-align: center;
}

.games-hook {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.65;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
}

.games-group {
  margin-bottom: 32px;
}

.games-group h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--teal);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.game-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--navy);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(42,157,143,0.15);
}

.game-card .game-emoji {
  font-size: 2.2rem;
}

.game-card .game-info h4 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.game-card .game-info p {
  font-size: 0.88rem;
  color: #666;
}

.game-card .game-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--teal);
}

/* STRATÉGIES VÉRIFIÉES */
.strategies-section {
  padding: 64px 24px 56px;
}

.strategies-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.strategies-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #7a9a98;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 36px;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.strategy-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f7fffe;
  border: 1.5px solid #d4eeeb;
  border-radius: 18px;
  padding: 24px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.strategy-card:hover {
  box-shadow: 0 6px 20px rgba(42,157,143,0.10);
  transform: translateY(-2px);
}

.strategy-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.strategy-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.strategy-card p {
  font-size: 0.88rem;
  color: #5a7070;
  line-height: 1.65;
}

/* TIPS CHATBOT */
.chatbot-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chatbot-tip {
  background: #eaf6f4;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid #c2e8e3;
}

/* BOUTON JEU RECOMMANDÉ (chatbot) */
.generate-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 16px;
  border-top: 1px solid #e8f5f3;
}

.generate-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: background .2s, transform .1s;
  white-space: nowrap;
}

.generate-btn:hover:not(:disabled) {
  background: #23877b;
  transform: translateY(-1px);
}

.generate-btn:disabled {
  background: #c8e2df;
  cursor: not-allowed;
  color: rgba(255,255,255,.7);
}

.generate-hint {
  font-size: .8rem;
  color: #7a9a98;
  font-style: italic;
}

.game-rec-wrapper {
  padding: 6px 0 2px 50px;
  animation: slideUp 0.3s ease;
}

.game-rec-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal) 0%, #3ab5a8 100%);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(42,157,143,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-rec-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(42,157,143,0.48);
}

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

/* BARRE DE PROGRESSION — override des styles inline des jeux */
.game-wrapper .progress-bar {
  height: 12px;
  background: #e0f0ee;
  border-radius: 10px;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
}

.game-wrapper .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, #52c5b8 100%);
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* MASCOTTE LUDO */
.ludo-avatar {
  background: white !important;
  padding: 2px;
  overflow: hidden;
}
.ludo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-mascot {
  position: absolute;
  right: 48px;
  bottom: 0;
  height: 88%;
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.32));
  animation: mascot-float 3.5s ease-in-out infinite;
  display: flex;
  align-items: flex-end;
}
.hero-mascot img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.card-mascot {
  width: 90px;
  object-fit: contain;
  margin-bottom: 4px;
}

.chatbot-mascot-intro {
  width: 72px;
  float: right;
  margin: 0 0 10px 18px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .hero-mascot {
    height: 55%;
    right: 8px;
  }
}
@media (max-width: 500px) {
  .hero-mascot { display: none; }
}

/* FOOTER */
footer {
  background: var(--teal);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 22px 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CHATBOT PAGE */
.chatbot-container {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.chatbot-intro {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 28px;
  border-left: 5px solid var(--teal);
}

.chatbot-intro h1 {
  font-size: 1.7rem;
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 10px;
}

.chatbot-intro p {
  color: #555;
  line-height: 1.65;
  font-size: 1rem;
}

.chat-window {
  background: var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 500px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  display: flex;
  gap: 12px;
  max-width: 85%;
}

.message.echo {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.message.user .message-avatar {
  background: var(--orange);
}

.message-bubble {
  background: white;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 16px;
  font-size: 0.96rem;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  color: #333;
}

.message.user .message-bubble {
  background: var(--teal);
  color: white;
  border-radius: 18px 18px 4px 18px;
}

.chat-input-area {
  border-top: 2px solid #e8e8e8;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  background: white;
}

.chat-input-area textarea {
  flex: 1;
  border: 2px solid #ddd;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.97rem;
  resize: none;
  outline: none;
  transition: border 0.2s;
  height: 52px;
}

.chat-input-area textarea:focus {
  border-color: var(--teal);
}

.send-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 0 22px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.send-btn:hover {
  background: #23877b;
  transform: scale(1.04);
}

.send-btn:active {
  transform: scale(0.97);
}

.api-config-notice {
  background: #fff8e1;
  border: 2px solid #ffc107;
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 0.95rem;
}

.api-config-notice h3 {
  color: #e65100;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.api-config-notice code {
  background: #f5f5f5;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.9em;
}

.api-config-notice ol {
  padding-left: 20px;
  margin-top: 8px;
  line-height: 1.9;
}

.typing-indicator {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 4px 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: bounce 1.2s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-6px); opacity: 1; }
}

/* GAME PAGE */
.game-container {
  max-width: 740px;
  margin: 0 auto;
  width: 100%;
}

.game-header-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.game-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
}

.score-bar {
  margin-left: auto;
  background: var(--teal);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

.scenario-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
}

.scenario-card .step-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.scenario-card .narrative {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}

.scenario-card .narrative strong {
  color: var(--navy);
}

.choices-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.choice-btn {
  background: white;
  border: 2px solid #ddd;
  border-radius: 14px;
  padding: 16px 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.choice-btn:hover {
  border-color: var(--teal);
  background: #f0faf9;
  transform: translateX(4px);
}

.choice-btn.correct {
  border-color: #4caf50;
  background: #e8f5e9;
  color: #2e7d32;
}

.choice-btn.wrong {
  border-color: var(--orange);
  background: #fff3ef;
  color: #c0392b;
}

.choice-btn .choice-letter {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feedback-box {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 18px;
  border-left: 4px solid var(--teal);
  font-size: 0.97rem;
  line-height: 1.65;
  display: none;
}

.feedback-box.correct {
  border-color: #4caf50;
  background: #f1f8f1;
  color: #2e7d32;
}

.feedback-box.wrong {
  border-color: var(--orange);
  background: #fff8f5;
  color: #8b3a2a;
}

.next-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

.next-btn:hover {
  background: #23877b;
}

.result-screen {
  text-align: center;
  padding: 40px 24px;
  display: none;
}

.result-screen .result-emoji {
  font-size: 5rem;
  margin-bottom: 16px;
}

.result-screen .score-display {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}

.result-screen .result-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.result-screen .result-message {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.home-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 36px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}

.home-btn:hover {
  background: #c85a3b;
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════
   HERO SECTION (index.html uniquement)
════════════════════════════════════════════ */
.hero-section {
  min-height: 88vh;
  background-color: var(--teal);
  background-image:
    linear-gradient(160deg, rgba(42,157,143,0.78) 0%, rgba(29,53,87,0.82) 100%),
    url('images/hero.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  color: white;
  position: relative;
}

.hero-nav {
  display: flex;
  align-items: center;
  padding: 24px 48px;
  position: relative;
  z-index: 10;
}

.hero-nav .logo {
  font-size: 2.6rem;
}

.hero-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.hero-nav-link:hover {
  color: white;
}

.hero-nav-cta {
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(231,111,81,0.4);
}

.hero-nav-cta:hover {
  background: #c85a3b;
  transform: scale(1.04);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px 100px;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--light-orange);
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 38px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 22px rgba(231,111,81,0.45);
}

.hero-btn-primary:hover {
  background: #c85a3b;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 38px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: background 0.2s, border-color 0.2s;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: white;
}

/* BANDE DE FONCTIONNALITÉS */
.features-strip {
  background: #edf7f5;
  border-bottom: 1px solid #d0ece8;
  padding: 30px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.cards-section {
  padding-top: 56px;
  padding-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.feature-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
}

.feature-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-item strong {
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.feature-item span {
  font-size: 0.78rem;
  color: #5a7a76;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .bubbles-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  header {
    padding: 14px 18px;
    flex-wrap: wrap;
  }
  .logo {
    font-size: 1.8rem;
  }
  main {
    padding: 24px 14px;
  }
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  .hero-nav {
    padding: 18px 24px;
  }
  .hero-nav .logo {
    font-size: 2rem;
  }
  .hero-content {
    padding: 32px 24px 80px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .slogan {
    display: none;
  }
  .hero-nav-right {
    gap: 14px;
  }
  .hero-nav-link {
    display: none;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
