/* === NON GAMSTOP CASINOS UK — main.css (CLEAN CONVERT) === */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --accent: #16A34A;
  --accent2: #DC2626;
  --gold: #D97706;
  --shadow: 0 1px 3px rgba(0,0,0,.10);
  --radius: 8px;
  --font: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; margin: 2rem 0 1rem; color: var(--text); }
h3 { font-size: 1.1rem; font-weight: 600; margin: 1.2rem 0 0.6rem; }
p { margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === HEADER / NAV === */
.site-header {
  background: #0f172a;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: #f1f5f9;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}
.logo span { color: var(--accent); }

.desktop-nav { display: flex; gap: 20px; align-items: center; }
.desktop-nav a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: #f1f5f9; }

/* BASE — hidden on desktop */
.mobile-nav { display: none; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: #f1f5f9;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    padding: 12px 0;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-nav a {
    color: #cbd5e1;
    font-size: 0.95rem;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
  }
  .mobile-nav a:hover { background: rgba(255,255,255,0.05); }
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  color: #fff;
  padding: 60px 0 50px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.2);
  border: 1px solid rgba(22,163,74,0.4);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 { color: #f1f5f9; margin-bottom: 16px; }
.hero-desc {
  color: #e2e8f0;
  font-size: 1.05rem;
  max-width: 660px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #86efac;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  color: #94a3b8;
  display: block;
  margin-top: 2px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.btn-primary {
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.1s;
  animation: pulse-cta 2.5s infinite;
  position: relative;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary .arrow { font-size: 1.1rem; }
.btn-micro {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 6px;
  display: block;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
}
.trust-stars { color: var(--gold); letter-spacing: 2px; }

/* === HERO AUTHOR BLOCK === */
.hero-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.hero-author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
}
.hero-author-name a {
  color: #f1f5f9 !important;
  text-decoration: none;
}
.hero-author-role,
.hero-pub-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* === VITRINA (Casino Cards) === */
.vitrina-section {
  padding: 50px 0;
  background: var(--bg-alt);
}
.vitrina-section h2 { text-align: center; margin-bottom: 8px; }
.vitrina-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.casino-cards { display: flex; flex-direction: column; gap: 16px; }
.casino-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.casino-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.casino-card.featured {
  border: 2px solid var(--accent);
  background: #f0fdf4;
  position: relative;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.04em;
}
.card-rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.casino-card.featured .card-rank {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.card-info { min-width: 0; }
.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.card-bonus {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 500;
}
.card-cta { text-align: right; }
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  text-decoration: none !important;
  white-space: nowrap;
  animation: pulse-cta 3s infinite;
}
.btn-cta:hover { opacity: 0.9; }
.cta-stars { font-size: 0.7rem; color: var(--gold); display: block; text-align: center; margin-top: 4px; }
.cta-reviews { font-size: 0.65rem; color: var(--text-muted); text-align: center; display: block; }

.card-hidden { display: none; }
.show-more-wrap { text-align: center; margin-top: 24px; }
.btn-show-more {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-show-more:hover { background: var(--accent); color: #fff; }

/* === CONTENT SECTIONS === */
.content-section {
  padding: 48px 0;
}
.section-light { background: var(--bg); }
.section-alt { background: var(--bg-alt); }

/* === FEATURED SNIPPET BLOCKS === */
.fs-paragraph {
  background: #f0fdf4;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0;
  font-size: 0.97rem;
  color: var(--text);
}
.fs-list {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
}
.fs-list ol, .fs-list ul { padding-left: 20px; }
.fs-list li { padding: 4px 0; font-size: 0.95rem; }
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.fs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fs-table th {
  background: #0f172a;
  color: #f1f5f9;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.fs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.fs-table tr:last-child td { border-bottom: none; }
.fs-table tr:nth-child(even) td { background: var(--bg-alt); }
.check { color: var(--accent); font-weight: 700; }
.cross { color: var(--accent2); font-weight: 700; }

/* === H2 BANNERS === */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 1.5rem;
  overflow: hidden;
  line-height: 0;
}
.h2-banner-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .h2-banner-img {
    aspect-ratio: 1 / 1;
    object-position: center top;
  }
}
.h2-banner-wrap figcaption {
  font-size: 11px;
  color: #6b7280;
  background: transparent;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* === COMPARISON TABLE === */
.comparison-table-section { padding: 48px 0; }
.comparison-table-section h2 { margin-bottom: 20px; }

/* === METHODOLOGY === */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.method-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.method-icon { font-size: 2rem; margin-bottom: 10px; }
.method-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.method-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* === AUTHOR BOX === */
.author-section {
  padding: 48px 0;
  background: var(--bg-alt);
}
.author-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.author-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-details h3 { margin: 0 0 4px; font-size: 1.1rem; }
.author-details .author-title-tag {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.author-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.author-dates { font-size: 0.78rem; color: var(--text-muted); }
/* === INTERACTIVE COMPONENTS === */
.bonus-calc, .rtp-compare, .casino-finder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.bonus-calc h3, .rtp-compare h3, .casino-finder h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text);
}
.calc-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.calc-row label { font-size: 0.85rem; color: var(--text-muted); min-width: 120px; }
.calc-row input, .calc-row select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  flex: 1;
  min-width: 120px;
}
.calc-result {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #15803d;
  font-weight: 600;
  margin-top: 10px;
  display: none;
}
.calc-result.visible { display: block; }
.btn-calc {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}
.btn-calc:hover { opacity: 0.9; }
.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.finder-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.finder-option.selected, .finder-option:hover {
  border-color: var(--accent);
  background: #f0fdf4;
  color: var(--accent);
}
.author-dates time { font-weight: 500; }
@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* === REVIEWED BY === */
.reviewed-by-section {
  padding: 48px 0;
  background: #f0fdf4;
}
.reviewed-by-header {
  text-align: center;
  margin-bottom: 28px;
}
.reviewed-by-label {
  font-size: 1rem;
  font-weight: 700;
  color: #15803d;
}
.reviewed-by-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .reviewed-by-cards { grid-template-columns: 1fr; }
}
.reviewer-card {
  background: var(--bg);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.reviewer-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewer-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; display: block; }
.reviewer-role { font-size: 0.78rem; color: var(--text-muted); display: block; }
.reviewer-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; display: block; }
.reviewer-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 8px; }
.reviewer-quote { font-size: 0.88rem; color: var(--text-muted); font-style: italic; }

