@font-face {
  font-family: 'PS2P';
  src: url('../fonts/press-start-2p.woff2') format('woff2');
  font-display: swap;
}

:root {
  --bg: #0a0713;
  --panel: rgba(16, 11, 30, 0.88);
  --line: #3a2d66;
  --text: #e9e4ff;
  --dim: #9187c2;
  --pink: #ff3df0;
  --cyan: #3df5ff;
  --lime: #7dff5a;
  --gold: #ffd23d;
  --red: #ff3b5c;
  --px: 'PS2P', ui-monospace, 'Courier New', monospace;
  --body: ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  touch-action: none;
}
.hidden { display: none !important; }

#stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#game {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  flex: none;
  transition: transform 0.05s linear;
}

/* CRT flavour: faint scanlines and a vignette over everything */
#crt {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45) 100%),
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.09) 3px);
}

/* ---------- HUD ---------- */
#hud { position: fixed; inset: 0; pointer-events: none; z-index: 10; font-family: var(--px); }
#hud > * { position: absolute; }
#hud-tl { top: 10px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
#alive, #timer {
  font-size: 11px;
  background: rgba(8, 5, 18, 0.7);
  border: 2px solid var(--line);
  padding: 6px 9px;
  letter-spacing: 1px;
}
#alive b { color: var(--lime); font-weight: normal; }
#alive span { color: var(--dim); }
#timer { color: var(--gold); }
#timer.sudden { color: var(--red); border-color: var(--red); animation: blink 0.6s steps(2) infinite; }
#timer:empty { display: none; }
#zone { font-size: 9px; padding: 6px 9px; background: rgba(60, 6, 28, 0.78); border: 2px solid #ff3b6a; color: #ff9db6; letter-spacing: 1px; }
#zone:empty { display: none; }
#zone.warn { color: #fff; background: rgba(190, 20, 60, 0.9); animation: blink 0.4s steps(2) infinite; }
#stormfx { inset: 0; opacity: 0; transition: opacity 0.25s; background: radial-gradient(ellipse at center, transparent 40%, rgba(255, 20, 80, 0.55) 100%); }
#stormfx.on { opacity: 1; animation: stormpulse 0.6s ease-in-out infinite alternate; }
@keyframes stormpulse { from { filter: brightness(0.8); } to { filter: brightness(1.4); } }
@keyframes blink { 50% { opacity: 0.35; } }

#killfeed { top: 10px; right: 12px; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; max-width: 46vw; }
.kf {
  font-size: 9px;
  background: rgba(8, 5, 18, 0.72);
  border-right: 3px solid var(--red);
  padding: 5px 8px;
  white-space: nowrap;
  animation: kf-in 0.18s ease-out;
}
.kf.fade { opacity: 0; transition: opacity 0.6s; }
.kf .arrow { color: var(--dim); margin: 0 5px; }
.kf.me { border-right-color: var(--gold); background: rgba(60, 44, 0, 0.75); }
@keyframes kf-in { from { transform: translateX(30px); opacity: 0; } }

#hud-bl { left: 12px; bottom: 12px; }
#items { display: flex; flex-wrap: wrap; gap: 6px; max-width: 70vw; }
.itm {
  display: flex; align-items: center; gap: 6px;
  background: rgba(8, 5, 18, 0.72);
  border: 2px solid var(--line);
  padding: 3px 8px 3px 4px;
  font-size: 8px;
  animation: pop 0.25s ease-out;
}
.itm img { width: 22px; height: 22px; image-rendering: pixelated; }
.itm { position: relative; overflow: hidden; }
.itm .bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, 0.12); }
.itm .bar b { display: block; height: 100%; width: 100%; background: var(--gold); }
.itm.low .bar b { background: var(--red); }
@keyframes pop { from { transform: scale(1.5); } }

#hud-br { right: 12px; bottom: 12px; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
#radar {
  width: 240px; height: 160px;
  image-rendering: pixelated;
  border: 3px solid var(--line);
  background: #04070a;
  box-shadow: 0 0 0 2px #000, 0 0 18px rgba(61, 245, 255, 0.15);
}
#radar-tag { font-size: 8px; color: var(--pink); min-height: 10px; }
#netinfo { font-size: 8px; color: var(--dim); }

