:root {
  --easy-header-height: 79px;
  --easy-header-surface: rgba(0, 0, 0, 0.88);
  --easy-header-blur: 14px;
  --easy-header-border-color: rgba(255, 255, 255, 0.05);
  --easy-font-family: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Panel hub - pełna skala 1:1 (jak Miami Mods), bez zoomu strony */
html:has(.easy-site-shell--panel-hub) {
  font-size: 16px;
}

html:has(.easy-site-shell--panel-hub) body {
  zoom: 1;
}

html:has(.easy-site-shell--panel-hub .easy-mods-catalog),
html:has(.easy-site-shell--panel-hub .easy-mods-catalog) body {
  overflow: hidden;
  height: 100%;
}

.easy-site-shell--panel-hub {
  --easy-header-height: 88px;
  isolation: isolate;
  min-height: 100vh;
  position: relative;
}

/* Tylko widok ustawień - bez rezerwy pod header (własny przycisk Wróć w karcie) */
.easy-site-shell--panel-hub:has(.easy-panel-hub--settings) {
  --easy-header-height: 0.01px;
}

.easy-site-shell--panel-hub::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #050507;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.58) 28%,
      rgba(0, 0, 0, 0.42) 52%,
      rgba(0, 0, 0, 0.68) 78%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    url('/images/panel-hub-select-bg.jpg');
  background-position: center 72%;
  background-size: cover;
  background-repeat: no-repeat;
}

.easy-site-shell--panel-hub .easy-header {
  padding: 1.15rem 2.5rem;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.easy-site-shell--panel-hub .easy-header__inner {
  max-width: none;
  width: 100%;
}

.easy-site-shell--panel-hub .easy-header__home-btn {
  width: 52px;
  height: 52px;
}

.easy-site-shell--panel-hub .easy-header__home-logo {
  width: 32px;
  height: 32px;
}

.easy-site-shell--panel-hub .easy-header__hub-window {
  height: 52px;
  max-width: min(100%, 520px);
}

.easy-site-shell--panel-hub .easy-header__nav {
  height: 52px;
}

.easy-site-shell--panel-hub .easy-header__nav-link {
  font-size: 0.95rem;
  padding: 0 1.2rem;
}

.easy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  min-height: var(--easy-header-height);
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(var(--easy-header-blur));
  -webkit-backdrop-filter: blur(var(--easy-header-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 8px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--easy-font-family);
  isolation: isolate;
}

.easy-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(255, 255, 255, 0.1) 82%,
    transparent 100%
  );
  pointer-events: none;
}

.easy-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.easy-header__home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid rgba(232, 28, 90, 0.18);
  background: #000;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.easy-header__home-btn:hover {
  border-color: rgba(232, 28, 90, 0.45);
  box-shadow: 0 0 20px rgba(232, 28, 90, 0.18);
}

.easy-header__home-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.easy-header__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  height: 47px;
}

.easy-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.easy-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E81C5A;
  border-radius: 1px;
  transition: width 0.22s ease;
  box-shadow: 0 0 8px rgba(232, 28, 90, 0.5);
}

.easy-header__nav-link:hover {
  color: #fff;
}

.easy-header__nav-link:hover::after {
  width: 100%;
}

.easy-header__nav-link.is-active {
  color: #fff;
  font-weight: 600;
  pointer-events: none;
  cursor: default;
}

.easy-header__nav-link.is-active::after {
  width: 100%;
}

.easy-header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.easy-header__menu-btn:hover,
.easy-header__menu-btn.is-open {
  border-color: rgba(232, 28, 90, 0.45);
  background: rgba(232, 28, 90, 0.1);
}

.easy-header__menu-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background 0.2s ease;
}

.easy-header__menu-icon::before,
.easy-header__menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.easy-header__menu-icon::before {
  top: -6px;
}

.easy-header__menu-icon::after {
  top: 6px;
}

.easy-header__menu-btn.is-open .easy-header__menu-icon {
  background: transparent;
}

