:root {
  color-scheme: dark;
  --bg: #101010;
  --panel: #151515;
  --panel-2: #252525;
  --panel-3: #2d2d2d;
  --text: #f4f4f4;
  --muted: #a6a6a6;
  --line: #3a3a3a;
  --soft-line: #242424;
  --accent: #9b5cff;
  --live: #ff3d45;
  --green: #82ff63;
  --cyan: #55d9ff;
  --coral: #ff7066;
  --gold: #ffd24f;
  --shadow: 0 18px 60px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.stream-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.auth-shell {
  align-items: center;
  display: flex;
  justify-content: center;
}

.access-panel {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.access-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 400px;
  padding: 20px;
  width: 100%;
}

.brand-row,
.key-row,
.status-strip,
.stream-badge,
.player-chrome,
.player-control-group,
.reaction-row,
.chat-form,
.message-meta {
  align-items: center;
  display: flex;
}

.brand-row {
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 4px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: 26px;
  line-height: 1.08;
  margin-bottom: 0;
}

.access-copy {
  color: var(--muted);
  line-height: 1.45;
  margin: 18px 0;
}

.access-form label {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.access-form > input {
  margin-bottom: 14px;
}

.two-factor-row {
  border-top: 1px solid var(--soft-line);
  margin-top: 14px;
  padding-top: 14px;
}

.key-row {
  gap: 10px;
}

input,
select {
  background: #111;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  min-width: 0;
  outline: none;
}

input {
  padding: 12px 13px;
  width: 100%;
}

select {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  padding: 0 18px 0 0;
}

select option {
  background: #171717;
  color: var(--text);
}

input:focus,
select:focus-visible {
  border-color: #686868;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}

.key-row button,
.chat-form button,
.admin-form button {
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  min-height: 44px;
  padding: 0 16px;
}

.link-button {
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 12px;
  padding: 0;
}

.link-button:hover,
.link-button:focus-visible {
  color: var(--text);
  outline: 0;
}

.recovery-form {
  border-top: 1px solid var(--soft-line);
  margin-top: 14px;
  padding-top: 14px;
}

.recovery-form input {
  margin-bottom: 12px;
}

.status-strip {
  background: #1f1a12;
  border: 1px solid #4b3920;
  border-radius: 8px;
  color: #ffd99b;
  gap: 10px;
  margin-top: 16px;
  padding: 11px 12px;
}

.status-strip.is-success {
  background: #142014;
  border-color: #315a31;
  color: #cfffca;
}

.status-strip.is-success .status-dot {
  background: var(--green);
}

.status-dot,
.pulse {
  background: var(--live);
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  width: 8px;
}

.pulse {
  animation: pulse 1.4s ease-in-out infinite;
}

.room {
  margin: 0 auto;
  max-width: 1280px;
  min-height: 0;
  width: 100%;
}

.stage-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 860px) 380px;
  height: 540px;
  justify-content: center;
  margin: 0 auto;
  width: fit-content;
}

.player-panel,
.side-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-panel {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stream-title-bar {
  align-items: center;
  background: #111;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex: 0 0 52px;
  padding: 0 15px;
}

.stream-title-bar h1 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.video-frame {
  background:
    radial-gradient(circle at 24% 22%, rgba(155, 92, 255, .2), transparent 31%),
    linear-gradient(135deg, #171717 0%, #0c0c0c 64%, #191919 100%);
  flex: 1 1 auto;
  height: auto;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.stream-video {
  background: #000;
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.stream-video[src] + .video-grid,
.stream-video[src] ~ .video-content .placeholder-copy,
.stream-video[src] ~ .video-content .meter-row {
  display: none;
}

.video-frame.is-live .video-grid,
.video-frame.is-live .placeholder-copy,
.video-frame.is-reconnecting .placeholder-copy,
.video-frame.is-reconnecting .meter-row,
.video-frame.is-live .meter-row {
  display: none;
}

.video-frame::after {
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, .62));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 2;
}

.video-frame:hover::after,
.video-frame:focus-within::after,
.video-frame.is-loading::after,
.video-frame.is-reconnecting::after,
.video-frame.is-error::after {
  opacity: 1;
}

.player-live-badge {
  background: #f00020;
  border-radius: 2px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  padding: 3px 5px;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
  transition: opacity .16s ease;
  z-index: 5;
}

.video-frame.is-live .player-live-badge,
.video-frame.is-reconnecting .player-live-badge {
  opacity: 1;
}

.video-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  inset: 0;
  opacity: .72;
  position: absolute;
}

.video-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  left: 26px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 18px;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 4;
}

.video-frame.is-live .video-content {
  opacity: 0;
  transform: translateY(-6px);
}

.video-frame.is-loading .video-content,
.video-frame.is-reconnecting .video-content,
.video-frame.is-error .video-content,
.video-frame.is-offline .video-content {
  opacity: 1;
  transform: translateY(0);
}

.stream-badge {
  background: rgba(0, 0, 0, .56);
  border-radius: 4px;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
  padding: 5px 7px;
}

.video-content h2 {
  font-size: 22px;
  line-height: 1.08;
  margin: 12px 0 5px;
}

.video-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  max-width: 360px;
}

