.bottom-bar {
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  box-sizing: border-box;
}

/* linkek alap */
.bottom-bar a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 4px 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bottom-bar a:hover {
  color: #fff3b0;
  text-shadow: 0 0 8px #FFFFFF;
}

/* ikon */
.bottom-bar i {
  color: #0259B0;
}

/* sor tördelés trükk */
.bottom-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* minden elem kap “sortörési kontrollt” */
.bottom-bar a,
.bottom-bar .copyright {
  flex: 0 0 auto;
}

/* 📱 MOBIL FINOMÍTÁS */
@media (max-width: 600px) {

  .bottom-bar {
    font-size: 12px;
  }

  /* FB + Discord egymás mellé kényszerítve */
  .bottom-bar a:nth-of-type(1),
  .bottom-bar a:nth-of-type(2) {
    width: auto;
  }

  /* Telegram új sor */
  .bottom-bar a:nth-of-type(3) {
    width: 100%;
  }

  /* webcím + dátum külön sor */
  .bottom-bar .copyright {
    width: 100%;
    display: block;
    margin-top: 6px;
  }
}