a {
text-decoration: none;
}
svg {
padding: 0 6px 0 2px;
vertical-align: middle;
}
.container {
  max-width: 1024px; }
.header {
  margin-top: 6rem;
  text-align: center; }
.heading-font-size {
  font-size: 1.2rem;
  color: #999;
  letter-spacing: normal; }
.navbar {
  display: none; }

/* Профиль пользователя */
.user-profile {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  width: 100%;
  box-sizing: border-box;
}

.user-skin {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  image-rendering: pixelated;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  flex: 1;
}

.username {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}

.user-roles {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.4;
}

.user-roles small {
  color: #888;
  font-size: 0.95rem;
}

.user-roles strong {
  color: #33C3F0;
  font-weight: 600;
}

.user-diamonds {
  font-size: 1.4rem;
  color: #3498db;
  font-weight: 700;
  background: rgba(52, 152, 219, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
  margin-top: 0.3rem;
}

.user-actions {
  flex-shrink: 0;
}

/* Адаптивность для профиля */
@media (max-width: 600px) {
  .user-profile {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

  .user-info {
    text-align: center;
    align-items: center;
  }

  .user-diamonds {
    margin: 0 auto;
  }

  .user-actions {
    width: 100%;
    text-align: center;
  }
}

/* Larger than phone */
@media (min-width: 550px) {
  .header {
    margin-top: 3rem; }
}

/* Larger than tablet */
@media (min-width: 750px) {
  /* Navbar */
  .navbar + .docs-section {
    border-top-width: 0; }
  .navbar,
  .navbar-spacer {
    display: block;
    width: 100%;
    height: 6.5rem;
    background: #fff;
    z-index: 99;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; }
  .navbar-spacer {
    display: none; }
  .navbar > .container {
    width: 100%; }
  .navbar-list {
    list-style: none;
    margin-bottom: 0; }
  .navbar-item {
    position: relative;
    float: left;
    margin-bottom: 0; }
  .navbar-link {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2rem;
    margin-right: 35px;
    text-decoration: none;
    line-height: 6.5rem;
    color: #222; }
  .navbar-link.active {
    color: #33C3F0; }
  .has-docked-nav .navbar {
    position: fixed;
    top: 0;
    left: 0; }
  .has-docked-nav .navbar-spacer {
    display: block; }
  /* Re-overiding the width 100% declaration to match size of % based container */
  .has-docked-nav .navbar > .container {
    width: 80%; }
}