.meter-row {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.meter-row span {
  animation: meters 1.2s ease-in-out infinite;
  background: var(--accent);
  border-radius: 999px;
  display: block;
  height: 24px;
  width: 6px;
}

.meter-row span:nth-child(2) {
  animation-delay: .1s;
  background: var(--green);
}

.meter-row span:nth-child(3) {
  animation-delay: .2s;
  background: var(--gold);
}

.meter-row span:nth-child(4) {
  animation-delay: .3s;
  background: var(--cyan);
}

.meter-row span:nth-child(5) {
  animation-delay: .4s;
  background: var(--coral);
}

.meter-row span:nth-child(6) {
  animation-delay: .5s;
  background: var(--green);
}

.player-chrome {
  background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
  bottom: 0;
  justify-content: space-between;
  left: 0;
  opacity: 0;
  padding: 28px 10px 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 5;
}

.video-frame:hover .player-chrome,
.video-frame:focus-within .player-chrome {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.player-control-group {
  gap: 10px;
  min-height: 36px;
  position: relative;
}

.player-icon-button {
  align-items: center;
  background: transparent;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 0;
  height: 36px;
  justify-content: center;
  min-width: 36px;
  padding: 0 7px;
}

.player-icon-button:hover,
.player-icon-button:focus-visible {
  background: rgba(255, 255, 255, .16);
  outline: 0;
}

.player-icon-button::before {
  background: currentColor;
  content: "";
  display: block;
  height: var(--icon-size, 22px);
  mask: var(--button-icon) center / contain no-repeat;
  width: var(--icon-size, 22px);
  -webkit-mask: var(--button-icon) center / contain no-repeat;
}

#playToggle {
  --button-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 5h4v14H7zM13 5h4v14h-4z'/%3E%3C/svg%3E");
  --icon-size: 20px;
}

#playToggle.is-paused {
  --button-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 5v14l12-7z'/%3E%3C/svg%3E");
}

#muteToggle {
  --button-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 9v6h4l5 5V4L7 9H3zm12.5-.7 1.4-1.4A7.9 7.9 0 0 1 19 12a7.9 7.9 0 0 1-2.1 5.1l-1.4-1.4A5.8 5.8 0 0 0 17 12a5.8 5.8 0 0 0-1.5-3.7zm2.8-2.8 1.4-1.4A11.9 11.9 0 0 1 23 12a11.9 11.9 0 0 1-3.3 7.9l-1.4-1.4A9.8 9.8 0 0 0 21 12a9.8 9.8 0 0 0-2.7-6.5z'/%3E%3C/svg%3E");
  --icon-size: 28px;
}

