* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

/* ===== Фоновая эмблема с пульсом и свечением ===== */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  background: url("photo_5436301730917776927_x.jpg") center/contain no-repeat;
  opacity: 0.35;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(229, 57, 53, 0.5));
  animation: pulseLogo 6s ease-in-out infinite;
}

@keyframes pulseLogo {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(229, 57, 53, 0.5));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.22;
    filter: drop-shadow(0 0 35px rgba(229, 57, 53, 0.8));
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(229, 57, 53, 0.5));
  }
}

/* ===== Шапка ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}

header img {
  height: 60px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #e53935;
}

section {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
  min-height: 100vh;
}

/* ===== Главная ===== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #111, #000);
}

.hero h1 {
  font-size: 3rem;
  margin-top: 60px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.hero p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #bbb;
}

.hero button {
  margin-top: 30px;
  padding: 12px 30px;
  background-color: #e53935;
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #ff4d4d;
}

/* ===== О команде ===== */
.about {
  background-color: rgba(17, 17, 17, 0.85);
}

.about h2 {
  color: #e53935;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  line-height: 1.6;
  color: #ccc;
}

/* ===== Состав ===== */
.team {
  background-color: rgba(13, 13, 13, 0.85);
}

.team h2 {
  color: #e53935;
  margin-bottom: 40px;
  text-align: center;
}

.position-group {
  margin-bottom: 60px;
}

.position-group h3 {
  text-align: center;
  color: #e53935;
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 2px solid #e53935;
  display: inline-block;
  padding-bottom: 5px;
}

.players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.player {
  background-color: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.player:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(229, 57, 53, 0.6);
}

.player img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 10px;
}

.player h4 {
  color: #fff;
  margin-bottom: 5px;
}

.player p {
  color: #bbb;
  font-size: 0.9rem;
}

/* ===== Контакты ===== */
.contacts {
  background-color: rgba(17, 17, 17, 0.85);
  text-align: center;
}

.contacts h2 {
  color: #e53935;
  margin-bottom: 20px;
}

.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.socials a:hover {
  color: #e53935;
  transform: scale(1.2);
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
