/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

/* Вывеска NNB */
.neon-sign {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00ffe7, #ff00d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 5px #00ffe7,
    0 0 10px #00ffe7,
    0 0 20px #00ffe7,
    0 0 40px #ff00d4;
  animation: flicker 2s infinite;
}

/* Анимация мерцания */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

/* Центральный блок */
.center {
  flex: 1 1 300px;
}

/* Список ростера */
.roster {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.roster-item {
  font-size: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

.roster-item:hover {
  color: #00ffe7;
  transform: scale(1.05);
}

.roster-item span {
  color: #ff9900;
  font-style: italic;
}

/* Блоки с картинками */
.side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100px;
}

.side img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.side img:hover {
  transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .side {
    flex-direction: row;
    overflow-x: auto;
    padding: 10px 0;
  }

  .side img {
    width: 80px;
    flex-shrink: 0;
  }
}