/* GameStringer Landing Page - styles.css v2 - Extended */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary-200: #e0f2fe; --primary-300: #bae6fd; --primary-400: #7dd3fc; --primary-500: #0ea5e9;
  --primary-600: #0284c7; --primary-700: #0369a1; --primary-900: #0c4a6e;
  --accent-400: #4ade80; --accent-500: #22c55e; --accent-600: #16a34a; --accent-900: #064e3b;
  --cyan-400: #22d3ee; --cyan-500: #06b6d4; --cyan-600: #0891b2;
  --slate-300: #cbd5e1; --slate-400: #94a3b8; --slate-500: #64748b; --slate-600: #475569;
  --slate-700: #334155; --slate-800: #1e293b; --slate-900: #0f172a; --slate-950: #020617;
  --green-400: #4ade80; --green-500: #22c55e; --green-600: #16a34a;
  --blue-400: #60a5fa; --blue-500: #3b82f6;
  --emerald-400: #34d399; --emerald-500: #10b981;
  --teal-400: #2dd4bf; --teal-500: #14b8a6;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
  background: var(--slate-950); 
  background-image: 
    radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(34, 197, 94, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(14, 165, 233, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  color: white; 
  line-height: 1.6; 
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--slate-950); }
::-webkit-scrollbar-thumb { background: var(--slate-800); border-radius: 5px; border: 2px solid var(--slate-950); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-600); }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary-600), var(--teal-600)); color: white; box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(14, 165, 233, 0.5); }
.btn-outline { background: transparent; border: 2px solid var(--slate-600); color: white; }
.btn-outline:hover { background: var(--slate-800); border-color: var(--primary-500); }
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 24px; font-size: 13px; font-weight: 600; }
.section-badge { background: rgba(14, 165, 233, 0.15); border: 1px solid rgba(14, 165, 233, 0.3); color: var(--primary-300); margin-bottom: 20px; }
.section-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.section-desc { color: var(--slate-400); font-size: 1.2rem; max-width: 700px; margin: 0 auto 56px; line-height: 1.7; }

/* GRID */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1024px) { .grid-6, .grid-5, .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .grid-6, .grid-5, .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 2rem; } }
@media (max-width: 480px) { .grid-6, .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* CARDS */
.card { 
  background: rgba(30, 41, 59, 0.3); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 24px; 
  padding: 32px; 
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
  backdrop-filter: blur(12px) saturate(180%); 
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover { 
  border-color: transparent;
  background-image: linear-gradient(var(--slate-800), var(--slate-900)), 
                    linear-gradient(90deg, var(--primary-500), var(--teal-500), var(--cyan-500));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 100% 100%, 200% 100%;
  animation: border-rotate 3s linear infinite;
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card:hover::after { opacity: 1; }
.icon-box { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }

/* HEADER */
header { position: relative; overflow: hidden; min-height: 100vh; }
.header-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(2, 132, 199, 0.4), transparent 70%); }
.header-glow-1 { position: absolute; top: 100px; left: 20%; width: 500px; height: 500px; background: rgba(14, 165, 233, 0.2); border-radius: 50%; filter: blur(120px); animation: float 8s ease-in-out infinite; }
.header-glow-2 { position: absolute; top: 200px; right: 20%; width: 400px; height: 400px; background: rgba(34, 197, 94, 0.15); border-radius: 50%; filter: blur(100px); animation: float 8s ease-in-out infinite 2s; }
.header-glow-3 { position: absolute; bottom: 10%; left: 40%; width: 300px; height: 300px; background: rgba(59, 130, 246, 0.1); border-radius: 50%; filter: blur(80px); animation: float 8s ease-in-out infinite 4s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

/* NAV */
nav { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.nav-logo img { height: 200px; width: auto; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.3)); }
.nav-logo img:hover { transform: scale(1.05) rotate(-2deg); filter: drop-shadow(0 0 25px rgba(14, 165, 233, 0.5)); }
@media (max-width: 768px) { .nav-logo img { height: 120px; } }
@media (max-width: 480px) { .nav-logo img { height: 80px; } }
.nav-links { display: flex; gap: 36px; }
.nav-links a { color: var(--slate-300); font-size: 15px; font-weight: 500; transition: all 0.2s; position: relative; }
.nav-links a:hover { color: white; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--primary-500), var(--teal-500)); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* HERO */
.hero { position: relative; z-index: 10; text-align: center; padding: 100px 0 80px; }
.hero-badge { background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(34, 197, 94, 0.2)); border: 1px solid rgba(14, 165, 233, 0.3); color: var(--primary-300); font-size: 14px; }
.hero-badge-new { background: var(--green-500); color: white; padding: 4px 10px; border-radius: 6px; font-size: 11px; margin-right: 8px; }
.hero h1 { 
  font-size: 4.5rem; 
  font-weight: 900; 
  line-height: 1.1; 
  margin: 32px 0; 
  background: linear-gradient(135deg, #fff 0%, var(--primary-200) 25%, var(--primary-400) 50%, var(--accent-400) 75%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; 
  background-clip: text; 
  -webkit-text-fill-color: transparent; 
  color: transparent; 
  letter-spacing: -0.02em;
  animation: border-rotate 5s linear infinite;
}
.hero-highlight { position: relative; }
.hero-highlight::after { content: ''; position: absolute; bottom: 8px; left: 0; right: 0; height: 12px; background: linear-gradient(90deg, var(--primary-500), var(--teal-500)); opacity: 0.3; z-index: -1; border-radius: 4px; }
.hero-subtitle { font-size: 1.6rem; color: var(--slate-300); margin-bottom: 12px; font-weight: 500; }
.hero-desc { color: var(--slate-400); margin-bottom: 48px; font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-meta { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; color: var(--slate-500); font-size: 14px; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-icon { color: var(--green-400); }
@media (max-width: 768px) { .hero h1 { font-size: 2.8rem; } .hero-subtitle { font-size: 1.2rem; } }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto 80px; }
.stat { text-align: center; padding: 32px 24px; background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4)); border: 1px solid rgba(51, 65, 85, 0.5); border-radius: 24px; position: relative; overflow: hidden; }
.stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-500), var(--teal-500)); }
.stat-value { font-size: 3.5rem; font-weight: 900; background: linear-gradient(135deg, var(--primary-400), var(--teal-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat-label { font-size: 14px; color: var(--slate-400); margin-top: 8px; font-weight: 500; }
.stat-detail { font-size: 12px; color: var(--slate-500); margin-top: 4px; }
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; } .stat-value { font-size: 2.5rem; } }

/* SCREENSHOTS GALLERY */
.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.screenshot-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(14, 165, 233, 0.3), 0 0 0 1px rgba(14, 165, 233, 0.3);
}
.screenshot-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.screenshot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-align: center;
}
@media (max-width: 900px) { .screenshots-gallery { grid-template-columns: 1fr; gap: 16px; } }

