@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

@font-face {
  font-family: 'Monocraft';
  src: url('fonts/monocraft.woff2') format('woff2');
}

  #background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%); /* Sötétítés hasonlóan a fekete overlayhez */
}

/* Alap beállítások */
body {
  font-family: 'Monocraft', monospace;
  margin: 0;
}

/* Overlay sötét háttérrel, teljes magasság */
.overlay {
  background: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Logó animáció */
.floating-logo {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Minecraft stílusú szöveg */
.minecraft-text {
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 1px;
}

/* IP szöveg árnyék */
.ip-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Kék neon gomb alap */
.neon-button {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
  box-shadow:
    0 0 12px #3b82f6,
    0 0 24px #3b82f6,
    0 0 48px rgba(59, 130, 246, 0.5);
  transition: box-shadow 0.3s, transform 0.3s;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.875rem;
}

.neon-button:hover {
  box-shadow:
    0 0 20px #60a5fa,
    0 0 40px #60a5fa,
    0 0 80px rgba(96, 165, 250, 0.7);
  transform: translateY(-2px);
  background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
}

/* Navigációs gombok (kék neon) */
.flex a {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
  box-shadow:
    0 0 12px #3b82f6,
    0 0 24px #3b82f6,
    0 0 48px rgba(59, 130, 246, 0.5);
  transition: box-shadow 0.3s, transform 0.3s;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.75rem;
}

.flex a:hover {
  box-shadow:
    0 0 20px #60a5fa,
    0 0 40px #60a5fa,
    0 0 80px rgba(96, 165, 250, 0.7);
  transform: translateY(-2px);
  background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
}

/* Piglin karakter */
.piglin {
  position: absolute;
  right: 5%;
  bottom: 10%;
  height: 30%;
  opacity: 0.8;
  filter: brightness(0.2);
  z-index: 0;
}

/* Steve karakter */
.steve {
  position: absolute;
  left: 5%;
  bottom: 0;
  height: 40%;
  opacity: 0.8;
  filter: brightness(0.3);
  z-index: 0;
}

/* Mobil nézetre: karakterek eltüntetése */
@media (max-width: 1024px) {
  .piglin,
  .steve {
    display: none;
  }
}

/* Reszponzív szövegméretek */
h1 {
  font-size: 1.125rem; /* text-lg */
}

@media (min-width: 640px) {
  h1 {
    font-size: 1.875rem; /* text-3xl */
  }
}

p {
  font-size: 0.75rem; /* text-xs */
}

@media (min-width: 640px) {
  p {
    font-size: 0.875rem; /* text-sm */
  }
}


footer a.aszf-link {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  display: inline !important;
  text-decoration: underline;
  color: #60a5fa; /* kék szín */
  cursor: pointer;
  transition: color 0.3s ease;
}

footer a.aszf-link:hover {
  color: #3b82f6; /* sötétebb kék hover */
  text-decoration: underline;
}
