@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f4f5f7;
  color: #111;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand .dot {
  width: 10px;
  height: 10px;
  background: #111;
  border-radius: 50%;
}

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #2e7d32;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
}

.container {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.role {
  font-size: 14px;
  color: #666;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

h1 span {
  color: #555;
}

.desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #c33c65;
  color: #fff;
}

.btn.primary:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn.ghost {
  background: #f1f1f1;
  border: none;
}

.btn.ghost:hover {
  background: #e0e0e0;
}

footer {
  text-align: center;
  font-size: 13px;
  color: #777;
  padding: 20px;
}

/* Animasi */
.fade-in {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}