/* SECTIONS */
section { padding: 120px 0; }
section.alt-bg { background: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgba(30, 41, 59, 0.1) 100%); }

/* FEATURES */
.feature-card { padding: 32px; }
.feature-icon { background: linear-gradient(135deg, var(--primary-500), var(--teal-500)); box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3); }
.feature-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.feature-desc { color: var(--slate-400); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { background: rgba(51, 65, 85, 0.5); padding: 4px 10px; border-radius: 6px; font-size: 11px; color: var(--slate-400); }

/* ENGINE CARDS */
.engine-card { text-align: center; padding: 28px 20px; }
.engine-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.engine-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.engine-badge { padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.engine-badge.full { background: rgba(34, 197, 94, 0.2); color: var(--green-400); border: 1px solid rgba(34, 197, 94, 0.3); }
.engine-badge.partial { background: rgba(251, 146, 60, 0.2); color: var(--orange-400); border: 1px solid rgba(251, 146, 60, 0.3); }
.engine-method { font-size: 12px; color: var(--slate-500); margin-top: 12px; font-style: italic; }
.engine-games { font-size: 11px; color: var(--slate-600); margin-top: 4px; }

/* STORE LIST */
.store-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 48px; }
.store-item { display: flex; align-items: center; gap: 12px; padding: 16px 24px; background: rgba(30, 41, 59, 0.6); border: 1px solid rgba(51, 65, 85, 0.5); border-radius: 16px; transition: all 0.3s; }
.store-item:hover { border-color: var(--primary-500); transform: translateY(-4px); }
.store-icon { font-size: 1.5rem; }
.store-name { font-weight: 600; }
.store-games { font-size: 12px; padding: 4px 10px; background: rgba(51, 65, 85, 0.5); border-radius: 6px; color: var(--slate-400); }

/* AI PROVIDER CARDS */
.ai-card { padding: 24px; position: relative; overflow: hidden; }
.ai-card.recommended { border-color: var(--green-500); }
.ai-card.recommended::before { content: '⭐ Consigliato'; position: absolute; top: 12px; right: -32px; background: var(--green-500); color: white; font-size: 10px; font-weight: 700; padding: 4px 40px; transform: rotate(45deg); }
.ai-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.ai-name { font-weight: 700; font-size: 1.1rem; }
.ai-badge { padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.ai-badge.free { background: rgba(34, 197, 94, 0.2); color: var(--green-400); }
.ai-badge.paid { background: rgba(251, 146, 60, 0.2); color: var(--orange-400); }
.ai-badge.local { background: rgba(59, 130, 246, 0.2); color: var(--blue-400); }
.ai-type { color: var(--slate-500); font-size: 12px; margin-bottom: 12px; }
.ai-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ai-feature { background: rgba(51, 65, 85, 0.5); padding: 3px 8px; border-radius: 4px; font-size: 10px; color: var(--slate-400); }
.ai-rating { display: flex; gap: 2px; }
.ai-star { color: var(--yellow-400); font-size: 14px; }
.ai-star.empty { color: var(--slate-600); }
.ai-cost { font-size: 11px; color: var(--slate-500); margin-top: 8px; }

/* TOOL CARDS */
.tool-card { padding: 24px; position: relative; }
.new-badge { position: absolute; top: 16px; right: 16px; background: var(--accent-500); color: white; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 4px; z-index: 20; }
.tool-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.tool-name { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.tool-desc { font-size: 13px; color: var(--slate-400); line-height: 1.6; margin-bottom: 12px; }
.tool-features { font-size: 11px; color: var(--slate-500); }

/* USE CASES */
.usecase-card { padding: 32px; border-left: 4px solid var(--primary-500); }
.usecase-icon { font-size: 2.5rem; margin-bottom: 16px; }
.usecase-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.usecase-desc { color: var(--slate-400); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.usecase-examples { list-style: none; }
.usecase-examples li { padding: 8px 0; border-bottom: 1px solid rgba(51, 65, 85, 0.3); color: var(--slate-300); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.usecase-examples li:last-child { border-bottom: none; }
.usecase-check { color: var(--green-400); }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1100px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; top: 60px; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, var(--primary-500), var(--teal-500), var(--primary-500)); opacity: 0.3; }
.step { text-align: center; position: relative; }
.step-icon { width: 120px; height: 120px; border-radius: 32px; background: linear-gradient(135deg, var(--primary-600), var(--teal-600)); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; font-size: 3rem; box-shadow: 0 16px 48px rgba(14, 165, 233, 0.4); transition: all 0.4s; position: relative; z-index: 2; }
.step:hover .step-icon { transform: scale(1.1) rotate(5deg); }
.step-number { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--slate-900); border: 3px solid var(--primary-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--primary-400); z-index: 3; }
.step-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.step-desc { color: var(--slate-400); font-size: 15px; line-height: 1.7; max-width: 300px; margin: 0 auto; }
.step-detail { margin-top: 16px; font-size: 13px; color: var(--slate-500); }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 64px; } .steps::before { display: none; } }

