/* NO COMMENTS NO DEBUGGING - CODE ONLY */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --sunflower: #FBBF24;
  --sunflower-hover: #F0A500;
  --sunflower-soft: rgba(251,191,36,0.12);
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --card-bg: #fff;
  --card-shadow: 0 2px 12px rgba(0,0,0,.08);
  --radius-btn: 12px;
  --radius-card: 16px;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --bg-dark: #111114;
  --danger: #ef4444;
  --danger-soft: rgba(239,68,68,0.08);
  --success: #22c55e;
}

html, body {
  min-height: 100%;
  font-family: var(--font-stack);
  background: var(--bg-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

.pattern-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pattern-canvas {
  position: absolute;
  inset: 0;
}

.pattern-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(251,191,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 32px;
}

.lang-switch {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 50;
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.lang-switch button {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-stack);
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  transition: all .15s;
  -webkit-tap-highlight-color: transparent;
}

.lang-switch button.active {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.lang-switch button:hover:not(.active) {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.main-container {
  width: 100%;
  max-width: 480px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow), 0 0 0 1px rgba(255,255,255,0.06);
  padding: 32px 24px 28px;
  animation: cardAppear .5s cubic-bezier(.16,1,.3,1) both;
}

@keyframes cardAppear {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.profile-header {
  text-align: center;
  margin-bottom: 28px;
}

.profile-header h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.profile-header p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.link-group {
  margin-bottom: 24px;
}

.link-group:last-child {
  margin-bottom: 0;
}

.group-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 2px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: #f8f8f9;
  border: 1px solid #ebebed;
  border-radius: var(--radius-btn);
  transition: background .15s, border-color .15s;
}

.link-icon-wrap {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-icon-wrap img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.link-name-display {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.link-value-display {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.link-arrow {
  color: var(--text-muted);
  font-size: 16px;
  flex-shrink: 0;
}

.page-footer {
  margin-top: 28px;
  text-align: center;
}

.page-footer a {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}

.page-footer a:hover {
  color: rgba(255,255,255,.55);
}

.page-footer a span {
  color: var(--sunflower);
  font-weight: 600;
  opacity: .6;
  transition: opacity .2s;
}

.page-footer a:hover span {
  opacity: 1;
}

.empty-state {
  text-align: center;
  padding: 20px 16px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}