

/* Subtext */
.animated-subtext {
  color: #c7d0e0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease-out 0.5s forwards;
  opacity: 0;
}

/* Animated Button */
.animated-button {
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #1279ff, #2167c2);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: pulseGlow 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Button hover + focus */
.animated-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.animated-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(18, 121, 255, 0.3);
}

.animated-button:hover::before {
  opacity: 1;
}

.animated-button:active {
  transform: scale(0.97);
  box-shadow: 0 6px 12px rgba(18, 121, 255, 0.4);
}