.easy-header__menu-btn.is-open .easy-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.easy-header__menu-btn.is-open .easy-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.easy-header__mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.easy-header__mobile-nav {
  position: fixed;
  top: var(--easy-header-height);
  left: 0;
  right: 0;
  z-index: 109;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem 1.25rem;
  background: rgba(8, 8, 10, 0.97);
  border-bottom: 1px solid rgba(232, 28, 90, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.easy-header__mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.easy-header__mobile-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.easy-header__mobile-link:hover,
.easy-header__mobile-link.is-active {
  background: rgba(232, 28, 90, 0.12);
  color: #fff;
}

.easy-header__mobile-link.is-active {
  pointer-events: none;
  cursor: default;
}

html.easy-auth-hint .easy-header__static-shell .easy-header__login {
  visibility: hidden;
}

.easy-header__mobile-link--accent {
  margin-top: 0.35rem;
  color: #fff;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.35);
}

.easy-header__mobile-link--accent:hover {
  background: rgba(88, 101, 242, 0.32);
}

/* Social media buttons */
.easy-header__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-right: 0.3rem;
}

.easy-header__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.easy-header__social-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.easy-header__hub-window {
  display: flex;
  align-items: stretch;
  height: 47px;
  min-width: min(100%, 360px);
  max-width: 480px;
  flex: 1;
  margin: 0 auto;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.easy-header__hub-pane {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 0.85rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.easy-header__hub-pane:hover {
  background: rgba(255, 255, 255, 0.06);
}

.easy-header__hub-pane.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.easy-header__hub-pane--royal.is-active {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.18) 0%, rgba(255, 0, 85, 0.04) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 0, 85, 0.35);
}

.easy-header__hub-pane--easy.is-active {
  background: linear-gradient(135deg, rgba(232, 39, 79, 0.18) 0%, rgba(232, 39, 79, 0.04) 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 39, 79, 0.35);
}

.easy-header__hub-pane--royal {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.08) 0%, transparent 100%);
}

.easy-header__hub-pane--easy {
  background: linear-gradient(135deg, rgba(232, 39, 79, 0.08) 0%, transparent 100%);
}

.easy-header__hub-pane--profile {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

.easy-header__hub-pane--profile.is-active {
  background: linear-gradient(135deg, rgba(232, 28, 90, 0.2) 0%, rgba(232, 28, 90, 0.04) 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 28, 90, 0.38);
}

.easy-header__hub-pane--blocked,
.easy-header__hub-pane--blocked:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  filter: grayscale(0.35);
}

.easy-header__hub-pane--blocked:hover {
  background: inherit;
}

.easy-header__hub-label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.easy-header__hub-divider {
  align-self: center;
  flex-shrink: 0;
  width: 1px;
  height: 58%;
  margin: 0 0.12rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 22%,
    rgba(255, 255, 255, 0.16) 78%,
    transparent 100%
  );
}

.easy-header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.easy-header__tools {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.easy-header__tool-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.easy-header__tool-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.easy-header__tool-btn.is-active {
  color: #ff6b96;
  background: rgba(232, 28, 90, 0.14);
  box-shadow: inset 0 0 0 1px rgba(232, 28, 90, 0.28);
}

.easy-header__tool-icon-img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(232, 28, 90, 0.25));
}

.easy-header__tool-btn.is-active .easy-header__tool-icon-img {
  filter: drop-shadow(0 0 10px rgba(232, 28, 90, 0.45));
}

/* legacy aliases - inne strony mogą nadal używać starych klas */
.easy-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.easy-header__icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.easy-header__icon-btn.is-active {
  color: #ff6b96;
  background: rgba(232, 28, 90, 0.14);
  box-shadow: inset 0 0 0 1px rgba(232, 28, 90, 0.28);
}

.easy-header__login--pending {
  pointer-events: none;
  opacity: 0.72;
}

/* Hide static HTML shell only when a second (React) inner exists */
#site-header-root > .easy-header__static-shell:has(+ .easy-header__inner:not(.easy-header__static-shell)) {
  display: none !important;
}

.easy-header__login {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 47px;
  padding: 0.5rem 0.5rem 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.easy-header__login:hover {
  filter: brightness(1.08);
  border-color: rgba(232, 39, 79, 0.35);
}

.easy-header__login.is-active {
  border-color: rgba(232, 39, 79, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 39, 79, 0.15), 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.easy-header__login-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* -- Menu użytkownika (avatar + hover) -- */

.easy-header__user-menu {
  position: relative;
  flex-shrink: 0;
}

.easy-header__user-menu--pending {
  pointer-events: none;
}

.easy-header__user-menu--pending .easy-header__user-trigger {
  cursor: default;
}

.easy-header__user-menu--pending .easy-header__user-avatar {
  background: rgba(255, 255, 255, 0.1);
  animation: easy-header-user-pulse 1.1s ease-in-out infinite;
}

@keyframes easy-header-user-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

.easy-header__user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 44px;
  padding: 0.28rem 0.5rem 0.28rem 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 14, 16, 0.95) 0%, rgba(6, 6, 8, 0.98) 100%);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.easy-site-shell--panel-hub .easy-header__user-trigger {
  height: 48px;
  padding: 0.32rem 0.55rem 0.32rem 0.32rem;
}

