
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;

  background-image: url("../img/tło.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}



/* ===== PASEK ===== */
.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 15px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #111;
  color: #fff;

  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  background: #ff6600;
  color: #000;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  padding: 6px 12px;
  background: #1a1a1a;
  border-radius: 8px;
  transition: 0.3s;
}

.menu a:hover {
  background: #ff0000;
  color: #fff;
}

.lang {
  display: flex;
  gap: 10px;
}

.lang a {
  color: #ccc;
  text-decoration: none;
  padding: 6px 12px;
  background: #1a1a1a;
  border-radius: 8px;
}

/* ===== SEKCJE ===== */
section {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }

  .menu {
    justify-content: center;
  }

  .lang {
    justify-content: center;
  }
}
.icon img {
  width: 45px;
  height: 45px;
  border-radius: 8px; /* lekko zaokrąglone rogi */
  object-fit: cover;
}
@media (min-width: 1450px) {
  .games-grid {
    grid-template-columns: repeat(4, 320px);
  }
}
@media (max-width: 1079px) and (min-width: 720px) {
  .games-grid {
    grid-template-columns: repeat(2, 320px);
  }
}
.players {
  padding: 60px 0;
  text-align: center;
  background: radial-gradient(circle at center, #0a0a0a, #000);
}

.section-title {
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 0 0 20px #ff0000;
  margin-bottom: 40px;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 0 40px;
}

.player-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
  height: 350px;
}

.player-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: all 0.4s ease;
}

.player-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.player-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 20px;
  text-align: left;
  transition: all 0.4s ease;
}

.player-card:hover .player-overlay {
  background: linear-gradient(to top, rgba(255,0,0,0.7), rgba(0,0,0,0));
}


.player-role {
  font-size: 1rem;
  color: #ccc;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .players-grid {
    grid-template-columns: 1fr;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.player-card:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.6),
    0 0 50px rgba(255, 0, 0, 0.4),
    0 0 75px rgba(255, 0, 0, 0.2);
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  }
}

.player-card:hover {
  animation: neonPulse 1.5s infinite;
}

.gear {
  padding: 60px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  text-align: center;
}

.gear-title {
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 0 0 20px #ff0000;
  margin-bottom: 40px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 40px;
}

.gear-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
  transition: 0.4s ease;
}

.gear-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: 0.4s ease;
}

.gear-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.gear-info {
  padding: 20px;
  background: linear-gradient(to top, rgba(255,0,0,0.4), rgba(0,0,0,0));
  text-align: left;
}

