/* --- Sötét téma fekete, antracit és izzó narancs színekkel --- */

.plazma-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
  color: #a0a0a0; /* Szövegszín enyhén tompítva */
}

.plazma-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plazma-gradient {
  position: absolute;
  inset: 0;
  /* ÁTDOLGOZVA: Fekete és antracit gradient, a narancs eltávolítva */
  background: linear-gradient(to bottom right, rgba(0 0 0 0.2), rgba(10 10 12 0.2), rgba(28 28 32 0.2));
  background-size: 200% 200%;
  animation: plazma-gradient-xy 20s ease infinite; /* Lassítva a komorabb hangulatért */
}

@keyframes plazma-gradient-xy {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.plazma-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(72px); /* Erősebb elmosás */
  opacity: 0.85; /* Visszafogottabb láthatóság */
  width: 10rem; /* Enyhén növelt méret a lágyabb hatásért */
  height: 10rem;
  z-index: 1;
  animation: plazma-blob 8s infinite ease-in-out; /* Lassabb animáció */
}

/* ÁTDOLGOZVA: A blob színek tompa, parázsló narancsra és antracitra cserélve */
.plazma-blob1 {
  top: 40%;
  left: 40%;
  background: rgb(0 0 0 / 0.1); /* Mély, sötét narancs */
  animation-delay: 0s;
}
.plazma-blob2 {
  top: 50%;
  left: 50%;
  background: rgb(255 255 255 / 0.1); /* Antracit/sötétszürke */
  animation-delay: 1s;
}
.plazma-blob3 {
  bottom:60%;
  right: 60%;
  background: rgb(0 0 0 / 0.3); /* Parázsló narancs */
  animation-delay: 2s;
}

@keyframes plazma-blob {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(40px, -120px) scale(1.1); }
  66%  { transform: translate(-50px, 120px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.plazma-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}


@media (min-width: 768px) {
  .plazma-headline { font-size: 4.5rem; }
}

.plazma-headline-gradient {
  /* ÁTDOLGOZVA: A szöveggradient sötétebb, izzó fém/parázs hatású */
  background: linear-gradient(to right, rgb(194 65 12), rgb(239 68 68), rgb(154 52 18));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

@media (min-width: 768px) {
  .plazma-desc { font-size: 1.5rem; }
}

.plazma-btn {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  /* ÁTDOLGOZVA: A gomb antracit alapot kapott, minimális naranccsal */
  background: linear-gradient(to right, rgb(42 42 46), rgb(60 45 35));
  color: #e2e2e2;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(80 80 80); /* Finom keret a jobb elkülönülésért */
  box-shadow: 0 10px 15px -5px rgb(0 0 0 / 0.2);
  transition: all .3s;
  text-decoration: none;
}

.plazma-btn:hover {
  transform: scale(1.05);
  /* ÁTDOLGOZVA: Hover állapotnál az izzó narancs jobban előtűnik */
  background: linear-gradient(to right, rgb(194 65 12), rgb(154 52 18));
  color: #fff;
  border-color: rgb(194 65 12);
  box-shadow: 0 15px 30px -10px rgb(194 65 12 / 0.3);
}

.plazma-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.plazma-bounce {
  stroke: rgb(255 255 255);
  animation: plazma-bounce 1s infinite;
}

@keyframes plazma-bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}