/* === Пиксельный шрифт для сайта === */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* === Кнопки с красным мистическим градиентом === */
button, .btn, .ed-button, input[type="submit"], .buy-button {
  font-family: 'Press Start 2P', monospace !important;
  background: linear-gradient(90deg, #2a0000, #4a0000, #8b0000) !important;
  color: #ffcccc !important;
  border: 2px solid #ff0000 !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  padding: 8px 14px !important;
  box-shadow: 0 0 8px rgba(255,0,0,0.4) !important;
  transition: all 0.3s ease !important;
  background-size: 200% 200%;
  animation: gradientPulse 3s ease infinite;
}

/* Hover эффект */
button:hover, .btn:hover, .ed-button:hover, input[type="submit"]:hover, .buy-button:hover {
  box-shadow: 0 0 18px rgba(255,0,0,0.7) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* Анимация градиента кнопок */
@keyframes gradientPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Заголовки === */
h1.site-title, h2.site-subtitle {
  font-family: 'Press Start 2P', monospace !important;
  font-weight: bold;
  text-transform: uppercase;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientTextPulse 3s ease infinite;
  text-shadow: 0 0 4px rgba(255,0,0,0.5);
}

/* RomixerX */
h1.site-title {
  font-size: 36px;
  background-image: linear-gradient(90deg, #ff3c3c, #ff0000, #8b0000);
  text-shadow: 0 0 6px #ff0000, 0 0 12px #8b0000;
}

/* Мистический сервер */
h2.site-subtitle {
  font-size: 24px;
  background-image: linear-gradient(90deg, #ff6666, #ff3c3c, #990000);
  text-shadow: 0 0 4px #ff4444, 0 0 8px #660000;
}

/* Анимация мерцания градиента текста */
@keyframes gradientTextPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Адаптивность === */
@media (max-width: 1024px) {
  button, .btn, .ed-button, input[type="submit"], .buy-button { font-size: 13px !important; padding: 7px 12px !important; }
  h1.site-title { font-size: 32px; }
  h2.site-subtitle { font-size: 20px; }
}
@media (max-width: 768px) {
  button, .btn, .ed-button, input[type="submit"], .buy-button { font-size: 12px !important; padding: 6px 10px !important; }
  h1.site-title { font-size: 28px; }
  h2.site-subtitle { font-size: 18px; }
}
@media (max-width: 480px) {
  button, .btn, .ed-button, input[type="submit"], .buy-button { font-size: 11px !important; padding: 5px 8px !important; }
  h1.site-title { font-size: 24px; }
  h2.site-subtitle { font-size: 16px; }
}
@media (max-width: 360px) {
  button, .btn, .ed-button, input[type="submit"], .buy-button { font-size: 10px !important; padding: 4px 6px !important; }
  h1.site-title { font-size: 20px; }
  h2.site-subtitle { font-size: 14px; }
}
