html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #transparent;
  color: #fff;
  font-family: Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* 🔥 FOOTER BAR */
.bottom-bar {
  position: relative;
  background: #transparent;
  padding: 12px 10px;

  display: flex;
  align-items: center;
}

/* bal oldal */
.bottom-bar .left {
  display: flex;
  gap: 12px;
}

/* 🔥 TELEGRAM TÖKÉLETES KÖZÉP */
.bottom-bar .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* linkek */
.bottom-bar a {
  color: #transparent;
  text-decoration: none;
  font-weight: 600;
}

.bottom-bar a:hover {
  color: #transparent;
  text-shadow: 0 0 8px #d4af37;
}

/* legal footer */
.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
}

/* 📱 MOBIL */
@media (max-width: 600px) {

  .bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .bottom-bar .left {
    justify-content: center;
  }

  .bottom-bar .center {
    position: static;
    transform: none;
  }
}