/* Центрирование кнопки Play Market */
.cta-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: linear-gradient(90deg, #3f7c70 0%, #285f55 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 0.85em 2em;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(40,95,85,0.13);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin: 2rem auto 0 auto;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  /* Центрирование */
  display: flex;
  justify-content: center;
}
.glowna-sekcja .cta-btn-play {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
/* CTA Play Market Button */
.cta-btn-play {
  display: inline-flex;
  align-items: center;
  
  gap: 0.7em;
  background: linear-gradient(90deg, #3f7c70 0%, #285f55 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 0.85em 2em;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(40, 95, 85, 0.13);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin: 2rem auto 0 auto;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
}
.cta-btn-play:hover,
.cta-btn-play:focus {
  background: linear-gradient(90deg, #285f55 0%, #3f7c70 100%);
  color: #ffe082;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(40, 95, 85, 0.18);
}
.cta-btn-play-icon {
  font-size: 1.4em;
  background: #ffe082;
  color: #285f55;
  border-radius: 50%;
  width: 1.7em;
  height: 1.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(40, 95, 85, 0.08);
  margin-right: 0.3em;
}
.cta-btn-play-text {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .cta-btn-play {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.8em 0.5em;
  }
  .cta-btn-play-icon {
    font-size: 1.1em;
    width: 1.3em;
    height: 1.3em;
  }
}
/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: none;
  pointer-events: none;
}
.cookie-popup-content {
  background: linear-gradient(135deg, #285f55 0%, #3f7c70 100%);
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 30px rgba(19, 54, 62, 0.18);
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  pointer-events: all;
  max-width: 600px;
  width: 95vw;
}
.cookie-popup-text {
  font-size: 1rem;
  color: #fff;
  flex: 1 1 auto;
}
.cookie-popup-link {
  color: #ffe082;
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-popup-link:hover {
  color: #fff59d;
}
.cookie-popup-btn {
  background: #ffe082;
  color: #285f55;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(40, 95, 85, 0.08);
}
.cookie-popup-btn:hover {
  background: #fff59d;
  color: #13363e;
}
@media (max-width: 600px) {
  .cookie-popup-content {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem;
    gap: 1rem;
  }
  .cookie-popup-btn {
    width: 100%;
  }
}
/* Стили из index.html */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #293937;
  background: linear-gradient(
    135deg,
    #293937 0%,
    #13363e 25%,
    #1b3f4c 50%,
    #285f55 75%,
    #3f7c70 100%
  );
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(47, 121, 112, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(27, 63, 76, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(45deg, rgba(19, 54, 62, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(40, 95, 85, 0.05) 25%, transparent 25%);
  background-size: 200px 200px, 300px 300px, 50px 50px, 50px 50px;
  background-position: 0 0, 100px 100px, 0 0, 25px 25px;
  animation: geometryczna_animacja 30s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes geometryczna_animacja {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-50px) translateY(-50px);
  }
}

.glowna-sekcja {
  padding: 4rem 2rem;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  margin: 2rem 0;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(19, 54, 62, 0.2);
}

.glowna-sekcja:nth-child(odd) {
  background: rgba(245, 248, 250, 0.95);
}

.glowna-sekcja:nth-child(even) {
  background: rgba(240, 245, 247, 0.95);
}

.kontener-zawartosc {
  max-width: 1200px;
  margin: 0 auto;
}

.naglowek-glowny {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #3f7c70;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.naglowek-sekcji {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #3f7c70;
  position: relative;
}

.naglowek-sekcji::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #285f55, #3f7c70);
  margin: 1rem auto;
  border-radius: 2px;
}

.tekst-podtytul {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #3f7c70;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tekst-paragrafu {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #1b3f4c; /* Darker color for better contrast */
  text-align: justify;
  line-height: 1.8;
}

.tekst-paragrafu h3 {
  color: #13363e;
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
}

.tekst-paragrafu ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.tekst-paragrafu li {
  margin-bottom: 0.5rem;
}

.sekcja-bohater {
  background: linear-gradient(
    135deg,
    rgba(19, 54, 62, 0.95) 0%,
    rgba(27, 63, 76, 0.95) 50%,
    rgba(40, 95, 85, 0.95) 100%
  );
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  margin: 0;
  border-radius: 0;
}

.obraz-glowny {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.galeria-kontener {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.obraz-galerii {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(19, 54, 62, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obraz-galerii:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(19, 54, 62, 0.3);
}

.lista-cech {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cecha-element {
  background: rgba(63, 124, 112, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #3f7c70;
  transition: transform 0.3s ease;
}

.cecha-element:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(63, 124, 112, 0.2);
}

.cecha-naglowek {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1b3f4c;
  margin-bottom: 1rem;
}

.statystyki-kontener {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.statystyka-element {
  text-align: center;
  padding: 2rem;
  background: rgba(27, 63, 76, 0.1);
  border-radius: 15px;
  border-top: 4px solid #285f55;
}

.statystyka-liczba {
  font-size: 3rem;
  font-weight: bold;
  color: #13363e;
  display: block;
  margin-bottom: 0.5rem;
}

.statystyka-opis {
  font-size: 1.1rem;
  color: #285f55;
  font-weight: 500;
}

.cytat-blok {
  background: linear-gradient(
    135deg,
    rgba(40, 95, 85, 0.1) 0%,
    rgba(63, 124, 112, 0.1) 100%
  );
  padding: 2.5rem;
  margin: 3rem 0;
  border-radius: 20px;
  border-left: 6px solid #3f7c70;
  position: relative;
}

.cytat-blok::before {
  content: '"';
  font-size: 6rem;
  color: rgba(63, 124, 112, 0.3);
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: serif;
}

.cytat-tekst {
  font-size: 1.3rem;
  font-style: italic;
  color: #1b3f4c;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cytat-autor {
  font-size: 1rem;
  color: #285f55;
  text-align: right;
  font-weight: 500;
}

.stopka-strony {
  background: linear-gradient(135deg, #293937 0%, #13363e 50%, #1b3f4c 100%);
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.stopka-strony::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      60deg,
      rgba(63, 124, 112, 0.1) 25%,
      transparent 25%
    ),
    linear-gradient(120deg, rgba(40, 95, 85, 0.1) 25%, transparent 25%);
  background-size: 60px 60px;
}

.stopka-zawartosc {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stopka-linki {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stopka-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stopka-link:hover {
  color: white;
  background: rgba(63, 124, 112, 0.3);
  transform: translateY(-2px);
}

.stopka-tekst {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .naglowek-glowny {
    font-size: 2.5rem;
  }

  .naglowek-sekcji {
    font-size: 2rem;
  }

  .glowna-sekcja {
    padding: 2rem 1rem;
    margin: 1rem;
    border-radius: 15px;
  }

  .obraz-glowny {
    width: 250px;
    height: 250px;
  }

  .galeria-kontener {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .lista-cech {
    grid-template-columns: 1fr;
  }

  .statystyki-kontener {
    grid-template-columns: repeat(2, 1fr);
  }

  .stopka-linki {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .naglowek-glowny {
    font-size: 2rem;
  }

  .sekcja-bohater {
    padding: 4rem 1rem;
  }

  .statystyki-kontener {
    grid-template-columns: 1fr;
  }

  .statystyka-liczba {
    font-size: 2.5rem;
  }
}
