/* === PRZYCISK: Subtelne wsparcie (np. „Cicha Forma”) === */
.btn.subtle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  transition: all 0.3s ease;
}

.btn.subtle:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* === SEKCJA: Ogólna sekcja wsparcia === */
.support-section {
  padding: 60px 20px;
  text-align: center;
}

/* === PRZYCISKI: Układ jako grid (2–3 kolumny) === */
.wsparcie-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 30px auto 0 auto;
}

/* === PRZYCISKI: Ogólny wygląd każdego przycisku === */
.wsparcie-buttons .btn {
  padding: 12px 20px;
  font-size: 1rem;
  text-align: center;
  border-radius: 6px;
}

/* === RESPONSYWNOŚĆ: Telefony i tablety === */
@media (max-width: 768px) {
  .wsparcie-buttons {
    grid-template-columns: 1fr; /* 1 kolumna na wąskich ekranach */
    gap: 12px;
  }

  .wsparcie-buttons .btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .btn.subtle {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .support-section {
    padding: 40px 15px;
  }
}
.contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  border-radius: 16px;
  margin: 24px auto 0;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  max-width: 480px;  /* <– ograniczenie szerokości */
  width: 100%;
}


.contact-item {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
  color: #e0e0e0;
}

.contact-label {
  min-width: 90px;
  font-weight: 500;
  color: #ffd27f;
  font-family: 'Playfair Display', serif;
  margin-right: 10px;
}

.contact-item a {
  color: #fff5d7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.contact-item a:hover {
  text-shadow: 0 0 6px rgba(255, 220, 120, 0.6);
  color: #ffe9a0;
}

.contact-text {
  opacity: 0.85;
}
.contact-item {
  text-align: center; /* ← kluczowa linia */
}

.discord-link-button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.discord-link-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

