.inmyexp-bridge-card,
.inmyexp-bridge-card * {
  box-sizing: border-box;
}

.inmyexp-sync-page,
.inmyexp-sync-page * {
  box-sizing: border-box;
}

.inmyexp-sync-page {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 18px 12px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Share Tech Mono", monospace;
}

.inmyexp-sync-page__intro {
  padding: 22px;
  border: 1px solid rgba(0, 255, 234, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(0, 255, 234, 0.12), transparent 32%),
    rgba(5, 10, 18, 0.86);
}

.inmyexp-sync-page__intro h1 {
  margin: 6px 0 10px;
  color: #00ffea;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.inmyexp-sync-page__intro p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.inmyexp-sync-page .inmyexp-hub-auth {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.inmyexp-sync-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inmyexp-bridge-card {
  --inmyexp-cyan: #00ffea;
  --inmyexp-pink: #ff4fd8;
  --inmyexp-bg: #020707;
  --inmyexp-panel: #091416;
  --inmyexp-text: #e9fffb;
  --inmyexp-muted: #9ebebb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 760px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(0, 255, 234, 0.7);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--inmyexp-bg), var(--inmyexp-panel));
  color: var(--inmyexp-text);
  font-family: Inter, Arial, sans-serif;
  box-shadow: 0 0 18px rgba(0, 255, 234, 0.16);
}

.inmyexp-bridge-card__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--inmyexp-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.inmyexp-bridge-card h3 {
  margin: 0 0 6px;
  color: var(--inmyexp-text);
  font-size: 18px;
  line-height: 1.25;
}

.inmyexp-bridge-card p {
  margin: 0;
  color: var(--inmyexp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.inmyexp-bridge-card__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.inmyexp-bridge-card__actions a,
.inmyexp-bridge-card__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--inmyexp-cyan);
  border-radius: 6px;
  background: transparent;
  color: var(--inmyexp-cyan);
  cursor: pointer;
  font: 800 12px/1.1 Inter, Arial, sans-serif;
  text-decoration: none;
}

.inmyexp-bridge-card__actions a:hover,
.inmyexp-bridge-card__actions button:hover {
  background: var(--inmyexp-cyan);
  color: #001313;
}

.inmyexp-bridge-card__actions button {
  background: var(--inmyexp-cyan);
  color: #001313;
}

.inmyexp-bridge-card__actions [hidden] {
  display: none;
}

.inmyexp-profile-card {
  justify-content: flex-start;
}

.inmyexp-profile-card__avatar {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid var(--inmyexp-cyan);
  border-radius: 8px;
  background-color: #001313;
  background-position: center;
  background-size: cover;
  color: var(--inmyexp-cyan);
  font-size: 13px;
  font-weight: 900;
}

.inmyexp-profile-card__body {
  min-width: 0;
  flex: 1 1 auto;
}

.inmyexp-motd {
  display: block;
}

@media (max-width: 640px) {
  .inmyexp-sync-page__grid {
    grid-template-columns: 1fr;
  }

  .inmyexp-bridge-card {
    align-items: stretch;
    flex-direction: column;
  }

  .inmyexp-profile-card {
    align-items: flex-start;
  }

  .inmyexp-bridge-card__actions {
    justify-content: flex-start;
    width: 100%;
  }

  .inmyexp-bridge-card__actions a,
  .inmyexp-bridge-card__actions button {
    flex: 1 1 130px;
  }
}
