/* Alap reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background: url("nextrans.jpg") center/cover no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}

/* Áttetsző doboz a tartalomhoz (glassmorphism) */
.container {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 40px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Címsorok */
.container h1 {
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.container h2 {
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* Szöveg */
.container p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Vissza gomb */
.back-link {
  display: inline-block;
  padding: 15px 25px;
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(255,255,255,0.25);
  transform: translateX(5px);
}