/* === FAQ === */
.faq-section {
  padding: 48px 0;
  background: var(--bg-alt);
}
.faq-list { margin-top: 24px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-family: var(--font);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-icon { color: var(--accent); font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* === DISCLAIMER === */
.disclaimer-section {
  padding: 28px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.disclaimer-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: #92400e;
}

/* === FOOTER === */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-brand { font-size: 1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 8px; display: block; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.82rem; line-height: 1.6; }
.footer-col h4 { color: #f1f5f9; font-size: 0.9rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.82rem; text-decoration: none; }
.footer-col ul li a:hover { color: #f1f5f9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.78rem;
  color: #64748b;
  text-align: center;
}

/* === STICKY CTA (Mobile) === */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #15803d, #16A34A);
  padding: 12px 20px;
  z-index: 9990;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.sticky-cta-text { color: #fff; font-size: 0.88rem; font-weight: 600; }
.sticky-cta-btn {
  background: #fff;
  color: var(--accent) !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none !important;
  font-size: 0.88rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sticky-cta-bar.visible { display: flex; }
  body { padding-bottom: 60px; }
}

/* === POPUP === */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}
.popup-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.popup-box h3 { margin-bottom: 8px; font-size: 1.15rem; }
.popup-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.popup-cta {
  display: block;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff !important;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none !important;
  font-size: 1rem;
  animation: pulse-cta 2.5s infinite;
}
.popup-cta:hover { opacity: 0.9; }
.popup-micro { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }

/* === BADGES / MISC === */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.stars-row { color: var(--gold); font-size: 0.9rem; }

/* === AUTHOR META (inside article) === */
.author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.author-meta .author-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--accent); }
.author-meta .author-name a { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.author-meta .author-title { font-size: 0.78rem; color: var(--text-muted); display: block; }
.author-meta .author-dates { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 2px; }

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
  .casino-card {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
  }
  .card-cta { grid-column: 1 / -1; text-align: center; }
  .hero-stats .stat-card { flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 36px; }
  .btn-primary { padding: 12px 20px; font-size: 0.92rem; }
}
