.overlay-text .text-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-break: break-word;
  font-weight: 700;
}

.welcome-container {
  position: absolute;
  top: 54%;
  left: 50%;
  width: min(420px, calc(100vw - 32px));
  min-width: 320px;
  padding: 44px 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.98) 0%, rgba(230, 236, 245, 0.96) 100%);
  color: #161b24;
  text-align: center;
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translate(-50%, -60%);
  z-index: 2;
}

.welcome-container h1 {
  margin: 0 0 14px;
  color: #c3ccd7;
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.06;
}

.subtitle {
  margin-bottom: 30px;
  color: #5f687a;
  font-size: 1rem;
  line-height: 1.7;
}

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 600px) {
  .welcome-container {
    min-width: 0;
    padding: 28px 22px 24px;
    border-radius: 20px;
  }

  .welcome-container h1 {
    font-size: 1.42rem;
  }

  .welcome-actions {
    flex-direction: column;
  }
}
/* Настраиваемые характеристики отдельных боевых единиц. */
.unit-custom-fields {
  align-self: start;
  min-height: 0;
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(12, 17, 24, 0.48);
  color: #dbe5f1;
  line-height: 1.45;
}

.unit-custom-fields > summary {
  cursor: pointer;
  color: #e8edf5;
  font-size: 12px;
  font-weight: 700;
}

.unit-custom-fields-form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.unit-custom-fields-form label {
  display: grid;
  grid-template-columns: minmax(110px, .8fr) minmax(140px, 1.2fr);
  gap: 8px;
  align-items: center;
  margin: 0;
  color: #cfd6e2;
  font-size: 12px;
}

.unit-custom-fields-form input,
.unit-custom-fields-form select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: #1d222b;
  color: #f5f7fa;
}

.unit-custom-fields-form .btn-main {
  justify-self: start;
}

.unit-custom-fields-readonly {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.unit-custom-fields-readonly > div {
  display: grid;
  grid-template-columns: minmax(110px, .8fr) minmax(140px, 1.2fr);
  gap: 8px;
  color: #cfd6e2;
  font-size: 12px;
}

.unit-custom-fields-readonly strong {
  color: #f5f7fa;
  font-weight: 650;
}

@media (max-width: 640px) {
  .unit-custom-fields-form label,
  .unit-custom-fields-readonly > div {
    grid-template-columns: 1fr;
  }
}
