:root {
  --bg-dark: #1a002a;
  --bg-deep: #2b0060;
  --panel: rgba(47,0,90,0.75);
  --purple-mid: #3b008a;
  --purple-bright: #9c6bff;
  --lilac: #ffd693;
  --accent-warm: #ffb84d;
  --glass-border: rgba(255,184,77,0.25);
  --glow: rgba(255,184,77,0.35);
  --text-primary: #fff6e6;
  --text-secondary: #e7d1ff;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--text-primary);
  background: radial-gradient(circle at 30% 20%, #3b008a 0%, #1a002a 50%, #0b0016 100%);
  background-attachment: fixed;
}

/* container */
.container {
  max-width: 420px;
  width: 100%;
  background: linear-gradient(180deg, rgba(60,10,100,0.55), rgba(10,4,20,0.6));
  border-radius: 28px;
  padding: 36px;
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 40px var(--glow);
  border: 1px solid var(--glass-border);
  text-align: center;
  transform: translateZ(0);
}

/* logo */
.logo h1 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-warm) 0%, var(--lilac) 45%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 30px rgba(255,184,77,0.25);
  letter-spacing: 0.5px;
}

/* tagline */
.tagline {
  margin-bottom: 22px;
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* circular qr / avatar wrapper */
.qr-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(from 200deg at 50% 50%, rgba(255,184,77,0.15), rgba(156,107,255,0.12));
  box-shadow: 0 12px 40px rgba(255,184,77,0.25), inset 0 0 30px rgba(156,107,255,0.15);
  border: 2px solid rgba(255,184,77,0.25);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,184,77,0.35);
  box-shadow: 0 8px 30px rgba(59,0,138,0.4);
  transform: translateZ(0);
}

/* info items */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(47,0,90,0.05));
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,184,77,0.25);
  box-shadow: inset 0 0 12px rgba(156,107,255,0.1);
  transition: all 220ms ease;
  color: var(--text-secondary);
  text-decoration: none;
}

.info-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255,184,77,0.12), rgba(156,107,255,0.1));
  box-shadow: 0 10px 30px rgba(255,184,77,0.35);
}

.icon {
  width: 22px;
  height: 22px;
  color: var(--accent-warm);
  text-shadow: 0 6px 18px rgba(255,184,77,0.25);
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.85;
}

.value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* social icons */
.social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(156,107,255,0.08), rgba(255,184,77,0.08));
  border: 1px solid rgba(255,184,77,0.25);
  color: var(--lilac);
  font-size: 1.25rem;
  transition: all 200ms ease;
}

.social-icon:hover {
  background: linear-gradient(180deg, var(--accent-warm), var(--purple-bright));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,184,77,0.35);
  transform: translateY(-4px);
}

/* footer */
footer {
  margin-top: 26px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* creator text */
.creator-text {
  font-family: 'Rozha One', serif;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--lilac);
  text-shadow: 0 6px 16px rgba(255,184,77,0.18);
}

/* toast */
.toast {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: rgba(26,0,42,0.9);
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(255,184,77,0.25);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