.easy-header__user-menu:hover .easy-header__user-trigger,
.easy-header__user-menu:focus-within .easy-header__user-trigger {
  border-color: rgba(232, 28, 90, 0.5);
  box-shadow:
    0 0 0 1px rgba(232, 28, 90, 0.15),
    0 0 24px rgba(232, 28, 90, 0.12);
}

.easy-header__user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(232, 28, 90, 0.22);
}

.easy-site-shell--panel-hub .easy-header__user-avatar {
  width: 38px;
  height: 38px;
}

.easy-header__user-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.easy-header__user-menu:hover .easy-header__user-chevron,
.easy-header__user-menu:focus-within .easy-header__user-chevron {
  color: #ff6b96;
  background: rgba(232, 28, 90, 0.12);
  transform: rotate(180deg);
}

.easy-header__user-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 220px;
  max-width: min(92vw, 280px);
  padding: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.98);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 120;
  overflow: hidden;
  box-sizing: border-box;
}

.easy-header__user-menu:hover .easy-header__user-dropdown,
.easy-header__user-menu:focus-within .easy-header__user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.easy-header__user-dropdown-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem 0.7rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.easy-header__user-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.easy-header__user-dropdown-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.easy-header__user-dropdown-uid {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.15rem;
}

.easy-header__user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.easy-header__user-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.easy-header__user-dropdown-item--danger:hover {
  background: rgba(232, 28, 90, 0.12);
  color: #ff6b8a;
}

@media (max-width: 900px) {
  .easy-header {
    padding: 0.85rem 1rem;
  }

  .easy-header__nav {
    display: none;
  }

  .easy-header__menu-btn {
    display: inline-flex;
  }

  .easy-header__hub-window {
    max-width: min(78vw, 340px);
    min-width: 0;
    padding: 0.22rem;
  }

  .easy-header__hub-pane {
    padding: 0 0.5rem;
  }

  .easy-header__hub-label {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
  }

  .easy-header__hub-divider {
    margin: 0 0.06rem;
  }

  .easy-header__tools {
    gap: 0.1rem;
    padding: 0.18rem;
  }

  .easy-header__tool-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .easy-header__login span:first-child {
    display: none;
  }

  .easy-header__login {
    width: 47px;
    height: 47px;
    padding: 0;
    justify-content: center;
  }
}

.easy-site-shell {
  min-height: 100vh;
  padding-top: var(--easy-header-height);
  background: #000;
  font-family: var(--easy-font-family);
}

.easy-login-page--with-header .easy-login-page__inner {
  padding-top: calc(var(--easy-header-height) + 1.5rem);
}

/* ─── Logged-in avatar menu (replaces "Zaloguj" button) ─── */

.easy-header__logged-menu {
  position: relative;
  flex-shrink: 0;
}

.easy-header__logged-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(232, 28, 90, 0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.easy-header__logged-trigger:hover,
.easy-header__logged-trigger.is-open {
  border-color: rgba(232, 28, 90, 0.6);
  box-shadow: 0 0 18px rgba(232, 28, 90, 0.2);
  transform: scale(1.04);
}

.easy-header__logged-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.easy-header__logged-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 230px;
  max-width: min(92vw, 280px);
  padding: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.98);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  z-index: 200;
  animation: easyDropdownIn 0.15s ease both;
}

@keyframes easyDropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.easy-header__logged-dropdown-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem 0.7rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.easy-header__logged-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.easy-header__logged-dropdown-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.easy-header__logged-dropdown-uid {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.15rem;
}

.easy-header__logged-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.easy-header__logged-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.easy-header__logged-dropdown-item--danger:hover {
  background: rgba(232, 28, 90, 0.12);
  color: #ff6b8a;
}
