/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

body {
  background: url('../img/background-ispmanagers.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container {
  text-align: center;
  position: relative;
}

/* Основной заголовок */
.main-title {
  font-family: 'Avengers', Arial, sans-serif;
  font-size: 5rem;
  letter-spacing: 4px;
  line-height: 1.2;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}

.main-title span {
  display: block;
  color: #d4af37; /* Золотой цвет */
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.6),
    4px 4px 8px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(255, 255, 255, 0.4);
}

/* Стиль для "support team" - киберпанк/неоновый */
.support-team {
  font-family: 'Ubuntu', monospace;
  font-size: 2rem;
  color: #00ffea; /* Неоново-голубой */
  letter-spacing: 3px;
  margin: 10px 0;
  text-shadow: 
    0 0 5px #00ffea,
    0 0 10px #00ffea,
    0 0 15px #00ffea,
    0 0 20px #008cff,
    0 0 35px #008cff;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.support-team:hover {
  transform: scale(1.1) rotate(-2deg);
  text-shadow: 
    0 0 10px #00ffea,
    0 0 20px #00ffea,
    0 0 30px #00ffea,
    0 0 40px #008cff,
    0 0 70px #008cff;
  filter: brightness(1.3);
}

/* Эффект блеска для основного заголовка */
.main-title span:not(.support-team)::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  transition: left 0.5s ease, opacity 0.5s ease;
  z-index: 2;
}

.main-title:hover span:not(.support-team) {
  transform: scale(1.1);
}

.main-title:hover span:not(.support-team)::after {
  left: 100%;
  opacity: 1;
}

/* Подзаголовок "coming soon" */
.subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: hidden;
}

.main-title:hover + .subtitle {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Импорт шрифта */
@font-face {
  font-family: 'Avengers';
  src: url('../fonts/Avengers.eot');
  src: url('../fonts/Avengers.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Avengers.woff2') format('woff2'),
       url('../fonts/Avengers.woff') format('woff'),
       url('../fonts/Avengers.ttf') format('truetype'),
       url('../fonts/Avengers.svg#Avengers') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
  .main-title {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
  
  .support-team {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .support-team {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 1rem;
  }
}