/* =========================================================
   Sorteios e Promoções — Visual Premium v2
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary:     #6C3EF4;
  --primary-dk:  #5228D4;
  --primary-lt:  #EEE9FE;
  --accent:      #F59E0B;
  --accent-lt:   #FEF3C7;
  --green:       #10B981;
  --green-lt:    #D1FAE5;
  --red:         #EF4444;
  --red-lt:      #FEE2E2;
  --dark:        #0F0F1A;
  --dark2:       #1A1A2E;
  --dark3:       #16213E;
  --text:        #1E1B4B;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --white:       #FFFFFF;
  --bg:          #F5F3FF;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(108,62,244,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(108,62,244,.12), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 20px 60px rgba(108,62,244,.18), 0 8px 24px rgba(0,0,0,.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Layout ─────────────────────────────────────── */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 700px;  margin: 0 auto; padding: 0 20px; }

/* ─── Header ─────────────────────────────────────── */
.site-header {
  background: #000;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: auto; min-height: 64px; flex-wrap: wrap; padding: 10px 24px; gap: 10px;
}
.logo {
  font-size: 20px; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.logo-img {
  width: 52px; height: 52px; object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.logo-text {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.35px;
  line-height: 1.05;
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
  white-space: nowrap;
}
@supports (-webkit-background-clip: text) {
  .logo-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #DDD6FE 45%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}
@media (max-width: 640px) {
  .logo-img { width: 44px; height: 44px; }
  .logo-text { font-size: 15px; }
}
.site-nav {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.site-nav a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.6); transition: color .15s;
}
.site-nav a:hover { color: #fff; text-decoration: none; }

/* ─── Hero ────────────────────────────────────────── */
.hero-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, #2D1B69 100%);
  padding: 64px 0 52px; position: relative; overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(168,85,247,.22) 0%, transparent 70%);
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -.5px;
}
.hero-title span {
  background: linear-gradient(90deg, #A78BFA, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: rgba(255,255,255,.55); font-size: 16px; margin-top: 10px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.hero-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 6px 14px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75);
}

/* ─── Main ────────────────────────────────────────── */
.main-content { padding: 40px 0 72px; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.35);
  text-align: center; padding: 32px 0; font-size: 13px;
}
.site-footer a { color: rgba(255,255,255,.35); }

/* ─── Cards ──────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(108,62,244,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: 16px; }

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius);
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: all .18s; letter-spacing: -.1px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8B5CF6);
  color: #fff; box-shadow: 0 4px 14px rgba(108,62,244,.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(108,62,244,.5);
  transform: translateY(-1px);
}
.btn-success {
  background: linear-gradient(135deg, #059669, var(--green));
  color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,.3);
}
.btn-success:hover { transform: translateY(-1px); }
.btn-danger  { background: linear-gradient(135deg, #DC2626, var(--red)); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-lt); }
.btn-gray { background: #F3F4F6; color: var(--text); }
.btn-gray:hover { background: #E5E7EB; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #1a1a2e; }
.btn-lg { padding: 14px 36px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── Forms ──────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #E5E7EB; border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--text);
  background: #fff; transition: all .15s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,62,244,.12); }
.form-control::placeholder { color: #9CA3AF; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Badges ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.badge-green  { background: var(--green-lt);   color: #065F46; }
.badge-amber  { background: var(--accent-lt);  color: #92400E; }
.badge-blue   { background: var(--primary-lt); color: var(--primary-dk); }
.badge-red    { background: var(--red-lt);      color: #991B1B; }
.badge-gray   { background: #F3F4F6;            color: #4B5563; }

/* ─── Alerts ─────────────────────────────────────── */
.alert {
  padding: 14px 18px; border-radius: var(--radius);
  margin-bottom: 16px; font-size: 14px; font-weight: 500;
}
.alert-success { background: var(--green-lt); color: #065F46; border-left: 4px solid var(--green); }
.alert-danger  { background: var(--red-lt);   color: #991B1B; border-left: 4px solid var(--red); }
.alert-warning { background: var(--accent-lt);color: #92400E; border-left: 4px solid var(--accent); }
.alert-info    { background: var(--primary-lt);color: var(--primary-dk); border-left: 4px solid var(--primary); }

/* ─── Progress ───────────────────────────────────── */
.progress { height: 8px; background: #EDE9FE; border-radius: 4px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), #A855F7); border-radius: 4px; transition: width .5s; }
.progress-bar.full { background: linear-gradient(90deg, #059669, var(--green)); }

/* ─── Separator ──────────────────────────────────── */
.sep { border: none; border-top: 1px solid #F3F4F6; margin: 20px 0; }

/* ─── Number grid ────────────────────────────────── */
.numeros-wrapper { max-height: 420px; overflow: auto; border: 1px solid var(--border); border-radius: 14px; padding: 10px; background: #fff; }
.numeros-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: 6px; margin: 16px 0; }
.num-btn {
  aspect-ratio: 1; border: 1.5px solid #DDD6FE; border-radius: 10px;
  background: #fff; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all .14s;
  display: flex; align-items: center; justify-content: center; color: var(--text);
}
.num-btn:hover:not(:disabled) { border-color: var(--primary); background: var(--primary-lt); color: var(--primary); transform: scale(1.06); }
.num-btn.selected { background: linear-gradient(135deg, var(--primary), #8B5CF6); color: #fff; border-color: transparent; box-shadow: 0 3px 10px rgba(108,62,244,.4); transform: scale(1.08); }
.num-btn.sold { background: #F9FAFB; color: #E5E7EB; cursor: not-allowed; border-color: #F3F4F6; }
.num-btn.ganhador { background: linear-gradient(135deg, #059669, var(--green)); color: #fff; border-color: transparent; }

/* ─── Quick picks ────────────────────────────────── */
.quick-picks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 640px) { .quick-picks { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.quick-pick-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
  border: 1px solid rgba(108,62,244,.20);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.quick-pick-card:hover { border-color: rgba(108,62,244,.55); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.quick-pick-card:active { transform: translateY(0); }
.quick-pick-title { font-size: 14px; font-weight: 800; color: var(--dark); }
.quick-pick-sub { font-size: 12px; font-weight: 700; color: var(--primary); }
.quick-pick-meta { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.quick-pick-tag { display:inline-flex; align-items:center; gap:6px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; color:#fff; background: linear-gradient(135deg, var(--primary), #A855F7); padding: 3px 8px; border-radius: 999px; width: fit-content; }
.quick-pick-card.is-popular {
  background: linear-gradient(135deg, rgba(108,62,244,.95), rgba(168,85,247,.92));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(108,62,244,.35);
}
.quick-pick-card.is-popular .quick-pick-title,
.quick-pick-card.is-popular .quick-pick-sub,
.quick-pick-card.is-popular .quick-pick-meta { color: #fff; }
.quick-pick-card.is-popular .quick-pick-meta { opacity: .9; }
.quick-pick-card.is-popular .quick-pick-tag { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.quick-pick-card.is-big { border-color: rgba(245,158,11,.28); }
.quick-pick-card.is-mega { border-color: rgba(16,185,129,.28); }

/* ─── Pix ────────────────────────────────────────── */
.pix-qr { display: block; margin: 0 auto; max-width: 180px; border-radius: 12px; }
.pix-copia { background: #F5F3FF; border: 1px dashed #DDD6FE; border-radius: var(--radius); padding: 12px 14px; font-family: monospace; font-size: 11px; color: var(--text-muted); word-break: break-all; margin: 10px 0; }

/* ─── Countdown ──────────────────────────────────── */
.countdown {
  font-size: 28px; font-weight: 800;
  color: var(--accent); text-align: center; padding: 8px;
}
.countdown.urgent { color: var(--red); animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ─── Tables ─────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; padding: 10px 14px; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--border); background: #FAFAFA; }
.table td { padding: 13px 14px; border-bottom: 1px solid #F3F4F6; vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: #FAFBFF; }

/* ─── Metrics ────────────────────────────────────── */
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 768px) { .metrics-grid { grid-template-columns: repeat(2,1fr); } }
.metric-card {
  background: #fff; border: 1px solid rgba(108,62,244,.08);
  border-radius: var(--radius-lg); padding: 20px 22px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.metric-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), #A855F7); }
.metric-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing:.06em; margin-bottom: 8px; }
.metric-value { font-size: 30px; font-weight: 800; color: var(--text); letter-spacing: -.5px; }
.metric-sub   { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ─── Campaign cards ─────────────────────────────── */
.home-featured-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; }
@media (max-width: 900px) { .home-featured-grid { grid-template-columns: 1fr; } }
.campanhas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; }
.campanha-card { background: #fff; border: 1px solid rgba(108,62,244,.1); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow-sm); }
.campanha-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.campanha-img { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg, var(--dark), #2D1B69); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.campanha-body { padding: 20px 22px; }
.campanha-nome { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.campanha-info { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.campanha-preco { font-size: 22px; font-weight: 800; color: var(--primary); }
.campanha-img--contain { object-fit: contain; background: #fff; padding: 10px; }
.featured-img { width: 100%; height: 320px; object-fit: contain; display: block; background: #fff; padding: 14px; }
@media (max-width: 900px) { .featured-img { height: 260px; } }

/* ─── Media slider ───────────────────────────────── */
.media-slider { position: relative; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid rgba(108,62,244,.12); }
.media-track { display: flex; transition: transform .25s ease; will-change: transform; }
.media-slide { min-width: 100%; }
.media-slide img, .media-slide video { width: 100%; height: 360px; object-fit: contain; display: block; background: #fff; cursor: zoom-in; }
@media (max-width: 640px) { .media-slide img, .media-slide video { height: 260px; } }
.media-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; font-size: 22px; line-height: 1;
}
.media-nav.prev { left: 10px; }
.media-nav.next { right: 10px; }
.media-dots {
  position: absolute; left: 0; right: 0; bottom: 10px;
  display: flex; gap: 8px; justify-content: center; z-index: 2;
}
.media-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.25);
}
.media-dot.active { background: #fff; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 18px; }
.lightbox.open { display: flex; }
.lightbox-content { max-width: 1100px; width: 100%; max-height: 85vh; background: #0B1220; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; position: relative; }
.lightbox-content img { width: 100%; height: 85vh; max-height: 85vh; object-fit: contain; background: #0B1220; display: block; }
.lightbox-close { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-radius: 999px; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.18); color: #fff; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; }

/* ─── Admin ──────────────────────────────────────── */
.topbar { background: var(--dark); padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar .brand { color: #fff; font-weight: 800; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.topbar .brand-icon { width: 32px; height: 32px; border-radius: 8px; background: transparent; display: flex; align-items: center; justify-content: center; }
.topbar .brand-icon img { width: 32px; height: 32px; object-fit: contain; }
.topbar .user  { color: rgba(255,255,255,.5); font-size: 13px; }
.topbar a { color: rgba(255,255,255,.5); font-size: 13px; margin-left: 16px; transition: color .15s; }
.topbar a:hover { color: #fff; text-decoration: none; }

.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
.admin-sidebar { background: var(--dark); padding: 16px 0; }
.sidebar-section { padding: 14px 24px 4px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .1em; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5); transition: all .14s; border-radius: 10px; margin: 1px 8px; }
.sidebar-nav a:hover { background: rgba(108,62,244,.2); color: #fff; text-decoration: none; }
.sidebar-nav a.active { background: linear-gradient(135deg, rgba(108,62,244,.35), rgba(139,92,246,.25)); color: #fff; border-left: 3px solid var(--primary); padding-left: 13px; }
.nav-sep { border-top: 1px solid rgba(255,255,255,.06); margin: 8px 16px; }
.admin-content { padding: 32px 36px; background: var(--bg); }
@media (max-width: 900px) { .admin-layout { grid-template-columns: 1fr; } .admin-sidebar { display: none; } }

/* ─── Sorteio result ─────────────────────────────── */
.sorteio-box { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); border: 2px solid #34D399; border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.sorteio-numero { font-size: 80px; font-weight: 800; letter-spacing: 10px; color: #065F46; }
.sorteio-hash { font-family: monospace; font-size: 11px; color: #6B7280; word-break: break-all; margin-top: 8px; }

/* ─── Steps ──────────────────────────────────────── */
.steps { display: flex; margin-bottom: 32px; }
.step { flex: 1; text-align: center; position: relative; padding: 10px 4px; }
.step::after { content: ''; position: absolute; top: 18px; left: 55%; width: 90%; height: 2px; background: #DDD6FE; }
.step:last-child::after { display: none; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; margin: 0 auto 8px; position: relative; z-index: 1; }
.step.done .step-circle    { background: var(--green); color: #fff; box-shadow: 0 4px 12px rgba(16,185,129,.4); }
.step.active .step-circle  { background: linear-gradient(135deg, var(--primary), #8B5CF6); color: #fff; box-shadow: 0 4px 12px rgba(108,62,244,.4); }
.step.pending .step-circle { background: #EDE9FE; color: #C4B5FD; }
.step-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.step.active .step-label { color: var(--primary); }

/* ─── Page titles ────────────────────────────────── */
.page-title    { font-size: 26px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.4px; }
.page-subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }

/* ─── Spinner ────────────────────────────────────── */
.spinner { display: inline-block; width: 20px; height: 20px; border: 2.5px solid #DDD6FE; border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .numeros-grid { grid-template-columns: repeat(auto-fill, minmax(44px,1fr)); gap: 4px; }
  .card { padding: 18px; }
  .hero-banner { padding: 36px 0 28px; }
  .admin-content { padding: 20px 16px; }
}

/* ─── Tabs ───────────────────────────────────────── */
.admin-tabs { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.admin-tabs::-webkit-scrollbar { display: none; }
.tab-item { padding: 14px 24px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-muted); border-bottom: 3px solid transparent; transition: all 0.2s; white-space: nowrap; }
.tab-item:hover { color: var(--primary); }
.tab-item.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(108, 62, 244, 0.05); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── Forms / Extra ──────────────────────────────── */
.input-icon-group { position: relative; }
.input-icon-group span { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); opacity: 0.5; }
.input-icon-group .form-control { padding-left: 42px; }
.prize-row { display: grid; grid-template-columns: 80px 1fr 100px; gap: 12px; align-items: flex-end; padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; }