#banner {
  left: 0; right: 0; top: 24%;
  text-align: center;
  font-size: clamp(26px, 7vw, 76px);
  color: #fff;
  text-shadow: 0 0 24px var(--pink), 4px 4px 0 #000, -2px -2px 0 #000;
  letter-spacing: 3px;
  line-height: 1.15;
}
#banner.pop { animation: bpop 0.5s cubic-bezier(0.2, 1.6, 0.4, 1); }
#banner.small { font-size: clamp(14px, 2.6vw, 30px); top: 13%; letter-spacing: 4px; }
#banner.small ~ #sub { top: calc(13% + 46px); }
#banner.red { color: var(--red); text-shadow: 0 0 24px var(--red), 4px 4px 0 #000; }
#banner.gold { color: var(--gold); text-shadow: 0 0 24px #ff9a2a, 4px 4px 0 #000; }
#banner small { display: block; font-size: 0.24em; margin-top: 18px; color: var(--text); letter-spacing: 2px; text-shadow: 2px 2px 0 #000; }
@keyframes bpop { from { transform: scale(2.4); opacity: 0; } 60% { opacity: 1; } }
#sub {
  left: 0; right: 0; top: calc(24% + 105px);
  text-align: center; font-size: 11px; color: var(--dim); text-shadow: 2px 2px 0 #000;
}
#spectate {
  left: 0; right: 0; bottom: 14px; text-align: center; font-size: 10px; color: var(--text);
  text-shadow: 2px 2px 0 #000; line-height: 1.8;
}
#spectate b { font-weight: normal; }

#winner {
  left: 0; right: 0; top: 9%; text-align: center; animation: bpop 0.7s cubic-bezier(0.2, 1.6, 0.4, 1);
}
#winner-kicker {
  font-size: clamp(12px, 2.6vw, 26px); color: var(--gold); letter-spacing: 5px;
  text-shadow: 0 0 20px #ff9a2a, 3px 3px 0 #000; margin-bottom: 12px;
}
#winner-name {
  font-size: clamp(24px, 6vw, 68px); color: #fff; letter-spacing: 3px;
  text-shadow: 0 0 28px currentColor, 5px 5px 0 #000, -2px -2px 0 #000;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.7);
  word-break: break-word; padding: 0 20px;
}
#winner-sub { font-size: clamp(9px, 1.8vw, 16px); margin-top: 22px; color: var(--text); text-shadow: 2px 2px 0 #000; line-height: 1.9; }

#mute, #menu-btn {
  pointer-events: auto; top: 10px; bottom: auto; left: 50%;
  font-family: var(--px); font-size: 8px; color: var(--dim);
  background: rgba(8, 5, 18, 0.6); border: 2px solid var(--line); padding: 6px 8px; cursor: pointer;
}
#mute { transform: translateX(-160%); }
#voice { top: 10px; bottom: auto; left: 50%; transform: translateX(-50%); pointer-events: auto; font-family: var(--px); font-size: 8px; color: var(--cyan); background: rgba(8, 5, 18, 0.6); border: 2px solid var(--line); padding: 6px 8px; cursor: pointer; }
#voice.off { color: var(--red); text-decoration: line-through; }
#menu-btn { transform: translateX(110%); display: none; }
#mute.off { color: var(--red); text-decoration: line-through; }

/* ---------- overlays / panels ---------- */
.overlay { position: fixed; inset: 0; z-index: 20; overflow-y: auto; touch-action: pan-y; }
#menu { background: linear-gradient(rgba(6, 3, 14, 0.5), rgba(6, 3, 14, 0.72)); }
#scoreboard { background: rgba(6, 3, 14, 0.78); display: flex; align-items: center; justify-content: center; z-index: 15; }
#admin { background: rgba(6, 3, 14, 0.9); display: flex; align-items: flex-start; justify-content: center; z-index: 30; padding: 24px 12px; }

.panel {
  background: var(--panel);
  border: 3px solid var(--line);
  box-shadow: 0 0 0 3px #000, 8px 8px 0 rgba(0, 0, 0, 0.5);
  padding: 18px 20px;
  -webkit-user-select: text;
  user-select: text;
}
.panel.wide { width: min(980px, 94vw); max-height: 92vh; overflow: auto; }
h2, h3 { font-family: var(--px); font-weight: normal; margin: 0 0 14px; letter-spacing: 2px; }
h2 { font-size: 16px; color: var(--gold); }
h3 { font-size: 11px; color: var(--cyan); }
h3 small { font-family: var(--body); font-size: 11px; color: var(--dim); letter-spacing: 0; margin-left: 8px; }

