    :root{ 
      --gold:#C7A43F; 
      --gold-light:#E8D9A9; 
      --text:#1a1a1a; 
      --muted:#6b7280; 
      --bg:#f8fafc; 
      --card-bg:#ffffff; 
      --border:#e5e7eb; 
      --success:#10b981; 
      --error:#ef4444;
      --shadow:0 10px 25px -5px rgba(0,0,0,0.04),0 8px 10px -6px rgba(0,0,0,0.02);
    }
    *{ box-sizing:border-box; margin:0; padding:0; }
    body{ 
      margin:0; 
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif; 
      background:var(--bg); 
      color:var(--text); 
      line-height:1.6;
    }
    .wrap{ 
      min-height:100dvh; 
      display:flex; 
      align-items:center; 
      justify-content:center; 
      padding:24px; 
    }
    .card{ 
      width:100%; 
      max-width:520px; 
      background:var(--card-bg); 
      border-radius:20px; 
      padding:40px; 
      box-shadow:var(--shadow); 
      border:1px solid var(--border);
      position:relative;
      overflow:hidden;
    }
    .card::before {
      content:'';
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:4px;
      background:linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    .brand{ 
      display:flex; 
      align-items:center; 
      gap:16px; 
      margin-bottom:24px; 
    }
    .logo{ 
      width:96px; 
      height:58px; 
      object-fit:contain; 
      border-radius:12px; 
      border:1px solid var(--border); 
      padding:4px;
      background:var(--card-bg);
    }
    h1{ 
      font-size:24px; 
      margin:0 0 4px; 
      font-weight:700; 
      color:var(--text);
      letter-spacing:-0.025em;
    }
    .sub{ 
      color:var(--muted); 
      font-size:15px;
      font-weight:500;
    }
    .panel{ 
      background:#f8fafc; 
      border-radius:16px; 
      padding:24px; 
      border:1px solid var(--border);
      margin:8px 0 24px;
    }
    .profile-section {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .profile-photo {
      width: 80px;
      height: 80px;
      border-radius: 12px;
      object-fit: cover;
      border: 2px solid var(--gold);
      flex-shrink: 0;
    }
    .profile-info {
      flex: 1;
    }
    .profile-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--text);
    }
    .profile-id {
      color: var(--gold);
      font-weight: 600;
      font-size: 14px;
    }
    .row{ 
      display:flex; 
      align-items:flex-start;
      gap:16px; 
      padding:12px 0;
      border-bottom:1px solid #f1f5f9;
    }
    .row:last-child {
      border-bottom:none;
    }
    .label{ 
      width:100px; 
      color:var(--muted); 
      font-weight:500;
      font-size:14px;
      flex-shrink:0;
    }
    .value{ 
      font-weight:600;
      color:var(--text);
      flex:1;
    }
    .status-ok{ 
      color:var(--success);
      display:flex;
      align-items:center;
      gap:6px;
      font-weight:600;
    }
    .status-bad{ 
      color:var(--error);
      display:flex;
      align-items:center;
      gap:6px;
      font-weight:600;
    }
    .footer{ 
      display:flex; 
      align-items:center; 
      justify-content:space-between; 
      gap:12px; 
      flex-wrap:wrap; 
      color:var(--muted); 
      font-size:14px;
      padding-top:16px;
      border-top:1px solid var(--border);
    }
    .powered{ 
      color:var(--muted); 
      font-weight:500;
    }
    a{ 
      color:var(--gold); 
      text-decoration:none; 
      font-weight:500;
      transition:color 0.2s ease;
    }
    a:hover {
      color:var(--text);
    }
    .error{ 
      color:var(--error); 
      font-weight:600;
      background:#fef2f2;
      padding:16px;
      border-radius:12px;
      border:1px solid #fee2e2;
      text-align:center;
    }
    .skeleton{ 
      background:linear-gradient(90deg,#f1f5f9 25%,#f8fafc 37%,#f1f5f9 63%); 
      background-size:400% 100%; 
      animation:shimmer 1.4s ease infinite; 
      border-radius:8px; 
    }
    .skeleton-circle {
      border-radius: 12px;
    }
    @keyframes shimmer{
      0%{background-position:100% 0}
      100%{background-position:-100% 0}
    }
    .verification-badge {
      display:inline-flex;
      align-items:center;
      gap:6px;
      background:var(--gold-light);
      color:var(--text);
      padding:6px 12px;
      border-radius:8px;
      font-size:13px;
      font-weight:600;
      margin-top:4px;
    }
    .contact-link {
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
