/*Alapbeállítások */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(circle at center, #222, #111);
  color: #bbb;
  text-align: center;
  min-height: 100vh;
}

/*Navigáció */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #ccc;
  transition: color 0.3s, transform 0.3s;
}

nav a:hover {
  color: #ffcc33;
  transform: scale(1.05);
}

/*Hero rész */
.hero-title {
  font-size: 5rem;
  color: #ffcc33;
  font-weight: 800;
  margin-top: 3rem;
  text-shadow: 0 0 20px rgba(255, 204, 51, 0.4);
}

.hero-sub {
  font-size: 1.6rem;
  color: #aaa;
  margin-top: 1rem;
  font-weight: 400;
}

/*Szöveg alap */
body > p, body > li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #aaa;
}

ul {
  list-style: none;
  padding: 0;
}

/* Gombok */
.button-group {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 2px solid #ffcc33;
  color: #ffcc33;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #ffcc33;
  color: #111;
}
/* 💥 Link / Gomb repedés effekt */
.link-crack {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.link-crack::after {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,204,51,0) 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.link-crack.active::after {
  animation: crackEffect 0.5s ease-out forwards;
}

@keyframes crackEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  60% {
    width: 250%;
    height: 250%;
    opacity: 0.6;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

/* extra kis mozgás */
.link-crack:active {
  transform: scale(0.97);
}

/*Lábléc */
footer {
  text-align: center;
  margin-top: 4rem;
  padding-bottom: 2rem;
}
