* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.bg,
.veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg {
  background: #000 url("../assets/background.jpg") center / cover no-repeat;
}

.veil {
  background: rgba(0, 0, 0, 0.12);
}

.screen {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 28px;
}

.title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.subtitle {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5a623;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.logo {
  width: 320px;
  max-width: 38vh;
  height: auto;
  margin: 14px 0 4px;
  background: transparent;
  border: 0;
  outline: 0;
  -webkit-user-drag: none;
  user-select: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.status {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.file {
  margin-top: 6px;
  max-width: 560px;
  width: 72%;
  font-size: 13px;
  color: #ececec;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.bar {
  width: 560px;
  max-width: 72%;
  height: 8px;
  margin-top: 16px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.bar.is-wait .bar-fill {
  width: 30% !important;
  animation: wait 1.2s ease-in-out infinite;
}

.bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, #f5c400, #ff7a00);
  transform-origin: left center;
  will-change: width;
}

.bar-info {
  width: 560px;
  max-width: 72%;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #f0f0f0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.staff-block {
  margin-top: 36px;
  width: 90%;
  max-width: 820px;
  text-align: center;
}

.staff-block h2 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.staff {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.staff li {
  min-width: 118px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
}

.staff .name {
  font-size: 14px;
  font-weight: 700;
}

.staff .role {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5a623;
}

@keyframes wait {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}