.gear-info h3 {
  color: #ff0000;
  font-size: 1.3rem;
  margin: 0;
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.gear-info p {
  color: #ccc;
  margin-top: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.gear-card:hover {
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.6),
    0 0 50px rgba(255, 0, 0, 0.4),
    0 0 75px rgba(255, 0, 0, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .gear-title {
    font-size: 2rem;
  }
}
.recruit {
  padding: 80px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  display: flex;
  justify-content: center;
  text-align: center;
}

.recruit-container {
  max-width: 900px;
  padding: 40px;
  border-radius: 25px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
  transition: 0.4s ease;
}

.recruit-title {
  font-size: 3rem;
  color: #ff0000;
  text-shadow: 0 0 25px #ff0000;
  margin-bottom: 20px;
}

.recruit-desc {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.requirements {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.req-card {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
  transition: 0.4s ease;
}

.req-card:hover {
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.6),
    0 0 50px rgba(255, 0, 0, 0.4),
    0 0 75px rgba(255, 0, 0, 0.2);
  transform: translateY(-5px);
}

.req-card h3 {
  color: #ff0000;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.req-card ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  font-size: 1rem;
}

.recruit-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 40px;
  background: #ff0000;
  color: #fff;
  border-radius: 10px;
  font-size: 1.3rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.recruit-btn:hover {
  background: #ff3333;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
  transform: scale(1.05);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.crosshair {
  padding: 60px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  text-align: center;
}

.crosshair-title {
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 0 0 20px #ff0000;
  margin-bottom: 40px;
}

.crosshair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 40px;
}

.cross-card {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
  transition: 0.4s ease;
  position: relative;
}

.cross-card:hover {
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.6),
    0 0 50px rgba(255, 0, 0, 0.4),
    0 0 75px rgba(255, 0, 0, 0.2);
  transform: translateY(-5px);
}

.cross-info h3 {
  color: #ff0000;
  font-size: 1.4rem;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.cross-info p {
  color: #ccc;
  margin-bottom: 10px;
}

.cross-info code {
  display: block;
  background: #222;
  padding: 10px;
  border-radius: 10px;
  color: #ff3333;
  font-size: 0.9rem;
  box-shadow: inset 0 0 10px rgba(255,0,0,0.4);
}

.copy-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #ff0000;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.copy-btn:hover {
  background: #ff3333;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
  transform: scale(1.05);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.about {
  padding: 80px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  display: flex;
  gap: 3rem;
  padding: 40px;
  border-radius: 25px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

.about-left {
  flex: 1;
}

.about-title {
  font-size: 3rem;
  color: #ff0000;
  text-shadow: 0 0 25px #ff0000;
  margin-bottom: 20px;
}

.about-text {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: #ff0000;
  color: #fff;
  border-radius: 10px;
  font-size: 1.3rem;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.about-btn:hover {
  background: #ff3333;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
  transform: scale(1.05);
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  background: url("../img/nexo_team.jpg") center/cover no-repeat;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  transition: 0.4s ease;
}

.about-image:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 35px rgba(255, 0, 0, 0.7),
    0 0 60px rgba(255, 0, 0, 0.4);
}
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px 0;
  border-top: 2px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 -5px 25px rgba(255, 0, 0, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ff0000;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.footer-col p {
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #bbb;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
}

.socials a:hover {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}

.news-img {
  height: 180px;
  background: url("../img/news0.png") center/cover no-repeat;
}

.news-img.img1 {
  background: url("../img/news1.png") center/cover no-repeat;
}

.news-img.img2 {
  background: url("../img/news2.png") center/cover no-repeat;
}

.news-img.img3 {
  background: url("../img/news2.png") center/cover no-repeat;
}

.news-img.img4 {
  background: url("../img/news2.png") center/cover no-repeat;
}

.news-img.img5 {
  background: url("../img/news2.png") center/cover no-repeat;
}


.news-img.img6 {
  background: url("../img/news6.png") center/cover no-repeat;
}
.news {
  padding: 60px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  text-align: center;
}

.news-title {
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 0 0 20px #ff0000;
  margin-bottom: 40px;
}

.news-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  width: 45%;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
  transition: 0.4s ease;
}

.news-card:hover {
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
  transform: translateY(-5px);
}

.news-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.news-content {
  padding: 20px;
  text-align: left;
}

.news-content h3 {
  color: #ff0000;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.news-content p {
  color: #ccc;
  margin-bottom: 15px;
}

.news-date {
  color: #888;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.news-img6 {
  height: 180px;
  background: url("../img/news6.jpg") center/cover no-repeat;
}

.news-img.img1 {
  background: url("../img/news1.png") center/cover no-repeat;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr; /* jedna kolumna na telefonie */
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* aktywacja animacji */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* OPÓŹNIENIA DLA KOLEJNYCH RZĘDÓW */
.news-row:nth-child(2).active {
  transition-delay: 0.15s;
}

.news-row:nth-child(3).active {
  transition-delay: 0.3s;
}

.news-row:nth-child(4).active {
  transition-delay: 0.45s;
}

.news-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

/* NEONOWY HOVER */
.news-img:hover {
  transform: scale(1.05);
  filter: brightness(1.25);
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4),
    0 0 45px rgba(255, 0, 0, 0.2);
}

.about {
  background: rgba(0, 0, 0, 0.85);
  padding: 60px 40px;
  margin: 60px auto;
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
  text-align: center;
  display: block;
}

.about-title {
  color: #ff0000;
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.about-text {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ff0000;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #ff3333;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.show-more-container {
  text-align: center;
  margin-top: 40px;
}

#show-more-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

#show-more-btn:hover {
  background: #ff3333;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.players {
  background: rgba(0, 0, 0, 0.85);
  padding: 80px 0;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
  text-align: center;
}

.section-title {
  color: #ff0000;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
  padding: 0 40px;
}

.player-card {
  position: relative;
  width: 220px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.player-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* Overlay z danymi */
.player-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px;
  transform: translateY(100%);
  transition: all 0.4s ease;
  text-align: center;
}

/* Efekt hover */
.player-card:hover .player-overlay {
  transform: translateY(0);
}

.player-card:hover img {
  filter: brightness(0.5);
  transform: scale(1.05);
}

/* Nick w grze */
.player-nick {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

/* Prawdziwe imię i nazwisko */
.player-name {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 5px 0;
  background: none;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.4);
}

/* Pozycja / rola */
.player-role {
  color: #ff3333;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Wiek i kraj */
.player-info {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Ikony sociali */
.player-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  color: #ff0000;
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

/* ULTRA PRO ANIMACJA WEJŚCIA */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(8px) drop-shadow(0 0 0 rgba(255, 0, 0, 0));
  transition:
    opacity 1s ease-out,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) drop-shadow(0 0 35px rgba(255, 0, 0, 0.7));
}

/* PULS NEONU PO WEJŚCIU */
.reveal.active {
  animation: neonPulse 2.5s ease-in-out 1;
}

@keyframes neonPulse {
  0% {
    filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 55px rgba(255, 0, 0, 1));
  }
  100% {
    filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.7));
  }
}

.player-card:nth-child(1) { transition-delay: 0.05s; }
.player-card:nth-child(2) { transition-delay: 0.15s; }
.player-card:nth-child(3) { transition-delay: 0.25s; }
.player-card:nth-child(4) { transition-delay: 0.35s; }
.player-card:nth-child(5) { transition-delay: 0.45s; }
.player-card:nth-child(6) { transition-delay: 0.55s; }

.gear {
  padding: 60px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  text-align: center;
}

.gear-title {
  font-size: 2.5rem;
  color: #ff0000;
  text-shadow: 0 0 20px #ff0000;
  margin-bottom: 40px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 40px;
}

.gear-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
  transition: 0.4s ease;
  text-decoration: none;
  color: #fff;
}

