body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top, #1a1a1f, #0b0b0c 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card */
.card {
    width: 360px;
    border-radius: 22px;
    padding: 26px;
    background: linear-gradient(160deg, #121214, #0e0e10);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.05);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle premium glow overlay */
.card::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    transform: rotate(25deg);
}

/* Top */
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.logo img {
    height: 28px;
    opacity: 0.9;
}

/* STATUS badge upgraded */
.status {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(76, 255, 155, 0.12);
    color: #6cff9b;
    border: 1px solid rgba(76, 255, 155, 0.25);
    text-transform: uppercase;
}

/* Avatar upgraded */
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
    box-shadow:
        0 0 0 4px rgba(212,175,55,0.12),
        0 10px 20px rgba(0,0,0,0.5);
    margin-bottom: 14px;
}

/* Name (hero element) */
.name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Role / qualification */
.role {
    font-size: 15px;
    color: #d4af37;
    margin-top: 4px;
    margin-bottom: 14px;
    opacity: 0.95;
}

/* Member number */
.member {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 16px;

}

.web {
    font-size: 14px;
    margin-bottom: 16px;

}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    margin: 16px 0;
}

/* QR */
.qr img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

.qr-text {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 6px;
}

/* Footer */
.footer {
    font-size: 12px;
    opacity: 0.35;
    margin-top: 12px;
}

.download-btn {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.download-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.4);
}

h2 {
  font-weight: 500;color: #fff;
}

label {
  font-size: 20px;
  color: #ccc;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 16px;
  outline: none;
}

input::placeholder {
  color: #666;
}

input:focus {
  border-color: #fff;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: #ddd;
}

button:active {
  transform: scale(0.98);
}


a.website-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.15);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

a.website-btn:hover {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.15);}


a.website-btn,
a.website-btn:visited,
a.website-btn:hover,
a.website-btn:active,
a.website-btn:focus {
    color: #fff !important;
}