/* FAQ - Using native details/summary */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-details {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-details summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-400);
  transition: transform 0.3s;
}
.faq-details[open] summary::after {
  transform: rotate(45deg);
}
.faq-details summary:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-400);
}
.faq-details p,
.faq-details ul {
  padding: 0 24px 20px;
  color: var(--slate-400);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.faq-details p:first-of-type { padding-top: 0; }
.faq-details ul { padding-left: 44px; list-style: disc; }
.faq-details li { margin-bottom: 8px; }
.faq-details a { color: var(--primary-400); text-decoration: underline; }
.faq-details a:hover { color: var(--primary-300); }
.faq-details strong { color: var(--slate-300); }

/* CTA SECTION */
.cta-section { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(2, 132, 199, 0.9), rgba(16, 185, 129, 0.9)); border-radius: 40px; padding: 100px 60px; text-align: center; }
.cta-glow-1 { position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(14, 165, 233, 0.3); border-radius: 50%; filter: blur(100px); }
.cta-glow-2 { position: absolute; bottom: -50%; left: -10%; width: 300px; height: 300px; background: rgba(34, 197, 94, 0.3); border-radius: 50%; filter: blur(80px); }
.cta-content { position: relative; z-index: 10; }
.cta-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; }
.cta-desc { font-size: 1.3rem; color: var(--slate-300); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cta-buttons .btn-primary { background: white; color: var(--primary-900); font-weight: 700; }
.cta-features { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--slate-300); }
.cta-check { color: var(--green-400); font-size: 18px; }
@media (max-width: 768px) { .cta-section { padding: 60px 24px; border-radius: 24px; } .cta-title { font-size: 2.2rem; } }

/* SUPPORT */
.support-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { border-top: 1px solid var(--slate-800); padding: 80px 0 40px; background: var(--slate-950); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-weight: 700; font-size: 1.25rem; }
.footer-desc { color: var(--slate-400); font-size: 14px; max-width: 400px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(51, 65, 85, 0.5); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { background: var(--primary-600); transform: translateY(-3px); }
.footer-title { font-weight: 700; margin-bottom: 20px; color: white; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--slate-400); font-size: 14px; transition: all 0.2s; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--slate-800); font-size: 14px; color: var(--slate-500); }
.footer-heart { color: var(--accent-500); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
