* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.success-card {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #45a049);
}

.icon-container {
  margin-bottom: 30px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

.checkmark {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke: white;
  stroke-width: 3;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: white;
  stroke-width: 3;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.message-container {
  margin-bottom: 40px;
}

.main-message {
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.processing-info {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  border: 1px solid #e9ecef;
}

.clock-icon {
  width: 48px;
  height: 48px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clock-icon svg {
  width: 24px;
  height: 24px;
  color: #1976d2;
}

.processing-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.processing-text p {
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.5;
}

.processing-text strong {
  color: #2c3e50;
  font-weight: 600;
}

.footer {
  margin-top: 30px;
  text-align: center;
}

/* Animations */
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .success-card {
    padding: 40px 30px;
    margin: 20px;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .main-message {
    font-size: 16px;
  }
  
  .processing-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .processing-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }
  
  .success-card {
    padding: 30px 20px;
  }
  
  .main-title {
    font-size: 24px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
  }
  
  .checkmark {
    width: 30px;
    height: 30px;
  }
}

