.platform-stripe {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(6, 16, 26, 0.96), rgba(11, 22, 34, 0.92));
  backdrop-filter: blur(18px);
}

.platform-stripe__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 4px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-stripe__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: #edf5ff;
}

.platform-stripe__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(109, 214, 255, 0.24);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(251, 191, 36, 0.18));
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.platform-stripe__logo img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.platform-stripe__copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.platform-stripe__copy strong {
  font-family: "Space Grotesk", "Inter", "IBM Plex Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #edf5ff;
  line-height: 1;
  white-space: nowrap;
}

.platform-stripe__copy span {
  font-family: "IBM Plex Sans", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #a8bbcf;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-stripe__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}

.platform-stripe__nav {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.platform-stripe__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 19, 30, 0.86);
  color: #a8bbcf;
  text-decoration: none;
  font-family: "Space Grotesk", "Inter", "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.platform-stripe__nav a:hover,
.platform-stripe__nav a.active {
  color: #edf5ff;
  border-color: rgba(242, 198, 109, 0.4);
  box-shadow: 0 0 14px rgba(242, 198, 109, 0.12);
}

.platform-stripe__xp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(242, 198, 109, 0.24);
  background: rgba(242, 198, 109, 0.12);
  font-family: "IBM Plex Sans", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #f2c66d;
  white-space: nowrap;
}

.platform-stripe__level {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c66d, #f5d98f);
  color: #07111a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.platform-stripe__account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(109, 214, 255, 0.24);
  background: rgba(109, 214, 255, 0.08);
  color: #edf5ff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.platform-stripe__account:hover,
.platform-stripe__account:focus-visible {
  border-color: rgba(109, 214, 255, 0.5);
  transform: translateY(-1px);
}

.platform-stripe__account-name {
  font-family: "Space Grotesk", "Inter", "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #edf5ff;
}

.platform-stripe__account-meta {
  font-family: "IBM Plex Sans", "Inter", sans-serif;
  font-size: 12px;
  color: #a8bbcf;
}

@media (max-width: 960px) {
  .platform-stripe__inner {
    align-items: flex-start;
  }

  .platform-stripe__right {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }

  .platform-stripe__nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .platform-stripe__inner {
    padding: 4px 14px;
  }

  .platform-stripe__copy span {
    white-space: nowrap;
  }

  .platform-stripe__nav a {
    font-size: 12px;
    padding: 8px 14px;
  }
}
