/* CircularText - React Bits inspired vanilla implementation */
.circular-text {
  margin: 0 auto;
  border-radius: 50%;
  width: 280px;
  position: relative;
  height: 280px;
  font-weight: 900;
  color: #00c0ff;
  text-align: center;
  cursor: pointer;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

.circular-text span {
  position: absolute;
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  color: #00c0ff;
  text-shadow: 0 0 10px rgba(0, 192, 255, 0.3);
  transform-origin: center;
  white-space: nowrap;
}

/* Container styles */
.circular-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.circular-text-decoration {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 5;
}

.circular-text-decoration .circular-text {
  width: 140px;
  height: 140px;
}

.circular-text-decoration .circular-text span {
  font-size: 12px;
}

/* Center icon styles */
.circular-text .center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  z-index: 10;
  background: linear-gradient(45deg, #00c0ff, #00ffae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

.circular-text-decoration .circular-text .center-icon {
  font-size: 1.2rem;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .circular-text {
    width: 220px;
    height: 220px;
  }
  
  .circular-text span {
    font-size: 18px;
  }
  
  .circular-text .center-icon {
    font-size: 1.8rem;
  }
  
  .circular-text-decoration {
    top: 1rem;
    right: 1rem;
  }
  
  .circular-text-decoration .circular-text {
    width: 100px;
    height: 100px;
  }
  
  .circular-text-decoration .circular-text span {
    font-size: 10px;
  }
  
  .circular-text-decoration .circular-text .center-icon {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .circular-text {
    width: 180px;
    height: 180px;
  }
  
  .circular-text span {
    font-size: 16px;
  }
  
  .circular-text .center-icon {
    font-size: 1.5rem;
  }
  
  .circular-text-decoration {
    display: none;
  }
} 
