:root {
  --primary: #4B0082;
  --secondary: #6c757d;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --success: #28a745;
  --card-bg: #fff;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #e0e0f0 0%, #c1c1d9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: var(--dark);
}

.container {
  padding: 20px;
  width: 100%;
  max-width: 900px;
}

.card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(75, 0, 130, 0.1);
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.logo {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.logo h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 5px;
  font-weight: 600;
}

.card h2 {
  margin-top: 20px;
  font-size: 1.5rem;
}

.card p {
  margin: 10px 0 30px;
  color: var(--secondary);
}

.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.info div {
  background: var(--light);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.status {
  color: var(--success);
}

.actions {
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #38005d;
}

footer {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Circle Image Stack at bottom right */
.circle-image-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 100;
}

.circle-image-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.circle-image-stack img:hover {
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .card {
    padding: 30px 20px;
  }

  .info {
    flex-direction: column;
  }
}