.noscript-warning {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: rgba(5, 5, 5, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.noscript-box {
  max-width: 460px;
  text-align: center;
  padding: 36px 32px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(40,10,10,.9), rgba(15,8,8,.9));
  border: 1px solid rgba(255, 89, 89, .35);
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  font-family: 'Benzin', system-ui, sans-serif;
}
.noscript-title {
  font-size: 24px;
  font-weight: 900;
  color: #ff5959;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.noscript-box p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
 
.privacy-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 89, 89, .25);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  font-family: 'Benzin', system-ui, sans-serif;
  max-width: 720px;
  margin: 0 auto;
}
.privacy-bar-text {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
  font-weight: 600;
}
.privacy-bar-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  border: none;
  border-radius: 12px;
  background: var(--accent, #ff1a1a);
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.privacy-bar-btn:hover {
  background: var(--accent-hover, #ff4444);
  transform: translateY(-2px);
}
 
body.devtools-open > .site,
body.devtools-open > main,
body.devtools-open > .wrap {
  filter: blur(14px);
  pointer-events: none;
  user-select: none;
  transition: filter .2s ease;
}
body.devtools-open::after {
  content: "Доступ к инструментам разработчика ограничен";
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,.85);
  color: #ff5959;
  font-family: 'Benzin', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 24px;
}