.gear-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: 0.4s ease;
}

.gear-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.gear-card h3 {
  color: #ff0000;
  font-size: 1.3rem;
  margin: 10px 0 5px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.gear-card p {
  color: #ccc;
  margin-bottom: 15px;
}

.player-gear {
  background: #000;
  color: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  text-align: center;
}

.player-gear h2 {
  color: #ff0000;
  font-size: 2rem;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.gear-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gear-item {
  background: #111;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  transition: 0.3s ease;
}

.gear-item:hover {
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
  transform: translateY(-5px);
}

.gear-item h3 {
  color: #ff0000;
  margin-bottom: 10px;
}

.player-gear {
  background: #000;
  color: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  text-align: center;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.player-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.player-info h2 {
  color: #ff0000;
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.player-info h3 {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 5px;
}

.player-info p {
  color: #999;
  font-size: 1rem;
}

.section-title {
  color: #ff0000;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.gear-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gear-item {
  background: #111;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  transition: 0.3s ease;
}

.gear-item:hover {
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
  transform: translateY(-5px);
}

.gear-item h3 {
  color: #ff0000;
  margin-bottom: 10px;
}

.gear-item ul {
  list-style: none;
  padding: 0;
  color: #ccc;
  font-size: 0.95rem;
}

.gear-item p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ANIMACJA WEJŚCIA SEKCJI SPRZĘTU */
.gear-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: drop-shadow(0 0 0 rgba(255, 0, 0, 0));
  transition:
    opacity 1s ease-out,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease-out;
}

.gear-reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.5));
}

/* PULS NEONU PO WEJŚCIU */
.gear-reveal.active {
  animation: gearPulse 2.5s ease-in-out 1;
}

@keyframes gearPulse {
  0% {
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 45px rgba(255, 0, 0, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.5));
  }
}

