:root {
  --bg: #0b0f14;
  --card: #0f1720;
  --muted: #9aa6b2;
  --accent: #6ee7b7;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 12px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #071018 0%, #0b1016 100%);
  color: #e6eef3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 36px;
}

.wrap {
  width: 80%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px
}

.sidebar {
  background: var(--glass);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04)
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06)
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

h1 {
  name-size: 18px;
  margin: 0 0 6px 0;
  font-weight: 600
}

p.role {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

nav {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

a.link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px
}

a.link:hover {
  background: rgba(110, 231, 183, 0.06)
}

.main {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border: 1px solid rgba(255, 255, 255, 0.03)
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px
}

.card {
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02)
}

.muted {
  color: var(--muted);
  font-size: 13px
}

.key {
  color: var(--accent);
  font-family: monospace;
  font-size: 13px;
  word-break: break-all
}

.top-right {
  position: absolute;
  right: 36px;
  top: 18px
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--muted);
  display: inline-block;
  text-decoration: none;
  Padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer
}

@media(max-width:820px) {
  .wrap {
    grid-template-columns: 1fr;
    width: 94%;
  }

  .top-right {
    position: static;
    text-align: right;
    margin-bottom: 10px
  }
}

/* Generated classes from inline styles */
.inline-style-1 { color: #ab87ff; font-weight: bold; }
.inline-style-2 { height: 16px; }
.inline-style-3 { margin: 0; padding-left: 20px; font-size: 13px; color: var(--muted); }
.inline-style-4 { grid-column: span 3; }
.inline-style-5 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.inline-style-6 { font-size: 14px; color: var(--accent); }