.menu-inner { max-width: 1040px; margin: 0 auto; padding: 22px 16px 40px; display: flex; flex-direction: column; gap: 18px; }
header { text-align: center; }
h1 { margin: 0; font-family: var(--px); font-weight: normal; line-height: 1; display: flex; flex-direction: column; gap: 6px; align-items: center; }
h1 .l1 {
  font-size: clamp(22px, 6.2vw, 64px);
  letter-spacing: 3px;
  background: linear-gradient(#ffffff 0%, #e6e9ff 34%, #7d83b8 50%, #dde1ff 58%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 0 #2a1b5a) drop-shadow(0 0 18px rgba(150, 120, 255, 0.55));
}
h1 .l2 {
  font-size: clamp(30px, 9.4vw, 98px);
  letter-spacing: 5px;
  background: linear-gradient(#ff8fa3 0%, #ff3b5c 45%, #b3122f 52%, #ff3b5c 70%, #7a0f26 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 5px 0 #33000d) drop-shadow(0 0 26px rgba(255, 59, 92, 0.6));
  animation: glitch 6s steps(1) infinite;
}
@keyframes glitch {
  0%, 92%, 100% { transform: none; }
  93% { transform: translate(-4px, 0) skewX(-6deg); }
  95% { transform: translate(5px, 1px); }
  97% { transform: translate(-2px, -1px) skewX(4deg); }
}
.tag { font-family: var(--px); font-size: clamp(8px, 1.6vw, 12px); color: var(--dim); margin: 16px 0 0; letter-spacing: 2px; }

.cols { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.25fr); gap: 18px; }
@media (max-width: 760px) { .cols { grid-template-columns: 1fr; } }

label { font-family: var(--px); font-size: 10px; color: var(--cyan); display: block; margin-bottom: 8px; letter-spacing: 1px; }
input[type='text'], input[type='password'], input[type='number'], select {
  width: 100%;
  font-family: var(--px);
  font-size: 14px;
  color: #fff;
  background: #07040f;
  border: 3px solid var(--line);
  padding: 12px;
  outline: none;
  border-radius: 0;
  -webkit-user-select: text; user-select: text;
}
input:focus, select:focus { border-color: var(--pink); box-shadow: 0 0 14px rgba(255, 61, 240, 0.35); }
button {
  font-family: var(--px);
  cursor: pointer;
  color: #fff;
  border-radius: 0;
}
button.big {
  width: 100%; margin-top: 14px; font-size: 20px; padding: 16px;
  background: linear-gradient(#ff5a78, #d81f45);
  border: 3px solid #ffb3c1; border-bottom-color: #7a0f26; border-right-color: #7a0f26;
  text-shadow: 2px 2px 0 #4a0616;
  letter-spacing: 4px;
}
button.big:hover { filter: brightness(1.15); }
button.big:active { transform: translateY(2px); }
button.big:disabled { filter: grayscale(0.8) brightness(0.6); cursor: default; }
button.small {
  font-size: 9px; padding: 8px 10px; background: #1a1233; border: 2px solid var(--line);
}
button.small:hover { border-color: var(--pink); }
button.danger { border-color: #7a0f26; color: #ff8fa3; }

.status { font-size: 12px; min-height: 18px; margin-top: 10px; color: var(--gold); line-height: 1.5; }
.status.err { color: var(--red); }
.server-line { font-family: var(--px); font-size: 8px; color: var(--dim); margin-top: 6px; letter-spacing: 1px; line-height: 1.7; }
.controls { margin-top: 18px; font-size: 12px; color: var(--dim); display: grid; gap: 9px; }
.controls span { color: var(--text); margin: 0 8px 0 4px; }
kbd {
  font-family: var(--px); font-size: 9px; color: #fff; background: #1d1440;
  border: 2px solid var(--line); border-bottom-width: 4px; padding: 3px 5px; margin: 0 2px;
}

.tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.tab { font-size: 10px; padding: 9px 12px; background: #120c26; border: 2px solid var(--line); color: var(--dim); }
.tab.on { color: var(--gold); border-color: var(--gold); }

.board { font-size: 13px; }
.board .row {
  display: grid; grid-template-columns: 30px 1fr auto auto; gap: 10px; align-items: center;
  padding: 7px 8px; border-bottom: 1px solid #241a45;
}
.board .row:nth-child(1) { color: var(--gold); }
.board .row:nth-child(2) { color: #d8dcff; }
.board .row:nth-child(3) { color: #e59a62; }
.board .rank { font-family: var(--px); font-size: 10px; }
.board .nm { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board .pts { font-family: var(--px); font-size: 11px; color: var(--lime); }
.board .sub { font-size: 10px; color: var(--dim); }
.board .empty { color: var(--dim); padding: 18px 6px; font-size: 12px; }
.board .row.mine { background: rgba(255, 210, 61, 0.12); }

.powerups #legend { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px 18px; }
.pu { display: flex; gap: 10px; align-items: center; font-size: 12px; line-height: 1.35; }
.pu img { width: 32px; height: 32px; image-rendering: pixelated; flex: none; }
.pu b { display: block; font-family: var(--px); font-weight: normal; font-size: 9px; color: #fff; margin-bottom: 4px; letter-spacing: 1px; }
.pu span { color: var(--dim); }

footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11px; color: var(--dim); }
footer a { color: var(--cyan); font-family: var(--px); font-size: 9px; text-decoration: none; letter-spacing: 1px; }
footer a:hover { color: var(--pink); }

/* scoreboard */
#sb-players { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 6px 14px; margin-bottom: 18px; }
.sbp { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 5px 8px; background: rgba(255, 255, 255, 0.04); border-left: 6px solid var(--c); }
.sbp .nm { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sbp .k { font-family: var(--px); font-size: 10px; color: var(--gold); }
.sbp.dead { opacity: 0.45; text-decoration: line-through; }
.sbp.you .nm::after { content: ' (YOU)'; color: var(--dim); }
.boards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .boards { grid-template-columns: 1fr; } }

/* admin */
.admin-panel { width: min(760px, 100%); }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.admin-head h2 { margin: 0; }
#admin-login p { font-size: 13px; color: var(--dim); line-height: 1.6; }
#admin-login input { margin: 8px 0; }
code { background: #1a1233; padding: 1px 5px; color: var(--cyan); }
#admin-form fieldset { border: 2px solid var(--line); margin: 0 0 14px; padding: 12px 14px 14px; }
#admin-form legend { font-family: var(--px); font-size: 10px; color: var(--cyan); padding: 0 8px; letter-spacing: 1px; }
.fld { display: grid; grid-template-columns: 180px 1fr 60px; gap: 10px; align-items: center; margin: 9px 0; font-size: 13px; }
.fld > span:first-child { color: var(--text); }
.fld output { font-family: var(--px); font-size: 10px; color: var(--gold); text-align: right; }
.fld .hint { grid-column: 2 / 4; font-size: 11px; color: var(--dim); margin-top: -4px; }
@media (max-width: 560px) { .fld { grid-template-columns: 1fr 50px; } .fld > span:first-child { grid-column: 1 / 3; } .fld .hint { grid-column: 1 / 3; } }
input[type='range'] { width: 100%; accent-color: var(--pink); }
.fld select, .fld input[type='number'], .fld input[type='text'] { padding: 8px; font-size: 12px; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.chk { display: flex; align-items: center; gap: 8px; font-family: var(--body); color: var(--text); letter-spacing: 0; margin: 0; font-size: 12px; background: rgba(255, 255, 255, 0.04); padding: 6px 8px; cursor: pointer; }
.chk img { width: 22px; height: 22px; image-rendering: pixelated; }
.chk input { accent-color: var(--pink); width: 16px; height: 16px; }
.btnrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.plist { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; }
.plist span { background: rgba(255, 255, 255, 0.05); padding: 4px 6px; display: inline-flex; gap: 8px; align-items: center; }
.note { font-size: 12px; color: var(--dim); line-height: 1.6; margin: 8px 0; }

/* touch controls */
#touch { position: fixed; inset: 0; z-index: 12; touch-action: none; }
#stick {
  position: absolute; width: 120px; height: 120px; border-radius: 50%; opacity: 0;
  border: 3px solid rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.06); transition: opacity 0.1s;
}
#stick.on { opacity: 1; }
#knob {
  position: absolute; left: 35px; top: 35px; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4); border: 3px solid rgba(255, 255, 255, 0.7);
}
#fire {
  position: absolute; right: 22px; bottom: 26px; width: 96px; height: 96px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--px); font-size: 12px; color: #fff; letter-spacing: 1px;
  background: rgba(255, 59, 92, 0.5); border: 4px solid rgba(255, 179, 193, 0.85);
}
@media (pointer: coarse) {
  #radar { width: 150px; height: 100px; }
  #hud-br { bottom: 130px; }
  #menu-btn { display: block; }
  #killfeed { max-width: 38vw; }
}

/* mode scores and the announcer */
#modebox { top: 44px; left: 50%; transform: translateX(-50%); text-align: center; font-size: 10px; line-height: 1.9; text-shadow: 2px 2px 0 #000; background: rgba(8, 5, 18, 0.55); padding: 4px 12px; border: 2px solid var(--line); white-space: nowrap; }
#modebox:empty { display: none; }
#modebox .t0 { color: #ff6b6b; } #modebox .t1 { color: #6bb5ff; }
#modebox small { display: block; font-size: 8px; color: var(--dim); }
#modebox .warn { color: var(--red); animation: blink 0.5s steps(2) infinite; }
#announce {
  left: 0; right: 0; top: 40%; text-align: center; font-size: clamp(16px, 4vw, 44px); color: var(--gold); letter-spacing: 3px;
  text-shadow: 0 0 22px #ff9a2a, 4px 4px 0 #000; opacity: 0; pointer-events: none;
}
#announce.show { animation: announce 2.4s ease-out forwards; }
#announce small { display: block; font-size: 0.32em; margin-top: 10px; color: var(--text); letter-spacing: 2px; text-shadow: 2px 2px 0 #000; }
@keyframes announce { 0% { transform: scale(2.2); opacity: 0; } 10% { transform: scale(1); opacity: 1; } 80% { opacity: 1; } 100% { transform: scale(1); opacity: 0; } }
.sbp .tier { font-family: var(--px); font-size: 7px; color: var(--dim); margin-left: 6px; }
.sbp .kd { font-family: var(--px); font-size: 9px; color: var(--dim); }
.sb-team { grid-column: 1 / -1; font-family: var(--px); font-size: 10px; letter-spacing: 2px; padding: 6px 4px; margin-top: 4px; }

/* kill cam and time slow */
#killcam { inset: 0; pointer-events: none; }
#killcam::before, #killcam::after { content: ''; position: absolute; left: 0; right: 0; height: 12%; background: #000; }
#killcam::before { top: 0; } #killcam::after { bottom: 0; }
#killcam .rec { position: absolute; top: 14%; left: 24px; font-size: 12px; color: #ff3b5c; animation: blink 0.8s steps(2) infinite; text-shadow: 2px 2px 0 #000; }
#killcam .rec::before { content: '\25CF '; }
#killcam-text { position: absolute; bottom: 14%; left: 0; right: 0; text-align: center; font-size: 13px; color: #fff; text-shadow: 2px 2px 0 #000; line-height: 1.8; }
#game { transition: transform 0.05s linear, filter 0.3s; }
#game.slowmo { filter: saturate(0.55) hue-rotate(-25deg) brightness(0.92); }
.kf .wpn { color: var(--gold); font-size: 7px; margin: 0 3px; }
.sbp .bot { font-family: var(--px); font-size: 7px; color: var(--cyan); margin-left: 6px; }

/* character looks gallery */
#looks { background: rgba(6, 3, 14, 0.92); display: flex; align-items: flex-start; justify-content: center; z-index: 30; padding: 24px 12px; }
.looks-panel { width: min(1100px, 100%); }
#looks-you { color: var(--text); font-size: 13px; margin: 6px 0 14px; line-height: 1.6; }
#looks-you b { color: var(--gold); font-family: var(--px); font-weight: normal; font-size: 11px; }
.looks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; margin-bottom: 18px; }
.look { position: relative; background: rgba(255, 255, 255, 0.04); border: 2px solid var(--line); padding: 10px 12px 12px; text-align: center; }
.look canvas { width: 160px; height: 190px; image-rendering: pixelated; background: radial-gradient(circle at 50% 60%, #241a4a 0%, #0d0a1c 75%); border: 2px solid #241a45; }
.look .lname { font-family: var(--px); font-size: 11px; color: #fff; margin-top: 8px; letter-spacing: 1px; }
.look .lreq { font-family: var(--px); font-size: 8px; color: var(--gold); margin-top: 6px; }
.look .lblurb { font-size: 12px; color: var(--dim); margin-top: 8px; line-height: 1.45; min-height: 3.6em; }
.look .lheld { font-family: var(--px); font-size: 8px; color: var(--cyan); margin-top: 6px; }
.look.locked canvas { filter: brightness(0.35) saturate(0.4); }
.look.locked .lname { color: var(--dim); }
.look.current { border-color: var(--gold); box-shadow: 0 0 18px rgba(255, 210, 61, 0.35); }
.ltag { position: absolute; top: 6px; right: 6px; font-family: var(--px); font-size: 7px; padding: 4px 6px; background: var(--gold); color: #1a1233; }
.ltag.lock { background: #3a2d66; color: var(--dim); }
.ltag.ok { background: #1d5a2a; color: #b8ffc8; }
