.advisory-animation {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advisory-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.strategy-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.strategy-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.strategy-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-duration: 15s;
}

.strategy-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.strategy-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-duration: 10s;
}

.strategy-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(254, 0, 0, 0.487);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.strategy-center i {
  font-size: 24px;
  color: #fff;
}

.connection-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: pulse 3s ease-in-out infinite;
}

.connection:nth-child(1) {
  top: 20%;
  left: 30%;
  transform: rotate(45deg);
}

.connection:nth-child(2) {
  top: 40%;
  right: 30%;
  transform: rotate(-45deg);
}

.connection:nth-child(3) {
  bottom: 20%;
  left: 50%;
  transform: rotate(90deg);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
} 