.gear-photo {
  width: 100%;
  max-width: 300px; /* ogranicza szerokość zdjęcia */
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 auto 15px auto;
  display: block;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gear-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
}

.gear-item {
  display: flex;
  flex-direction: column; /* ustawia zdjęcie nad tekstem */
  align-items: center;
  justify-content: flex-start;
  background: #111;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  transition: 0.3s ease;
  overflow: hidden; /* zapobiega wychodzeniu zdjęć poza kafelek */
}

/* ANIMACJA WEJŚCIA ZDJĘĆ SPRZĘTU */
.gear-photo {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease-out;
}

.gear-photo.visible {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
  animation: photoPulse 2.5s ease-in-out 1;
}

/* PULS NEONU PO WEJŚCIU */
@keyframes photoPulse {
  0% {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
  }
}



/* PODSTAWOWA ANIMACJA WEJŚCIA */
.gear-photo {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease-out;
}

/* AKTYWNE ZDJĘCIE */
.gear-photo.visible {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
  animation: photoPulse 2.5s ease-in-out 1;
}

/* PULS NEONU */
@keyframes photoPulse {
  0% { filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6)); }
  50% { filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.9)); }
  100% { filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6)); }
}

.recruit-form {
  background: #111;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recruit-title {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  text-align: center;
}

.recruit-form input,
.recruit-form select,
.recruit-form textarea {
  background: #000;
  border: 1px solid #ff0000;
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  font-size: 1rem;
}

.recruit-submit {
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.recruit-submit:hover {
  background: #ff3333;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}
.recruit-form {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

.recruit-title {
  color: #ff0000;
  text-shadow: 0 0 15px rgba(255,0,0,0.7);
  text-align: center;
  margin-bottom: 25px;
}

.form-box label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: #fff;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px;
  background: #222;
  border: 1px solid #ff0000;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  margin-bottom: 10px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  box-shadow: 0 0 10px rgba(255,0,0,0.7);
  border-color: #ff0000;
}

.recruit-submit {
  width: 100%;
  padding: 12px;
  background: #ff0000;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.2s;
}

.recruit-submit:hover {
  background: #cc0000;
  box-shadow: 0 0 15px rgba(255,0,0,0.7);
}

body {
  background:#000;
  color:#fff;
  font-family:'Segoe UI', Arial;
  padding:10px;
}

/* KONTEJNER */
.recruit-form {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

.recruit-title {
  color: #ff0000;
  text-shadow: 0 0 15px rgba(255,0,0,0.7);
  text-align: center;
  margin-bottom: 20px;
}

/* POLA */
.form-box label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #fff;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px;
  background: #222;
  border: 1px solid #ff0000;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 8px;
  transition: 0.2s;
}

.error {
  border-color: #ff3333 !important;
  box-shadow: 0 0 10px rgba(255,0,0,0.7);
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  box-shadow: 0 0 10px rgba(255,0,0,0.7);
  border-color: #ff0000;
}

/* IKONKI */
.icon {
  margin-right: 6px;
  color:#ff0000;
}

/* PRZYCISKI */
.recruit-submit,
.preview-btn {
  width: 100%;
  padding: 10px;
  background: #ff0000;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 12px;
  transition: 0.2s;
}

.preview-btn {
  background:#333;
}

.recruit-submit:hover {
  background: #cc0000;
  box-shadow: 0 0 15px rgba(255,0,0,0.7);
}

.preview-btn:hover {
  background:#555;
}

/* PODGLĄD */
.preview-box {
  margin-top: 20px;
  background:#000;
  border:1px solid #ff0000;
  border-radius:8px;
  padding:10px;
  display:none;
}

.preview-box h3 {
  margin-top:0;
  color:#ff0000;
}

/* MOBILE */
@media (max-width: 480px) {
  .recruit-form {
    padding: 15px;
    margin: 10px auto;
  }
  .recruit-title {
    font-size: 1.3rem;
  }
  .form-box label {
    font-size: 0.95rem;
  }
  .form-box input,
  .form-box select,
  .form-box textarea {
    font-size: 0.9rem;
  }
}