html, body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  text-align: center;
}

/* Logo */
.logo {
  max-width: 140px;
  margin-bottom: 5rem;
  filter: drop-shadow(0 0 2px #fff);
}

/* Formularz */
.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}

/* Wrapper pola z ikoną po lewej stronie */
.input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 0 0.5rem;
  box-sizing: border-box;
  transition: 0.3s;
}

.input-wrapper:focus-within {
  border-color: #fff;
  box-shadow: 0 0 5px #fff;
}

.input-wrapper .email-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: #fff;
}

/* Input responsywny */
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.5rem;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.subscribe-form input[type="email"]::placeholder {
  color: #aaa;
}

/* Przycisk */
.subscribe-form button {
  padding: 0.6rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.subscribe-form button:hover {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}

/* Wiadomość o nagrodzie */
.gift-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

/* Stopka */
.footer {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0.85;
  color: #fff;
  max-width: 100%;       /* ograniczenie szerokości */
  padding: 0 0rem;      /* trochę marginesu od krawędzi ekranu */
  box-sizing: border-box;
}

/* Ikony social */
.footer-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;       /* zawijanie ikon na małych ekranach */
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Link jako całość */
.footer-socials a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
  flex-shrink: 0;        /* nie kurczą się za bardzo */
}

/* PNG ikonki */
.footer-socials a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

/* Hover */
.footer-socials a:hover {
  opacity: 1;
}

.footer-socials a:hover img {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.9));
}

/* Copyright */
.footer-copy {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 0.3px;
  word-break: break-word;  /* tekst się zawija na małych ekranach */
}

/* Dodatkowa responsywność na very small screens */
@media(max-width: 600px) {
  .footer-socials {
    gap: 0.6rem;          /* mniej miejsca między ikonami */
  }
  .footer-socials a span {
    font-size: 0.75rem;   /* tekst mniejszy */
  }
  .footer-copy {
    font-size: 0.7rem;
  }
}

/* Responsywność */
@media(max-width: 480px) {
  .subscribe-form {
    max-width: 90%;
  }
}
