/* Общие стили */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* Плавающие элементы */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-elements .circle,
.floating-elements .line {
  position: absolute;
  background: rgba(255, 0, 50, 0.1);
  border-radius: 50%;
  animation: float 20s linear infinite;
}

.floating-elements .circle {
  width: 100px;
  height: 100px;
}

.floating-elements .line {
  width: 3px;
  height: 150px;
  border-radius: 0;
  animation-duration: 25s;
}

@keyframes float {
  0% { transform: translateY(-200px) translateX(0); }
  50% { transform: translateY(50vh) translateX(50vw); }
  100% { transform: translateY(100vh) translateX(-10vw); }
}

/* Контент поверх фоновых элементов */
.content {
  position: relative;
  z-index: 1;
}

/* Хедер */
header {
  position: relative;
  text-align: center;
  color: white;
}

header img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(60%);
  transition: transform 0.2s ease-out;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.4);
}

header h1 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 0 0 15px #ff002b;
}

header p {
  font-size: 1.2rem;
  color: #cccccc;
}

/* Игроки */
.players {
  max-width: 900px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}

.player {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #141414;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 50, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.player:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 0, 50, 0.4);
}

.player img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff002b;
}

.player-info h2 {
  margin: 0 0 5px;
  color: #ff002b;
}

.player-info p {
  margin: 0;
  color: #cccccc;
  line-height: 1.4;
}

/* Футер */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #0a0a0a;
  color: #888888;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

/* Адаптив */
@media (max-width: 700px) {
  header img {
    height: 250px;
  }
  header h1 {
    font-size: 2rem;
  }
  .player {
    flex-direction: column;
    text-align: center;
  }
  .player img {
    width: 100px;
    height: 100px;
  }
}



