.title_background {
  background: linear-gradient(135deg, #000000, #0a0a0a);
  padding: 180px 20px;
  text-align: center;
  filter: drop-shadow(0 0 12px #39ff14);
  border-bottom: 4px solid #39ff14;
  animation: glowTitle 1.5s infinite alternate ease-in-out;
}

@keyframes glowTitle {
  from {
    filter: drop-shadow(0 0 12px #39ff14);
  }
  to {
    filter: drop-shadow(0 0 20px #39ff14);
  }
}

.title_background .title {
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  color: #39ff14;
  text-shadow: 0 0 20px #39ff14, 0 0 40px #39ff14;
  animation: neonGlowText 1.5s infinite alternate ease-in-out;
}

@keyframes neonGlowText {
  from {
    text-shadow: 0 0 20px #39ff14, 0 0 40px #39ff14;
  }
  to {
    text-shadow: 0 0 30px #39ff14, 0 0 50px #39ff14;
  }
}

.text_background {
  background: linear-gradient(135deg, #080808, #141414);
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.text_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 5px;
  background: #00ffff;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  animation: neonLine 1.5s infinite alternate ease-in-out;
}

@keyframes neonLine {
  from {
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  }
  to {
    box-shadow: 0 0 30px #00ffff, 0 0 50px #00ffff;
  }
}

.text_background .text {
  font-size: 1.3rem;
  margin: 0 auto;
  max-width: 1000px;
  text-align: justify;
  line-height: 1.8;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.text_background .text strong {
  font-weight: bold;
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  animation: neonTextGlow 1.5s infinite alternate ease-in-out;
}

@keyframes neonTextGlow {
  from {
    text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  }
  to {
    text-shadow: 0 0 25px #ff00ff, 0 0 40px #ff00ff;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .title_background {
    padding: 150px 20px;
  }

  .title_background .title {
    font-size: 2.2rem;
  }

  .text_background {
    padding: 60px 20px;
  }

  .text_background .text {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}