.main-status {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 20px 40px 20px;
}

.status-card {
  width: 100%;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 32px;
  padding: 40px 35px;
  backdrop-filter: blur(20px);
  animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.status-header {
  text-align: center;
  margin-bottom: 32px;
}

.status-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.status-icon i {
  font-size: 32px;
  color: #a78bfa;
}

.status-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.status-subtitle {
  font-size: 14px;
  color: rgba(196, 180, 255, 0.6);
}

.status-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.status-input-group .field-inner {
  flex: 1;
}

.status-check-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.status-check-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.status-result {
  margin-top: 24px;
  animation: fadeInUp 0.4s ease;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 24px;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.result-header i {
  font-size: 22px;
  color: #a78bfa;
}

.result-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e9d5ff;
}

.result-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.result-label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(196, 180, 255, 0.7);
}

.result-label i {
  font-size: 14px;
  color: #a78bfa;
}

.result-value {
  font-size: 14px;
  color: #e9d5ff;
  word-break: break-all;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.status-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.status-completed {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.status-password-error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.status-12month-error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.status-premium-error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.status-address-error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-error {
  margin-top: 20px;
  padding: 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f87171;
  font-size: 14px;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 550px) {
  .status-card {
    padding: 30px 20px;
  }
  
  .status-title {
    font-size: 24px;
  }
  
  .status-input-group {
    flex-direction: column;
  }
  
  .status-check-btn {
    padding: 12px 24px;
    justify-content: center;
  }
  
  .result-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .result-label {
    min-width: auto;
  }
}