:root {
  --color-primary: #1a73e8;
  --color-success: #00c853;
  --color-error: #ff5252;
  --color-warning: #ffab00;
  --color-text: #202124;
  --color-text-light: #5f6368;
  --color-background: #f8f9fa;
  --color-surface: #ffffff;
  --color-border: #dadce0;
  --shadow-sm: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --radius-lg: 16px;
  --font-main: 'Outfit', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.status-container {
  max-width: 550px;
  width: 90%;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  text-align: center;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.status-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.status-icon--success { background: rgba(0, 200, 83, 0.1); color: var(--color-success); }
.status-icon--failed { background: rgba(255, 82, 82, 0.1); color: var(--color-error); }
.status-icon--cancel { background: rgba(255, 171, 0, 0.1); color: var(--color-warning); }

.status-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

.status-message {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

.status-details {
  background: #f1f3f4;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.status-detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.status-detail-item:last-child { margin-bottom: 0; }

.detail-label { color: var(--color-text-light); font-size: 14px; }
.detail-value { font-weight: 600; font-size: 14px; }

.status-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn-outline:hover {
  background: #f8f9fa;
  border-color: var(--color-text);
}

/* Checkmark animation */
.checkmark-svg {
  width: 50px;
  height: 50px;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--color-success);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--color-success);
  stroke-width: 3;
  fill: none;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

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