/* static.css — стили статических страниц (BEM) */

.static__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background: rgba(57, 57, 57, 0.95);
  padding: 25px 10px;
  box-shadow: 0px -1px 4px rgb(200 196 196 / 8%), 0px 4px 4px rgb(200 196 196 / 25%);
  background-clip: border-box;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.static__body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.static__title {
  margin-bottom: 0.75rem;
}

.static__text:last-child {
  margin-bottom: 0;
}

/* Используется в динамическом контенте {static} (контент администратора) — не удалять */
span.name-rog {
  color: #6cdaee;
  font-size: 16px;
  font-weight: 700;
}

/* === ORPHANED CSS из reference static.css === */

.reveds {
  background: hsla(240, 7%, 12%, 0.88);
  box-shadow: 0px -1px 4px rgb(200 196 196 / 8%), 0px 4px 4px rgb(200 196 196 / 25%);
  border-radius: 7px;
  padding: 5px 5px 5px 5px;
  margin-bottom: 20px;
}

.hr-line {
  width: 100px;
  height: 2px;
  background: #d5dfea;
  position: relative;
  float: left;
  margin-top: 10px;
  margin-right: 15px;
}

.static__btn {
  display: inline-block;
  height: 45px;
  font-weight: 400;
  color: #55b2fd;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: rgba(85, 178, 253, 0.10);
  border: 1px solid rgba(85, 178, 253, 0.28);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .static__btn { transition: none; }
}

.static__btn:hover {
  background: rgba(85, 178, 253, 0.22);
  border-color: rgba(85, 178, 253, 0.65);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(85, 178, 253, 0.35), 0 4px 12px rgba(85, 178, 253, 0.20);
  transform: translateY(-2px);
}

.static__btn:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(90, 185, 234, 0.20);
}

.static__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.static__btn:not(:disabled):not(.disabled):active {
  background: rgba(85, 178, 253, 0.30);
  border-color: rgba(85, 178, 253, 0.80);
  color: #fff;
  box-shadow: 0 0 8px rgba(85, 178, 253, 0.20);
  transform: translateY(0);
}

.static__btn-inner {
  display: flex;
  align-items: center;
}