/* SlonPlus Sovereign Black & Gold UI System */

.slon-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #050507;
  border: 1px solid #d4af37;
  color: #ffffff;
  border-radius: 5px;
  padding: 7px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.slon-auth-btn:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  color: #d4af37;
  transform: translateY(-2px);
  border-color: #e5c158;
}

.slon-auth-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.slon-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 5, 7, 0.85);
  border: 1px solid #d4af37;
  border-radius: 5px;
  padding: 4px 10px 4px 6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  text-decoration: none;
}

.slon-user-pill:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  border-color: #e5c158;
  transform: translateY(-1px);
}

.slon-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid #d4af37;
  background: #000;
}

.slon-user-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Modal Window */
.slon-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: slonFadeIn 0.2s ease-out;
}

@keyframes slonFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slon-modal-card {
  background: #0d0d12;
  border: 1px solid #d4af37;
  border-radius: 5px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.2);
  width: 90%;
  max-width: 420px;
  padding: 24px;
  color: #fff;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.slon-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.slon-modal-close:hover {
  color: #d4af37;
}

.slon-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.slon-profile-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #d4af37;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.slon-profile-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 4px;
}

.slon-profile-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  word-break: break-all;
}

.slon-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slon-info-label {
  color: rgba(255, 255, 255, 0.6);
}

.slon-info-val {
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slon-badge-verified {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 10px;
}

.slon-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.slon-btn-logout {
  flex: 1;
  background: #050507;
  border: 1px solid #ef4444;
  color: #ef4444;
  border-radius: 5px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.slon-btn-logout:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.slon-btn-idp {
  flex: 1;
  background: #050507;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 5px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.slon-btn-idp:hover {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  background: #d4af37;
  color: #050507;
}

.slon-btn-cabinet {
  display: block;
  text-align: center;
  padding: 12px;
  background: #050507;
  border: 1px solid #d4af37;
  border-radius: 5px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.slon-btn-cabinet:hover {
  background: #d4af37;
  color: #050507;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}
