/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  scroll-behavior: smooth;
  background: #0f0f0f;
  color: #fff;
}

/* Section Wrapper */
.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-in-out;
  position: relative;
  border-radius: 20px;
  margin: 30px 20px;
  overflow: hidden;
  border: 2px solid rgba(123, 96, 211, 0.4);
}

/* Reveal */
.section.visible {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 40px rgba(123, 96, 211, 0.5);
  border-color: rgba(123, 96, 211, 0.8);
}

/* Glowing Border Shine */
.section::before,
.section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7b60d3, transparent);
  animation: glow-line 3s linear infinite;
}
.section::before {
  top: 0;
}
.section::after {
  bottom: 0;
}

@keyframes glow-line {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Glow Text */
.glow-text {
  font-size: 2.5rem;
  color: #fff;
  text-shadow:
    0 0 5px #7b60d3,
    0 0 10px #7b60d3,
    0 0 20px #7b60d3,
    0 0 30px #bb86fc;
  animation: pulse 2s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% {
    text-shadow:
      0 0 5px #7b60d3,
      0 0 10px #7b60d3,
      0 0 20px #7b60d3,
      0 0 30px #bb86fc;
  }
  50% {
    text-shadow:
      0 0 10px #bb86fc,
      0 0 20px #bb86fc,
      0 0 30px #7b60d3,
      0 0 40px #7b60d3;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .glow-text {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .glow-text {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}

