/* SpinSignal — main.css
 * Dark casino-affiliate aesthetic.
 * Design tokens, layout, sections, responsive breakpoints.
 * Does NOT own: EJS templating logic, DB queries, analytics.
 */

/* ============ TOKENS ============ */
:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ec;
  --fg-muted: #8a8a9a;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --accent-glow: rgba(0, 229, 160, 0.25);
  --red: #ff4757;
  --gold: #ffd700;
  --gold-dim: rgba(255, 215, 0, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 229, 160, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-card: 0 2px 24px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 0 40px rgba(0, 229, 160, 0.08);
  --max-w: 1120px;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px; /* space for sticky CTA bar */
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ============ UTILITIES ============ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
}

/* ============ HERO ============ */
.hero {
  padding: 120px 24px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  margin-bottom: 12px;
}
.hero-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.hero-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s;
}
.signal-card:hover { border-color: var(--border-accent); }
.signal-card.secondary { background: var(--bg-elevated); }
.signal-dot {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.signal-dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}
.signal-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.signal-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 6px 0 4px; }
.signal-meta { font-size: 13px; color: var(--fg-muted); }
.signal-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.signal-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1s ease;
}
.hero-line {
  margin-top: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============ PHILOSOPHY ============ */
.philosophy {
  padding: 96px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.philosophy-inner { max-width: 800px; }
.philosophy-tag { margin-bottom: 20px; }
.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.philosophy p {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.philosophy-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar { }
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pillar p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ============ FEATURES ============ */
.features {
  padding: 96px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features-tag { }
.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  grid-column: span 3;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.feature-card.large { grid-column: span 6; }
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ============ STATS ============ */
.stats { padding: 80px 24px; }
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat { text-align: center; flex: 1; padding: 0 40px; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 80px; background: var(--border); }

/* ============ CASINO REVIEW ============ */
.casino-review {
  padding: 96px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.casino-review-inner { max-width: var(--max-w); margin: 0 auto; }
.review-header { margin-bottom: 56px; }
.review-header .tag { margin-bottom: 20px; }
.review-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.review-header p { font-size: 17px; color: var(--fg-muted); max-width: 600px; line-height: 1.7; }

/* Review scorecard */
.review-scorecard {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin-bottom: 56px;
  align-items: start;
}
.scorecard-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.scorecard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.scorecard-title h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.score-badge {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 100px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.score-bars { display: flex; flex-direction: column; gap: 18px; }
.score-row { }
.score-row-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
.score-row-label span:first-child { color: var(--fg-muted); }
.score-row-label span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}
.score-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
  transition: width 1s ease;
}
.score-fill.good  { background: var(--accent); }
.score-fill.ok    { background: #f5a623; }
.score-fill.weak  { background: var(--red); }

.scorecard-verdict {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.verdict-score {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.verdict-score-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.verdict-score-den {
  font-size: 24px;
  color: var(--fg-muted);
  font-family: var(--font-display);
}
.verdict-score-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.verdict-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.05em;
}
.verdict-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.verdict-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.verdict-disclaimer {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

/* Review deep-dive grid */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: var(--border-accent); }
.review-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.review-card-icon { font-size: 18px; }
.review-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.review-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.review-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.review-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.review-card ul li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.review-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.review-card ul li.con::before { content: '✕'; color: var(--red); }
.review-card-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.review-card-cta:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

/* Bottom CTA strip */
.review-cta-strip {
  background: linear-gradient(135deg, rgba(0,229,160,0.07) 0%, transparent 60%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.review-cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.review-cta-strip-text p { font-size: 15px; color: var(--fg-muted); }
.review-cta-strip-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn-ghost {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); text-decoration: none; }

/* ============ RESPONSIBLE GAMBLING ============ */
.rg-section {
  padding: 96px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.rg-header { margin-bottom: 48px; }
.rg-header .tag { margin-bottom: 20px; }
.rg-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.rg-header p { font-size: 17px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; }

.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.rg-card-icon { font-size: 24px; margin-bottom: 14px; }
.rg-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.rg-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.rg-card a { color: var(--accent); font-weight: 500; }

.rg-warning {
  background: rgba(255, 71, 87, 0.07);
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rg-warning-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.rg-warning p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; margin: 0; }
.rg-warning p strong { color: var(--fg); }
.rg-warning a { color: var(--red); font-weight: 600; }

.rg-resources {
  margin-top: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.rg-resources h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.rg-resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rg-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.rg-resource-link:hover { border-color: var(--border-accent); color: var(--fg); text-decoration: none; }
.rg-resource-link::before { content: '↗'; font-size: 11px; color: var(--accent); }

/* ============ CLOSING ============ */
.closing { padding: 96px 24px; }
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing p { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 24px; }
.closing-cta { margin-bottom: 16px; }
.closing-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 36px;
}
.closing-accent {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-legal { text-align: right; max-width: 400px; }
.footer-legal p { font-size: 12px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 4px; }
.footer-legal strong { color: var(--fg); }

/* ============ NAV ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo:hover { text-decoration: none; color: var(--fg); }
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--fg); text-decoration: none; }
.nav-cta {
  padding: 9px 20px;
  background: var(--accent);
  color: #000 !important;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s !important;
  text-decoration: none;
}
.nav-cta:hover { opacity: 0.85; }

/* ============ STICKY CTA BAR ============ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-accent);
  padding: 12px 24px;
}
.sticky-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-text {
  font-size: 14px;
  color: var(--fg-muted);
}
.sticky-cta-text strong {
  color: var(--fg);
  font-family: var(--font-display);
}
.sticky-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 80px 20px 48px; }
  .hero-sub { max-width: 100%; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { grid-column: span 1 !important; }
  .review-scorecard { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .review-cta-strip { flex-direction: column; }
  .review-cta-strip-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .footer-inner { flex-direction: column; }
  .footer-legal { text-align: left; }
  .stats-inner { flex-direction: column; gap: 40px; }
  .stat-divider { width: 60px; height: 1px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .features { padding: 64px 16px; }
  .casino-review { padding: 64px 16px; }
  .rg-section { padding: 64px 16px; }
}
