.stats-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff6b6b,
    #ee5a24,
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.icon-container {
  margin-bottom: 32px;
  position: relative;

  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 36px;
  padding: 10px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.main-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.3;
}

.percentage-display {
  position: relative;
  margin-bottom: 32px;
}

.percentage-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.percentage-label {
  font-size: 18px;
  color: #7f8c8d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.description {
  font-size: 18px;
  color: #34495e;
  line-height: 1.6;
  font-weight: 500;
}

.highlight {
  background: linear-gradient(135deg, #ff6b6b, #ffb88c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #ecf0f1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #ff6b6b, #ee5a24);
  border-radius: 4px;
  animation: fillProgress 2s ease-out;
}

@keyframes fillProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 16px;
  padding: 24px;
  margin-top: 32px;
}

.cta-text {
  font-size: 16px;
  color: #495057;
  margin-bottom: 16px;
  font-weight: 500;
}

.cta-button {
  background: linear-gradient(135deg, #ff6b6b, #ffb88c);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.source-note {
  margin-top: 24px;
  font-size: 12px;
  color: #95a5a6;
  font-style: italic;
}

@media (max-width: 480px) {
  .stats-container {
    padding: 40px 24px;
  }

  .percentage-number {
    font-size: 72px;
  }

  .main-title {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 107, 107, 0.2);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.floating-dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-dot:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-dot:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}
