*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111014;
  --pink: #f582c5;
  --text: #f0eaf2;
  --muted: #9a8fa0;
  --border: rgba(245, 130, 197, 0.2);
}

html, body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(
    ellipse at center,
    rgba(180, 60, 130, 0.3) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text);
}

.gomb {
  font-size: 1.2rem; 
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  padding: 6px 14px;
  margin: 8px;
  border: 2px solid #ff69c0;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;

  display: inline-block;
  text-decoration: none; 
}

.gomb:visited {
  color: #fff;
}

.gomb::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    rgba(0, 255, 255, 0) 70%
  );
  transition: 0.4s;
  transform: scale(0);
}

.gomb:hover::before {
  transform: scale(1);
}

.gomb:hover {
  color: #000;
  background: #ff6ac1;
  box-shadow: 0 0 8px #ff6ac1, 0 0 30px #ff6ac1, 0 0 60px #ff6ac1;
}

.gomb:active {
  transform: scale(0.95);
}

.rolam {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 72px;
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 48px;
  align-items: flex-start;
}

.rolam-szoveg {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rolam-szoveg h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.rolam-szoveg p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.rolam-kep {
  flex: 0 0 320px;
}

.rolam-kep img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

@media (max-width: 800px) {
  .rolam {
    flex-direction: column-reverse;
    gap: 36px;
    padding: 0 24px;
    margin: 60px auto;
  }

  .rolam-kep {
    width: 100%;
  }
}