#muteToggle.is-muted {
  --button-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 9v6h4l5 5V4L7 9H3zm13.2 3 2.9-2.9 1.4 1.4-2.9 2.9 2.9 2.9-1.4 1.4-2.9-2.9-2.9 2.9-1.4-1.4 2.9-2.9-2.9-2.9 1.4-1.4z'/%3E%3C/svg%3E");
}

#settingsToggle {
  --button-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M19.4 13.5a7.8 7.8 0 0 0 .1-1.5 7.8 7.8 0 0 0-.1-1.5l2-1.6-2-3.5-2.4 1a8.2 8.2 0 0 0-2.6-1.5L14 2h-4l-.4 2.9A8.2 8.2 0 0 0 7 6.4l-2.4-1-2 3.5 2 1.6a7.8 7.8 0 0 0-.1 1.5 7.8 7.8 0 0 0 .1 1.5l-2 1.6 2 3.5 2.4-1a8.2 8.2 0 0 0 2.6 1.5L10 22h4l.4-2.9a8.2 8.2 0 0 0 2.6-1.5l2.4 1 2-3.5-2-1.6zM12 15.5A3.5 3.5 0 1 1 12 8a3.5 3.5 0 0 1 0 7.5z'/%3E%3C/svg%3E");
  --icon-size: 23px;
}

#fullscreenToggle {
  --button-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h7v2H7.4l4.1 4.1-1.4 1.4L6 7.4V11H4V4zm9 0h7v7h-2V7.4l-4.1 4.1-1.4-1.4L16.6 6H13V4zM4 13h2v3.6l4.1-4.1 1.4 1.4L7.4 18H11v2H4v-7zm14 0h2v7h-7v-2h3.6l-4.1-4.1 1.4-1.4 4.1 4.1V13z'/%3E%3C/svg%3E");
  --icon-size: 23px;
}

.viewer-chip {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  padding: 0 2px;
}

.volume-control {
  align-items: center;
  display: flex;
  height: 36px;
  overflow: hidden;
  transition: opacity .16s ease, width .16s ease;
  width: 92px;
}

.volume-control.is-muted {
  opacity: 0;
  pointer-events: none;
  width: 0;
}

.volume-control input {
  accent-color: #fff;
  cursor: pointer;
  height: 4px;
  width: 86px;
}

.settings-menu {
  position: relative;
}

.quality-panel {
  background: rgba(18, 18, 18, .94);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  bottom: 36px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .48);
  min-width: 138px;
  padding: 8px;
  position: absolute;
  right: 0;
}

.quality-panel p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 6px;
}

.quality-option {
  background: transparent;
  border-radius: 4px;
  color: var(--text);
  display: block;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 8px;
  text-align: left;
  width: 100%;
}

.quality-option:hover,
.quality-option:focus-visible,
.quality-option.is-active {
  background: rgba(255, 255, 255, .14);
  outline: 0;
}

.quality-option:disabled {
  color: rgba(255, 255, 255, .34);
  cursor: not-allowed;
}

.quality-option:disabled:hover {
  background: transparent;
}

.quality-hint {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  line-height: 1.3;
  margin: 7px 0 0;
  padding-top: 7px;
}

.side-panel {
  display: flex;
  flex-direction: column;
  height: 540px;
}

.panel-header {
  align-items: center;
  background: var(--panel-3);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex: 0 0 auto;
  height: 52px;
  padding: 0 13px;
}

.panel-header h2 {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.chat-feed {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 11px;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 13px;
  scrollbar-color: rgba(255, 255, 255, .24) transparent;
  scrollbar-width: thin;
}

.chat-feed::-webkit-scrollbar {
  width: 9px;
}

.chat-feed::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .22);
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

.chat-message {
  display: grid;
  gap: 8px;
  grid-template-columns: 28px minmax(0, 1fr);
}

.avatar {
  align-items: center;
  border-radius: 50%;
  color: #080808;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.avatar.green {
  background: var(--green);
}

