

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
    /* Asztali méret alapértelmezésként */
    overflow-x: auto;
    /* Görgetés, ha a tartalom túlcsordul */
  font-family: Arial, sans-serif;
  color: hsl(0, 0%, 100%);
  background-color: #1e1e2e;
  text-align: center;
  /* Minden szöveg középre igazítása */
}

main {
  flex: 1; /* Rugalmasan kitölti a helyet */
}

@media (max-width: 768px) {
  main {
      padding-bottom: 20px; /* Extra hely a láblécnek */
  }
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 10px;
  background-color: #29293d;
  text-align: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.4em;
}


.youtube-container iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
}

.social-icons img {
  width: 50px;
  margin: 0 10px;
}

footer {
  padding: 10px;
  background-color: #29293d;
}


.slide {
  display: none;
  text-align: center;
}

.slide.active {
  display: block;
}

.logo {
  width: 150px;
  /* Állítsd be a kívánt szélességet */
  height: auto;
  margin: 20px auto;
  /* Középre helyezés */
}


.setup-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 10px;
}

.setup-item:hover {
  border-color: #333;
  background-color: #6A0DAD;
}

.setup-item h4 {
  margin-bottom: 10px;
}

.setup-item ul {
  list-style-type: none;
  padding: 0;
}

.setup-item ul li {
  margin: 5px 0;
}

.support-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #6A0DAD;
  /* Egyedi lila szín */
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.support-button:hover {
  background-color: #8A2BE2;
  /* Világosabb lila árnyalat */
}

.video-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.video-container iframe {
  border-radius: 10px;
}

.logo-container img {
  border-radius: 10px;
  background-color: #1e1e2e;

}

.video-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.video-item {
  width: 300px;
  text-align: center;
}

.video-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.video-item img:hover {
  transform: scale(1.05);
}

.video-item h3 {
  font-size: 1rem;
  margin-top: 10px;
  color: white;
}

section#rolunk {
  padding: 20px;
  background-color: #29293d;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#vonal {
  border: 0;
  height: 4px;
  background-color: #d4bff9;
  margin: 20px 0;
}

/* From Uiverse.io by zjssun */


@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.button:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

/* Ez itt a Torténet Caming soon */
.btn-shine {

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 48px;
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-o-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

.highlight {
  animation: flash 15s ease-in-out;
}

@keyframes flash {
  0% {
    background-color: #6A0DAD;
  }

  50% {
    background-color: transparent;
  }

  100% {
    background-color: #6A0DAD;
  }
}


/* From Uiverse.io by PriyanshuGupta28 */
.pushable {
  position: relative;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  outline-color: deeppink;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: hsl(226, 25%, 69%);
  border-radius: 8px;
  filter: blur(2px);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(to right,
      hsl(248, 39%, 39%) 0%,
      hsl(248, 39%, 49%) 8%,
      hsl(248, 39%, 39%) 92%,
      hsl(248, 39%, 29%) 100%);
}

.front {
  display: block;
  position: relative;
  border-radius: 8px;
  background-color: #000000;
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
  filter: brightness(110%);
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.hidden {
  display: none;
}

#live-indicator {
  position: fixed;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
}
.calendar-container {
  background-color: #29293d;
}
/* Popup alapértelmezetten rejtve */
.hidden {
  display: none !important;
}


#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Átlátszó fekete háttér */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Legfelül jelenjen meg */
}

#popup-content {
  background-color: black;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  max-height: 80%; /* Maximális magasság a képernyő 80%-áig */
  overflow-y: auto; /* Görgetés engedélyezése, ha szükséges */
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/* Bezáró gomb stílusa */
#close-popup {
  background-color: #ff4d4d;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#close-popup:hover {
  background-color: #ff3333;
}

#popup-content h2 {
  margin: 0 0 10px;
}

#popup-content button {
  margin: 10px;
}

/* From Uiverse.io by niat786 */ 
button {
  font-family: PlusJakartaSans, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Oxygen, Cantarell, Helvetica Neue, Ubuntu, sans-serif;
  font-size: 20px;
  align-items: center;
  height: 48px;
  border-radius: 0.4rem;
  font-weight: 600;
  padding: 0 1.2rem;
  color: #ddd;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(143, 142, 142, 0.15) !important;
  background: #000000;
}

.followers {
  font-size: 20px;
  color: white;
}

button:hover {
  background: #2b2a2a;
}
/* Alapbeállítások telefonra */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  /* Mobilnézet stílusai */
  .menu {
      display: block;
  }

  .menu-btn {
      width: 100%;
      text-align: left;
  }

  .menu-content {
      position: relative;
  }
}


/* Menü alapstílusok */
.menu {
  position: relative;
  display: inline-block;
}

.menu-btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1.4em;
}

.menu-content {
  display: none;
  position: absolute;
  background-color: black;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 1.4em;
}

.menu-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.menu-content a:hover {
  background-color: #9f9f9f;
}

.menu:hover .menu-content {
  display: block;
}
