
#maintenance-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: maintFadeIn 0.3s ease forwards;
}
.maint-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.maint-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, rgba(28, 24, 20, 0.96) 0%, rgba(15, 12, 10, 0.98) 100%);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 20px;
  padding: 32px 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 169, 110, 0.12);
  color: #f7f4ed;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Montserrat', sans-serif;
}
.maint-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  color: #c9a96e;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.maint-close:hover {
  background: rgba(201, 169, 110, 0.2);
  color: #fff;
}
.maint-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #d4b47a;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.maint-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #f7f4ed;
  margin: 0 0 12px;
  line-height: 1.2;
}
.maint-text {
  font-size: 14px;
  line-height: 1.6;
  color: #d6d0c4;
  margin: 0 0 18px;
}
.maint-highlight {
  font-size: 14px;
  color: #e5ded3;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 3px solid #c9a96e;
  text-align: left;
}
.maint-highlight strong {
  color: #d4b47a;
}
.maint-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.maint-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  min-height: 48px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.maint-btn-phone {
  background: linear-gradient(135deg, #c9a96e 0%, #a88748 100%);
  color: #0f0c0a;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}
.maint-btn-phone:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.maint-btn-vk {
  background: #0077ff;
  color: #ffffff;
}
.maint-btn-vk:hover {
  background: #0066dd;
  transform: translateY(-1px);
}
.maint-btn-tg {
  background: #229ed9;
  color: #ffffff;
}
.maint-btn-tg:hover {
  background: #1c88bd;
  transform: translateY(-1px);
}
.maint-footer-note {
  font-size: 12px;
  color: #8c857b;
  margin-top: 6px;
}
@keyframes maintFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