.avatar.cyan {
  background: var(--cyan);
}

.avatar.coral {
  background: var(--coral);
}

.avatar.gold {
  background: var(--gold);
}

.message-meta {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  margin-bottom: 1px;
}

.message-meta span {
  color: var(--muted);
  font-weight: 700;
}

.message-meta .crown {
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}

.chat-message.is-admin .message-meta span:first-child {
  color: #fff3b0;
}

.chat-message p {
  color: #e2e2e2;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.reaction-row {
  border-top: 1px solid var(--soft-line);
  flex: 0 0 auto;
  gap: 7px;
  padding: 9px 11px;
}

.reaction-row button {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: inline-flex;
  font-size: 15px;
  height: 32px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.reaction-row button:hover {
  background: #303030;
}

.chat-form {
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  flex: 0 0 auto;
  gap: 8px;
  padding: 10px 11px;
}

.chat-form input {
  background: #111;
  border-color: #3b3b3b;
  min-height: 38px;
}

.chat-form button {
  min-height: 38px;
  padding: 0 13px;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.admin-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px;
  width: 100%;
}

.admin-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 18px;
}

.admin-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.admin-panel-wide {
  grid-column: 1 / -1;
}

.admin-panel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.admin-panel h2,
.admin-panel h3 {
  margin: 0;
}

.admin-panel h2 {
  font-size: 16px;
}

.admin-panel h3 {
  font-size: 14px;
}

.admin-form {
  display: grid;
  gap: 9px;
}

.admin-form label,
.secret-stack label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-form select,
.admin-form input,
.secret-stack input {
  background: #111;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  min-height: 42px;
  padding: 10px 12px;
}

.admin-form select {
  appearance: auto;
}

.admin-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 12px 0 0;
}

.secret-stack {
  display: grid;
  gap: 9px;
}

.secret-row {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.ghost-button,
.icon-text-button,
.danger-button {
  border-radius: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  min-height: 36px;
  padding: 0 12px;
}

.ghost-button,
.icon-text-button {
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.danger-button {
  background: #3a1717;
  border: 1px solid #6a2b2b;
  color: #ffd7d7;
}

.invite-form {
  align-items: end;
  grid-template-columns: minmax(160px, 1fr) minmax(190px, .75fr) auto;
}

.generated-key {
  align-items: center;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 14px;
  padding: 10px;
}

.generated-key span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.invite-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.invite-card {
  background: #111;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 12px;
}

.invite-card-head,
.invite-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.invite-card-head {
  justify-content: space-between;
  margin-bottom: 10px;
}

.invite-state {
  background: #352323;
  border-radius: 999px;
  color: #ffb0b0;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
}

.invite-state.is-active {
  background: #173018;
  color: #baffad;
}

.invite-meta {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.invite-field {
  display: grid;
  gap: 2px;
}

.invite-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.invite-field strong {
  color: var(--text);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.invite-actions {
  flex-wrap: wrap;
  margin-top: 12px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 61, 69, .42);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 61, 69, 0);
  }
}

@keyframes meters {
  0%,
  100% {
    transform: scaleY(.45);
  }

  50% {
    transform: scaleY(1.2);
  }
}

@media (max-width: 980px) {
  .stage-grid {
    height: auto;
    grid-template-columns: 1fr;
    width: min(100%, 860px);
  }

  .room {
    max-width: 860px;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .side-panel {
    height: 540px;
  }

  .admin-grid,
  .invite-form,
  .invite-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .stream-shell {
    padding: 14px;
  }

  .key-row,
  .chat-form {
    align-items: stretch;
    flex-direction: column;
  }

  .video-content {
    left: 18px;
    top: 16px;
  }

  .video-content h2 {
    font-size: 20px;
  }

  .video-content p {
    font-size: 12px;
    max-width: 280px;
  }

  .chat-form button,
  .key-row button {
    width: 100%;
  }
}

@media (hover: none) {
  .player-chrome {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
