/* ===== MINIMAL ELEGANT DIVIDER ===== */
.divider-dashed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 4rem auto;
  width: 90%;
  max-width: 800px;
}

/* Divider Lines */
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(99, 102, 241, 0.4) 50%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

html[data-theme='dark'] .divider-line {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 92, 246, 0.5) 50%,
    transparent 100%
  );
}

/* Subtle flowing animation */
.divider-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(99, 102, 241, 0.6) 50%,
    transparent 100%
  );
  animation: flow 4s ease-in-out infinite;
}

html[data-theme='dark'] .divider-line::after {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(167, 139, 250, 0.7) 50%,
    transparent 100%
  );
}

@keyframes flow {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

/* Center Dots */
.divider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

html[data-theme='dark'] .dot {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.5);
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .divider-dashed {
    margin: 3rem auto;
  }
  
  .dot {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .divider-dashed {
    margin: 2.5rem auto;
  }
}