
@media (max-width: 900px) {
  .ani-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ani-container {
    grid-template-columns: 1fr;
  }
}

.ani-container {
  display: flex;
  justify-content: center;
}
.animation-container {
  position: relative;
  top: -30px;
  width: 220px;
  height: 220px;
  transform: scale(0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  transition: border-color 0.3s ease;
}


.circle-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Corner decorations are handled by JS */
.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  color: white;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}